mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 22:01:56 +00:00
Improve APInt interface:
1. Add unsigned and signed versions of methods so a "bool" argument doesn't need to be passed in. 2. Make the various getMin/getMax functions all be inline since they are so simple. 3. Simplify sdiv and srem code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34680 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
96d91372fd
commit
66ed1099ff
@ -59,7 +59,6 @@ namespace APIntOps {
|
|||||||
///
|
///
|
||||||
/// @brief Class for arbitrary precision integers.
|
/// @brief Class for arbitrary precision integers.
|
||||||
class APInt {
|
class APInt {
|
||||||
public:
|
|
||||||
|
|
||||||
uint32_t BitWidth; ///< The number of bits in this APInt.
|
uint32_t BitWidth; ///< The number of bits in this APInt.
|
||||||
|
|
||||||
@ -374,8 +373,8 @@ public:
|
|||||||
/// Signed divide this APInt by APInt RHS.
|
/// Signed divide this APInt by APInt RHS.
|
||||||
/// @brief Signed division function for APInt.
|
/// @brief Signed division function for APInt.
|
||||||
inline APInt sdiv(const APInt& RHS) const {
|
inline APInt sdiv(const APInt& RHS) const {
|
||||||
bool isNegativeLHS = (*this)[BitWidth - 1];
|
bool isNegativeLHS = isNegative();
|
||||||
bool isNegativeRHS = RHS[RHS.BitWidth - 1];
|
bool isNegativeRHS = RHS.isNegative();
|
||||||
APInt Result = APIntOps::udiv(
|
APInt Result = APIntOps::udiv(
|
||||||
isNegativeLHS ? -(*this) : (*this), isNegativeRHS ? -RHS : RHS);
|
isNegativeLHS ? -(*this) : (*this), isNegativeRHS ? -RHS : RHS);
|
||||||
return isNegativeLHS != isNegativeRHS ? -Result : Result;
|
return isNegativeLHS != isNegativeRHS ? -Result : Result;
|
||||||
@ -388,8 +387,8 @@ public:
|
|||||||
/// Signed remainder operation on APInt.
|
/// Signed remainder operation on APInt.
|
||||||
/// @brief Function for signed remainder operation.
|
/// @brief Function for signed remainder operation.
|
||||||
inline APInt srem(const APInt& RHS) const {
|
inline APInt srem(const APInt& RHS) const {
|
||||||
bool isNegativeLHS = (*this)[BitWidth - 1];
|
bool isNegativeLHS = isNegative();
|
||||||
bool isNegativeRHS = RHS[RHS.BitWidth - 1];
|
bool isNegativeRHS = RHS.isNegative();
|
||||||
APInt Result = APIntOps::urem(
|
APInt Result = APIntOps::urem(
|
||||||
isNegativeLHS ? -(*this) : (*this), isNegativeRHS ? -RHS : RHS);
|
isNegativeLHS ? -(*this) : (*this), isNegativeRHS ? -RHS : RHS);
|
||||||
return isNegativeLHS ? -Result : Result;
|
return isNegativeLHS ? -Result : Result;
|
||||||
@ -470,24 +469,37 @@ public:
|
|||||||
return int64_t(pVal[0]);
|
return int64_t(pVal[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @returns the largest value for an APInt of the specified bit-width and
|
/// @brief Gets maximum unsigned value of APInt for specific bit width.
|
||||||
/// if isSign == true, it should be largest signed value, otherwise largest
|
static APInt getMaxValue(uint32_t numBits) {
|
||||||
/// unsigned value.
|
return APInt(numBits, 0).set();
|
||||||
/// @brief Gets max value of the APInt with bitwidth <= 64.
|
}
|
||||||
static APInt getMaxValue(uint32_t numBits, bool isSigned);
|
|
||||||
|
|
||||||
/// @returns the smallest value for an APInt of the given bit-width and
|
/// @brief Gets maximum signed value of APInt for a specific bit width.
|
||||||
/// if isSign == true, it should be smallest signed value, otherwise zero.
|
static APInt getSignedMaxValue(uint32_t numBits) {
|
||||||
/// @brief Gets min value of the APInt with bitwidth <= 64.
|
return APInt(numBits, 0).set().clear(numBits - 1);
|
||||||
static APInt getMinValue(uint32_t numBits, bool isSigned);
|
}
|
||||||
|
|
||||||
|
/// @brief Gets minimum unsigned value of APInt for a specific bit width.
|
||||||
|
static APInt getMinValue(uint32_t numBits) {
|
||||||
|
return APInt(numBits, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @brief Gets minimum signed value of APInt for a specific bit width.
|
||||||
|
static APInt getSignedMinValue(uint32_t numBits) {
|
||||||
|
return APInt(numBits, 0).set(numBits - 1);
|
||||||
|
}
|
||||||
|
|
||||||
/// @returns the all-ones value for an APInt of the specified bit-width.
|
/// @returns the all-ones value for an APInt of the specified bit-width.
|
||||||
/// @brief Get the all-ones value.
|
/// @brief Get the all-ones value.
|
||||||
static APInt getAllOnesValue(uint32_t numBits);
|
static APInt getAllOnesValue(uint32_t numBits) {
|
||||||
|
return APInt(numBits, 0).set();
|
||||||
|
}
|
||||||
|
|
||||||
/// @returns the '0' value for an APInt of the specified bit-width.
|
/// @returns the '0' value for an APInt of the specified bit-width.
|
||||||
/// @brief Get the '0' value.
|
/// @brief Get the '0' value.
|
||||||
static APInt getNullValue(uint32_t numBits);
|
static APInt getNullValue(uint32_t numBits) {
|
||||||
|
return APInt(numBits, 0);
|
||||||
|
}
|
||||||
|
|
||||||
/// The hash value is computed as the sum of the words and the bit width.
|
/// The hash value is computed as the sum of the words and the bit width.
|
||||||
/// @returns A hash value computed from the sum of the APInt words.
|
/// @returns A hash value computed from the sum of the APInt words.
|
||||||
@ -536,8 +548,25 @@ public:
|
|||||||
isNegative() && countPopulation() == 1;
|
isNegative() && countPopulation() == 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @returns a character interpretation of the APInt.
|
/// This is used internally to convert an APInt to a string.
|
||||||
std::string toString(uint8_t radix = 10, bool wantSigned = true) const;
|
/// @brief Converts an APInt to a std::string
|
||||||
|
std::string toString(uint8_t radix, bool wantSigned) const;
|
||||||
|
|
||||||
|
/// Considers the APInt to be unsigned and converts it into a string in the
|
||||||
|
/// radix given. The radix can be 2, 8, 10 or 16.
|
||||||
|
/// @returns a character interpretation of the APInt
|
||||||
|
/// @brief Convert unsigned APInt to string representation.
|
||||||
|
inline std::string toString(uint8_t radix = 10) const {
|
||||||
|
return toString(radix, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Considers the APInt to be unsigned and converts it into a string in the
|
||||||
|
/// radix given. The radix can be 2, 8, 10 or 16.
|
||||||
|
/// @returns a character interpretation of the APInt
|
||||||
|
/// @brief Convert unsigned APInt to string representation.
|
||||||
|
inline std::string toStringSigned(uint8_t radix = 10) const {
|
||||||
|
return toString(radix, true);
|
||||||
|
}
|
||||||
|
|
||||||
/// Get an APInt with the same BitWidth as this APInt, just zero mask
|
/// Get an APInt with the same BitWidth as this APInt, just zero mask
|
||||||
/// the low bits and right shift to the least significant bit.
|
/// the low bits and right shift to the least significant bit.
|
||||||
@ -603,8 +632,17 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// @brief Converts this APInt to a double value.
|
/// @brief Converts this APInt to a double value.
|
||||||
double roundToDouble(bool isSigned = false) const;
|
double roundToDouble(bool isSigned) const;
|
||||||
|
|
||||||
|
/// @brief Converts this unsigned APInt to a double value.
|
||||||
|
double roundToDouble() const {
|
||||||
|
return roundToDouble(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @brief Converts this signed APInt to a double value.
|
||||||
|
double signedRoundToDouble() const {
|
||||||
|
return roundToDouble(true);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace APIntOps {
|
namespace APIntOps {
|
||||||
@ -642,9 +680,16 @@ inline uint32_t logBase2(const APInt& APIVal) {
|
|||||||
/// @brief Compute GCD of two APInt values.
|
/// @brief Compute GCD of two APInt values.
|
||||||
APInt GreatestCommonDivisor(const APInt& Val1, const APInt& Val2);
|
APInt GreatestCommonDivisor(const APInt& Val1, const APInt& Val2);
|
||||||
|
|
||||||
|
/// Treats the APInt as an unsigned value for conversion purposes.
|
||||||
/// @brief Converts the given APInt to a double value.
|
/// @brief Converts the given APInt to a double value.
|
||||||
inline double RoundAPIntToDouble(const APInt& APIVal, bool isSigned = false) {
|
inline double RoundAPIntToDouble(const APInt& APIVal) {
|
||||||
return APIVal.roundToDouble(isSigned);
|
return APIVal.roundToDouble();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Treats the APInt as a signed value for conversion purposes.
|
||||||
|
/// @brief Converts the given APInt to a double value.
|
||||||
|
inline double RoundSignedAPIntToDouble(const APInt& APIVal) {
|
||||||
|
return APIVal.signedRoundToDouble();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @brief Converts the given APInt to a float vlalue.
|
/// @brief Converts the given APInt to a float vlalue.
|
||||||
|
@ -654,39 +654,6 @@ APInt& APInt::flip(uint32_t bitPosition) {
|
|||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// getMaxValue - This function returns the largest value
|
|
||||||
/// for an APInt of the specified bit-width and if isSign == true,
|
|
||||||
/// it should be largest signed value, otherwise unsigned value.
|
|
||||||
APInt APInt::getMaxValue(uint32_t numBits, bool isSign) {
|
|
||||||
APInt Result(numBits, 0);
|
|
||||||
Result.set();
|
|
||||||
if (isSign)
|
|
||||||
Result.clear(numBits - 1);
|
|
||||||
return Result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// getMinValue - This function returns the smallest value for
|
|
||||||
/// an APInt of the given bit-width and if isSign == true,
|
|
||||||
/// it should be smallest signed value, otherwise zero.
|
|
||||||
APInt APInt::getMinValue(uint32_t numBits, bool isSign) {
|
|
||||||
APInt Result(numBits, 0);
|
|
||||||
if (isSign)
|
|
||||||
Result.set(numBits - 1);
|
|
||||||
return Result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// getAllOnesValue - This function returns an all-ones value for
|
|
||||||
/// an APInt of the specified bit-width.
|
|
||||||
APInt APInt::getAllOnesValue(uint32_t numBits) {
|
|
||||||
return getMaxValue(numBits, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// getNullValue - This function creates an '0' value for an
|
|
||||||
/// APInt of the specified bit-width.
|
|
||||||
APInt APInt::getNullValue(uint32_t numBits) {
|
|
||||||
return getMinValue(numBits, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
uint64_t APInt::getHashValue() const {
|
uint64_t APInt::getHashValue() const {
|
||||||
// Put the bit width into the low order bits.
|
// Put the bit width into the low order bits.
|
||||||
uint64_t hash = BitWidth;
|
uint64_t hash = BitWidth;
|
||||||
@ -1734,6 +1701,6 @@ void APInt::dump() const
|
|||||||
else for (unsigned i = getNumWords(); i > 0; i--) {
|
else for (unsigned i = getNumWords(); i > 0; i--) {
|
||||||
cerr << pVal[i-1] << " ";
|
cerr << pVal[i-1] << " ";
|
||||||
}
|
}
|
||||||
cerr << " (" << this->toString(10, false) << ")\n" << std::setbase(10);
|
cerr << " (" << this->toString(10) << ")\n" << std::setbase(10);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user