Recommit [NFC] Better encapsulation of llvm::Optional Storage
[llvm-complete.git] / include / llvm / ADT / APSInt.h
blobbe366116141e24aa055423f10f9de4e138c95f2e
1 //===-- llvm/ADT/APSInt.h - Arbitrary Precision Signed Int -----*- C++ -*--===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 //
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"
19 namespace llvm {
21 class LLVM_NODISCARD APSInt : public APInt {
22 bool IsUnsigned;
24 public:
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
29 /// unsigned.
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.
37 ///
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.
41 ///
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));
48 return *this;
51 APSInt &operator=(uint64_t RHS) {
52 // Retain our current sign.
53 APInt::operator=(RHS);
54 return *this;
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 {
85 if (IsUnsigned)
86 return APSInt(zext(width), IsUnsigned);
87 else
88 return APSInt(sext(width), IsUnsigned);
91 APSInt extOrTrunc(uint32_t width) const {
92 if (IsUnsigned)
93 return APSInt(zextOrTrunc(width), IsUnsigned);
94 else
95 return APSInt(sextOrTrunc(width), IsUnsigned);
98 const APSInt &operator%=(const APSInt &RHS) {
99 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
100 if (IsUnsigned)
101 *this = urem(RHS);
102 else
103 *this = srem(RHS);
104 return *this;
106 const APSInt &operator/=(const APSInt &RHS) {
107 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
108 if (IsUnsigned)
109 *this = udiv(RHS);
110 else
111 *this = sdiv(RHS);
112 return *this;
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) {
127 if (IsUnsigned)
128 lshrInPlace(Amt);
129 else
130 ashrInPlace(Amt);
131 return *this;
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!");
152 return eq(RHS);
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;
185 return *this;
188 APSInt& operator++() {
189 ++(static_cast<APInt&>(*this));
190 return *this;
192 APSInt& operator--() {
193 --(static_cast<APInt&>(*this));
194 return *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;
208 return *this;
210 APSInt& operator-=(const APSInt& RHS) {
211 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
212 static_cast<APInt&>(*this) -= RHS;
213 return *this;
215 APSInt& operator*=(const APSInt& RHS) {
216 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
217 static_cast<APInt&>(*this) *= RHS;
218 return *this;
220 APSInt& operator&=(const APSInt& RHS) {
221 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
222 static_cast<APInt&>(*this) &= RHS;
223 return *this;
225 APSInt& operator|=(const APSInt& RHS) {
226 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
227 static_cast<APInt&>(*this) |= RHS;
228 return *this;
230 APSInt& operator^=(const APSInt& RHS) {
231 assert(IsUnsigned == RHS.IsUnsigned && "Signedness mismatch!");
232 static_cast<APInt&>(*this) ^= RHS;
233 return *this;
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.
300 if (I1.isSigned()) {
301 assert(!I2.isSigned() && "Expected signed mismatch");
302 if (I1.isNegative())
303 return -1;
304 } else {
305 assert(I2.isSigned() && "Expected signed mismatch");
306 if (I2.isNegative())
307 return 1;
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());
330 return OS;
333 } // end namespace llvm
335 #endif