Add doubleToBits and floatToBits methods.
[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   APInt operator+(uint64_t RHS) const {
272     return (*this) + APInt(BitWidth, RHS);
273   }
274
275
276   /// Subtracts this APInt by the given APInt& RHS
277   /// @brief Subtraction operator. 
278   APInt operator-(const APInt& RHS) const;
279   APInt operator-(uint64_t RHS) const {
280     return (*this) - APInt(BitWidth, RHS);
281   }
282
283   /// @brief Unary negation operator
284   inline APInt operator-() const {
285     return APInt(BitWidth, 0) - (*this);
286   }
287
288   /// @brief Array-indexing support.
289   bool operator[](uint32_t bitPosition) const;
290
291   /// Compare this APInt with the given APInt& RHS 
292   /// for the validity of the equality relationship.
293   /// @brief Equality operator. 
294   bool operator==(const APInt& RHS) const;
295
296   /// Compare this APInt with the given uint64_t value
297   /// for the validity of the equality relationship.
298   /// @brief Equality operator.
299   bool operator==(uint64_t Val) const;
300
301   /// Compare this APInt with the given APInt& RHS 
302   /// for the validity of the inequality relationship.
303   /// @brief Inequality operator. 
304   inline bool operator!=(const APInt& RHS) const {
305     return !((*this) == RHS);
306   }
307
308   /// Compare this APInt with the given uint64_t value 
309   /// for the validity of the inequality relationship.
310   /// @brief Inequality operator. 
311   inline bool operator!=(uint64_t Val) const {
312     return !((*this) == Val);
313   }
314   
315   /// @brief Equality comparison
316   bool eq(const APInt &RHS) const {
317     return (*this) == RHS; 
318   }
319
320   /// @brief Inequality comparison
321   bool ne(const APInt &RHS) const {
322     return !((*this) == RHS);
323   }
324
325   /// @brief Unsigned less than comparison
326   bool ult(const APInt& RHS) const;
327
328   /// @brief Signed less than comparison
329   bool slt(const APInt& RHS) const;
330
331   /// @brief Unsigned less or equal comparison
332   bool ule(const APInt& RHS) const {
333     return ult(RHS) || eq(RHS);
334   }
335
336   /// @brief Signed less or equal comparison
337   bool sle(const APInt& RHS) const {
338     return slt(RHS) || eq(RHS);
339   }
340
341   /// @brief Unsigned greather than comparison
342   bool ugt(const APInt& RHS) const {
343     return !ult(RHS) && !eq(RHS);
344   }
345
346   /// @brief Signed greather than comparison
347   bool sgt(const APInt& RHS) const {
348     return !slt(RHS) && !eq(RHS);
349   }
350
351   /// @brief Unsigned greater or equal comparison
352   bool uge(const APInt& RHS) const {
353     return !ult(RHS);
354   }
355
356   /// @brief Signed greather or equal comparison
357   bool sge(const APInt& RHS) const {
358     return !slt(RHS);
359   }
360
361   /// This just tests the high bit of this APInt to determine if it is negative.
362   /// @returns true if this APInt is negative, false otherwise
363   /// @brief Determine sign of this APInt.
364   bool isNegative() const {
365     return (*this)[BitWidth - 1];
366   }
367
368   /// Arithmetic right-shift this APInt by shiftAmt.
369   /// @brief Arithmetic right-shift function.
370   APInt ashr(uint32_t shiftAmt) const;
371
372   /// Logical right-shift this APInt by shiftAmt.
373   /// @brief Logical right-shift function.
374   APInt lshr(uint32_t shiftAmt) const;
375
376   /// Left-shift this APInt by shiftAmt.
377   /// @brief Left-shift function.
378   APInt shl(uint32_t shiftAmt) const;
379
380   /// Signed divide this APInt by APInt RHS.
381   /// @brief Signed division function for APInt.
382   inline APInt sdiv(const APInt& RHS) const {
383     bool isNegativeLHS = isNegative();
384     bool isNegativeRHS = RHS.isNegative();
385     APInt Result = APIntOps::udiv(
386         isNegativeLHS ? -(*this) : (*this), isNegativeRHS ? -RHS : RHS);
387     return isNegativeLHS != isNegativeRHS ? -Result : Result;
388   }
389
390   /// Unsigned divide this APInt by APInt RHS.
391   /// @brief Unsigned division function for APInt.
392   APInt udiv(const APInt& RHS) const;
393
394   /// Signed remainder operation on APInt.
395   /// @brief Function for signed remainder operation.
396   inline APInt srem(const APInt& RHS) const {
397     bool isNegativeLHS = isNegative();
398     bool isNegativeRHS = RHS.isNegative();
399     APInt Result = APIntOps::urem(
400         isNegativeLHS ? -(*this) : (*this), isNegativeRHS ? -RHS : RHS);
401     return isNegativeLHS ? -Result : Result;
402   }
403
404   /// Unsigned remainder operation on APInt.
405   /// @brief Function for unsigned remainder operation.
406   APInt urem(const APInt& RHS) const;
407
408   /// Truncate the APInt to a specified width. It is an error to specify a width
409   /// that is greater than or equal to the current width. 
410   /// @brief Truncate to new width.
411   APInt &trunc(uint32_t width);
412
413   /// This operation sign extends the APInt to a new width. If the high order
414   /// bit is set, the fill on the left will be done with 1 bits, otherwise zero.
415   /// It is an error to specify a width that is less than or equal to the 
416   /// current width.
417   /// @brief Sign extend to a new width.
418   APInt &sext(uint32_t width);
419
420   /// This operation zero extends the APInt to a new width. Thie high order bits
421   /// are filled with 0 bits.  It is an error to specify a width that is less 
422   /// than or equal to the current width.
423   /// @brief Zero extend to a new width.
424   APInt &zext(uint32_t width);
425
426   /// Make this APInt have the bit width given by \p width. The value is sign
427   /// extended, truncated, or left alone to make it that width.
428   /// @brief Sign extend or truncate to width
429   APInt &sextOrTrunc(uint32_t width);
430
431   /// Make this APInt have the bit width given by \p width. The value is zero
432   /// extended, truncated, or left alone to make it that width.
433   /// @brief Zero extend or truncate to width
434   APInt &zextOrTrunc(uint32_t width);
435
436   /// @brief Set every bit to 1.
437   APInt& set();
438
439   /// Set the given bit to 1 whose position is given as "bitPosition".
440   /// @brief Set a given bit to 1.
441   APInt& set(uint32_t bitPosition);
442
443   /// @brief Set every bit to 0.
444   APInt& clear();
445
446   /// Set the given bit to 0 whose position is given as "bitPosition".
447   /// @brief Set a given bit to 0.
448   APInt& clear(uint32_t bitPosition);
449
450   /// @brief Toggle every bit to its opposite value.
451   APInt& flip();
452
453   /// Toggle a given bit to its opposite value whose position is given 
454   /// as "bitPosition".
455   /// @brief Toggles a given bit to its opposite value.
456   APInt& flip(uint32_t bitPosition);
457
458   /// This function returns the number of active bits which is defined as the
459   /// bit width minus the number of leading zeros. This is used in several
460   /// computations to see how "wide" the value is.
461   /// @brief Compute the number of active bits in the value
462   inline uint32_t getActiveBits() const {
463     return BitWidth - countLeadingZeros();
464   }
465
466   /// This function returns the number of active words in the value of this
467   /// APInt. This is used in conjunction with getActiveData to extract the raw
468   /// value of the APInt.
469   inline uint32_t getActiveWords() const {
470     return whichWord(getActiveBits()-1) + 1;
471   }
472
473   /// This function returns a pointer to the internal storage of the APInt. 
474   /// This is useful for writing out the APInt in binary form without any
475   /// conversions.
476   inline const uint64_t* getRawData() const {
477     if (isSingleWord())
478       return &VAL;
479     return &pVal[0];
480   }
481
482   /// Computes the minimum bit width for this APInt while considering it to be
483   /// a signed (and probably negative) value. If the value is not negative, 
484   /// this function returns the same value as getActiveBits(). Otherwise, it
485   /// returns the smallest bit width that will retain the negative value. For
486   /// example, -1 can be written as 0b1 or 0xFFFFFFFFFF. 0b1 is shorter and so
487   /// for -1, this function will always return 1.
488   /// @brief Get the minimum bit size for this signed APInt 
489   inline uint32_t getMinSignedBits() const {
490     if (isNegative())
491       return BitWidth - countLeadingOnes() + 1;
492     return getActiveBits();
493   }
494
495   /// This method attempts to return the value of this APInt as a zero extended
496   /// uint64_t. The bitwidth must be <= 64 or the value must fit within a
497   /// uint64_t. Otherwise an assertion will result.
498   /// @brief Get zero extended value
499   inline uint64_t getZExtValue() const {
500     if (isSingleWord())
501       return VAL;
502     assert(getActiveBits() <= 64 && "Too many bits for uint64_t");
503     return pVal[0];
504   }
505
506   /// This method attempts to return the value of this APInt as a sign extended
507   /// int64_t. The bit width must be <= 64 or the value must fit within an
508   /// int64_t. Otherwise an assertion will result.
509   /// @brief Get sign extended value
510   inline int64_t getSExtValue() const {
511     if (isSingleWord())
512       return int64_t(VAL << (APINT_BITS_PER_WORD - BitWidth)) >> 
513                      (APINT_BITS_PER_WORD - BitWidth);
514     assert(getActiveBits() <= 64 && "Too many bits for int64_t");
515     return int64_t(pVal[0]);
516   }
517
518   /// @brief Gets maximum unsigned value of APInt for specific bit width.
519   static APInt getMaxValue(uint32_t numBits) {
520     return APInt(numBits, 0).set();
521   }
522
523   /// @brief Gets maximum signed value of APInt for a specific bit width.
524   static APInt getSignedMaxValue(uint32_t numBits) {
525     return APInt(numBits, 0).set().clear(numBits - 1);
526   }
527
528   /// @brief Gets minimum unsigned value of APInt for a specific bit width.
529   static APInt getMinValue(uint32_t numBits) {
530     return APInt(numBits, 0);
531   }
532
533   /// @brief Gets minimum signed value of APInt for a specific bit width.
534   static APInt getSignedMinValue(uint32_t numBits) {
535     return APInt(numBits, 0).set(numBits - 1);
536   }
537
538   /// @returns the all-ones value for an APInt of the specified bit-width.
539   /// @brief Get the all-ones value.
540   static APInt getAllOnesValue(uint32_t numBits) {
541     return APInt(numBits, 0).set();
542   }
543
544   /// @returns the '0' value for an APInt of the specified bit-width.
545   /// @brief Get the '0' value.
546   static APInt getNullValue(uint32_t numBits) {
547     return APInt(numBits, 0);
548   }
549
550   /// The hash value is computed as the sum of the words and the bit width.
551   /// @returns A hash value computed from the sum of the APInt words.
552   /// @brief Get a hash value based on this APInt
553   uint64_t getHashValue() const;
554
555   /// This converts the APInt to a boolean valy as a test against zero.
556   /// @brief Boolean conversion function. 
557   inline bool getBoolValue() const {
558     return countLeadingZeros() != BitWidth;
559   }
560
561   /// This checks to see if the value has all bits of the APInt are set or not.
562   /// @brief Determine if all bits are set
563   inline bool isAllOnesValue() const {
564     return countPopulation() == BitWidth;
565   }
566
567   /// This checks to see if the value of this APInt is the maximum unsigned
568   /// value for the APInt's bit width.
569   /// @brief Determine if this is the largest unsigned value.
570   bool isMaxValue() const {
571     return countPopulation() == BitWidth;
572   }
573
574   /// This checks to see if the value of this APInt is the maximum signed
575   /// value for the APInt's bit width.
576   /// @brief Determine if this is the largest signed value.
577   bool isMaxSignedValue() const {
578     return BitWidth == 1 ? VAL == 0 :
579                           !isNegative() && countPopulation() == BitWidth - 1;
580   }
581
582   /// This checks to see if the value of this APInt is the minimum signed
583   /// value for the APInt's bit width.
584   /// @brief Determine if this is the smallest unsigned value.
585   bool isMinValue() const {
586     return countPopulation() == 0;
587   }
588
589   /// This checks to see if the value of this APInt is the minimum signed
590   /// value for the APInt's bit width.
591   /// @brief Determine if this is the smallest signed value.
592   bool isMinSignedValue() const {
593     return BitWidth == 1 ? VAL == 1 :
594                            isNegative() && countPopulation() == 1;
595   }
596
597   /// This is used internally to convert an APInt to a string.
598   /// @brief Converts an APInt to a std::string
599   std::string toString(uint8_t radix, bool wantSigned) const;
600
601   /// Considers the APInt to be unsigned and converts it into a string in the
602   /// radix given. The radix can be 2, 8, 10 or 16.
603   /// @returns a character interpretation of the APInt
604   /// @brief Convert unsigned APInt to string representation.
605   inline std::string toString(uint8_t radix = 10) const {
606     return toString(radix, false);
607   }
608
609   /// Considers the APInt to be unsigned and converts it into a string in the
610   /// radix given. The radix can be 2, 8, 10 or 16.
611   /// @returns a character interpretation of the APInt
612   /// @brief Convert unsigned APInt to string representation.
613   inline std::string toStringSigned(uint8_t radix = 10) const {
614     return toString(radix, true);
615   }
616
617   /// Get an APInt with the same BitWidth as this APInt, just zero mask
618   /// the low bits and right shift to the least significant bit.
619   /// @returns the high "numBits" bits of this APInt.
620   APInt getHiBits(uint32_t numBits) const;
621
622   /// Get an APInt with the same BitWidth as this APInt, just zero mask
623   /// the high bits.
624   /// @returns the low "numBits" bits of this APInt.
625   APInt getLoBits(uint32_t numBits) const;
626
627   /// @returns true if the argument APInt value is a power of two > 0.
628   bool isPowerOf2() const; 
629
630   /// countLeadingZeros - This function is an APInt version of the
631   /// countLeadingZeros_{32,64} functions in MathExtras.h. It counts the number
632   /// of zeros from the most significant bit to the first one bit.
633   /// @returns getNumWords() * APINT_BITS_PER_WORD if the value is zero.
634   /// @returns the number of zeros from the most significant bit to the first
635   /// one bits.
636   /// @brief Count the number of leading one bits.
637   uint32_t countLeadingZeros() const;
638
639   /// countLeadingOnes - This function counts the number of contiguous 1 bits
640   /// in the high order bits. The count stops when the first 0 bit is reached.
641   /// @returns 0 if the high order bit is not set
642   /// @returns the number of 1 bits from the most significant to the least
643   /// @brief Count the number of leading one bits.
644   uint32_t countLeadingOnes() const;
645
646   /// countTrailingZeros - This function is an APInt version of the 
647   /// countTrailingZoers_{32,64} functions in MathExtras.h. It counts 
648   /// the number of zeros from the least significant bit to the first one bit.
649   /// @returns getNumWords() * APINT_BITS_PER_WORD if the value is zero.
650   /// @returns the number of zeros from the least significant bit to the first
651   /// one bit.
652   /// @brief Count the number of trailing zero bits.
653   uint32_t countTrailingZeros() const;
654
655   /// countPopulation - This function is an APInt version of the
656   /// countPopulation_{32,64} functions in MathExtras.h. It counts the number
657   /// of 1 bits in the APInt value. 
658   /// @returns 0 if the value is zero.
659   /// @returns the number of set bits.
660   /// @brief Count the number of bits set.
661   uint32_t countPopulation() const; 
662
663   /// @returns the total number of bits.
664   inline uint32_t getBitWidth() const { 
665     return BitWidth; 
666   }
667
668   /// @brief Check if this APInt has a N-bits integer value.
669   inline bool isIntN(uint32_t N) const {
670     assert(N && "N == 0 ???");
671     if (isSingleWord()) {
672       return VAL == (VAL & (~0ULL >> (64 - N)));
673     } else {
674       APInt Tmp(N, getNumWords(), pVal);
675       return Tmp == (*this);
676     }
677   }
678
679   /// @returns a byte-swapped representation of this APInt Value.
680   APInt byteSwap() const;
681
682   /// @returns the floor log base 2 of this APInt.
683   inline uint32_t logBase2() const {
684     return getNumWords() * APINT_BITS_PER_WORD - 1 - countLeadingZeros();
685   }
686
687   /// @brief Converts this APInt to a double value.
688   double roundToDouble(bool isSigned) const;
689
690   /// @brief Converts this unsigned APInt to a double value.
691   double roundToDouble() const {
692     return roundToDouble(false);
693   }
694
695   /// @brief Converts this signed APInt to a double value.
696   double signedRoundToDouble() const {
697     return roundToDouble(true);
698   }
699
700   /// The conversion does not do a translation from integer to double, it just
701   /// re-interprets the bits as a double. Note that it is valid to do this on
702   /// any bit width. Exactly 64 bits will be translated.
703   /// @brief Converts APInt bits to a double
704   double bitsToDouble() const {
705     union {
706       uint64_t I;
707       double D;
708     } T;
709     T.I = (isSingleWord() ? VAL : pVal[0]);
710     return T.D;
711   }
712
713   /// The conversion does not do a translation from integer to float, it just
714   /// re-interprets the bits as a float. Note that it is valid to do this on
715   /// any bit width. Exactly 32 bits will be translated.
716   /// @brief Converts APInt bits to a double
717   float bitsToFloat() const {
718     union {
719       uint32_t I;
720       float F;
721     } T;
722     T.I = uint32_t((isSingleWord() ? VAL : pVal[0]));
723     return T.F;
724   }
725
726   /// The conversion does not do a translation from double to integer, it just
727   /// re-interprets the bits of the double. Note that it is valid to do this on
728   /// any bit width but bits from V may get truncated.
729   /// @brief Converts a double to APInt bits.
730   APInt& doubleToBits(double V) {
731     union {
732       uint64_t I;
733       double D;
734     } T;
735     T.D = V;
736     if (isSingleWord())
737       VAL = T.I;
738     else
739       pVal[0] = T.I;
740     return clearUnusedBits();
741   }
742
743   /// The conversion does not do a translation from float to integer, it just
744   /// re-interprets the bits of the float. Note that it is valid to do this on
745   /// any bit width but bits from V may get truncated.
746   /// @brief Converts a float to APInt bits.
747   APInt& floatToBits(float V) {
748     union {
749       uint32_t I;
750       float F;
751     } T;
752     T.F = V;
753     if (isSingleWord())
754       VAL = T.I;
755     else
756       pVal[0] = T.I;
757     return clearUnusedBits();
758   }
759
760   /// @brief Compute the square root
761   APInt sqrt() const;
762 };
763
764 inline bool operator==(uint64_t V1, const APInt& V2) {
765   return V2 == V1;
766 }
767
768 inline bool operator!=(uint64_t V1, const APInt& V2) {
769   return V2 != V1;
770 }
771
772 namespace APIntOps {
773
774 /// @brief Determine the smaller of two APInts considered to be signed.
775 inline APInt smin(const APInt &A, const APInt &B) {
776   return A.slt(B) ? A : B;
777 }
778
779 /// @brief Determine the larger of two APInts considered to be signed.
780 inline APInt smax(const APInt &A, const APInt &B) {
781   return A.sgt(B) ? A : B;
782 }
783
784 /// @brief Determine the smaller of two APInts considered to be signed.
785 inline APInt umin(const APInt &A, const APInt &B) {
786   return A.ult(B) ? A : B;
787 }
788
789 /// @brief Determine the larger of two APInts considered to be unsigned.
790 inline APInt umax(const APInt &A, const APInt &B) {
791   return A.ugt(B) ? A : B;
792 }
793
794 /// @brief Check if the specified APInt has a N-bits integer value.
795 inline bool isIntN(uint32_t N, const APInt& APIVal) {
796   return APIVal.isIntN(N);
797 }
798
799 /// @returns true if the argument APInt value is a sequence of ones
800 /// starting at the least significant bit with the remainder zero.
801 inline const bool isMask(uint32_t numBits, const APInt& APIVal) {
802   return APIVal.getBoolValue() && ((APIVal + APInt(numBits,1)) & APIVal) == 0;
803 }
804
805 /// @returns true if the argument APInt value contains a sequence of ones
806 /// with the remainder zero.
807 inline const bool isShiftedMask(uint32_t numBits, const APInt& APIVal) {
808   return isMask(numBits, (APIVal - APInt(numBits,1)) | APIVal);
809 }
810
811 /// @returns a byte-swapped representation of the specified APInt Value.
812 inline APInt byteSwap(const APInt& APIVal) {
813   return APIVal.byteSwap();
814 }
815
816 /// @returns the floor log base 2 of the specified APInt value.
817 inline uint32_t logBase2(const APInt& APIVal) {
818   return APIVal.logBase2(); 
819 }
820
821 /// GreatestCommonDivisor - This function returns the greatest common
822 /// divisor of the two APInt values using Enclid's algorithm.
823 /// @returns the greatest common divisor of Val1 and Val2
824 /// @brief Compute GCD of two APInt values.
825 APInt GreatestCommonDivisor(const APInt& Val1, const APInt& Val2);
826
827 /// Treats the APInt as an unsigned value for conversion purposes.
828 /// @brief Converts the given APInt to a double value.
829 inline double RoundAPIntToDouble(const APInt& APIVal) {
830   return APIVal.roundToDouble();
831 }
832
833 /// Treats the APInt as a signed value for conversion purposes.
834 /// @brief Converts the given APInt to a double value.
835 inline double RoundSignedAPIntToDouble(const APInt& APIVal) {
836   return APIVal.signedRoundToDouble();
837 }
838
839 /// @brief Converts the given APInt to a float vlalue.
840 inline float RoundAPIntToFloat(const APInt& APIVal) {
841   return float(RoundAPIntToDouble(APIVal));
842 }
843
844 /// RoundDoubleToAPInt - This function convert a double value to an APInt value.
845 /// @brief Converts the given double value into a APInt.
846 APInt RoundDoubleToAPInt(double Double, uint32_t width = 64);
847
848 /// RoundFloatToAPInt - Converts a float value into an APInt value.
849 /// @brief Converts a float value into a APInt.
850 inline APInt RoundFloatToAPInt(float Float) {
851   return RoundDoubleToAPInt(double(Float));
852 }
853
854 /// Arithmetic right-shift the APInt by shiftAmt.
855 /// @brief Arithmetic right-shift function.
856 inline APInt ashr(const APInt& LHS, uint32_t shiftAmt) {
857   return LHS.ashr(shiftAmt);
858 }
859
860 /// Logical right-shift the APInt by shiftAmt.
861 /// @brief Logical right-shift function.
862 inline APInt lshr(const APInt& LHS, uint32_t shiftAmt) {
863   return LHS.lshr(shiftAmt);
864 }
865
866 /// Left-shift the APInt by shiftAmt.
867 /// @brief Left-shift function.
868 inline APInt shl(const APInt& LHS, uint32_t shiftAmt) {
869   return LHS.shl(shiftAmt);
870 }
871
872 /// Signed divide APInt LHS by APInt RHS.
873 /// @brief Signed division function for APInt.
874 inline APInt sdiv(const APInt& LHS, const APInt& RHS) {
875   return LHS.sdiv(RHS);
876 }
877
878 /// Unsigned divide APInt LHS by APInt RHS.
879 /// @brief Unsigned division function for APInt.
880 inline APInt udiv(const APInt& LHS, const APInt& RHS) {
881   return LHS.udiv(RHS);
882 }
883
884 /// Signed remainder operation on APInt.
885 /// @brief Function for signed remainder operation.
886 inline APInt srem(const APInt& LHS, const APInt& RHS) {
887   return LHS.srem(RHS);
888 }
889
890 /// Unsigned remainder operation on APInt.
891 /// @brief Function for unsigned remainder operation.
892 inline APInt urem(const APInt& LHS, const APInt& RHS) {
893   return LHS.urem(RHS);
894 }
895
896 /// Performs multiplication on APInt values.
897 /// @brief Function for multiplication operation.
898 inline APInt mul(const APInt& LHS, const APInt& RHS) {
899   return LHS * RHS;
900 }
901
902 /// Performs addition on APInt values.
903 /// @brief Function for addition operation.
904 inline APInt add(const APInt& LHS, const APInt& RHS) {
905   return LHS + RHS;
906 }
907
908 /// Performs subtraction on APInt values.
909 /// @brief Function for subtraction operation.
910 inline APInt sub(const APInt& LHS, const APInt& RHS) {
911   return LHS - RHS;
912 }
913
914 /// Performs bitwise AND operation on APInt LHS and 
915 /// APInt RHS.
916 /// @brief Bitwise AND function for APInt.
917 inline APInt And(const APInt& LHS, const APInt& RHS) {
918   return LHS & RHS;
919 }
920
921 /// Performs bitwise OR operation on APInt LHS and APInt RHS.
922 /// @brief Bitwise OR function for APInt. 
923 inline APInt Or(const APInt& LHS, const APInt& RHS) {
924   return LHS | RHS;
925 }
926
927 /// Performs bitwise XOR operation on APInt.
928 /// @brief Bitwise XOR function for APInt.
929 inline APInt Xor(const APInt& LHS, const APInt& RHS) {
930   return LHS ^ RHS;
931
932
933 /// Performs a bitwise complement operation on APInt.
934 /// @brief Bitwise complement function. 
935 inline APInt Not(const APInt& APIVal) {
936   return ~APIVal;
937 }
938
939 } // End of APIntOps namespace
940
941 } // End of llvm namespace
942
943 #endif