Implement countLeadingOnes() and getMinSignedBits(). This helps to minimize
[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.
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 /// Forward declaration.
25 class APInt;
26 namespace APIntOps {
27   APInt udiv(const APInt& LHS, const APInt& RHS);
28   APInt urem(const APInt& LHS, const APInt& RHS);
29 }
30
31 //===----------------------------------------------------------------------===//
32 //                              APInt Class
33 //===----------------------------------------------------------------------===//
34
35 /// APInt - This class represents arbitrary precision constant integral values.
36 /// It is a functional replacement for common case unsigned integer type like 
37 /// "unsigned", "unsigned long" or "uint64_t", but also allows non-byte-width 
38 /// integer sizes and large integer value types such as 3-bits, 15-bits, or more
39 /// than 64-bits of precision. APInt provides a variety of arithmetic operators 
40 /// and methods to manipulate integer values of any bit-width. It supports both
41 /// the typical integer arithmetic and comparison operations as well as bitwise
42 /// manipulation.
43 ///
44 /// The class has several invariants worth noting:
45 ///   * All bit, byte, and word positions are zero-based.
46 ///   * Once the bit width is set, it doesn't change except by the Truncate, 
47 ///     SignExtend, or ZeroExtend operations.
48 ///   * All binary operators must be on APInt instances of the same bit width.
49 ///     Attempting to use these operators on instances with different bit 
50 ///     widths will yield an assertion.
51 ///   * The value is stored canonically as an unsigned value. For operations
52 ///     where it makes a difference, there are both signed and unsigned variants
53 ///     of the operation. For example, sdiv and udiv. However, because the bit
54 ///     widths must be the same, operations such as Mul and Add produce the same
55 ///     results regardless of whether the values are interpreted as signed or
56 ///     not.
57 ///   * In general, the class tries to follow the style of computation that LLVM
58 ///     uses in its IR. This simplifies its use for LLVM.
59 ///
60 /// @brief Class for arbitrary precision integers.
61 class APInt {
62
63   uint32_t BitWidth;      ///< The number of bits in this APInt.
64
65   /// This union is used to store the integer value. When the
66   /// integer bit-width <= 64, it uses VAL; 
67   /// otherwise it uses the pVal.
68   union {
69     uint64_t VAL;    ///< Used to store the <= 64 bits integer value.
70     uint64_t *pVal;  ///< Used to store the >64 bits integer value.
71   };
72
73   /// This enum is just used to hold a constant we needed for APInt.
74   enum {
75     APINT_BITS_PER_WORD = sizeof(uint64_t) * 8,
76     APINT_WORD_SIZE = sizeof(uint64_t)
77   };
78
79   // Fast internal constructor
80   APInt(uint64_t* val, uint32_t bits) : BitWidth(bits), pVal(val) { }
81
82   /// Here one word's bitwidth equals to that of uint64_t.
83   /// @returns the number of words to hold the integer value of this APInt.
84   /// @brief Get the number of words.
85   inline uint32_t getNumWords() const {
86     return (BitWidth + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD;
87   }
88
89   /// @returns true if the number of bits <= 64, false otherwise.
90   /// @brief Determine if this APInt just has one word to store value.
91   inline bool isSingleWord() const { 
92     return BitWidth <= APINT_BITS_PER_WORD; 
93   }
94
95   /// @returns the word position for the specified bit position.
96   static inline uint32_t whichWord(uint32_t bitPosition) { 
97     return bitPosition / APINT_BITS_PER_WORD; 
98   }
99
100   /// @returns the bit position in a word for the specified bit position 
101   /// in APInt.
102   static inline uint32_t whichBit(uint32_t bitPosition) { 
103     return bitPosition % APINT_BITS_PER_WORD; 
104   }
105
106   /// @returns a uint64_t type integer with just bit position at
107   /// "whichBit(bitPosition)" setting, others zero.
108   static inline uint64_t maskBit(uint32_t bitPosition) { 
109     return (static_cast<uint64_t>(1)) << whichBit(bitPosition); 
110   }
111
112   /// This method is used internally to clear the to "N" bits that are not used
113   /// by the APInt. This is needed after the most significant word is assigned 
114   /// a value to ensure that those bits are zero'd out.
115   /// @brief Clear high order bits
116   inline APInt& clearUnusedBits() {
117     // Compute how many bits are used in the final word
118     uint32_t wordBits = BitWidth % APINT_BITS_PER_WORD;
119     if (wordBits == 0)
120       // If all bits are used, we want to leave the value alone. This also
121       // avoids the undefined behavior of >> when the shfit is the same size as
122       // the word size (64).
123       return *this;
124
125     // Mask out the hight bits.
126     uint64_t mask = ~uint64_t(0ULL) >> (APINT_BITS_PER_WORD - wordBits);
127     if (isSingleWord())
128       VAL &= mask;
129     else
130       pVal[getNumWords() - 1] &= mask;
131     return *this;
132   }
133
134   /// @returns the corresponding word for the specified bit position.
135   /// @brief Get the word corresponding to a bit position
136   inline uint64_t getWord(uint32_t bitPosition) const { 
137     return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; 
138   }
139
140   /// This is used by the constructors that take string arguments.
141   /// @brief Converts a char array into an APInt
142   void fromString(uint32_t numBits, const char *StrStart, uint32_t slen, 
143                   uint8_t radix);
144
145   /// This is used by the toString method to divide by the radix. It simply
146   /// provides a more convenient form of divide for internal use since KnuthDiv
147   /// has specific constraints on its inputs. If those constraints are not met
148   /// then it provides a simpler form of divide.
149   /// @brief An internal division function for dividing APInts.
150   static void divide(const APInt LHS, uint32_t lhsWords, 
151                      const APInt &RHS, uint32_t rhsWords,
152                      APInt *Quotient, APInt *Remainder);
153
154 #ifndef NDEBUG
155   /// @brief debug method
156   void dump() const;
157 #endif
158
159 public:
160   /// @brief Create a new APInt of numBits width, initialized as val.
161   APInt(uint32_t numBits, uint64_t val);
162
163   /// Note that numWords can be smaller or larger than the corresponding bit
164   /// width but any extraneous bits will be dropped.
165   /// @brief Create a new APInt of numBits width, initialized as bigVal[].
166   APInt(uint32_t numBits, uint32_t numWords, uint64_t bigVal[]);
167
168   /// @brief Create a new APInt by translating the string represented 
169   /// integer value.
170   APInt(uint32_t numBits, const std::string& Val, uint8_t radix);
171
172   /// @brief Create a new APInt by translating the char array represented
173   /// integer value.
174   APInt(uint32_t numBits, const char StrStart[], uint32_t slen, uint8_t radix);
175
176   /// @brief Copy Constructor.
177   APInt(const APInt& API);
178
179   /// @brief Destructor.
180   ~APInt();
181
182   /// @brief Copy assignment operator. 
183   APInt& operator=(const APInt& RHS);
184
185   /// Assigns an integer value to the APInt.
186   /// @brief Assignment operator. 
187   APInt& operator=(uint64_t RHS);
188
189   /// Increments the APInt by one.
190   /// @brief Postfix increment operator.
191   inline const APInt operator++(int) {
192     APInt API(*this);
193     ++(*this);
194     return API;
195   }
196
197   /// Increments the APInt by one.
198   /// @brief Prefix increment operator.
199   APInt& operator++();
200
201   /// Decrements the APInt by one.
202   /// @brief Postfix decrement operator. 
203   inline const APInt operator--(int) {
204     APInt API(*this);
205     --(*this);
206     return API;
207   }
208
209   /// Decrements the APInt by one.
210   /// @brief Prefix decrement operator. 
211   APInt& operator--();
212
213   /// Performs bitwise AND operation on this APInt and the given APInt& RHS, 
214   /// assigns the result to this APInt.
215   /// @brief Bitwise AND assignment operator. 
216   APInt& operator&=(const APInt& RHS);
217
218   /// Performs bitwise OR operation on this APInt and the given APInt& RHS, 
219   /// assigns the result to this APInt.
220   /// @brief Bitwise OR assignment operator. 
221   APInt& operator|=(const APInt& RHS);
222
223   /// Performs bitwise XOR operation on this APInt and the given APInt& RHS, 
224   /// assigns the result to this APInt.
225   /// @brief Bitwise XOR assignment operator. 
226   APInt& operator^=(const APInt& RHS);
227
228   /// Performs a bitwise complement operation on this APInt.
229   /// @brief Bitwise complement operator. 
230   APInt operator~() const;
231
232   /// Multiplies this APInt by the  given APInt& RHS and 
233   /// assigns the result to this APInt.
234   /// @brief Multiplication assignment operator. 
235   APInt& operator*=(const APInt& RHS);
236
237   /// Adds this APInt by the given APInt& RHS and 
238   /// assigns the result to this APInt.
239   /// @brief Addition assignment operator. 
240   APInt& operator+=(const APInt& RHS);
241
242   /// Subtracts this APInt by the given APInt &RHS and 
243   /// assigns the result to this APInt.
244   /// @brief Subtraction assignment operator. 
245   APInt& operator-=(const APInt& RHS);
246
247   /// Performs bitwise AND operation on this APInt and 
248   /// the given APInt& RHS.
249   /// @brief Bitwise AND operator. 
250   APInt operator&(const APInt& RHS) const;
251
252   /// Performs bitwise OR operation on this APInt and the given APInt& RHS.
253   /// @brief Bitwise OR operator. 
254   APInt operator|(const APInt& RHS) const;
255
256   /// Performs bitwise XOR operation on this APInt and the given APInt& RHS.
257   /// @brief Bitwise XOR operator. 
258   APInt operator^(const APInt& RHS) const;
259
260   /// Performs logical negation operation on this APInt.
261   /// @brief Logical negation operator. 
262   bool operator !() const;
263
264   /// Multiplies this APInt by the given APInt& RHS.
265   /// @brief Multiplication operator. 
266   APInt operator*(const APInt& RHS) const;
267
268   /// Adds this APInt by the given APInt& RHS.
269   /// @brief Addition operator. 
270   APInt operator+(const APInt& RHS) const;
271
272   /// Subtracts this APInt by the given APInt& RHS
273   /// @brief Subtraction operator. 
274   APInt operator-(const APInt& RHS) const;
275
276   /// @brief Unary negation operator
277   inline APInt operator-() const {
278     return APInt(BitWidth, 0) - (*this);
279   }
280
281   /// @brief Array-indexing support.
282   bool operator[](uint32_t bitPosition) const;
283
284   /// Compare this APInt with the given APInt& RHS 
285   /// for the validity of the equality relationship.
286   /// @brief Equality operator. 
287   bool operator==(const APInt& RHS) const;
288
289   /// Compare this APInt with the given uint64_t value
290   /// for the validity of the equality relationship.
291   /// @brief Equality operator.
292   bool operator==(uint64_t Val) const;
293
294   /// Compare this APInt with the given APInt& RHS 
295   /// for the validity of the inequality relationship.
296   /// @brief Inequality operator. 
297   inline bool operator!=(const APInt& RHS) const {
298     return !((*this) == RHS);
299   }
300
301   /// Compare this APInt with the given uint64_t value 
302   /// for the validity of the inequality relationship.
303   /// @brief Inequality operator. 
304   inline bool operator!=(uint64_t Val) const {
305     return !((*this) == Val);
306   }
307   
308   /// @brief Equality comparison
309   bool eq(const APInt &RHS) const {
310     return (*this) == RHS; 
311   }
312
313   /// @brief Inequality comparison
314   bool ne(const APInt &RHS) const {
315     return !((*this) == RHS);
316   }
317
318   /// @brief Unsigned less than comparison
319   bool ult(const APInt& RHS) const;
320
321   /// @brief Signed less than comparison
322   bool slt(const APInt& RHS) const;
323
324   /// @brief Unsigned less or equal comparison
325   bool ule(const APInt& RHS) const {
326     return ult(RHS) || eq(RHS);
327   }
328
329   /// @brief Signed less or equal comparison
330   bool sle(const APInt& RHS) const {
331     return slt(RHS) || eq(RHS);
332   }
333
334   /// @brief Unsigned greather than comparison
335   bool ugt(const APInt& RHS) const {
336     return !ult(RHS) && !eq(RHS);
337   }
338
339   /// @brief Signed greather than comparison
340   bool sgt(const APInt& RHS) const {
341     return !slt(RHS) && !eq(RHS);
342   }
343
344   /// @brief Unsigned greater or equal comparison
345   bool uge(const APInt& RHS) const {
346     return !ult(RHS);
347   }
348
349   /// @brief Signed greather or equal comparison
350   bool sge(const APInt& RHS) const {
351     return !slt(RHS);
352   }
353
354   /// This just tests the high bit of this APInt to determine if it is negative.
355   /// @returns true if this APInt is negative, false otherwise
356   /// @brief Determine sign of this APInt.
357   bool isNegative() const {
358     return (*this)[BitWidth - 1];
359   }
360
361   /// Arithmetic right-shift this APInt by shiftAmt.
362   /// @brief Arithmetic right-shift function.
363   APInt ashr(uint32_t shiftAmt) const;
364
365   /// Logical right-shift this APInt by shiftAmt.
366   /// @brief Logical right-shift function.
367   APInt lshr(uint32_t shiftAmt) const;
368
369   /// Left-shift this APInt by shiftAmt.
370   /// @brief Left-shift function.
371   APInt shl(uint32_t shiftAmt) const;
372
373   /// Signed divide this APInt by APInt RHS.
374   /// @brief Signed division function for APInt.
375   inline APInt sdiv(const APInt& RHS) const {
376     bool isNegativeLHS = isNegative();
377     bool isNegativeRHS = RHS.isNegative();
378     APInt Result = APIntOps::udiv(
379         isNegativeLHS ? -(*this) : (*this), isNegativeRHS ? -RHS : RHS);
380     return isNegativeLHS != isNegativeRHS ? -Result : Result;
381   }
382
383   /// Unsigned divide this APInt by APInt RHS.
384   /// @brief Unsigned division function for APInt.
385   APInt udiv(const APInt& RHS) const;
386
387   /// Signed remainder operation on APInt.
388   /// @brief Function for signed remainder operation.
389   inline APInt srem(const APInt& RHS) const {
390     bool isNegativeLHS = isNegative();
391     bool isNegativeRHS = RHS.isNegative();
392     APInt Result = APIntOps::urem(
393         isNegativeLHS ? -(*this) : (*this), isNegativeRHS ? -RHS : RHS);
394     return isNegativeLHS ? -Result : Result;
395   }
396
397   /// Unsigned remainder operation on APInt.
398   /// @brief Function for unsigned remainder operation.
399   APInt urem(const APInt& RHS) const;
400
401   /// Truncate the APInt to a specified width. It is an error to specify a width
402   /// that is greater than or equal to the current width. 
403   /// @brief Truncate to new width.
404   void trunc(uint32_t width);
405
406   /// This operation sign extends the APInt to a new width. If the high order
407   /// bit is set, the fill on the left will be done with 1 bits, otherwise zero.
408   /// It is an error to specify a width that is less than or equal to the 
409   /// current width.
410   /// @brief Sign extend to a new width.
411   void sext(uint32_t width);
412
413   /// This operation zero extends the APInt to a new width. Thie high order bits
414   /// are filled with 0 bits.  It is an error to specify a width that is less 
415   /// than or equal to the current width.
416   /// @brief Zero extend to a new width.
417   void zext(uint32_t width);
418
419   /// @brief Set every bit to 1.
420   APInt& set();
421
422   /// Set the given bit to 1 whose position is given as "bitPosition".
423   /// @brief Set a given bit to 1.
424   APInt& set(uint32_t bitPosition);
425
426   /// @brief Set every bit to 0.
427   APInt& clear();
428
429   /// Set the given bit to 0 whose position is given as "bitPosition".
430   /// @brief Set a given bit to 0.
431   APInt& clear(uint32_t bitPosition);
432
433   /// @brief Toggle every bit to its opposite value.
434   APInt& flip();
435
436   /// Toggle a given bit to its opposite value whose position is given 
437   /// as "bitPosition".
438   /// @brief Toggles a given bit to its opposite value.
439   APInt& flip(uint32_t bitPosition);
440
441   /// This function returns the number of active bits which is defined as the
442   /// bit width minus the number of leading zeros. This is used in several
443   /// computations to see how "wide" the value is.
444   /// @brief Compute the number of active bits in the value
445   inline uint32_t getActiveBits() const {
446     return BitWidth - countLeadingZeros();
447   }
448
449   inline uint32_t getMinSignedBits() const {
450     if (isNegative())
451       return BitWidth - countLeadingOnes() + 1;
452     return getActiveBits();
453   }
454
455   /// This method attempts to return the value of this APInt as a zero extended
456   /// uint64_t. The bitwidth must be <= 64 or the value must fit within a
457   /// uint64_t. Otherwise an assertion will result.
458   /// @brief Get zero extended value
459   inline uint64_t getZExtValue() const {
460     if (isSingleWord())
461       return VAL;
462     assert(getActiveBits() <= 64 && "Too many bits for uint64_t");
463     return pVal[0];
464   }
465
466   /// This method attempts to return the value of this APInt as a sign extended
467   /// int64_t. The bit width must be <= 64 or the value must fit within an
468   /// int64_t. Otherwise an assertion will result.
469   /// @brief Get sign extended value
470   inline int64_t getSExtValue() const {
471     if (isSingleWord())
472       return int64_t(VAL << (APINT_BITS_PER_WORD - BitWidth)) >> 
473                      (APINT_BITS_PER_WORD - BitWidth);
474     assert(getActiveBits() <= 64 && "Too many bits for int64_t");
475     return int64_t(pVal[0]);
476   }
477
478   /// @brief Gets maximum unsigned value of APInt for specific bit width.
479   static APInt getMaxValue(uint32_t numBits) {
480     return APInt(numBits, 0).set();
481   }
482
483   /// @brief Gets maximum signed value of APInt for a specific bit width.
484   static APInt getSignedMaxValue(uint32_t numBits) {
485     return APInt(numBits, 0).set().clear(numBits - 1);
486   }
487
488   /// @brief Gets minimum unsigned value of APInt for a specific bit width.
489   static APInt getMinValue(uint32_t numBits) {
490     return APInt(numBits, 0);
491   }
492
493   /// @brief Gets minimum signed value of APInt for a specific bit width.
494   static APInt getSignedMinValue(uint32_t numBits) {
495     return APInt(numBits, 0).set(numBits - 1);
496   }
497
498   /// @returns the all-ones value for an APInt of the specified bit-width.
499   /// @brief Get the all-ones value.
500   static APInt getAllOnesValue(uint32_t numBits) {
501     return APInt(numBits, 0).set();
502   }
503
504   /// @returns the '0' value for an APInt of the specified bit-width.
505   /// @brief Get the '0' value.
506   static APInt getNullValue(uint32_t numBits) {
507     return APInt(numBits, 0);
508   }
509
510   /// The hash value is computed as the sum of the words and the bit width.
511   /// @returns A hash value computed from the sum of the APInt words.
512   /// @brief Get a hash value based on this APInt
513   uint64_t getHashValue() const;
514
515   /// This converts the APInt to a boolean valy as a test against zero.
516   /// @brief Boolean conversion function. 
517   inline bool getBoolValue() const {
518     return countLeadingZeros() != BitWidth;
519   }
520
521   /// This checks to see if the value has all bits of the APInt are set or not.
522   /// @brief Determine if all bits are set
523   inline bool isAllOnesValue() const {
524     return countPopulation() == BitWidth;
525   }
526
527   /// This checks to see if the value of this APInt is the maximum unsigned
528   /// value for the APInt's bit width.
529   /// @brief Determine if this is the largest unsigned value.
530   bool isMaxValue() const {
531     return countPopulation() == BitWidth;
532   }
533
534   /// This checks to see if the value of this APInt is the maximum signed
535   /// value for the APInt's bit width.
536   /// @brief Determine if this is the largest signed value.
537   bool isMaxSignedValue() const {
538     return BitWidth == 1 ? VAL == 0 :
539                           !isNegative() && countPopulation() == BitWidth - 1;
540   }
541
542   /// This checks to see if the value of this APInt is the minimum signed
543   /// value for the APInt's bit width.
544   /// @brief Determine if this is the smallest unsigned value.
545   bool isMinValue() const {
546     return countPopulation() == 0;
547   }
548
549   /// This checks to see if the value of this APInt is the minimum signed
550   /// value for the APInt's bit width.
551   /// @brief Determine if this is the smallest signed value.
552   bool isMinSignedValue() const {
553     return BitWidth == 1 ? VAL == 1 :
554                            isNegative() && countPopulation() == 1;
555   }
556
557   /// This is used internally to convert an APInt to a string.
558   /// @brief Converts an APInt to a std::string
559   std::string toString(uint8_t radix, bool wantSigned) const;
560
561   /// Considers the APInt to be unsigned and converts it into a string in the
562   /// radix given. The radix can be 2, 8, 10 or 16.
563   /// @returns a character interpretation of the APInt
564   /// @brief Convert unsigned APInt to string representation.
565   inline std::string toString(uint8_t radix = 10) const {
566     return toString(radix, false);
567   }
568
569   /// Considers the APInt to be unsigned and converts it into a string in the
570   /// radix given. The radix can be 2, 8, 10 or 16.
571   /// @returns a character interpretation of the APInt
572   /// @brief Convert unsigned APInt to string representation.
573   inline std::string toStringSigned(uint8_t radix = 10) const {
574     return toString(radix, true);
575   }
576
577   /// Get an APInt with the same BitWidth as this APInt, just zero mask
578   /// the low bits and right shift to the least significant bit.
579   /// @returns the high "numBits" bits of this APInt.
580   APInt getHiBits(uint32_t numBits) const;
581
582   /// Get an APInt with the same BitWidth as this APInt, just zero mask
583   /// the high bits.
584   /// @returns the low "numBits" bits of this APInt.
585   APInt getLoBits(uint32_t numBits) const;
586
587   /// @returns true if the argument APInt value is a power of two > 0.
588   bool isPowerOf2() const; 
589
590   /// countLeadingZeros - This function is an APInt version of the
591   /// countLeadingZeros_{32,64} functions in MathExtras.h. It counts the number
592   /// of zeros from the most significant bit to the first one bit.
593   /// @returns getNumWords() * APINT_BITS_PER_WORD if the value is zero.
594   /// @returns the number of zeros from the most significant bit to the first
595   /// one bits.
596   /// @brief Count the number of leading one bits.
597   uint32_t countLeadingZeros() const;
598
599   /// countLeadingOnes - This function counts the number of contiguous 1 bits
600   /// in the high order bits. The count stops when the first 0 bit is reached.
601   /// @returns 0 if the high order bit is not set
602   /// @returns the number of 1 bits from the most significant to the least
603   /// @brief Count the number of leading one bits.
604   uint32_t countLeadingOnes() const;
605
606   /// countTrailingZeros - This function is an APInt version of the 
607   /// countTrailingZoers_{32,64} functions in MathExtras.h. It counts 
608   /// the number of zeros from the least significant bit to the first one bit.
609   /// @returns getNumWords() * APINT_BITS_PER_WORD if the value is zero.
610   /// @returns the number of zeros from the least significant bit to the first
611   /// one bit.
612   /// @brief Count the number of trailing zero bits.
613   uint32_t countTrailingZeros() const;
614
615   /// countPopulation - This function is an APInt version of the
616   /// countPopulation_{32,64} functions in MathExtras.h. It counts the number
617   /// of 1 bits in the APInt value. 
618   /// @returns 0 if the value is zero.
619   /// @returns the number of set bits.
620   /// @brief Count the number of bits set.
621   uint32_t countPopulation() const; 
622
623   /// @returns the total number of bits.
624   inline uint32_t getBitWidth() const { 
625     return BitWidth; 
626   }
627
628   /// @brief Check if this APInt has a N-bits integer value.
629   inline bool isIntN(uint32_t N) const {
630     assert(N && "N == 0 ???");
631     if (isSingleWord()) {
632       return VAL == (VAL & (~0ULL >> (64 - N)));
633     } else {
634       APInt Tmp(N, getNumWords(), pVal);
635       return Tmp == (*this);
636     }
637   }
638
639   /// @returns a byte-swapped representation of this APInt Value.
640   APInt byteSwap() const;
641
642   /// @returns the floor log base 2 of this APInt.
643   inline uint32_t logBase2() const {
644     return getNumWords() * APINT_BITS_PER_WORD - 1 - countLeadingZeros();
645   }
646
647   /// @brief Converts this APInt to a double value.
648   double roundToDouble(bool isSigned) const;
649
650   /// @brief Converts this unsigned APInt to a double value.
651   double roundToDouble() const {
652     return roundToDouble(false);
653   }
654
655   /// @brief Converts this signed APInt to a double value.
656   double signedRoundToDouble() const {
657     return roundToDouble(true);
658   }
659 };
660
661 namespace APIntOps {
662
663 /// @brief Check if the specified APInt has a N-bits integer value.
664 inline bool isIntN(uint32_t N, const APInt& APIVal) {
665   return APIVal.isIntN(N);
666 }
667
668 /// @returns true if the argument APInt value is a sequence of ones
669 /// starting at the least significant bit with the remainder zero.
670 inline const bool isMask(uint32_t numBits, const APInt& APIVal) {
671   return APIVal.getBoolValue() && ((APIVal + APInt(numBits,1)) & APIVal) == 0;
672 }
673
674 /// @returns true if the argument APInt value contains a sequence of ones
675 /// with the remainder zero.
676 inline const bool isShiftedMask(uint32_t numBits, const APInt& APIVal) {
677   return isMask(numBits, (APIVal - APInt(numBits,1)) | APIVal);
678 }
679
680 /// @returns a byte-swapped representation of the specified APInt Value.
681 inline APInt byteSwap(const APInt& APIVal) {
682   return APIVal.byteSwap();
683 }
684
685 /// @returns the floor log base 2 of the specified APInt value.
686 inline uint32_t logBase2(const APInt& APIVal) {
687   return APIVal.logBase2(); 
688 }
689
690 /// GreatestCommonDivisor - This function returns the greatest common
691 /// divisor of the two APInt values using Enclid's algorithm.
692 /// @returns the greatest common divisor of Val1 and Val2
693 /// @brief Compute GCD of two APInt values.
694 APInt GreatestCommonDivisor(const APInt& Val1, const APInt& Val2);
695
696 /// Treats the APInt as an unsigned value for conversion purposes.
697 /// @brief Converts the given APInt to a double value.
698 inline double RoundAPIntToDouble(const APInt& APIVal) {
699   return APIVal.roundToDouble();
700 }
701
702 /// Treats the APInt as a signed value for conversion purposes.
703 /// @brief Converts the given APInt to a double value.
704 inline double RoundSignedAPIntToDouble(const APInt& APIVal) {
705   return APIVal.signedRoundToDouble();
706 }
707
708 /// @brief Converts the given APInt to a float vlalue.
709 inline float RoundAPIntToFloat(const APInt& APIVal) {
710   return float(RoundAPIntToDouble(APIVal));
711 }
712
713 /// RoundDoubleToAPInt - This function convert a double value to an APInt value.
714 /// @brief Converts the given double value into a APInt.
715 APInt RoundDoubleToAPInt(double Double, uint32_t width = 64);
716
717 /// RoundFloatToAPInt - Converts a float value into an APInt value.
718 /// @brief Converts a float value into a APInt.
719 inline APInt RoundFloatToAPInt(float Float) {
720   return RoundDoubleToAPInt(double(Float));
721 }
722
723 /// Arithmetic right-shift the APInt by shiftAmt.
724 /// @brief Arithmetic right-shift function.
725 inline APInt ashr(const APInt& LHS, uint32_t shiftAmt) {
726   return LHS.ashr(shiftAmt);
727 }
728
729 /// Logical right-shift the APInt by shiftAmt.
730 /// @brief Logical right-shift function.
731 inline APInt lshr(const APInt& LHS, uint32_t shiftAmt) {
732   return LHS.lshr(shiftAmt);
733 }
734
735 /// Left-shift the APInt by shiftAmt.
736 /// @brief Left-shift function.
737 inline APInt shl(const APInt& LHS, uint32_t shiftAmt) {
738   return LHS.shl(shiftAmt);
739 }
740
741 /// Signed divide APInt LHS by APInt RHS.
742 /// @brief Signed division function for APInt.
743 inline APInt sdiv(const APInt& LHS, const APInt& RHS) {
744   return LHS.sdiv(RHS);
745 }
746
747 /// Unsigned divide APInt LHS by APInt RHS.
748 /// @brief Unsigned division function for APInt.
749 inline APInt udiv(const APInt& LHS, const APInt& RHS) {
750   return LHS.udiv(RHS);
751 }
752
753 /// Signed remainder operation on APInt.
754 /// @brief Function for signed remainder operation.
755 inline APInt srem(const APInt& LHS, const APInt& RHS) {
756   return LHS.srem(RHS);
757 }
758
759 /// Unsigned remainder operation on APInt.
760 /// @brief Function for unsigned remainder operation.
761 inline APInt urem(const APInt& LHS, const APInt& RHS) {
762   return LHS.urem(RHS);
763 }
764
765 /// Performs multiplication on APInt values.
766 /// @brief Function for multiplication operation.
767 inline APInt mul(const APInt& LHS, const APInt& RHS) {
768   return LHS * RHS;
769 }
770
771 /// Performs addition on APInt values.
772 /// @brief Function for addition operation.
773 inline APInt add(const APInt& LHS, const APInt& RHS) {
774   return LHS + RHS;
775 }
776
777 /// Performs subtraction on APInt values.
778 /// @brief Function for subtraction operation.
779 inline APInt sub(const APInt& LHS, const APInt& RHS) {
780   return LHS - RHS;
781 }
782
783 /// Performs bitwise AND operation on APInt LHS and 
784 /// APInt RHS.
785 /// @brief Bitwise AND function for APInt.
786 inline APInt And(const APInt& LHS, const APInt& RHS) {
787   return LHS & RHS;
788 }
789
790 /// Performs bitwise OR operation on APInt LHS and APInt RHS.
791 /// @brief Bitwise OR function for APInt. 
792 inline APInt Or(const APInt& LHS, const APInt& RHS) {
793   return LHS | RHS;
794 }
795
796 /// Performs bitwise XOR operation on APInt.
797 /// @brief Bitwise XOR function for APInt.
798 inline APInt Xor(const APInt& LHS, const APInt& RHS) {
799   return LHS ^ RHS;
800
801
802 /// Performs a bitwise complement operation on APInt.
803 /// @brief Bitwise complement function. 
804 inline APInt Not(const APInt& APIVal) {
805   return ~APIVal;
806 }
807
808 } // End of APIntOps namespace
809
810 } // End of llvm namespace
811
812 #endif