add missing operator
[oota-llvm.git] / include / llvm / ADT / APInt.h
1 //===-- llvm/Support/APInt.h - For Arbitrary Precision Integer -*- C++ -*--===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Sheng Zhou and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements a class to represent arbitrary precision integral
11 // constant values and operations on them.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_APINT_H
16 #define LLVM_APINT_H
17
18 #include "llvm/Support/DataTypes.h"
19 #include <cassert>
20 #include <string>
21
22 namespace llvm {
23
24 //===----------------------------------------------------------------------===//
25 //                              APInt Class
26 //===----------------------------------------------------------------------===//
27
28 /// APInt - This class represents arbitrary precision constant integral values.
29 /// It is a functional replacement for common case unsigned integer type like 
30 /// "unsigned", "unsigned long" or "uint64_t", but also allows non-byte-width 
31 /// integer sizes and large integer value types such as 3-bits, 15-bits, or more
32 /// than 64-bits of precision. APInt provides a variety of arithmetic operators 
33 /// and methods to manipulate integer values of any bit-width. It supports both
34 /// the typical integer arithmetic and comparison operations as well as bitwise
35 /// manipulation.
36 ///
37 /// The class has several invariants worth noting:
38 ///   * All bit, byte, and word positions are zero-based.
39 ///   * Once the bit width is set, it doesn't change except by the Truncate, 
40 ///     SignExtend, or ZeroExtend operations.
41 ///   * All binary operators must be on APInt instances of the same bit width.
42 ///     Attempting to use these operators on instances with different bit 
43 ///     widths will yield an assertion.
44 ///   * The value is stored canonically as an unsigned value. For operations
45 ///     where it makes a difference, there are both signed and unsigned variants
46 ///     of the operation. For example, sdiv and udiv. However, because the bit
47 ///     widths must be the same, operations such as Mul and Add produce the same
48 ///     results regardless of whether the values are interpreted as signed or
49 ///     not.
50 ///   * In general, the class tries to follow the style of computation that LLVM
51 ///     uses in its IR. This simplifies its use for LLVM.
52 ///
53 /// @brief Class for arbitrary precision integers.
54 class APInt {
55
56   uint32_t BitWidth;      ///< The number of bits in this APInt.
57
58   /// This union is used to store the integer value. When the
59   /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
60   union {
61     uint64_t VAL;    ///< Used to store the <= 64 bits integer value.
62     uint64_t *pVal;  ///< Used to store the >64 bits integer value.
63   };
64
65   /// This enum is used to hold the constants we needed for APInt.
66   enum {
67     APINT_BITS_PER_WORD = sizeof(uint64_t) * 8, ///< Bits in a word
68     APINT_WORD_SIZE = sizeof(uint64_t)          ///< Byte size of a word
69   };
70
71   /// This constructor is used only internally for speed of construction of
72   /// temporaries. It is unsafe for general use so it is not public.
73   /// @brief Fast internal constructor
74   APInt(uint64_t* val, uint32_t bits) : BitWidth(bits), pVal(val) { }
75
76   /// @returns true if the number of bits <= 64, false otherwise.
77   /// @brief Determine if this APInt just has one word to store value.
78   inline bool isSingleWord() const { 
79     return BitWidth <= APINT_BITS_PER_WORD; 
80   }
81
82   /// @returns the word position for the specified bit position.
83   /// @brief Determine which word a bit is in.
84   static inline uint32_t whichWord(uint32_t bitPosition) { 
85     return bitPosition / APINT_BITS_PER_WORD; 
86   }
87
88   /// @returns the bit position in a word for the specified bit position 
89   /// in the APInt.
90   /// @brief Determine which bit in a word a bit is in.
91   static inline uint32_t whichBit(uint32_t bitPosition) { 
92     return bitPosition % APINT_BITS_PER_WORD; 
93   }
94
95   /// This method generates and returns a uint64_t (word) mask for a single 
96   /// bit at a specific bit position. This is used to mask the bit in the 
97   /// corresponding word.
98   /// @returns a uint64_t with only bit at "whichBit(bitPosition)" set
99   /// @brief Get a single bit mask.
100   static inline uint64_t maskBit(uint32_t bitPosition) { 
101     return 1ULL << whichBit(bitPosition); 
102   }
103
104   /// This method is used internally to clear the to "N" bits in the high order
105   /// word that are not used by the APInt. This is needed after the most 
106   /// significant word is assigned a value to ensure that those bits are 
107   /// zero'd out.
108   /// @brief Clear unused high order bits
109   inline APInt& clearUnusedBits() {
110     // Compute how many bits are used in the final word
111     uint32_t wordBits = BitWidth % APINT_BITS_PER_WORD;
112     if (wordBits == 0)
113       // If all bits are used, we want to leave the value alone. This also
114       // avoids the undefined behavior of >> when the shfit is the same size as
115       // the word size (64).
116       return *this;
117
118     // Mask out the hight bits.
119     uint64_t mask = ~uint64_t(0ULL) >> (APINT_BITS_PER_WORD - wordBits);
120     if (isSingleWord())
121       VAL &= mask;
122     else
123       pVal[getNumWords() - 1] &= mask;
124     return *this;
125   }
126
127   /// @returns the corresponding word for the specified bit position.
128   /// @brief Get the word corresponding to a bit position
129   inline uint64_t getWord(uint32_t bitPosition) const { 
130     return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; 
131   }
132
133   /// This is used by the constructors that take string arguments.
134   /// @brief Convert a char array into an APInt
135   void fromString(uint32_t numBits, const char *strStart, uint32_t slen, 
136                   uint8_t radix);
137
138   /// This is used by the toString method to divide by the radix. It simply
139   /// provides a more convenient form of divide for internal use since KnuthDiv
140   /// has specific constraints on its inputs. If those constraints are not met
141   /// then it provides a simpler form of divide.
142   /// @brief An internal division function for dividing APInts.
143   static void divide(const APInt LHS, uint32_t lhsWords, 
144                      const APInt &RHS, uint32_t rhsWords,
145                      APInt *Quotient, APInt *Remainder);
146
147 #ifndef NDEBUG
148   /// @brief debug method
149   void dump() const;
150 #endif
151
152 public:
153   /// @name Constructors
154   /// @{
155   /// If isSigned is true then val is treated as if it were a signed value
156   /// (i.e. as an int64_t) and the appropriate sign extension to the bit width
157   /// will be done. Otherwise, no sign extension occurs (high order bits beyond
158   /// the range of val are zero filled).
159   /// @param numBits the bit width of the constructed APInt
160   /// @param val the initial value of the APInt
161   /// @param isSigned how to treat signedness of val
162   /// @brief Create a new APInt of numBits width, initialized as val.
163   APInt(uint32_t numBits, uint64_t val, bool isSigned = false);
164
165   /// Note that numWords can be smaller or larger than the corresponding bit
166   /// width but any extraneous bits will be dropped.
167   /// @param numBits the bit width of the constructed APInt
168   /// @param numWords the number of words in bigVal
169   /// @param bigVal a sequence of words to form the initial value of the APInt
170   /// @brief Construct an APInt of numBits width, initialized as bigVal[].
171   APInt(uint32_t numBits, uint32_t numWords, uint64_t bigVal[]);
172
173   /// This constructor interprets Val as a string in the given radix. The 
174   /// interpretation stops when the first charater that is not suitable for the
175   /// radix is encountered. Acceptable radix values are 2, 8, 10 and 16. It is
176   /// an error for the value implied by the string to require more bits than 
177   /// numBits.
178   /// @param numBits the bit width of the constructed APInt
179   /// @param val the string to be interpreted
180   /// @param radix the radix of Val to use for the intepretation
181   /// @brief Construct an APInt from a string representation.
182   APInt(uint32_t numBits, const std::string& val, uint8_t radix);
183
184   /// This constructor interprets the slen characters starting at StrStart as
185   /// a string in the given radix. The interpretation stops when the first 
186   /// character that is not suitable for the radix is encountered. Acceptable
187   /// radix values are 2, 8, 10 and 16. It is an error for the value implied by
188   /// the string to require more bits than numBits.
189   /// @param numBits the bit width of the constructed APInt
190   /// @param strStart the start of the string to be interpreted
191   /// @param slen the maximum number of characters to interpret
192   /// @brief Construct an APInt from a string representation.
193   APInt(uint32_t numBits, const char strStart[], uint32_t slen, uint8_t radix);
194
195   /// Simply makes *this a copy of that.
196   /// @brief Copy Constructor.
197   APInt(const APInt& that);
198
199   /// @brief Destructor.
200   ~APInt();
201
202   /// @}
203   /// @name Value Tests
204   /// @{
205   /// This tests the high bit of this APInt to determine if it is set.
206   /// @returns true if this APInt is negative, false otherwise
207   /// @brief Determine sign of this APInt.
208   bool isNegative() const {
209     return (*this)[BitWidth - 1];
210   }
211
212   /// This tests the high bit of the APInt to determine if it is unset.
213   /// @brief Determine if this APInt Value is positive (not negative).
214   bool isPositive() const {
215     return !isNegative();
216   }
217
218   /// This tests if the value of this APInt is strictly positive (> 0).
219   /// @returns true if this APInt is Positive and not zero.
220   /// @brief Determine if this APInt Value is strictly positive.
221   inline bool isStrictlyPositive() const {
222     return isPositive() && (*this) != 0;
223   }
224
225   /// This checks to see if the value has all bits of the APInt are set or not.
226   /// @brief Determine if all bits are set
227   inline bool isAllOnesValue() const {
228     return countPopulation() == BitWidth;
229   }
230
231   /// This checks to see if the value of this APInt is the maximum unsigned
232   /// value for the APInt's bit width.
233   /// @brief Determine if this is the largest unsigned value.
234   bool isMaxValue() const {
235     return countPopulation() == BitWidth;
236   }
237
238   /// This checks to see if the value of this APInt is the maximum signed
239   /// value for the APInt's bit width.
240   /// @brief Determine if this is the largest signed value.
241   bool isMaxSignedValue() const {
242     return BitWidth == 1 ? VAL == 0 :
243                           !isNegative() && countPopulation() == BitWidth - 1;
244   }
245
246   /// This checks to see if the value of this APInt is the minimum unsigned
247   /// value for the APInt's bit width.
248   /// @brief Determine if this is the smallest unsigned value.
249   bool isMinValue() const {
250     return countPopulation() == 0;
251   }
252
253   /// This checks to see if the value of this APInt is the minimum signed
254   /// value for the APInt's bit width.
255   /// @brief Determine if this is the smallest signed value.
256   bool isMinSignedValue() const {
257     return BitWidth == 1 ? VAL == 1 :
258                            isNegative() && countPopulation() == 1;
259   }
260
261   /// @brief Check if this APInt has an N-bits integer value.
262   inline bool isIntN(uint32_t N) const {
263     assert(N && "N == 0 ???");
264     if (isSingleWord()) {
265       return VAL == (VAL & (~0ULL >> (64 - N)));
266     } else {
267       APInt Tmp(N, getNumWords(), pVal);
268       return Tmp == (*this);
269     }
270   }
271
272   /// @returns true if the argument APInt value is a power of two > 0.
273   bool isPowerOf2() const; 
274
275   /// isSignBit - Return true if this is the value returned by getSignBit.
276   bool isSignBit() const { return isMinSignedValue(); }
277   
278   /// This converts the APInt to a boolean value as a test against zero.
279   /// @brief Boolean conversion function. 
280   inline bool getBoolValue() const {
281     return countLeadingZeros() != BitWidth;
282   }
283
284   /// @}
285   /// @name Value Generators
286   /// @{
287   /// @brief Gets maximum unsigned value of APInt for specific bit width.
288   static APInt getMaxValue(uint32_t numBits) {
289     return APInt(numBits, 0).set();
290   }
291
292   /// @brief Gets maximum signed value of APInt for a specific bit width.
293   static APInt getSignedMaxValue(uint32_t numBits) {
294     return APInt(numBits, 0).set().clear(numBits - 1);
295   }
296
297   /// @brief Gets minimum unsigned value of APInt for a specific bit width.
298   static APInt getMinValue(uint32_t numBits) {
299     return APInt(numBits, 0);
300   }
301
302   /// @brief Gets minimum signed value of APInt for a specific bit width.
303   static APInt getSignedMinValue(uint32_t numBits) {
304     return APInt(numBits, 0).set(numBits - 1);
305   }
306
307   /// getSignBit - This is just a wrapper function of getSignedMinValue(), and
308   /// it helps code readability when we want to get a SignBit.
309   /// @brief Get the SignBit for a specific bit width.
310   inline static APInt getSignBit(uint32_t BitWidth) {
311     return getSignedMinValue(BitWidth);
312   }
313
314   /// @returns the all-ones value for an APInt of the specified bit-width.
315   /// @brief Get the all-ones value.
316   static APInt getAllOnesValue(uint32_t numBits) {
317     return APInt(numBits, 0).set();
318   }
319
320   /// @returns the '0' value for an APInt of the specified bit-width.
321   /// @brief Get the '0' value.
322   static APInt getNullValue(uint32_t numBits) {
323     return APInt(numBits, 0);
324   }
325
326   /// Get an APInt with the same BitWidth as this APInt, just zero mask
327   /// the low bits and right shift to the least significant bit.
328   /// @returns the high "numBits" bits of this APInt.
329   APInt getHiBits(uint32_t numBits) const;
330
331   /// Get an APInt with the same BitWidth as this APInt, just zero mask
332   /// the high bits.
333   /// @returns the low "numBits" bits of this APInt.
334   APInt getLoBits(uint32_t numBits) const;
335
336   /// Constructs an APInt value that has a contiguous range of bits set. The
337   /// bits from loBit to hiBit will be set. All other bits will be zero. For
338   /// example, with parameters(32, 15, 0) you would get 0x0000FFFF. If hiBit is
339   /// less than loBit then the set bits "wrap". For example, with 
340   /// parameters (32, 3, 28), you would get 0xF000000F. 
341   /// @param numBits the intended bit width of the result
342   /// @param loBit the index of the lowest bit set.
343   /// @param hiBit the index of the highest bit set.
344   /// @returns An APInt value with the requested bits set.
345   /// @brief Get a value with a block of bits set.
346   static APInt getBitsSet(uint32_t numBits, uint32_t loBit, uint32_t hiBit) {
347     assert(hiBit < numBits && "hiBit out of range");
348     assert(loBit < numBits && "loBit out of range");
349     if (hiBit < loBit)
350       return getLowBitsSet(numBits, hiBit+1) |
351              getHighBitsSet(numBits, numBits-loBit+1);
352     return getLowBitsSet(numBits, hiBit-loBit+1).shl(loBit);
353   }
354
355   /// Constructs an APInt value that has the top hiBitsSet bits set.
356   /// @param numBits the bitwidth of the result
357   /// @param hiBitsSet the number of high-order bits set in the result.
358   /// @brief Get a value with high bits set
359   static APInt getHighBitsSet(uint32_t numBits, uint32_t hiBitsSet) {
360     assert(hiBitsSet <= numBits && "Too many bits to set!");
361     // Handle a degenerate case, to avoid shifting by word size
362     if (hiBitsSet == 0)
363       return APInt(numBits, 0);
364     uint32_t shiftAmt = numBits - hiBitsSet;
365     // For small values, return quickly
366     if (numBits <= APINT_BITS_PER_WORD)
367       return APInt(numBits, ~0ULL << shiftAmt);
368     return (~APInt(numBits, 0)).shl(shiftAmt);
369   }
370
371   /// Constructs an APInt value that has the bottom loBitsSet bits set.
372   /// @param numBits the bitwidth of the result
373   /// @param loBitsSet the number of low-order bits set in the result.
374   /// @brief Get a value with low bits set
375   static APInt getLowBitsSet(uint32_t numBits, uint32_t loBitsSet) {
376     assert(loBitsSet <= numBits && "Too many bits to set!");
377     // Handle a degenerate case, to avoid shifting by word size
378     if (loBitsSet == 0)
379       return APInt(numBits, 0);
380     if (loBitsSet == APINT_BITS_PER_WORD)
381       return APInt(numBits, -1ULL);
382     // For small values, return quickly
383     if (numBits < APINT_BITS_PER_WORD)
384       return APInt(numBits, (1ULL << loBitsSet) - 1);
385     return (~APInt(numBits, 0)).lshr(numBits - loBitsSet);
386   }
387
388   /// The hash value is computed as the sum of the words and the bit width.
389   /// @returns A hash value computed from the sum of the APInt words.
390   /// @brief Get a hash value based on this APInt
391   uint64_t getHashValue() const;
392
393   /// This function returns a pointer to the internal storage of the APInt. 
394   /// This is useful for writing out the APInt in binary form without any
395   /// conversions.
396   inline const uint64_t* getRawData() const {
397     if (isSingleWord())
398       return &VAL;
399     return &pVal[0];
400   }
401
402   /// @}
403   /// @name Unary Operators
404   /// @{
405   /// @returns a new APInt value representing *this incremented by one
406   /// @brief Postfix increment operator.
407   inline const APInt operator++(int) {
408     APInt API(*this);
409     ++(*this);
410     return API;
411   }
412
413   /// @returns *this incremented by one
414   /// @brief Prefix increment operator.
415   APInt& operator++();
416
417   /// @returns a new APInt representing *this decremented by one.
418   /// @brief Postfix decrement operator. 
419   inline const APInt operator--(int) {
420     APInt API(*this);
421     --(*this);
422     return API;
423   }
424
425   /// @returns *this decremented by one.
426   /// @brief Prefix decrement operator. 
427   APInt& operator--();
428
429   /// Performs a bitwise complement operation on this APInt. 
430   /// @returns an APInt that is the bitwise complement of *this
431   /// @brief Unary bitwise complement operator. 
432   APInt operator~() const;
433
434   /// Negates *this using two's complement logic.
435   /// @returns An APInt value representing the negation of *this.
436   /// @brief Unary negation operator
437   inline APInt operator-() const {
438     return APInt(BitWidth, 0) - (*this);
439   }
440
441   /// Performs logical negation operation on this APInt.
442   /// @returns true if *this is zero, false otherwise.
443   /// @brief Logical negation operator. 
444   bool operator !() const;
445
446   /// @}
447   /// @name Assignment Operators
448   /// @{
449   /// @returns *this after assignment of RHS.
450   /// @brief Copy assignment operator. 
451   APInt& operator=(const APInt& RHS);
452
453   /// The RHS value is assigned to *this. If the significant bits in RHS exceed
454   /// the bit width, the excess bits are truncated. If the bit width is larger
455   /// than 64, the value is zero filled in the unspecified high order bits.
456   /// @returns *this after assignment of RHS value.
457   /// @brief Assignment operator. 
458   APInt& operator=(uint64_t RHS);
459
460   /// Performs a bitwise AND operation on this APInt and RHS. The result is
461   /// assigned to *this. 
462   /// @returns *this after ANDing with RHS.
463   /// @brief Bitwise AND assignment operator. 
464   APInt& operator&=(const APInt& RHS);
465
466   /// Performs a bitwise OR operation on this APInt and RHS. The result is 
467   /// assigned *this;
468   /// @returns *this after ORing with RHS.
469   /// @brief Bitwise OR assignment operator. 
470   APInt& operator|=(const APInt& RHS);
471
472   /// Performs a bitwise XOR operation on this APInt and RHS. The result is
473   /// assigned to *this.
474   /// @returns *this after XORing with RHS.
475   /// @brief Bitwise XOR assignment operator. 
476   APInt& operator^=(const APInt& RHS);
477
478   /// Multiplies this APInt by RHS and assigns the result to *this.
479   /// @returns *this
480   /// @brief Multiplication assignment operator. 
481   APInt& operator*=(const APInt& RHS);
482
483   /// Adds RHS to *this and assigns the result to *this.
484   /// @returns *this
485   /// @brief Addition assignment operator. 
486   APInt& operator+=(const APInt& RHS);
487
488   /// Subtracts RHS from *this and assigns the result to *this.
489   /// @returns *this
490   /// @brief Subtraction assignment operator. 
491   APInt& operator-=(const APInt& RHS);
492
493   /// Shifts *this left by shiftAmt and assigns the result to *this.
494   /// @returns *this after shifting left by shiftAmt
495   /// @brief Left-shift assignment function.
496   inline APInt& operator<<=(uint32_t shiftAmt) {
497     *this = shl(shiftAmt);
498     return *this;
499   }
500
501   /// @}
502   /// @name Binary Operators
503   /// @{
504   /// Performs a bitwise AND operation on *this and RHS.
505   /// @returns An APInt value representing the bitwise AND of *this and RHS.
506   /// @brief Bitwise AND operator. 
507   APInt operator&(const APInt& RHS) const;
508   APInt And(const APInt& RHS) const {
509     return this->operator&(RHS);
510   }
511
512   /// Performs a bitwise OR operation on *this and RHS.
513   /// @returns An APInt value representing the bitwise OR of *this and RHS.
514   /// @brief Bitwise OR operator. 
515   APInt operator|(const APInt& RHS) const;
516   APInt Or(const APInt& RHS) const {
517     return this->operator|(RHS);
518   }
519
520   /// Performs a bitwise XOR operation on *this and RHS.
521   /// @returns An APInt value representing the bitwise XOR of *this and RHS.
522   /// @brief Bitwise XOR operator. 
523   APInt operator^(const APInt& RHS) const;
524   APInt Xor(const APInt& RHS) const {
525     return this->operator^(RHS);
526   }
527
528   /// Multiplies this APInt by RHS and returns the result.
529   /// @brief Multiplication operator. 
530   APInt operator*(const APInt& RHS) const;
531
532   /// Adds RHS to this APInt and returns the result.
533   /// @brief Addition operator. 
534   APInt operator+(const APInt& RHS) const;
535   APInt operator+(uint64_t RHS) const {
536     return (*this) + APInt(BitWidth, RHS);
537   }
538
539   /// Subtracts RHS from this APInt and returns the result.
540   /// @brief Subtraction operator. 
541   APInt operator-(const APInt& RHS) const;
542   APInt operator-(uint64_t RHS) const {
543     return (*this) - APInt(BitWidth, RHS);
544   }
545   
546   APInt operator<<(unsigned Bits) const {
547     return shl(Bits);
548   }
549
550   /// Arithmetic right-shift this APInt by shiftAmt.
551   /// @brief Arithmetic right-shift function.
552   APInt ashr(uint32_t shiftAmt) const;
553
554   /// Logical right-shift this APInt by shiftAmt.
555   /// @brief Logical right-shift function.
556   APInt lshr(uint32_t shiftAmt) const;
557
558   /// Left-shift this APInt by shiftAmt.
559   /// @brief Left-shift function.
560   APInt shl(uint32_t shiftAmt) const;
561
562   /// Perform an unsigned divide operation on this APInt by RHS. Both this and
563   /// RHS are treated as unsigned quantities for purposes of this division.
564   /// @returns a new APInt value containing the division result
565   /// @brief Unsigned division operation.
566   APInt udiv(const APInt& RHS) const;
567
568   /// Signed divide this APInt by APInt RHS.
569   /// @brief Signed division function for APInt.
570   inline APInt sdiv(const APInt& RHS) const {
571     if (isNegative())
572       if (RHS.isNegative())
573         return (-(*this)).udiv(-RHS);
574       else
575         return -((-(*this)).udiv(RHS));
576     else if (RHS.isNegative())
577       return -(this->udiv(-RHS));
578     return this->udiv(RHS);
579   }
580
581   /// Perform an unsigned remainder operation on this APInt with RHS being the
582   /// divisor. Both this and RHS are treated as unsigned quantities for purposes
583   /// of this operation. Note that this is a true remainder operation and not
584   /// a modulo operation because the sign follows the sign of the dividend
585   /// which is *this.
586   /// @returns a new APInt value containing the remainder result
587   /// @brief Unsigned remainder operation.
588   APInt urem(const APInt& RHS) const;
589
590   /// Signed remainder operation on APInt.
591   /// @brief Function for signed remainder operation.
592   inline APInt srem(const APInt& RHS) const {
593     if (isNegative())
594       if (RHS.isNegative())
595         return -((-(*this)).urem(-RHS));
596       else
597         return -((-(*this)).urem(RHS));
598     else if (RHS.isNegative())
599       return this->urem(-RHS);
600     return this->urem(RHS);
601   }
602
603   /// @returns the bit value at bitPosition
604   /// @brief Array-indexing support.
605   bool operator[](uint32_t bitPosition) const;
606
607   /// @}
608   /// @name Comparison Operators
609   /// @{
610   /// Compares this APInt with RHS for the validity of the equality
611   /// relationship.
612   /// @brief Equality operator. 
613   bool operator==(const APInt& RHS) const;
614
615   /// Compares this APInt with a uint64_t for the validity of the equality 
616   /// relationship.
617   /// @returns true if *this == Val
618   /// @brief Equality operator.
619   bool operator==(uint64_t Val) const;
620
621   /// Compares this APInt with RHS for the validity of the equality
622   /// relationship.
623   /// @returns true if *this == Val
624   /// @brief Equality comparison.
625   bool eq(const APInt &RHS) const {
626     return (*this) == RHS; 
627   }
628
629   /// Compares this APInt with RHS for the validity of the inequality
630   /// relationship.
631   /// @returns true if *this != Val
632   /// @brief Inequality operator. 
633   inline bool operator!=(const APInt& RHS) const {
634     return !((*this) == RHS);
635   }
636
637   /// Compares this APInt with a uint64_t for the validity of the inequality 
638   /// relationship.
639   /// @returns true if *this != Val
640   /// @brief Inequality operator. 
641   inline bool operator!=(uint64_t Val) const {
642     return !((*this) == Val);
643   }
644   
645   /// Compares this APInt with RHS for the validity of the inequality
646   /// relationship.
647   /// @returns true if *this != Val
648   /// @brief Inequality comparison
649   bool ne(const APInt &RHS) const {
650     return !((*this) == RHS);
651   }
652
653   /// Regards both *this and RHS as unsigned quantities and compares them for
654   /// the validity of the less-than relationship.
655   /// @returns true if *this < RHS when both are considered unsigned.
656   /// @brief Unsigned less than comparison
657   bool ult(const APInt& RHS) const;
658
659   /// Regards both *this and RHS as signed quantities and compares them for
660   /// validity of the less-than relationship.
661   /// @returns true if *this < RHS when both are considered signed.
662   /// @brief Signed less than comparison
663   bool slt(const APInt& RHS) const;
664
665   /// Regards both *this and RHS as unsigned quantities and compares them for
666   /// validity of the less-or-equal relationship.
667   /// @returns true if *this <= RHS when both are considered unsigned.
668   /// @brief Unsigned less or equal comparison
669   bool ule(const APInt& RHS) const {
670     return ult(RHS) || eq(RHS);
671   }
672
673   /// Regards both *this and RHS as signed quantities and compares them for
674   /// validity of the less-or-equal relationship.
675   /// @returns true if *this <= RHS when both are considered signed.
676   /// @brief Signed less or equal comparison
677   bool sle(const APInt& RHS) const {
678     return slt(RHS) || eq(RHS);
679   }
680
681   /// Regards both *this and RHS as unsigned quantities and compares them for
682   /// the validity of the greater-than relationship.
683   /// @returns true if *this > RHS when both are considered unsigned.
684   /// @brief Unsigned greather than comparison
685   bool ugt(const APInt& RHS) const {
686     return !ult(RHS) && !eq(RHS);
687   }
688
689   /// Regards both *this and RHS as signed quantities and compares them for
690   /// the validity of the greater-than relationship.
691   /// @returns true if *this > RHS when both are considered signed.
692   /// @brief Signed greather than comparison
693   bool sgt(const APInt& RHS) const {
694     return !slt(RHS) && !eq(RHS);
695   }
696
697   /// Regards both *this and RHS as unsigned quantities and compares them for
698   /// validity of the greater-or-equal relationship.
699   /// @returns true if *this >= RHS when both are considered unsigned.
700   /// @brief Unsigned greater or equal comparison
701   bool uge(const APInt& RHS) const {
702     return !ult(RHS);
703   }
704
705   /// Regards both *this and RHS as signed quantities and compares them for
706   /// validity of the greater-or-equal relationship.
707   /// @returns true if *this >= RHS when both are considered signed.
708   /// @brief Signed greather or equal comparison
709   bool sge(const APInt& RHS) const {
710     return !slt(RHS);
711   }
712
713   /// @}
714   /// @name Resizing Operators
715   /// @{
716   /// Truncate the APInt to a specified width. It is an error to specify a width
717   /// that is greater than or equal to the current width. 
718   /// @brief Truncate to new width.
719   APInt &trunc(uint32_t width);
720
721   /// This operation sign extends the APInt to a new width. If the high order
722   /// bit is set, the fill on the left will be done with 1 bits, otherwise zero.
723   /// It is an error to specify a width that is less than or equal to the 
724   /// current width.
725   /// @brief Sign extend to a new width.
726   APInt &sext(uint32_t width);
727
728   /// This operation zero extends the APInt to a new width. The high order bits
729   /// are filled with 0 bits.  It is an error to specify a width that is less 
730   /// than or equal to the current width.
731   /// @brief Zero extend to a new width.
732   APInt &zext(uint32_t width);
733
734   /// Make this APInt have the bit width given by \p width. The value is sign
735   /// extended, truncated, or left alone to make it that width.
736   /// @brief Sign extend or truncate to width
737   APInt &sextOrTrunc(uint32_t width);
738
739   /// Make this APInt have the bit width given by \p width. The value is zero
740   /// extended, truncated, or left alone to make it that width.
741   /// @brief Zero extend or truncate to width
742   APInt &zextOrTrunc(uint32_t width);
743
744   /// @}
745   /// @name Bit Manipulation Operators
746   /// @{
747   /// @brief Set every bit to 1.
748   APInt& set();
749
750   /// Set the given bit to 1 whose position is given as "bitPosition".
751   /// @brief Set a given bit to 1.
752   APInt& set(uint32_t bitPosition);
753
754   /// @brief Set every bit to 0.
755   APInt& clear();
756
757   /// Set the given bit to 0 whose position is given as "bitPosition".
758   /// @brief Set a given bit to 0.
759   APInt& clear(uint32_t bitPosition);
760
761   /// @brief Toggle every bit to its opposite value.
762   APInt& flip();
763
764   /// Toggle a given bit to its opposite value whose position is given 
765   /// as "bitPosition".
766   /// @brief Toggles a given bit to its opposite value.
767   APInt& flip(uint32_t bitPosition);
768
769   /// @}
770   /// @name Value Characterization Functions
771   /// @{
772
773   /// @returns the total number of bits.
774   inline uint32_t getBitWidth() const { 
775     return BitWidth; 
776   }
777
778   /// Here one word's bitwidth equals to that of uint64_t.
779   /// @returns the number of words to hold the integer value of this APInt.
780   /// @brief Get the number of words.
781   inline uint32_t getNumWords() const {
782     return (BitWidth + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD;
783   }
784
785   /// This function returns the number of active bits which is defined as the
786   /// bit width minus the number of leading zeros. This is used in several
787   /// computations to see how "wide" the value is.
788   /// @brief Compute the number of active bits in the value
789   inline uint32_t getActiveBits() const {
790     return BitWidth - countLeadingZeros();
791   }
792
793   /// This function returns the number of active words in the value of this
794   /// APInt. This is used in conjunction with getActiveData to extract the raw
795   /// value of the APInt.
796   inline uint32_t getActiveWords() const {
797     return whichWord(getActiveBits()-1) + 1;
798   }
799
800   /// Computes the minimum bit width for this APInt while considering it to be
801   /// a signed (and probably negative) value. If the value is not negative, 
802   /// this function returns the same value as getActiveBits(). Otherwise, it
803   /// returns the smallest bit width that will retain the negative value. For
804   /// example, -1 can be written as 0b1 or 0xFFFFFFFFFF. 0b1 is shorter and so
805   /// for -1, this function will always return 1.
806   /// @brief Get the minimum bit size for this signed APInt 
807   inline uint32_t getMinSignedBits() const {
808     if (isNegative())
809       return BitWidth - countLeadingOnes() + 1;
810     return getActiveBits();
811   }
812
813   /// This method attempts to return the value of this APInt as a zero extended
814   /// uint64_t. The bitwidth must be <= 64 or the value must fit within a
815   /// uint64_t. Otherwise an assertion will result.
816   /// @brief Get zero extended value
817   inline uint64_t getZExtValue() const {
818     if (isSingleWord())
819       return VAL;
820     assert(getActiveBits() <= 64 && "Too many bits for uint64_t");
821     return pVal[0];
822   }
823
824   /// This method attempts to return the value of this APInt as a sign extended
825   /// int64_t. The bit width must be <= 64 or the value must fit within an
826   /// int64_t. Otherwise an assertion will result.
827   /// @brief Get sign extended value
828   inline int64_t getSExtValue() const {
829     if (isSingleWord())
830       return int64_t(VAL << (APINT_BITS_PER_WORD - BitWidth)) >> 
831                      (APINT_BITS_PER_WORD - BitWidth);
832     assert(getActiveBits() <= 64 && "Too many bits for int64_t");
833     return int64_t(pVal[0]);
834   }
835   /// countLeadingZeros - This function is an APInt version of the
836   /// countLeadingZeros_{32,64} functions in MathExtras.h. It counts the number
837   /// of zeros from the most significant bit to the first one bit.
838   /// @returns getNumWords() * APINT_BITS_PER_WORD if the value is zero.
839   /// @returns the number of zeros from the most significant bit to the first
840   /// one bits.
841   /// @brief Count the number of leading one bits.
842   uint32_t countLeadingZeros() const;
843
844   /// countLeadingOnes - This function counts the number of contiguous 1 bits
845   /// in the high order bits. The count stops when the first 0 bit is reached.
846   /// @returns 0 if the high order bit is not set
847   /// @returns the number of 1 bits from the most significant to the least
848   /// @brief Count the number of leading one bits.
849   uint32_t countLeadingOnes() const;
850
851   /// countTrailingZeros - This function is an APInt version of the 
852   /// countTrailingZoers_{32,64} functions in MathExtras.h. It counts 
853   /// the number of zeros from the least significant bit to the first one bit.
854   /// @returns getNumWords() * APINT_BITS_PER_WORD if the value is zero.
855   /// @returns the number of zeros from the least significant bit to the first
856   /// one bit.
857   /// @brief Count the number of trailing zero bits.
858   uint32_t countTrailingZeros() const;
859
860   /// countPopulation - This function is an APInt version of the
861   /// countPopulation_{32,64} functions in MathExtras.h. It counts the number
862   /// of 1 bits in the APInt value. 
863   /// @returns 0 if the value is zero.
864   /// @returns the number of set bits.
865   /// @brief Count the number of bits set.
866   uint32_t countPopulation() const; 
867
868   /// @}
869   /// @name Conversion Functions
870   /// @{
871
872   /// This is used internally to convert an APInt to a string.
873   /// @brief Converts an APInt to a std::string
874   std::string toString(uint8_t radix, bool wantSigned) const;
875
876   /// Considers the APInt to be unsigned and converts it into a string in the
877   /// radix given. The radix can be 2, 8, 10 or 16.
878   /// @returns a character interpretation of the APInt
879   /// @brief Convert unsigned APInt to string representation.
880   inline std::string toString(uint8_t radix = 10) const {
881     return toString(radix, false);
882   }
883
884   /// Considers the APInt to be unsigned and converts it into a string in the
885   /// radix given. The radix can be 2, 8, 10 or 16.
886   /// @returns a character interpretation of the APInt
887   /// @brief Convert unsigned APInt to string representation.
888   inline std::string toStringSigned(uint8_t radix = 10) const {
889     return toString(radix, true);
890   }
891
892   /// @returns a byte-swapped representation of this APInt Value.
893   APInt byteSwap() const;
894
895   /// @brief Converts this APInt to a double value.
896   double roundToDouble(bool isSigned) const;
897
898   /// @brief Converts this unsigned APInt to a double value.
899   double roundToDouble() const {
900     return roundToDouble(false);
901   }
902
903   /// @brief Converts this signed APInt to a double value.
904   double signedRoundToDouble() const {
905     return roundToDouble(true);
906   }
907
908   /// The conversion does not do a translation from integer to double, it just
909   /// re-interprets the bits as a double. Note that it is valid to do this on
910   /// any bit width. Exactly 64 bits will be translated.
911   /// @brief Converts APInt bits to a double
912   double bitsToDouble() const {
913     union {
914       uint64_t I;
915       double D;
916     } T;
917     T.I = (isSingleWord() ? VAL : pVal[0]);
918     return T.D;
919   }
920
921   /// The conversion does not do a translation from integer to float, it just
922   /// re-interprets the bits as a float. Note that it is valid to do this on
923   /// any bit width. Exactly 32 bits will be translated.
924   /// @brief Converts APInt bits to a double
925   float bitsToFloat() const {
926     union {
927       uint32_t I;
928       float F;
929     } T;
930     T.I = uint32_t((isSingleWord() ? VAL : pVal[0]));
931     return T.F;
932   }
933
934   /// The conversion does not do a translation from double to integer, it just
935   /// re-interprets the bits of the double. Note that it is valid to do this on
936   /// any bit width but bits from V may get truncated.
937   /// @brief Converts a double to APInt bits.
938   APInt& doubleToBits(double V) {
939     union {
940       uint64_t I;
941       double D;
942     } T;
943     T.D = V;
944     if (isSingleWord())
945       VAL = T.I;
946     else
947       pVal[0] = T.I;
948     return clearUnusedBits();
949   }
950
951   /// The conversion does not do a translation from float to integer, it just
952   /// re-interprets the bits of the float. Note that it is valid to do this on
953   /// any bit width but bits from V may get truncated.
954   /// @brief Converts a float to APInt bits.
955   APInt& floatToBits(float V) {
956     union {
957       uint32_t I;
958       float F;
959     } T;
960     T.F = V;
961     if (isSingleWord())
962       VAL = T.I;
963     else
964       pVal[0] = T.I;
965     return clearUnusedBits();
966   }
967
968   /// @}
969   /// @name Mathematics Operations
970   /// @{
971
972   /// @returns the floor log base 2 of this APInt.
973   inline uint32_t logBase2() const {
974     return BitWidth - 1 - countLeadingZeros();
975   }
976
977   /// @brief Compute the square root
978   APInt sqrt() const;
979
980   /// If *this is < 0 then return -(*this), otherwise *this;
981   /// @brief Get the absolute value;
982   APInt abs() const {
983     if (isNegative())
984       return -(*this);
985     return *this;
986   }
987   /// @}
988 };
989
990 inline bool operator==(uint64_t V1, const APInt& V2) {
991   return V2 == V1;
992 }
993
994 inline bool operator!=(uint64_t V1, const APInt& V2) {
995   return V2 != V1;
996 }
997
998 namespace APIntOps {
999
1000 /// @brief Determine the smaller of two APInts considered to be signed.
1001 inline APInt smin(const APInt &A, const APInt &B) {
1002   return A.slt(B) ? A : B;
1003 }
1004
1005 /// @brief Determine the larger of two APInts considered to be signed.
1006 inline APInt smax(const APInt &A, const APInt &B) {
1007   return A.sgt(B) ? A : B;
1008 }
1009
1010 /// @brief Determine the smaller of two APInts considered to be signed.
1011 inline APInt umin(const APInt &A, const APInt &B) {
1012   return A.ult(B) ? A : B;
1013 }
1014
1015 /// @brief Determine the larger of two APInts considered to be unsigned.
1016 inline APInt umax(const APInt &A, const APInt &B) {
1017   return A.ugt(B) ? A : B;
1018 }
1019
1020 /// @brief Check if the specified APInt has a N-bits integer value.
1021 inline bool isIntN(uint32_t N, const APInt& APIVal) {
1022   return APIVal.isIntN(N);
1023 }
1024
1025 /// @returns true if the argument APInt value is a sequence of ones
1026 /// starting at the least significant bit with the remainder zero.
1027 inline const bool isMask(uint32_t numBits, const APInt& APIVal) {
1028   return APIVal.getBoolValue() && ((APIVal + APInt(numBits,1)) & APIVal) == 0;
1029 }
1030
1031 /// @returns true if the argument APInt value contains a sequence of ones
1032 /// with the remainder zero.
1033 inline const bool isShiftedMask(uint32_t numBits, const APInt& APIVal) {
1034   return isMask(numBits, (APIVal - APInt(numBits,1)) | APIVal);
1035 }
1036
1037 /// @returns a byte-swapped representation of the specified APInt Value.
1038 inline APInt byteSwap(const APInt& APIVal) {
1039   return APIVal.byteSwap();
1040 }
1041
1042 /// @returns the floor log base 2 of the specified APInt value.
1043 inline uint32_t logBase2(const APInt& APIVal) {
1044   return APIVal.logBase2(); 
1045 }
1046
1047 /// GreatestCommonDivisor - This function returns the greatest common
1048 /// divisor of the two APInt values using Enclid's algorithm.
1049 /// @returns the greatest common divisor of Val1 and Val2
1050 /// @brief Compute GCD of two APInt values.
1051 APInt GreatestCommonDivisor(const APInt& Val1, const APInt& Val2);
1052
1053 /// Treats the APInt as an unsigned value for conversion purposes.
1054 /// @brief Converts the given APInt to a double value.
1055 inline double RoundAPIntToDouble(const APInt& APIVal) {
1056   return APIVal.roundToDouble();
1057 }
1058
1059 /// Treats the APInt as a signed value for conversion purposes.
1060 /// @brief Converts the given APInt to a double value.
1061 inline double RoundSignedAPIntToDouble(const APInt& APIVal) {
1062   return APIVal.signedRoundToDouble();
1063 }
1064
1065 /// @brief Converts the given APInt to a float vlalue.
1066 inline float RoundAPIntToFloat(const APInt& APIVal) {
1067   return float(RoundAPIntToDouble(APIVal));
1068 }
1069
1070 /// Treast the APInt as a signed value for conversion purposes.
1071 /// @brief Converts the given APInt to a float value.
1072 inline float RoundSignedAPIntToFloat(const APInt& APIVal) {
1073   return float(APIVal.signedRoundToDouble());
1074 }
1075
1076 /// RoundDoubleToAPInt - This function convert a double value to an APInt value.
1077 /// @brief Converts the given double value into a APInt.
1078 APInt RoundDoubleToAPInt(double Double, uint32_t width);
1079
1080 /// RoundFloatToAPInt - Converts a float value into an APInt value.
1081 /// @brief Converts a float value into a APInt.
1082 inline APInt RoundFloatToAPInt(float Float, uint32_t width) {
1083   return RoundDoubleToAPInt(double(Float), width);
1084 }
1085
1086 /// Arithmetic right-shift the APInt by shiftAmt.
1087 /// @brief Arithmetic right-shift function.
1088 inline APInt ashr(const APInt& LHS, uint32_t shiftAmt) {
1089   return LHS.ashr(shiftAmt);
1090 }
1091
1092 /// Logical right-shift the APInt by shiftAmt.
1093 /// @brief Logical right-shift function.
1094 inline APInt lshr(const APInt& LHS, uint32_t shiftAmt) {
1095   return LHS.lshr(shiftAmt);
1096 }
1097
1098 /// Left-shift the APInt by shiftAmt.
1099 /// @brief Left-shift function.
1100 inline APInt shl(const APInt& LHS, uint32_t shiftAmt) {
1101   return LHS.shl(shiftAmt);
1102 }
1103
1104 /// Signed divide APInt LHS by APInt RHS.
1105 /// @brief Signed division function for APInt.
1106 inline APInt sdiv(const APInt& LHS, const APInt& RHS) {
1107   return LHS.sdiv(RHS);
1108 }
1109
1110 /// Unsigned divide APInt LHS by APInt RHS.
1111 /// @brief Unsigned division function for APInt.
1112 inline APInt udiv(const APInt& LHS, const APInt& RHS) {
1113   return LHS.udiv(RHS);
1114 }
1115
1116 /// Signed remainder operation on APInt.
1117 /// @brief Function for signed remainder operation.
1118 inline APInt srem(const APInt& LHS, const APInt& RHS) {
1119   return LHS.srem(RHS);
1120 }
1121
1122 /// Unsigned remainder operation on APInt.
1123 /// @brief Function for unsigned remainder operation.
1124 inline APInt urem(const APInt& LHS, const APInt& RHS) {
1125   return LHS.urem(RHS);
1126 }
1127
1128 /// Performs multiplication on APInt values.
1129 /// @brief Function for multiplication operation.
1130 inline APInt mul(const APInt& LHS, const APInt& RHS) {
1131   return LHS * RHS;
1132 }
1133
1134 /// Performs addition on APInt values.
1135 /// @brief Function for addition operation.
1136 inline APInt add(const APInt& LHS, const APInt& RHS) {
1137   return LHS + RHS;
1138 }
1139
1140 /// Performs subtraction on APInt values.
1141 /// @brief Function for subtraction operation.
1142 inline APInt sub(const APInt& LHS, const APInt& RHS) {
1143   return LHS - RHS;
1144 }
1145
1146 /// Performs bitwise AND operation on APInt LHS and 
1147 /// APInt RHS.
1148 /// @brief Bitwise AND function for APInt.
1149 inline APInt And(const APInt& LHS, const APInt& RHS) {
1150   return LHS & RHS;
1151 }
1152
1153 /// Performs bitwise OR operation on APInt LHS and APInt RHS.
1154 /// @brief Bitwise OR function for APInt. 
1155 inline APInt Or(const APInt& LHS, const APInt& RHS) {
1156   return LHS | RHS;
1157 }
1158
1159 /// Performs bitwise XOR operation on APInt.
1160 /// @brief Bitwise XOR function for APInt.
1161 inline APInt Xor(const APInt& LHS, const APInt& RHS) {
1162   return LHS ^ RHS;
1163
1164
1165 /// Performs a bitwise complement operation on APInt.
1166 /// @brief Bitwise complement function. 
1167 inline APInt Not(const APInt& APIVal) {
1168   return ~APIVal;
1169 }
1170
1171 } // End of APIntOps namespace
1172
1173 } // End of llvm namespace
1174
1175 #endif