1 //===-- llvm/ADT/APSInt.h - Arbitrary Precision Signed Int -----*- C++ -*--===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file implements the APSInt class, which is a simple class that
10 // represents an arbitrary sized integer that knows its signedness.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_ADT_APSINT_H
15 #define LLVM_ADT_APSINT_H
17 #include "llvm/ADT/APInt.h"
21 class LLVM_NODISCARD APSInt
: public APInt
{
25 /// Default constructor that creates an uninitialized APInt.
26 explicit APSInt() : IsUnsigned(false) {}
28 /// APSInt ctor - Create an APSInt with the specified width, default to
30 explicit APSInt(uint32_t BitWidth
, bool isUnsigned
= true)
31 : APInt(BitWidth
, 0), IsUnsigned(isUnsigned
) {}
33 explicit APSInt(APInt I
, bool isUnsigned
= true)
34 : APInt(std::move(I
)), IsUnsigned(isUnsigned
) {}
36 /// Construct an APSInt from a string representation.
38 /// This constructor interprets the string \p Str using the radix of 10.
39 /// The interpretation stops at the end of the string. The bit width of the
40 /// constructed APSInt is determined automatically.
42 /// \param Str the string to be interpreted.
43 explicit APSInt(StringRef Str
);
45 APSInt
&operator=(APInt RHS
) {
46 // Retain our current sign.
47 APInt::operator=(std::move(RHS
));
51 APSInt
&operator=(uint64_t RHS
) {
52 // Retain our current sign.
53 APInt::operator=(RHS
);
57 // Query sign information.
58 bool isSigned() const { return !IsUnsigned
; }
59 bool isUnsigned() const { return IsUnsigned
; }
60 void setIsUnsigned(bool Val
) { IsUnsigned
= Val
; }
61 void setIsSigned(bool Val
) { IsUnsigned
= !Val
; }
63 /// toString - Append this APSInt to the specified SmallString.
64 void toString(SmallVectorImpl
<char> &Str
, unsigned Radix
= 10) const {
65 APInt::toString(Str
, Radix
, isSigned());
67 /// toString - Converts an APInt to a std::string. This is an inefficient
68 /// method; you should prefer passing in a SmallString instead.
69 std::string
toString(unsigned Radix
) const {
70 return APInt::toString(Radix
, isSigned());
72 using APInt::toString
;
74 /// Get the correctly-extended \c int64_t value.
75 int64_t getExtValue() const {
76 assert(getMinSignedBits() <= 64 && "Too many bits for int64_t");
77 return isSigned() ? getSExtValue() : getZExtValue();
80 APSInt
trunc(uint32_t width
) const {
81 return APSInt(APInt::trunc(width
), IsUnsigned
);
84 APSInt
extend(uint32_t width
) const {
86 return APSInt(zext(width
), IsUnsigned
);
88 return APSInt(sext(width
), IsUnsigned
);
91 APSInt
extOrTrunc(uint32_t width
) const {
93 return APSInt(zextOrTrunc(width
), IsUnsigned
);
95 return APSInt(sextOrTrunc(width
), IsUnsigned
);
98 const APSInt
&operator%=(const APSInt
&RHS
) {
99 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
106 const APSInt
&operator/=(const APSInt
&RHS
) {
107 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
114 APSInt
operator%(const APSInt
&RHS
) const {
115 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
116 return IsUnsigned
? APSInt(urem(RHS
), true) : APSInt(srem(RHS
), false);
118 APSInt
operator/(const APSInt
&RHS
) const {
119 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
120 return IsUnsigned
? APSInt(udiv(RHS
), true) : APSInt(sdiv(RHS
), false);
123 APSInt
operator>>(unsigned Amt
) const {
124 return IsUnsigned
? APSInt(lshr(Amt
), true) : APSInt(ashr(Amt
), false);
126 APSInt
& operator>>=(unsigned Amt
) {
134 inline bool operator<(const APSInt
& RHS
) const {
135 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
136 return IsUnsigned
? ult(RHS
) : slt(RHS
);
138 inline bool operator>(const APSInt
& RHS
) const {
139 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
140 return IsUnsigned
? ugt(RHS
) : sgt(RHS
);
142 inline bool operator<=(const APSInt
& RHS
) const {
143 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
144 return IsUnsigned
? ule(RHS
) : sle(RHS
);
146 inline bool operator>=(const APSInt
& RHS
) const {
147 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
148 return IsUnsigned
? uge(RHS
) : sge(RHS
);
150 inline bool operator==(const APSInt
& RHS
) const {
151 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
154 inline bool operator!=(const APSInt
& RHS
) const {
155 return !((*this) == RHS
);
158 bool operator==(int64_t RHS
) const {
159 return compareValues(*this, get(RHS
)) == 0;
161 bool operator!=(int64_t RHS
) const {
162 return compareValues(*this, get(RHS
)) != 0;
164 bool operator<=(int64_t RHS
) const {
165 return compareValues(*this, get(RHS
)) <= 0;
167 bool operator>=(int64_t RHS
) const {
168 return compareValues(*this, get(RHS
)) >= 0;
170 bool operator<(int64_t RHS
) const {
171 return compareValues(*this, get(RHS
)) < 0;
173 bool operator>(int64_t RHS
) const {
174 return compareValues(*this, get(RHS
)) > 0;
177 // The remaining operators just wrap the logic of APInt, but retain the
178 // signedness information.
180 APSInt
operator<<(unsigned Bits
) const {
181 return APSInt(static_cast<const APInt
&>(*this) << Bits
, IsUnsigned
);
183 APSInt
& operator<<=(unsigned Amt
) {
184 static_cast<APInt
&>(*this) <<= Amt
;
188 APSInt
& operator++() {
189 ++(static_cast<APInt
&>(*this));
192 APSInt
& operator--() {
193 --(static_cast<APInt
&>(*this));
196 APSInt
operator++(int) {
197 return APSInt(++static_cast<APInt
&>(*this), IsUnsigned
);
199 APSInt
operator--(int) {
200 return APSInt(--static_cast<APInt
&>(*this), IsUnsigned
);
202 APSInt
operator-() const {
203 return APSInt(-static_cast<const APInt
&>(*this), IsUnsigned
);
205 APSInt
& operator+=(const APSInt
& RHS
) {
206 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
207 static_cast<APInt
&>(*this) += RHS
;
210 APSInt
& operator-=(const APSInt
& RHS
) {
211 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
212 static_cast<APInt
&>(*this) -= RHS
;
215 APSInt
& operator*=(const APSInt
& RHS
) {
216 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
217 static_cast<APInt
&>(*this) *= RHS
;
220 APSInt
& operator&=(const APSInt
& RHS
) {
221 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
222 static_cast<APInt
&>(*this) &= RHS
;
225 APSInt
& operator|=(const APSInt
& RHS
) {
226 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
227 static_cast<APInt
&>(*this) |= RHS
;
230 APSInt
& operator^=(const APSInt
& RHS
) {
231 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
232 static_cast<APInt
&>(*this) ^= RHS
;
236 APSInt
operator&(const APSInt
& RHS
) const {
237 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
238 return APSInt(static_cast<const APInt
&>(*this) & RHS
, IsUnsigned
);
241 APSInt
operator|(const APSInt
& RHS
) const {
242 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
243 return APSInt(static_cast<const APInt
&>(*this) | RHS
, IsUnsigned
);
246 APSInt
operator^(const APSInt
&RHS
) const {
247 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
248 return APSInt(static_cast<const APInt
&>(*this) ^ RHS
, IsUnsigned
);
251 APSInt
operator*(const APSInt
& RHS
) const {
252 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
253 return APSInt(static_cast<const APInt
&>(*this) * RHS
, IsUnsigned
);
255 APSInt
operator+(const APSInt
& RHS
) const {
256 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
257 return APSInt(static_cast<const APInt
&>(*this) + RHS
, IsUnsigned
);
259 APSInt
operator-(const APSInt
& RHS
) const {
260 assert(IsUnsigned
== RHS
.IsUnsigned
&& "Signedness mismatch!");
261 return APSInt(static_cast<const APInt
&>(*this) - RHS
, IsUnsigned
);
263 APSInt
operator~() const {
264 return APSInt(~static_cast<const APInt
&>(*this), IsUnsigned
);
267 /// getMaxValue - Return the APSInt representing the maximum integer value
268 /// with the given bit width and signedness.
269 static APSInt
getMaxValue(uint32_t numBits
, bool Unsigned
) {
270 return APSInt(Unsigned
? APInt::getMaxValue(numBits
)
271 : APInt::getSignedMaxValue(numBits
), Unsigned
);
274 /// getMinValue - Return the APSInt representing the minimum integer value
275 /// with the given bit width and signedness.
276 static APSInt
getMinValue(uint32_t numBits
, bool Unsigned
) {
277 return APSInt(Unsigned
? APInt::getMinValue(numBits
)
278 : APInt::getSignedMinValue(numBits
), Unsigned
);
281 /// Determine if two APSInts have the same value, zero- or
282 /// sign-extending as needed.
283 static bool isSameValue(const APSInt
&I1
, const APSInt
&I2
) {
284 return !compareValues(I1
, I2
);
287 /// Compare underlying values of two numbers.
288 static int compareValues(const APSInt
&I1
, const APSInt
&I2
) {
289 if (I1
.getBitWidth() == I2
.getBitWidth() && I1
.isSigned() == I2
.isSigned())
290 return I1
.IsUnsigned
? I1
.compare(I2
) : I1
.compareSigned(I2
);
292 // Check for a bit-width mismatch.
293 if (I1
.getBitWidth() > I2
.getBitWidth())
294 return compareValues(I1
, I2
.extend(I1
.getBitWidth()));
295 if (I2
.getBitWidth() > I1
.getBitWidth())
296 return compareValues(I1
.extend(I2
.getBitWidth()), I2
);
298 // We have a signedness mismatch. Check for negative values and do an
299 // unsigned compare if both are positive.
301 assert(!I2
.isSigned() && "Expected signed mismatch");
305 assert(I2
.isSigned() && "Expected signed mismatch");
310 return I1
.compare(I2
);
313 static APSInt
get(int64_t X
) { return APSInt(APInt(64, X
), false); }
314 static APSInt
getUnsigned(uint64_t X
) { return APSInt(APInt(64, X
), true); }
316 /// Profile - Used to insert APSInt objects, or objects that contain APSInt
317 /// objects, into FoldingSets.
318 void Profile(FoldingSetNodeID
& ID
) const;
321 inline bool operator==(int64_t V1
, const APSInt
&V2
) { return V2
== V1
; }
322 inline bool operator!=(int64_t V1
, const APSInt
&V2
) { return V2
!= V1
; }
323 inline bool operator<=(int64_t V1
, const APSInt
&V2
) { return V2
>= V1
; }
324 inline bool operator>=(int64_t V1
, const APSInt
&V2
) { return V2
<= V1
; }
325 inline bool operator<(int64_t V1
, const APSInt
&V2
) { return V2
> V1
; }
326 inline bool operator>(int64_t V1
, const APSInt
&V2
) { return V2
< V1
; }
328 inline raw_ostream
&operator<<(raw_ostream
&OS
, const APSInt
&I
) {
329 I
.print(OS
, I
.isSigned());
333 } // end namespace llvm