add option for literal formatting to APInt::toString()
[oota-llvm.git] / include / llvm / ADT / APInt.h
1 //===-- llvm/ADT/APInt.h - For Arbitrary Precision Integer -----*- C++ -*--===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // 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/MathExtras.h"
19 #include <cassert>
20 #include <climits>
21 #include <cstring>
22 #include <string>
23
24 namespace llvm {
25   class Serializer;
26   class Deserializer;
27   class FoldingSetNodeID;
28   class raw_ostream;
29   class StringRef;
30
31   template<typename T>
32   class SmallVectorImpl;
33
34   // An unsigned host type used as a single part of a multi-part
35   // bignum.
36   typedef uint64_t integerPart;
37
38   const unsigned int host_char_bit = 8;
39   const unsigned int integerPartWidth = host_char_bit *
40     static_cast<unsigned int>(sizeof(integerPart));
41
42 //===----------------------------------------------------------------------===//
43 //                              APInt Class
44 //===----------------------------------------------------------------------===//
45
46 /// APInt - This class represents arbitrary precision constant integral values.
47 /// It is a functional replacement for common case unsigned integer type like
48 /// "unsigned", "unsigned long" or "uint64_t", but also allows non-byte-width
49 /// integer sizes and large integer value types such as 3-bits, 15-bits, or more
50 /// than 64-bits of precision. APInt provides a variety of arithmetic operators
51 /// and methods to manipulate integer values of any bit-width. It supports both
52 /// the typical integer arithmetic and comparison operations as well as bitwise
53 /// manipulation.
54 ///
55 /// The class has several invariants worth noting:
56 ///   * All bit, byte, and word positions are zero-based.
57 ///   * Once the bit width is set, it doesn't change except by the Truncate,
58 ///     SignExtend, or ZeroExtend operations.
59 ///   * All binary operators must be on APInt instances of the same bit width.
60 ///     Attempting to use these operators on instances with different bit
61 ///     widths will yield an assertion.
62 ///   * The value is stored canonically as an unsigned value. For operations
63 ///     where it makes a difference, there are both signed and unsigned variants
64 ///     of the operation. For example, sdiv and udiv. However, because the bit
65 ///     widths must be the same, operations such as Mul and Add produce the same
66 ///     results regardless of whether the values are interpreted as signed or
67 ///     not.
68 ///   * In general, the class tries to follow the style of computation that LLVM
69 ///     uses in its IR. This simplifies its use for LLVM.
70 ///
71 /// @brief Class for arbitrary precision integers.
72 class APInt {
73   unsigned BitWidth;      ///< The number of bits in this APInt.
74
75   /// This union is used to store the integer value. When the
76   /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
77   union {
78     uint64_t VAL;    ///< Used to store the <= 64 bits integer value.
79     uint64_t *pVal;  ///< Used to store the >64 bits integer value.
80   };
81
82   /// This enum is used to hold the constants we needed for APInt.
83   enum {
84     /// Bits in a word
85     APINT_BITS_PER_WORD = static_cast<unsigned int>(sizeof(uint64_t)) *
86                           CHAR_BIT,
87     /// Byte size of a word
88     APINT_WORD_SIZE = static_cast<unsigned int>(sizeof(uint64_t))
89   };
90
91   /// This constructor is used only internally for speed of construction of
92   /// temporaries. It is unsafe for general use so it is not public.
93   /// @brief Fast internal constructor
94   APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { }
95
96   /// @returns true if the number of bits <= 64, false otherwise.
97   /// @brief Determine if this APInt just has one word to store value.
98   bool isSingleWord() const {
99     return BitWidth <= APINT_BITS_PER_WORD;
100   }
101
102   /// @returns the word position for the specified bit position.
103   /// @brief Determine which word a bit is in.
104   static unsigned whichWord(unsigned bitPosition) {
105     return bitPosition / APINT_BITS_PER_WORD;
106   }
107
108   /// @returns the bit position in a word for the specified bit position
109   /// in the APInt.
110   /// @brief Determine which bit in a word a bit is in.
111   static unsigned whichBit(unsigned bitPosition) {
112     return bitPosition % APINT_BITS_PER_WORD;
113   }
114
115   /// This method generates and returns a uint64_t (word) mask for a single
116   /// bit at a specific bit position. This is used to mask the bit in the
117   /// corresponding word.
118   /// @returns a uint64_t with only bit at "whichBit(bitPosition)" set
119   /// @brief Get a single bit mask.
120   static uint64_t maskBit(unsigned bitPosition) {
121     return 1ULL << whichBit(bitPosition);
122   }
123
124   /// This method is used internally to clear the to "N" bits in the high order
125   /// word that are not used by the APInt. This is needed after the most
126   /// significant word is assigned a value to ensure that those bits are
127   /// zero'd out.
128   /// @brief Clear unused high order bits
129   APInt& clearUnusedBits() {
130     // Compute how many bits are used in the final word
131     unsigned wordBits = BitWidth % APINT_BITS_PER_WORD;
132     if (wordBits == 0)
133       // If all bits are used, we want to leave the value alone. This also
134       // avoids the undefined behavior of >> when the shift is the same size as
135       // the word size (64).
136       return *this;
137
138     // Mask out the high bits.
139     uint64_t mask = ~uint64_t(0ULL) >> (APINT_BITS_PER_WORD - wordBits);
140     if (isSingleWord())
141       VAL &= mask;
142     else
143       pVal[getNumWords() - 1] &= mask;
144     return *this;
145   }
146
147   /// @returns the corresponding word for the specified bit position.
148   /// @brief Get the word corresponding to a bit position
149   uint64_t getWord(unsigned bitPosition) const {
150     return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
151   }
152
153   /// Converts a string into a number.  The string must be non-empty
154   /// and well-formed as a number of the given base. The bit-width
155   /// must be sufficient to hold the result.
156   ///
157   /// This is used by the constructors that take string arguments.
158   ///
159   /// StringRef::getAsInteger is superficially similar but (1) does
160   /// not assume that the string is well-formed and (2) grows the
161   /// result to hold the input.
162   ///
163   /// @param radix 2, 8, 10, or 16
164   /// @brief Convert a char array into an APInt
165   void fromString(unsigned numBits, StringRef str, uint8_t radix);
166
167   /// This is used by the toString method to divide by the radix. It simply
168   /// provides a more convenient form of divide for internal use since KnuthDiv
169   /// has specific constraints on its inputs. If those constraints are not met
170   /// then it provides a simpler form of divide.
171   /// @brief An internal division function for dividing APInts.
172   static void divide(const APInt LHS, unsigned lhsWords,
173                      const APInt &RHS, unsigned rhsWords,
174                      APInt *Quotient, APInt *Remainder);
175
176   /// out-of-line slow case for inline constructor
177   void initSlowCase(unsigned numBits, uint64_t val, bool isSigned);
178
179   /// out-of-line slow case for inline copy constructor
180   void initSlowCase(const APInt& that);
181
182   /// out-of-line slow case for shl
183   APInt shlSlowCase(unsigned shiftAmt) const;
184
185   /// out-of-line slow case for operator&
186   APInt AndSlowCase(const APInt& RHS) const;
187
188   /// out-of-line slow case for operator|
189   APInt OrSlowCase(const APInt& RHS) const;
190
191   /// out-of-line slow case for operator^
192   APInt XorSlowCase(const APInt& RHS) const;
193
194   /// out-of-line slow case for operator=
195   APInt& AssignSlowCase(const APInt& RHS);
196
197   /// out-of-line slow case for operator==
198   bool EqualSlowCase(const APInt& RHS) const;
199
200   /// out-of-line slow case for operator==
201   bool EqualSlowCase(uint64_t Val) const;
202
203   /// out-of-line slow case for countLeadingZeros
204   unsigned countLeadingZerosSlowCase() const;
205
206   /// out-of-line slow case for countTrailingOnes
207   unsigned countTrailingOnesSlowCase() const;
208
209   /// out-of-line slow case for countPopulation
210   unsigned countPopulationSlowCase() const;
211
212 public:
213   /// @name Constructors
214   /// @{
215   /// If isSigned is true then val is treated as if it were a signed value
216   /// (i.e. as an int64_t) and the appropriate sign extension to the bit width
217   /// will be done. Otherwise, no sign extension occurs (high order bits beyond
218   /// the range of val are zero filled).
219   /// @param numBits the bit width of the constructed APInt
220   /// @param val the initial value of the APInt
221   /// @param isSigned how to treat signedness of val
222   /// @brief Create a new APInt of numBits width, initialized as val.
223   APInt(unsigned numBits, uint64_t val, bool isSigned = false)
224     : BitWidth(numBits), VAL(0) {
225     assert(BitWidth && "bitwidth too small");
226     if (isSingleWord())
227       VAL = val;
228     else
229       initSlowCase(numBits, val, isSigned);
230     clearUnusedBits();
231   }
232
233   /// Note that numWords can be smaller or larger than the corresponding bit
234   /// width but any extraneous bits will be dropped.
235   /// @param numBits the bit width of the constructed APInt
236   /// @param numWords the number of words in bigVal
237   /// @param bigVal a sequence of words to form the initial value of the APInt
238   /// @brief Construct an APInt of numBits width, initialized as bigVal[].
239   APInt(unsigned numBits, unsigned numWords, const uint64_t bigVal[]);
240
241   /// This constructor interprets the string \arg str in the given radix. The
242   /// interpretation stops when the first character that is not suitable for the
243   /// radix is encountered, or the end of the string. Acceptable radix values
244   /// are 2, 8, 10 and 16. It is an error for the value implied by the string to
245   /// require more bits than numBits.
246   ///
247   /// @param numBits the bit width of the constructed APInt
248   /// @param str the string to be interpreted
249   /// @param radix the radix to use for the conversion 
250   /// @brief Construct an APInt from a string representation.
251   APInt(unsigned numBits, StringRef str, uint8_t radix);
252
253   /// Simply makes *this a copy of that.
254   /// @brief Copy Constructor.
255   APInt(const APInt& that)
256     : BitWidth(that.BitWidth), VAL(0) {
257     assert(BitWidth && "bitwidth too small");
258     if (isSingleWord())
259       VAL = that.VAL;
260     else
261       initSlowCase(that);
262   }
263
264   /// @brief Destructor.
265   ~APInt() {
266     if (!isSingleWord())
267       delete [] pVal;
268   }
269
270   /// Default constructor that creates an uninitialized APInt.  This is useful
271   ///  for object deserialization (pair this with the static method Read).
272   explicit APInt() : BitWidth(1) {}
273
274   /// Profile - Used to insert APInt objects, or objects that contain APInt
275   ///  objects, into FoldingSets.
276   void Profile(FoldingSetNodeID& id) const;
277
278   /// @}
279   /// @name Value Tests
280   /// @{
281   /// This tests the high bit of this APInt to determine if it is set.
282   /// @returns true if this APInt is negative, false otherwise
283   /// @brief Determine sign of this APInt.
284   bool isNegative() const {
285     return (*this)[BitWidth - 1];
286   }
287
288   /// This tests the high bit of the APInt to determine if it is unset.
289   /// @brief Determine if this APInt Value is non-negative (>= 0)
290   bool isNonNegative() const {
291     return !isNegative();
292   }
293
294   /// This tests if the value of this APInt is positive (> 0). Note
295   /// that 0 is not a positive value.
296   /// @returns true if this APInt is positive.
297   /// @brief Determine if this APInt Value is positive.
298   bool isStrictlyPositive() const {
299     return isNonNegative() && !!*this;
300   }
301
302   /// This checks to see if the value has all bits of the APInt are set or not.
303   /// @brief Determine if all bits are set
304   bool isAllOnesValue() const {
305     return countPopulation() == BitWidth;
306   }
307
308   /// This checks to see if the value of this APInt is the maximum unsigned
309   /// value for the APInt's bit width.
310   /// @brief Determine if this is the largest unsigned value.
311   bool isMaxValue() const {
312     return countPopulation() == BitWidth;
313   }
314
315   /// This checks to see if the value of this APInt is the maximum signed
316   /// value for the APInt's bit width.
317   /// @brief Determine if this is the largest signed value.
318   bool isMaxSignedValue() const {
319     return BitWidth == 1 ? VAL == 0 :
320                           !isNegative() && countPopulation() == BitWidth - 1;
321   }
322
323   /// This checks to see if the value of this APInt is the minimum unsigned
324   /// value for the APInt's bit width.
325   /// @brief Determine if this is the smallest unsigned value.
326   bool isMinValue() const {
327     return !*this;
328   }
329
330   /// This checks to see if the value of this APInt is the minimum signed
331   /// value for the APInt's bit width.
332   /// @brief Determine if this is the smallest signed value.
333   bool isMinSignedValue() const {
334     return BitWidth == 1 ? VAL == 1 : isNegative() && isPowerOf2();
335   }
336
337   /// @brief Check if this APInt has an N-bits unsigned integer value.
338   bool isIntN(unsigned N) const {
339     assert(N && "N == 0 ???");
340     if (N >= getBitWidth())
341       return true;
342
343     if (isSingleWord())
344       return isUIntN(N, VAL);
345     return APInt(N, getNumWords(), pVal).zext(getBitWidth()) == (*this);
346   }
347
348   /// @brief Check if this APInt has an N-bits signed integer value.
349   bool isSignedIntN(unsigned N) const {
350     assert(N && "N == 0 ???");
351     return getMinSignedBits() <= N;
352   }
353
354   /// @returns true if the argument APInt value is a power of two > 0.
355   bool isPowerOf2() const {
356     if (isSingleWord())
357       return isPowerOf2_64(VAL);
358     return countPopulationSlowCase() == 1;
359   }
360
361   /// isSignBit - Return true if this is the value returned by getSignBit.
362   bool isSignBit() const { return isMinSignedValue(); }
363
364   /// This converts the APInt to a boolean value as a test against zero.
365   /// @brief Boolean conversion function.
366   bool getBoolValue() const {
367     return !!*this;
368   }
369
370   /// getLimitedValue - If this value is smaller than the specified limit,
371   /// return it, otherwise return the limit value.  This causes the value
372   /// to saturate to the limit.
373   uint64_t getLimitedValue(uint64_t Limit = ~0ULL) const {
374     return (getActiveBits() > 64 || getZExtValue() > Limit) ?
375       Limit :  getZExtValue();
376   }
377
378   /// @}
379   /// @name Value Generators
380   /// @{
381   /// @brief Gets maximum unsigned value of APInt for specific bit width.
382   static APInt getMaxValue(unsigned numBits) {
383     return getAllOnesValue(numBits);
384   }
385
386   /// @brief Gets maximum signed value of APInt for a specific bit width.
387   static APInt getSignedMaxValue(unsigned numBits) {
388     APInt API = getAllOnesValue(numBits);
389     API.clearBit(numBits - 1);
390     return API;
391   }
392
393   /// @brief Gets minimum unsigned value of APInt for a specific bit width.
394   static APInt getMinValue(unsigned numBits) {
395     return APInt(numBits, 0);
396   }
397
398   /// @brief Gets minimum signed value of APInt for a specific bit width.
399   static APInt getSignedMinValue(unsigned numBits) {
400     APInt API(numBits, 0);
401     API.setBit(numBits - 1);
402     return API;
403   }
404
405   /// getSignBit - This is just a wrapper function of getSignedMinValue(), and
406   /// it helps code readability when we want to get a SignBit.
407   /// @brief Get the SignBit for a specific bit width.
408   static APInt getSignBit(unsigned BitWidth) {
409     return getSignedMinValue(BitWidth);
410   }
411
412   /// @returns the all-ones value for an APInt of the specified bit-width.
413   /// @brief Get the all-ones value.
414   static APInt getAllOnesValue(unsigned numBits) {
415     return APInt(numBits, -1ULL, true);
416   }
417
418   /// @returns the '0' value for an APInt of the specified bit-width.
419   /// @brief Get the '0' value.
420   static APInt getNullValue(unsigned numBits) {
421     return APInt(numBits, 0);
422   }
423
424   /// Get an APInt with the same BitWidth as this APInt, just zero mask
425   /// the low bits and right shift to the least significant bit.
426   /// @returns the high "numBits" bits of this APInt.
427   APInt getHiBits(unsigned numBits) const;
428
429   /// Get an APInt with the same BitWidth as this APInt, just zero mask
430   /// the high bits.
431   /// @returns the low "numBits" bits of this APInt.
432   APInt getLoBits(unsigned numBits) const;
433
434   /// getOneBitSet - Return an APInt with exactly one bit set in the result.
435   static APInt getOneBitSet(unsigned numBits, unsigned BitNo) {
436     APInt Res(numBits, 0);
437     Res.setBit(BitNo);
438     return Res;
439   }
440   
441   /// Constructs an APInt value that has a contiguous range of bits set. The
442   /// bits from loBit (inclusive) to hiBit (exclusive) will be set. All other
443   /// bits will be zero. For example, with parameters(32, 0, 16) you would get
444   /// 0x0000FFFF. If hiBit is less than loBit then the set bits "wrap". For
445   /// example, with parameters (32, 28, 4), you would get 0xF000000F.
446   /// @param numBits the intended bit width of the result
447   /// @param loBit the index of the lowest bit set.
448   /// @param hiBit the index of the highest bit set.
449   /// @returns An APInt value with the requested bits set.
450   /// @brief Get a value with a block of bits set.
451   static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit) {
452     assert(hiBit <= numBits && "hiBit out of range");
453     assert(loBit < numBits && "loBit out of range");
454     if (hiBit < loBit)
455       return getLowBitsSet(numBits, hiBit) |
456              getHighBitsSet(numBits, numBits-loBit);
457     return getLowBitsSet(numBits, hiBit-loBit).shl(loBit);
458   }
459
460   /// Constructs an APInt value that has the top hiBitsSet bits set.
461   /// @param numBits the bitwidth of the result
462   /// @param hiBitsSet the number of high-order bits set in the result.
463   /// @brief Get a value with high bits set
464   static APInt getHighBitsSet(unsigned numBits, unsigned hiBitsSet) {
465     assert(hiBitsSet <= numBits && "Too many bits to set!");
466     // Handle a degenerate case, to avoid shifting by word size
467     if (hiBitsSet == 0)
468       return APInt(numBits, 0);
469     unsigned shiftAmt = numBits - hiBitsSet;
470     // For small values, return quickly
471     if (numBits <= APINT_BITS_PER_WORD)
472       return APInt(numBits, ~0ULL << shiftAmt);
473     return getAllOnesValue(numBits).shl(shiftAmt);
474   }
475
476   /// Constructs an APInt value that has the bottom loBitsSet bits set.
477   /// @param numBits the bitwidth of the result
478   /// @param loBitsSet the number of low-order bits set in the result.
479   /// @brief Get a value with low bits set
480   static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet) {
481     assert(loBitsSet <= numBits && "Too many bits to set!");
482     // Handle a degenerate case, to avoid shifting by word size
483     if (loBitsSet == 0)
484       return APInt(numBits, 0);
485     if (loBitsSet == APINT_BITS_PER_WORD)
486       return APInt(numBits, -1ULL);
487     // For small values, return quickly.
488     if (numBits < APINT_BITS_PER_WORD)
489       return APInt(numBits, (1ULL << loBitsSet) - 1);
490     return getAllOnesValue(numBits).lshr(numBits - loBitsSet);
491   }
492
493   /// The hash value is computed as the sum of the words and the bit width.
494   /// @returns A hash value computed from the sum of the APInt words.
495   /// @brief Get a hash value based on this APInt
496   uint64_t getHashValue() const;
497
498   /// This function returns a pointer to the internal storage of the APInt.
499   /// This is useful for writing out the APInt in binary form without any
500   /// conversions.
501   const uint64_t* getRawData() const {
502     if (isSingleWord())
503       return &VAL;
504     return &pVal[0];
505   }
506
507   /// @}
508   /// @name Unary Operators
509   /// @{
510   /// @returns a new APInt value representing *this incremented by one
511   /// @brief Postfix increment operator.
512   const APInt operator++(int) {
513     APInt API(*this);
514     ++(*this);
515     return API;
516   }
517
518   /// @returns *this incremented by one
519   /// @brief Prefix increment operator.
520   APInt& operator++();
521
522   /// @returns a new APInt representing *this decremented by one.
523   /// @brief Postfix decrement operator.
524   const APInt operator--(int) {
525     APInt API(*this);
526     --(*this);
527     return API;
528   }
529
530   /// @returns *this decremented by one.
531   /// @brief Prefix decrement operator.
532   APInt& operator--();
533
534   /// Performs a bitwise complement operation on this APInt.
535   /// @returns an APInt that is the bitwise complement of *this
536   /// @brief Unary bitwise complement operator.
537   APInt operator~() const {
538     APInt Result(*this);
539     Result.flipAllBits();
540     return Result;
541   }
542
543   /// Negates *this using two's complement logic.
544   /// @returns An APInt value representing the negation of *this.
545   /// @brief Unary negation operator
546   APInt operator-() const {
547     return APInt(BitWidth, 0) - (*this);
548   }
549
550   /// Performs logical negation operation on this APInt.
551   /// @returns true if *this is zero, false otherwise.
552   /// @brief Logical negation operator.
553   bool operator!() const;
554
555   /// @}
556   /// @name Assignment Operators
557   /// @{
558   /// @returns *this after assignment of RHS.
559   /// @brief Copy assignment operator.
560   APInt& operator=(const APInt& RHS) {
561     // If the bitwidths are the same, we can avoid mucking with memory
562     if (isSingleWord() && RHS.isSingleWord()) {
563       VAL = RHS.VAL;
564       BitWidth = RHS.BitWidth;
565       return clearUnusedBits();
566     }
567
568     return AssignSlowCase(RHS);
569   }
570
571   /// The RHS value is assigned to *this. If the significant bits in RHS exceed
572   /// the bit width, the excess bits are truncated. If the bit width is larger
573   /// than 64, the value is zero filled in the unspecified high order bits.
574   /// @returns *this after assignment of RHS value.
575   /// @brief Assignment operator.
576   APInt& operator=(uint64_t RHS);
577
578   /// Performs a bitwise AND operation on this APInt and RHS. The result is
579   /// assigned to *this.
580   /// @returns *this after ANDing with RHS.
581   /// @brief Bitwise AND assignment operator.
582   APInt& operator&=(const APInt& RHS);
583
584   /// Performs a bitwise OR operation on this APInt and RHS. The result is
585   /// assigned *this;
586   /// @returns *this after ORing with RHS.
587   /// @brief Bitwise OR assignment operator.
588   APInt& operator|=(const APInt& RHS);
589
590   /// Performs a bitwise OR operation on this APInt and RHS. RHS is
591   /// logically zero-extended or truncated to match the bit-width of
592   /// the LHS.
593   /// 
594   /// @brief Bitwise OR assignment operator.
595   APInt& operator|=(uint64_t RHS) {
596     if (isSingleWord()) {
597       VAL |= RHS;
598       clearUnusedBits();
599     } else {
600       pVal[0] |= RHS;
601     }
602     return *this;
603   }
604
605   /// Performs a bitwise XOR operation on this APInt and RHS. The result is
606   /// assigned to *this.
607   /// @returns *this after XORing with RHS.
608   /// @brief Bitwise XOR assignment operator.
609   APInt& operator^=(const APInt& RHS);
610
611   /// Multiplies this APInt by RHS and assigns the result to *this.
612   /// @returns *this
613   /// @brief Multiplication assignment operator.
614   APInt& operator*=(const APInt& RHS);
615
616   /// Adds RHS to *this and assigns the result to *this.
617   /// @returns *this
618   /// @brief Addition assignment operator.
619   APInt& operator+=(const APInt& RHS);
620
621   /// Subtracts RHS from *this and assigns the result to *this.
622   /// @returns *this
623   /// @brief Subtraction assignment operator.
624   APInt& operator-=(const APInt& RHS);
625
626   /// Shifts *this left by shiftAmt and assigns the result to *this.
627   /// @returns *this after shifting left by shiftAmt
628   /// @brief Left-shift assignment function.
629   APInt& operator<<=(unsigned shiftAmt) {
630     *this = shl(shiftAmt);
631     return *this;
632   }
633
634   /// @}
635   /// @name Binary Operators
636   /// @{
637   /// Performs a bitwise AND operation on *this and RHS.
638   /// @returns An APInt value representing the bitwise AND of *this and RHS.
639   /// @brief Bitwise AND operator.
640   APInt operator&(const APInt& RHS) const {
641     assert(BitWidth == RHS.BitWidth && "Bit widths must be the same");
642     if (isSingleWord())
643       return APInt(getBitWidth(), VAL & RHS.VAL);
644     return AndSlowCase(RHS);
645   }
646   APInt And(const APInt& RHS) const {
647     return this->operator&(RHS);
648   }
649
650   /// Performs a bitwise OR operation on *this and RHS.
651   /// @returns An APInt value representing the bitwise OR of *this and RHS.
652   /// @brief Bitwise OR operator.
653   APInt operator|(const APInt& RHS) const {
654     assert(BitWidth == RHS.BitWidth && "Bit widths must be the same");
655     if (isSingleWord())
656       return APInt(getBitWidth(), VAL | RHS.VAL);
657     return OrSlowCase(RHS);
658   }
659   APInt Or(const APInt& RHS) const {
660     return this->operator|(RHS);
661   }
662
663   /// Performs a bitwise XOR operation on *this and RHS.
664   /// @returns An APInt value representing the bitwise XOR of *this and RHS.
665   /// @brief Bitwise XOR operator.
666   APInt operator^(const APInt& RHS) const {
667     assert(BitWidth == RHS.BitWidth && "Bit widths must be the same");
668     if (isSingleWord())
669       return APInt(BitWidth, VAL ^ RHS.VAL);
670     return XorSlowCase(RHS);
671   }
672   APInt Xor(const APInt& RHS) const {
673     return this->operator^(RHS);
674   }
675
676   /// Multiplies this APInt by RHS and returns the result.
677   /// @brief Multiplication operator.
678   APInt operator*(const APInt& RHS) const;
679
680   /// Adds RHS to this APInt and returns the result.
681   /// @brief Addition operator.
682   APInt operator+(const APInt& RHS) const;
683   APInt operator+(uint64_t RHS) const {
684     return (*this) + APInt(BitWidth, RHS);
685   }
686
687   /// Subtracts RHS from this APInt and returns the result.
688   /// @brief Subtraction operator.
689   APInt operator-(const APInt& RHS) const;
690   APInt operator-(uint64_t RHS) const {
691     return (*this) - APInt(BitWidth, RHS);
692   }
693
694   APInt operator<<(unsigned Bits) const {
695     return shl(Bits);
696   }
697
698   APInt operator<<(const APInt &Bits) const {
699     return shl(Bits);
700   }
701
702   /// Arithmetic right-shift this APInt by shiftAmt.
703   /// @brief Arithmetic right-shift function.
704   APInt ashr(unsigned shiftAmt) const;
705
706   /// Logical right-shift this APInt by shiftAmt.
707   /// @brief Logical right-shift function.
708   APInt lshr(unsigned shiftAmt) const;
709
710   /// Left-shift this APInt by shiftAmt.
711   /// @brief Left-shift function.
712   APInt shl(unsigned shiftAmt) const {
713     assert(shiftAmt <= BitWidth && "Invalid shift amount");
714     if (isSingleWord()) {
715       if (shiftAmt == BitWidth)
716         return APInt(BitWidth, 0); // avoid undefined shift results
717       return APInt(BitWidth, VAL << shiftAmt);
718     }
719     return shlSlowCase(shiftAmt);
720   }
721
722   /// @brief Rotate left by rotateAmt.
723   APInt rotl(unsigned rotateAmt) const;
724
725   /// @brief Rotate right by rotateAmt.
726   APInt rotr(unsigned rotateAmt) const;
727
728   /// Arithmetic right-shift this APInt by shiftAmt.
729   /// @brief Arithmetic right-shift function.
730   APInt ashr(const APInt &shiftAmt) const;
731
732   /// Logical right-shift this APInt by shiftAmt.
733   /// @brief Logical right-shift function.
734   APInt lshr(const APInt &shiftAmt) const;
735
736   /// Left-shift this APInt by shiftAmt.
737   /// @brief Left-shift function.
738   APInt shl(const APInt &shiftAmt) const;
739
740   /// @brief Rotate left by rotateAmt.
741   APInt rotl(const APInt &rotateAmt) const;
742
743   /// @brief Rotate right by rotateAmt.
744   APInt rotr(const APInt &rotateAmt) const;
745
746   /// Perform an unsigned divide operation on this APInt by RHS. Both this and
747   /// RHS are treated as unsigned quantities for purposes of this division.
748   /// @returns a new APInt value containing the division result
749   /// @brief Unsigned division operation.
750   APInt udiv(const APInt &RHS) const;
751
752   /// Signed divide this APInt by APInt RHS.
753   /// @brief Signed division function for APInt.
754   APInt sdiv(const APInt &RHS) const {
755     if (isNegative())
756       if (RHS.isNegative())
757         return (-(*this)).udiv(-RHS);
758       else
759         return -((-(*this)).udiv(RHS));
760     else if (RHS.isNegative())
761       return -(this->udiv(-RHS));
762     return this->udiv(RHS);
763   }
764
765   /// Perform an unsigned remainder operation on this APInt with RHS being the
766   /// divisor. Both this and RHS are treated as unsigned quantities for purposes
767   /// of this operation. Note that this is a true remainder operation and not
768   /// a modulo operation because the sign follows the sign of the dividend
769   /// which is *this.
770   /// @returns a new APInt value containing the remainder result
771   /// @brief Unsigned remainder operation.
772   APInt urem(const APInt &RHS) const;
773
774   /// Signed remainder operation on APInt.
775   /// @brief Function for signed remainder operation.
776   APInt srem(const APInt &RHS) const {
777     if (isNegative())
778       if (RHS.isNegative())
779         return -((-(*this)).urem(-RHS));
780       else
781         return -((-(*this)).urem(RHS));
782     else if (RHS.isNegative())
783       return this->urem(-RHS);
784     return this->urem(RHS);
785   }
786
787   /// Sometimes it is convenient to divide two APInt values and obtain both the
788   /// quotient and remainder. This function does both operations in the same
789   /// computation making it a little more efficient. The pair of input arguments
790   /// may overlap with the pair of output arguments. It is safe to call
791   /// udivrem(X, Y, X, Y), for example.
792   /// @brief Dual division/remainder interface.
793   static void udivrem(const APInt &LHS, const APInt &RHS,
794                       APInt &Quotient, APInt &Remainder);
795
796   static void sdivrem(const APInt &LHS, const APInt &RHS,
797                       APInt &Quotient, APInt &Remainder) {
798     if (LHS.isNegative()) {
799       if (RHS.isNegative())
800         APInt::udivrem(-LHS, -RHS, Quotient, Remainder);
801       else
802         APInt::udivrem(-LHS, RHS, Quotient, Remainder);
803       Quotient = -Quotient;
804       Remainder = -Remainder;
805     } else if (RHS.isNegative()) {
806       APInt::udivrem(LHS, -RHS, Quotient, Remainder);
807       Quotient = -Quotient;
808     } else {
809       APInt::udivrem(LHS, RHS, Quotient, Remainder);
810     }
811   }
812   
813   
814   // Operations that return overflow indicators.
815   APInt sadd_ov(const APInt &RHS, bool &Overflow) const;
816   APInt uadd_ov(const APInt &RHS, bool &Overflow) const;
817   APInt ssub_ov(const APInt &RHS, bool &Overflow) const;
818   APInt usub_ov(const APInt &RHS, bool &Overflow) const;
819   APInt sdiv_ov(const APInt &RHS, bool &Overflow) const;
820   APInt smul_ov(const APInt &RHS, bool &Overflow) const;
821   APInt umul_ov(const APInt &RHS, bool &Overflow) const;
822   APInt sshl_ov(unsigned Amt, bool &Overflow) const;
823
824   /// @returns the bit value at bitPosition
825   /// @brief Array-indexing support.
826   bool operator[](unsigned bitPosition) const;
827
828   /// @}
829   /// @name Comparison Operators
830   /// @{
831   /// Compares this APInt with RHS for the validity of the equality
832   /// relationship.
833   /// @brief Equality operator.
834   bool operator==(const APInt& RHS) const {
835     assert(BitWidth == RHS.BitWidth && "Comparison requires equal bit widths");
836     if (isSingleWord())
837       return VAL == RHS.VAL;
838     return EqualSlowCase(RHS);
839   }
840
841   /// Compares this APInt with a uint64_t for the validity of the equality
842   /// relationship.
843   /// @returns true if *this == Val
844   /// @brief Equality operator.
845   bool operator==(uint64_t Val) const {
846     if (isSingleWord())
847       return VAL == Val;
848     return EqualSlowCase(Val);
849   }
850
851   /// Compares this APInt with RHS for the validity of the equality
852   /// relationship.
853   /// @returns true if *this == Val
854   /// @brief Equality comparison.
855   bool eq(const APInt &RHS) const {
856     return (*this) == RHS;
857   }
858
859   /// Compares this APInt with RHS for the validity of the inequality
860   /// relationship.
861   /// @returns true if *this != Val
862   /// @brief Inequality operator.
863   bool operator!=(const APInt& RHS) const {
864     return !((*this) == RHS);
865   }
866
867   /// Compares this APInt with a uint64_t for the validity of the inequality
868   /// relationship.
869   /// @returns true if *this != Val
870   /// @brief Inequality operator.
871   bool operator!=(uint64_t Val) const {
872     return !((*this) == Val);
873   }
874
875   /// Compares this APInt with RHS for the validity of the inequality
876   /// relationship.
877   /// @returns true if *this != Val
878   /// @brief Inequality comparison
879   bool ne(const APInt &RHS) const {
880     return !((*this) == RHS);
881   }
882
883   /// Regards both *this and RHS as unsigned quantities and compares them for
884   /// the validity of the less-than relationship.
885   /// @returns true if *this < RHS when both are considered unsigned.
886   /// @brief Unsigned less than comparison
887   bool ult(const APInt &RHS) const;
888
889   /// Regards both *this as an unsigned quantity and compares it with RHS for
890   /// the validity of the less-than relationship.
891   /// @returns true if *this < RHS when considered unsigned.
892   /// @brief Unsigned less than comparison
893   bool ult(uint64_t RHS) const {
894     return ult(APInt(getBitWidth(), RHS));
895   }
896
897   /// Regards both *this and RHS as signed quantities and compares them for
898   /// validity of the less-than relationship.
899   /// @returns true if *this < RHS when both are considered signed.
900   /// @brief Signed less than comparison
901   bool slt(const APInt& RHS) const;
902
903   /// Regards both *this as a signed quantity and compares it with RHS for
904   /// the validity of the less-than relationship.
905   /// @returns true if *this < RHS when considered signed.
906   /// @brief Signed less than comparison
907   bool slt(uint64_t RHS) const {
908     return slt(APInt(getBitWidth(), RHS));
909   }
910
911   /// Regards both *this and RHS as unsigned quantities and compares them for
912   /// validity of the less-or-equal relationship.
913   /// @returns true if *this <= RHS when both are considered unsigned.
914   /// @brief Unsigned less or equal comparison
915   bool ule(const APInt& RHS) const {
916     return ult(RHS) || eq(RHS);
917   }
918
919   /// Regards both *this as an unsigned quantity and compares it with RHS for
920   /// the validity of the less-or-equal relationship.
921   /// @returns true if *this <= RHS when considered unsigned.
922   /// @brief Unsigned less or equal comparison
923   bool ule(uint64_t RHS) const {
924     return ule(APInt(getBitWidth(), RHS));
925   }
926
927   /// Regards both *this and RHS as signed quantities and compares them for
928   /// validity of the less-or-equal relationship.
929   /// @returns true if *this <= RHS when both are considered signed.
930   /// @brief Signed less or equal comparison
931   bool sle(const APInt& RHS) const {
932     return slt(RHS) || eq(RHS);
933   }
934
935   /// Regards both *this as a signed quantity and compares it with RHS for
936   /// the validity of the less-or-equal relationship.
937   /// @returns true if *this <= RHS when considered signed.
938   /// @brief Signed less or equal comparison
939   bool sle(uint64_t RHS) const {
940     return sle(APInt(getBitWidth(), RHS));
941   }
942
943   /// Regards both *this and RHS as unsigned quantities and compares them for
944   /// the validity of the greater-than relationship.
945   /// @returns true if *this > RHS when both are considered unsigned.
946   /// @brief Unsigned greather than comparison
947   bool ugt(const APInt& RHS) const {
948     return !ult(RHS) && !eq(RHS);
949   }
950
951   /// Regards both *this as an unsigned quantity and compares it with RHS for
952   /// the validity of the greater-than relationship.
953   /// @returns true if *this > RHS when considered unsigned.
954   /// @brief Unsigned greater than comparison
955   bool ugt(uint64_t RHS) const {
956     return ugt(APInt(getBitWidth(), RHS));
957   }
958
959   /// Regards both *this and RHS as signed quantities and compares them for
960   /// the validity of the greater-than relationship.
961   /// @returns true if *this > RHS when both are considered signed.
962   /// @brief Signed greather than comparison
963   bool sgt(const APInt& RHS) const {
964     return !slt(RHS) && !eq(RHS);
965   }
966
967   /// Regards both *this as a signed quantity and compares it with RHS for
968   /// the validity of the greater-than relationship.
969   /// @returns true if *this > RHS when considered signed.
970   /// @brief Signed greater than comparison
971   bool sgt(uint64_t RHS) const {
972     return sgt(APInt(getBitWidth(), RHS));
973   }
974
975   /// Regards both *this and RHS as unsigned quantities and compares them for
976   /// validity of the greater-or-equal relationship.
977   /// @returns true if *this >= RHS when both are considered unsigned.
978   /// @brief Unsigned greater or equal comparison
979   bool uge(const APInt& RHS) const {
980     return !ult(RHS);
981   }
982
983   /// Regards both *this as an unsigned quantity and compares it with RHS for
984   /// the validity of the greater-or-equal relationship.
985   /// @returns true if *this >= RHS when considered unsigned.
986   /// @brief Unsigned greater or equal comparison
987   bool uge(uint64_t RHS) const {
988     return uge(APInt(getBitWidth(), RHS));
989   }
990
991   /// Regards both *this and RHS as signed quantities and compares them for
992   /// validity of the greater-or-equal relationship.
993   /// @returns true if *this >= RHS when both are considered signed.
994   /// @brief Signed greather or equal comparison
995   bool sge(const APInt& RHS) const {
996     return !slt(RHS);
997   }
998
999   /// Regards both *this as a signed quantity and compares it with RHS for
1000   /// the validity of the greater-or-equal relationship.
1001   /// @returns true if *this >= RHS when considered signed.
1002   /// @brief Signed greater or equal comparison
1003   bool sge(uint64_t RHS) const {
1004     return sge(APInt(getBitWidth(), RHS));
1005   }
1006
1007   
1008   
1009   
1010   /// This operation tests if there are any pairs of corresponding bits
1011   /// between this APInt and RHS that are both set.
1012   bool intersects(const APInt &RHS) const {
1013     return (*this & RHS) != 0;
1014   }
1015
1016   /// @}
1017   /// @name Resizing Operators
1018   /// @{
1019   /// Truncate the APInt to a specified width. It is an error to specify a width
1020   /// that is greater than or equal to the current width.
1021   /// @brief Truncate to new width.
1022   APInt trunc(unsigned width) const;
1023
1024   /// This operation sign extends the APInt to a new width. If the high order
1025   /// bit is set, the fill on the left will be done with 1 bits, otherwise zero.
1026   /// It is an error to specify a width that is less than or equal to the
1027   /// current width.
1028   /// @brief Sign extend to a new width.
1029   APInt sext(unsigned width) const;
1030
1031   /// This operation zero extends the APInt to a new width. The high order bits
1032   /// are filled with 0 bits.  It is an error to specify a width that is less
1033   /// than or equal to the current width.
1034   /// @brief Zero extend to a new width.
1035   APInt zext(unsigned width) const;
1036
1037   /// Make this APInt have the bit width given by \p width. The value is sign
1038   /// extended, truncated, or left alone to make it that width.
1039   /// @brief Sign extend or truncate to width
1040   APInt sextOrTrunc(unsigned width) const;
1041
1042   /// Make this APInt have the bit width given by \p width. The value is zero
1043   /// extended, truncated, or left alone to make it that width.
1044   /// @brief Zero extend or truncate to width
1045   APInt zextOrTrunc(unsigned width) const;
1046
1047   /// @}
1048   /// @name Bit Manipulation Operators
1049   /// @{
1050   /// @brief Set every bit to 1.
1051   void setAllBits() {
1052     if (isSingleWord())
1053       VAL = -1ULL;
1054     else {
1055       // Set all the bits in all the words.
1056       for (unsigned i = 0; i < getNumWords(); ++i)
1057         pVal[i] = -1ULL;
1058     }
1059     // Clear the unused ones
1060     clearUnusedBits();
1061   }
1062
1063   /// Set the given bit to 1 whose position is given as "bitPosition".
1064   /// @brief Set a given bit to 1.
1065   void setBit(unsigned bitPosition);
1066
1067   /// @brief Set every bit to 0.
1068   void clearAllBits() {
1069     if (isSingleWord())
1070       VAL = 0;
1071     else
1072       memset(pVal, 0, getNumWords() * APINT_WORD_SIZE);
1073   }
1074
1075   /// Set the given bit to 0 whose position is given as "bitPosition".
1076   /// @brief Set a given bit to 0.
1077   void clearBit(unsigned bitPosition);
1078
1079   /// @brief Toggle every bit to its opposite value.
1080   void flipAllBits() {
1081     if (isSingleWord())
1082       VAL ^= -1ULL;
1083     else {
1084       for (unsigned i = 0; i < getNumWords(); ++i)
1085         pVal[i] ^= -1ULL;
1086     }
1087     clearUnusedBits();
1088   }
1089
1090   /// Toggle a given bit to its opposite value whose position is given
1091   /// as "bitPosition".
1092   /// @brief Toggles a given bit to its opposite value.
1093   void flipBit(unsigned bitPosition);
1094
1095   /// @}
1096   /// @name Value Characterization Functions
1097   /// @{
1098
1099   /// @returns the total number of bits.
1100   unsigned getBitWidth() const {
1101     return BitWidth;
1102   }
1103
1104   /// Here one word's bitwidth equals to that of uint64_t.
1105   /// @returns the number of words to hold the integer value of this APInt.
1106   /// @brief Get the number of words.
1107   unsigned getNumWords() const {
1108     return getNumWords(BitWidth);
1109   }
1110
1111   /// Here one word's bitwidth equals to that of uint64_t.
1112   /// @returns the number of words to hold the integer value with a
1113   /// given bit width.
1114   /// @brief Get the number of words.
1115   static unsigned getNumWords(unsigned BitWidth) {
1116     return (BitWidth + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD;
1117   }
1118
1119   /// This function returns the number of active bits which is defined as the
1120   /// bit width minus the number of leading zeros. This is used in several
1121   /// computations to see how "wide" the value is.
1122   /// @brief Compute the number of active bits in the value
1123   unsigned getActiveBits() const {
1124     return BitWidth - countLeadingZeros();
1125   }
1126
1127   /// This function returns the number of active words in the value of this
1128   /// APInt. This is used in conjunction with getActiveData to extract the raw
1129   /// value of the APInt.
1130   unsigned getActiveWords() const {
1131     return whichWord(getActiveBits()-1) + 1;
1132   }
1133
1134   /// Computes the minimum bit width for this APInt while considering it to be
1135   /// a signed (and probably negative) value. If the value is not negative,
1136   /// this function returns the same value as getActiveBits()+1. Otherwise, it
1137   /// returns the smallest bit width that will retain the negative value. For
1138   /// example, -1 can be written as 0b1 or 0xFFFFFFFFFF. 0b1 is shorter and so
1139   /// for -1, this function will always return 1.
1140   /// @brief Get the minimum bit size for this signed APInt
1141   unsigned getMinSignedBits() const {
1142     if (isNegative())
1143       return BitWidth - countLeadingOnes() + 1;
1144     return getActiveBits()+1;
1145   }
1146
1147   /// This method attempts to return the value of this APInt as a zero extended
1148   /// uint64_t. The bitwidth must be <= 64 or the value must fit within a
1149   /// uint64_t. Otherwise an assertion will result.
1150   /// @brief Get zero extended value
1151   uint64_t getZExtValue() const {
1152     if (isSingleWord())
1153       return VAL;
1154     assert(getActiveBits() <= 64 && "Too many bits for uint64_t");
1155     return pVal[0];
1156   }
1157
1158   /// This method attempts to return the value of this APInt as a sign extended
1159   /// int64_t. The bit width must be <= 64 or the value must fit within an
1160   /// int64_t. Otherwise an assertion will result.
1161   /// @brief Get sign extended value
1162   int64_t getSExtValue() const {
1163     if (isSingleWord())
1164       return int64_t(VAL << (APINT_BITS_PER_WORD - BitWidth)) >>
1165                      (APINT_BITS_PER_WORD - BitWidth);
1166     assert(getMinSignedBits() <= 64 && "Too many bits for int64_t");
1167     return int64_t(pVal[0]);
1168   }
1169
1170   /// This method determines how many bits are required to hold the APInt
1171   /// equivalent of the string given by \arg str.
1172   /// @brief Get bits required for string value.
1173   static unsigned getBitsNeeded(StringRef str, uint8_t radix);
1174
1175   /// countLeadingZeros - This function is an APInt version of the
1176   /// countLeadingZeros_{32,64} functions in MathExtras.h. It counts the number
1177   /// of zeros from the most significant bit to the first one bit.
1178   /// @returns BitWidth if the value is zero.
1179   /// @returns the number of zeros from the most significant bit to the first
1180   /// one bits.
1181   unsigned countLeadingZeros() const {
1182     if (isSingleWord()) {
1183       unsigned unusedBits = APINT_BITS_PER_WORD - BitWidth;
1184       return CountLeadingZeros_64(VAL) - unusedBits;
1185     }
1186     return countLeadingZerosSlowCase();
1187   }
1188
1189   /// countLeadingOnes - This function is an APInt version of the
1190   /// countLeadingOnes_{32,64} functions in MathExtras.h. It counts the number
1191   /// of ones from the most significant bit to the first zero bit.
1192   /// @returns 0 if the high order bit is not set
1193   /// @returns the number of 1 bits from the most significant to the least
1194   /// @brief Count the number of leading one bits.
1195   unsigned countLeadingOnes() const;
1196
1197   /// Computes the number of leading bits of this APInt that are equal to its
1198   /// sign bit.
1199   unsigned getNumSignBits() const {
1200     return isNegative() ? countLeadingOnes() : countLeadingZeros();
1201   }
1202
1203   /// countTrailingZeros - This function is an APInt version of the
1204   /// countTrailingZeros_{32,64} functions in MathExtras.h. It counts
1205   /// the number of zeros from the least significant bit to the first set bit.
1206   /// @returns BitWidth if the value is zero.
1207   /// @returns the number of zeros from the least significant bit to the first
1208   /// one bit.
1209   /// @brief Count the number of trailing zero bits.
1210   unsigned countTrailingZeros() const;
1211
1212   /// countTrailingOnes - This function is an APInt version of the
1213   /// countTrailingOnes_{32,64} functions in MathExtras.h. It counts
1214   /// the number of ones from the least significant bit to the first zero bit.
1215   /// @returns BitWidth if the value is all ones.
1216   /// @returns the number of ones from the least significant bit to the first
1217   /// zero bit.
1218   /// @brief Count the number of trailing one bits.
1219   unsigned countTrailingOnes() const {
1220     if (isSingleWord())
1221       return CountTrailingOnes_64(VAL);
1222     return countTrailingOnesSlowCase();
1223   }
1224
1225   /// countPopulation - This function is an APInt version of the
1226   /// countPopulation_{32,64} functions in MathExtras.h. It counts the number
1227   /// of 1 bits in the APInt value.
1228   /// @returns 0 if the value is zero.
1229   /// @returns the number of set bits.
1230   /// @brief Count the number of bits set.
1231   unsigned countPopulation() const {
1232     if (isSingleWord())
1233       return CountPopulation_64(VAL);
1234     return countPopulationSlowCase();
1235   }
1236
1237   /// @}
1238   /// @name Conversion Functions
1239   /// @{
1240   void print(raw_ostream &OS, bool isSigned) const;
1241
1242   /// toString - Converts an APInt to a string and append it to Str.  Str is
1243   /// commonly a SmallString.
1244   void toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed,
1245                 bool formatAsCLiteral = false) const;
1246
1247   /// Considers the APInt to be unsigned and converts it into a string in the
1248   /// radix given. The radix can be 2, 8, 10 or 16.
1249   void toStringUnsigned(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
1250     toString(Str, Radix, false, false);
1251   }
1252
1253   /// Considers the APInt to be signed and converts it into a string in the
1254   /// radix given. The radix can be 2, 8, 10 or 16.
1255   void toStringSigned(SmallVectorImpl<char> &Str, unsigned Radix = 10) const {
1256     toString(Str, Radix, true, false);
1257   }
1258
1259   /// toString - This returns the APInt as a std::string.  Note that this is an
1260   /// inefficient method.  It is better to pass in a SmallVector/SmallString
1261   /// to the methods above to avoid thrashing the heap for the string.
1262   std::string toString(unsigned Radix, bool Signed) const;
1263
1264
1265   /// @returns a byte-swapped representation of this APInt Value.
1266   APInt byteSwap() const;
1267
1268   /// @brief Converts this APInt to a double value.
1269   double roundToDouble(bool isSigned) const;
1270
1271   /// @brief Converts this unsigned APInt to a double value.
1272   double roundToDouble() const {
1273     return roundToDouble(false);
1274   }
1275
1276   /// @brief Converts this signed APInt to a double value.
1277   double signedRoundToDouble() const {
1278     return roundToDouble(true);
1279   }
1280
1281   /// The conversion does not do a translation from integer to double, it just
1282   /// re-interprets the bits as a double. Note that it is valid to do this on
1283   /// any bit width. Exactly 64 bits will be translated.
1284   /// @brief Converts APInt bits to a double
1285   double bitsToDouble() const {
1286     union {
1287       uint64_t I;
1288       double D;
1289     } T;
1290     T.I = (isSingleWord() ? VAL : pVal[0]);
1291     return T.D;
1292   }
1293
1294   /// The conversion does not do a translation from integer to float, it just
1295   /// re-interprets the bits as a float. Note that it is valid to do this on
1296   /// any bit width. Exactly 32 bits will be translated.
1297   /// @brief Converts APInt bits to a double
1298   float bitsToFloat() const {
1299     union {
1300       unsigned I;
1301       float F;
1302     } T;
1303     T.I = unsigned((isSingleWord() ? VAL : pVal[0]));
1304     return T.F;
1305   }
1306
1307   /// The conversion does not do a translation from double to integer, it just
1308   /// re-interprets the bits of the double.
1309   /// @brief Converts a double to APInt bits.
1310   static APInt doubleToBits(double V) {
1311     union {
1312       uint64_t I;
1313       double D;
1314     } T;
1315     T.D = V;
1316     return APInt(sizeof T * CHAR_BIT, T.I);
1317   }
1318
1319   /// The conversion does not do a translation from float to integer, it just
1320   /// re-interprets the bits of the float.
1321   /// @brief Converts a float to APInt bits.
1322   static APInt floatToBits(float V) {
1323     union {
1324       unsigned I;
1325       float F;
1326     } T;
1327     T.F = V;
1328     return APInt(sizeof T * CHAR_BIT, T.I);
1329   }
1330
1331   /// @}
1332   /// @name Mathematics Operations
1333   /// @{
1334
1335   /// @returns the floor log base 2 of this APInt.
1336   unsigned logBase2() const {
1337     return BitWidth - 1 - countLeadingZeros();
1338   }
1339
1340   /// @returns the ceil log base 2 of this APInt.
1341   unsigned ceilLogBase2() const {
1342     return BitWidth - (*this - 1).countLeadingZeros();
1343   }
1344
1345   /// @returns the log base 2 of this APInt if its an exact power of two, -1
1346   /// otherwise
1347   int32_t exactLogBase2() const {
1348     if (!isPowerOf2())
1349       return -1;
1350     return logBase2();
1351   }
1352
1353   /// @brief Compute the square root
1354   APInt sqrt() const;
1355
1356   /// If *this is < 0 then return -(*this), otherwise *this;
1357   /// @brief Get the absolute value;
1358   APInt abs() const {
1359     if (isNegative())
1360       return -(*this);
1361     return *this;
1362   }
1363
1364   /// @returns the multiplicative inverse for a given modulo.
1365   APInt multiplicativeInverse(const APInt& modulo) const;
1366
1367   /// @}
1368   /// @name Support for division by constant
1369   /// @{
1370
1371   /// Calculate the magic number for signed division by a constant.
1372   struct ms;
1373   ms magic() const;
1374
1375   /// Calculate the magic number for unsigned division by a constant.
1376   struct mu;
1377   mu magicu(unsigned LeadingZeros = 0) const;
1378
1379   /// @}
1380   /// @name Building-block Operations for APInt and APFloat
1381   /// @{
1382
1383   // These building block operations operate on a representation of
1384   // arbitrary precision, two's-complement, bignum integer values.
1385   // They should be sufficient to implement APInt and APFloat bignum
1386   // requirements.  Inputs are generally a pointer to the base of an
1387   // array of integer parts, representing an unsigned bignum, and a
1388   // count of how many parts there are.
1389
1390   /// Sets the least significant part of a bignum to the input value,
1391   /// and zeroes out higher parts.  */
1392   static void tcSet(integerPart *, integerPart, unsigned int);
1393
1394   /// Assign one bignum to another.
1395   static void tcAssign(integerPart *, const integerPart *, unsigned int);
1396
1397   /// Returns true if a bignum is zero, false otherwise.
1398   static bool tcIsZero(const integerPart *, unsigned int);
1399
1400   /// Extract the given bit of a bignum; returns 0 or 1.  Zero-based.
1401   static int tcExtractBit(const integerPart *, unsigned int bit);
1402
1403   /// Copy the bit vector of width srcBITS from SRC, starting at bit
1404   /// srcLSB, to DST, of dstCOUNT parts, such that the bit srcLSB
1405   /// becomes the least significant bit of DST.  All high bits above
1406   /// srcBITS in DST are zero-filled.
1407   static void tcExtract(integerPart *, unsigned int dstCount,
1408                         const integerPart *,
1409                         unsigned int srcBits, unsigned int srcLSB);
1410
1411   /// Set the given bit of a bignum.  Zero-based.
1412   static void tcSetBit(integerPart *, unsigned int bit);
1413
1414   /// Clear the given bit of a bignum.  Zero-based.
1415   static void tcClearBit(integerPart *, unsigned int bit);
1416
1417   /// Returns the bit number of the least or most significant set bit
1418   /// of a number.  If the input number has no bits set -1U is
1419   /// returned.
1420   static unsigned int tcLSB(const integerPart *, unsigned int);
1421   static unsigned int tcMSB(const integerPart *parts, unsigned int n);
1422
1423   /// Negate a bignum in-place.
1424   static void tcNegate(integerPart *, unsigned int);
1425
1426   /// DST += RHS + CARRY where CARRY is zero or one.  Returns the
1427   /// carry flag.
1428   static integerPart tcAdd(integerPart *, const integerPart *,
1429                            integerPart carry, unsigned);
1430
1431   /// DST -= RHS + CARRY where CARRY is zero or one.  Returns the
1432   /// carry flag.
1433   static integerPart tcSubtract(integerPart *, const integerPart *,
1434                                 integerPart carry, unsigned);
1435
1436   ///  DST += SRC * MULTIPLIER + PART   if add is true
1437   ///  DST  = SRC * MULTIPLIER + PART   if add is false
1438   ///
1439   ///  Requires 0 <= DSTPARTS <= SRCPARTS + 1.  If DST overlaps SRC
1440   ///  they must start at the same point, i.e. DST == SRC.
1441   ///
1442   ///  If DSTPARTS == SRC_PARTS + 1 no overflow occurs and zero is
1443   ///  returned.  Otherwise DST is filled with the least significant
1444   ///  DSTPARTS parts of the result, and if all of the omitted higher
1445   ///  parts were zero return zero, otherwise overflow occurred and
1446   ///  return one.
1447   static int tcMultiplyPart(integerPart *dst, const integerPart *src,
1448                             integerPart multiplier, integerPart carry,
1449                             unsigned int srcParts, unsigned int dstParts,
1450                             bool add);
1451
1452   /// DST = LHS * RHS, where DST has the same width as the operands
1453   /// and is filled with the least significant parts of the result.
1454   /// Returns one if overflow occurred, otherwise zero.  DST must be
1455   /// disjoint from both operands.
1456   static int tcMultiply(integerPart *, const integerPart *,
1457                         const integerPart *, unsigned);
1458
1459   /// DST = LHS * RHS, where DST has width the sum of the widths of
1460   /// the operands.  No overflow occurs.  DST must be disjoint from
1461   /// both operands. Returns the number of parts required to hold the
1462   /// result.
1463   static unsigned int tcFullMultiply(integerPart *, const integerPart *,
1464                                      const integerPart *, unsigned, unsigned);
1465
1466   /// If RHS is zero LHS and REMAINDER are left unchanged, return one.
1467   /// Otherwise set LHS to LHS / RHS with the fractional part
1468   /// discarded, set REMAINDER to the remainder, return zero.  i.e.
1469   ///
1470   ///  OLD_LHS = RHS * LHS + REMAINDER
1471   ///
1472   ///  SCRATCH is a bignum of the same size as the operands and result
1473   ///  for use by the routine; its contents need not be initialized
1474   ///  and are destroyed.  LHS, REMAINDER and SCRATCH must be
1475   ///  distinct.
1476   static int tcDivide(integerPart *lhs, const integerPart *rhs,
1477                       integerPart *remainder, integerPart *scratch,
1478                       unsigned int parts);
1479
1480   /// Shift a bignum left COUNT bits.  Shifted in bits are zero.
1481   /// There are no restrictions on COUNT.
1482   static void tcShiftLeft(integerPart *, unsigned int parts,
1483                           unsigned int count);
1484
1485   /// Shift a bignum right COUNT bits.  Shifted in bits are zero.
1486   /// There are no restrictions on COUNT.
1487   static void tcShiftRight(integerPart *, unsigned int parts,
1488                            unsigned int count);
1489
1490   /// The obvious AND, OR and XOR and complement operations.
1491   static void tcAnd(integerPart *, const integerPart *, unsigned int);
1492   static void tcOr(integerPart *, const integerPart *, unsigned int);
1493   static void tcXor(integerPart *, const integerPart *, unsigned int);
1494   static void tcComplement(integerPart *, unsigned int);
1495
1496   /// Comparison (unsigned) of two bignums.
1497   static int tcCompare(const integerPart *, const integerPart *,
1498                        unsigned int);
1499
1500   /// Increment a bignum in-place.  Return the carry flag.
1501   static integerPart tcIncrement(integerPart *, unsigned int);
1502
1503   /// Set the least significant BITS and clear the rest.
1504   static void tcSetLeastSignificantBits(integerPart *, unsigned int,
1505                                         unsigned int bits);
1506
1507   /// @brief debug method
1508   void dump() const;
1509
1510   /// @}
1511 };
1512
1513 /// Magic data for optimising signed division by a constant.
1514 struct APInt::ms {
1515   APInt m;  ///< magic number
1516   unsigned s;  ///< shift amount
1517 };
1518
1519 /// Magic data for optimising unsigned division by a constant.
1520 struct APInt::mu {
1521   APInt m;     ///< magic number
1522   bool a;      ///< add indicator
1523   unsigned s;  ///< shift amount
1524 };
1525
1526 inline bool operator==(uint64_t V1, const APInt& V2) {
1527   return V2 == V1;
1528 }
1529
1530 inline bool operator!=(uint64_t V1, const APInt& V2) {
1531   return V2 != V1;
1532 }
1533
1534 inline raw_ostream &operator<<(raw_ostream &OS, const APInt &I) {
1535   I.print(OS, true);
1536   return OS;
1537 }
1538
1539 namespace APIntOps {
1540
1541 /// @brief Determine the smaller of two APInts considered to be signed.
1542 inline APInt smin(const APInt &A, const APInt &B) {
1543   return A.slt(B) ? A : B;
1544 }
1545
1546 /// @brief Determine the larger of two APInts considered to be signed.
1547 inline APInt smax(const APInt &A, const APInt &B) {
1548   return A.sgt(B) ? A : B;
1549 }
1550
1551 /// @brief Determine the smaller of two APInts considered to be signed.
1552 inline APInt umin(const APInt &A, const APInt &B) {
1553   return A.ult(B) ? A : B;
1554 }
1555
1556 /// @brief Determine the larger of two APInts considered to be unsigned.
1557 inline APInt umax(const APInt &A, const APInt &B) {
1558   return A.ugt(B) ? A : B;
1559 }
1560
1561 /// @brief Check if the specified APInt has a N-bits unsigned integer value.
1562 inline bool isIntN(unsigned N, const APInt& APIVal) {
1563   return APIVal.isIntN(N);
1564 }
1565
1566 /// @brief Check if the specified APInt has a N-bits signed integer value.
1567 inline bool isSignedIntN(unsigned N, const APInt& APIVal) {
1568   return APIVal.isSignedIntN(N);
1569 }
1570
1571 /// @returns true if the argument APInt value is a sequence of ones
1572 /// starting at the least significant bit with the remainder zero.
1573 inline bool isMask(unsigned numBits, const APInt& APIVal) {
1574   return numBits <= APIVal.getBitWidth() &&
1575     APIVal == APInt::getLowBitsSet(APIVal.getBitWidth(), numBits);
1576 }
1577
1578 /// @returns true if the argument APInt value contains a sequence of ones
1579 /// with the remainder zero.
1580 inline bool isShiftedMask(unsigned numBits, const APInt& APIVal) {
1581   return isMask(numBits, (APIVal - APInt(numBits,1)) | APIVal);
1582 }
1583
1584 /// @returns a byte-swapped representation of the specified APInt Value.
1585 inline APInt byteSwap(const APInt& APIVal) {
1586   return APIVal.byteSwap();
1587 }
1588
1589 /// @returns the floor log base 2 of the specified APInt value.
1590 inline unsigned logBase2(const APInt& APIVal) {
1591   return APIVal.logBase2();
1592 }
1593
1594 /// GreatestCommonDivisor - This function returns the greatest common
1595 /// divisor of the two APInt values using Euclid's algorithm.
1596 /// @returns the greatest common divisor of Val1 and Val2
1597 /// @brief Compute GCD of two APInt values.
1598 APInt GreatestCommonDivisor(const APInt& Val1, const APInt& Val2);
1599
1600 /// Treats the APInt as an unsigned value for conversion purposes.
1601 /// @brief Converts the given APInt to a double value.
1602 inline double RoundAPIntToDouble(const APInt& APIVal) {
1603   return APIVal.roundToDouble();
1604 }
1605
1606 /// Treats the APInt as a signed value for conversion purposes.
1607 /// @brief Converts the given APInt to a double value.
1608 inline double RoundSignedAPIntToDouble(const APInt& APIVal) {
1609   return APIVal.signedRoundToDouble();
1610 }
1611
1612 /// @brief Converts the given APInt to a float vlalue.
1613 inline float RoundAPIntToFloat(const APInt& APIVal) {
1614   return float(RoundAPIntToDouble(APIVal));
1615 }
1616
1617 /// Treast the APInt as a signed value for conversion purposes.
1618 /// @brief Converts the given APInt to a float value.
1619 inline float RoundSignedAPIntToFloat(const APInt& APIVal) {
1620   return float(APIVal.signedRoundToDouble());
1621 }
1622
1623 /// RoundDoubleToAPInt - This function convert a double value to an APInt value.
1624 /// @brief Converts the given double value into a APInt.
1625 APInt RoundDoubleToAPInt(double Double, unsigned width);
1626
1627 /// RoundFloatToAPInt - Converts a float value into an APInt value.
1628 /// @brief Converts a float value into a APInt.
1629 inline APInt RoundFloatToAPInt(float Float, unsigned width) {
1630   return RoundDoubleToAPInt(double(Float), width);
1631 }
1632
1633 /// Arithmetic right-shift the APInt by shiftAmt.
1634 /// @brief Arithmetic right-shift function.
1635 inline APInt ashr(const APInt& LHS, unsigned shiftAmt) {
1636   return LHS.ashr(shiftAmt);
1637 }
1638
1639 /// Logical right-shift the APInt by shiftAmt.
1640 /// @brief Logical right-shift function.
1641 inline APInt lshr(const APInt& LHS, unsigned shiftAmt) {
1642   return LHS.lshr(shiftAmt);
1643 }
1644
1645 /// Left-shift the APInt by shiftAmt.
1646 /// @brief Left-shift function.
1647 inline APInt shl(const APInt& LHS, unsigned shiftAmt) {
1648   return LHS.shl(shiftAmt);
1649 }
1650
1651 /// Signed divide APInt LHS by APInt RHS.
1652 /// @brief Signed division function for APInt.
1653 inline APInt sdiv(const APInt& LHS, const APInt& RHS) {
1654   return LHS.sdiv(RHS);
1655 }
1656
1657 /// Unsigned divide APInt LHS by APInt RHS.
1658 /// @brief Unsigned division function for APInt.
1659 inline APInt udiv(const APInt& LHS, const APInt& RHS) {
1660   return LHS.udiv(RHS);
1661 }
1662
1663 /// Signed remainder operation on APInt.
1664 /// @brief Function for signed remainder operation.
1665 inline APInt srem(const APInt& LHS, const APInt& RHS) {
1666   return LHS.srem(RHS);
1667 }
1668
1669 /// Unsigned remainder operation on APInt.
1670 /// @brief Function for unsigned remainder operation.
1671 inline APInt urem(const APInt& LHS, const APInt& RHS) {
1672   return LHS.urem(RHS);
1673 }
1674
1675 /// Performs multiplication on APInt values.
1676 /// @brief Function for multiplication operation.
1677 inline APInt mul(const APInt& LHS, const APInt& RHS) {
1678   return LHS * RHS;
1679 }
1680
1681 /// Performs addition on APInt values.
1682 /// @brief Function for addition operation.
1683 inline APInt add(const APInt& LHS, const APInt& RHS) {
1684   return LHS + RHS;
1685 }
1686
1687 /// Performs subtraction on APInt values.
1688 /// @brief Function for subtraction operation.
1689 inline APInt sub(const APInt& LHS, const APInt& RHS) {
1690   return LHS - RHS;
1691 }
1692
1693 /// Performs bitwise AND operation on APInt LHS and
1694 /// APInt RHS.
1695 /// @brief Bitwise AND function for APInt.
1696 inline APInt And(const APInt& LHS, const APInt& RHS) {
1697   return LHS & RHS;
1698 }
1699
1700 /// Performs bitwise OR operation on APInt LHS and APInt RHS.
1701 /// @brief Bitwise OR function for APInt.
1702 inline APInt Or(const APInt& LHS, const APInt& RHS) {
1703   return LHS | RHS;
1704 }
1705
1706 /// Performs bitwise XOR operation on APInt.
1707 /// @brief Bitwise XOR function for APInt.
1708 inline APInt Xor(const APInt& LHS, const APInt& RHS) {
1709   return LHS ^ RHS;
1710 }
1711
1712 /// Performs a bitwise complement operation on APInt.
1713 /// @brief Bitwise complement function.
1714 inline APInt Not(const APInt& APIVal) {
1715   return ~APIVal;
1716 }
1717
1718 } // End of APIntOps namespace
1719
1720 } // End of llvm namespace
1721
1722 #endif