Age | Commit message (Expand) | Author |
2009-01-27 | APInt's countLeadingOnes() was broken for negative i128 values, | Torok Edwin |
2009-01-21 | Remove uses of uint32_t in favor of 'unsigned' for better | Chris Lattner |
2009-01-19 | Fix typo, sentence fragment. | Nick Lewycky |
2008-10-11 | rearrange some code. | Chris Lattner |
2008-08-23 | Switch the asmprinter (.ll) and all the stuff it requires over to | Chris Lattner |
2008-08-20 | Move the fast-path (<=i64) cases of various APInt methods inline | Chris Lattner |
2008-08-20 | It's not necessary to check if a value is null before delete[]. | Dan Gohman |
2008-08-17 | Rework the routines that convert AP[S]Int into a string. Now, instead of | Chris Lattner |
2008-08-17 | remove a dead APInt ctor. | Chris Lattner |
2008-07-20 | Fix PR2088. Use modulo linear equation solver to compute loop iteration | Wojciech Matyjewicz |
2008-06-23 | First step to fix PR2088. Implement routine to compute the | Wojciech Matyjewicz |
2008-06-21 | Avoid creating a redundant zero APInt. | Dan Gohman |
2008-06-05 | As comments said, for negative value, the arithmetic | Zhou Sheng |
2008-05-02 | Suppress -Wshorten-64-to-32 warnings for 64-bit hosts. | Evan Cheng |
2008-04-10 | Make several symbols static. | Dan Gohman |
2008-03-25 | A quick nm audit turned up several fixed tables and objects that were | Dan Gohman |
2008-03-16 | Add assert for non-hexadecimal radixes. | Bill Wendling |
2008-03-07 | Fix a typo. It's causing consumer-typeset to miscompile. Perhaps more. | Evan Cheng |
2008-02-29 | Add support to APInt for shift and rotate operations with APInt | Dan Gohman |
2008-02-19 | Fixed bug in APInt::Profile() where the BitWidth field was not included in the | Ted Kremenek |
2008-02-14 | Fix a warning about comparison between signed and unsigned, | Dan Gohman |
2008-02-13 | Add countTrailingOnes member functions to APInt. | Dan Gohman |
2008-01-19 | Added FoldingSet style 'profiling' support for APInt. | Ted Kremenek |
2007-12-29 | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner |
2007-12-24 | Cygwin defines uint32_t as unsigned long. Unbreak call to std::min in this case | Anton Korobeynikov |
2007-12-11 | Don't have APInt.cpp depend upon DerivedTypes.h. This helps with splitting the | Reid Spencer |
2007-11-23 | Fix PR1816, by correcting the broken definition of APInt::countTrailingZeros. | Chris Lattner |
2007-11-23 | Fix APInt::countTrailingZeros to return BitWidth if the input is zero instead... | Chris Lattner |
2007-10-12 | Don't attempt to mask no bits | Neil Booth |
2007-10-08 | Add a new function tcExtract for extracting a bignum from an | Neil Booth |
2007-10-06 | Fix and clarify some comments. | Neil Booth |
2007-10-06 | Generalize tcFullMultiply so that the operands can be of differing | Neil Booth |
2007-09-21 | Change APFloat::convertFromInteger to take the incoming | Dale Johannesen |
2007-09-17 | Do not hide APInt::dump() inside #ifndef NDEBUG. | Devang Patel |
2007-09-14 | Remove the assumption that FP's are either float or | Dale Johannesen |
2007-08-23 | rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned() | Chris Lattner |
2007-08-20 | initial checkin of Neil's APFloat work. | Chris Lattner |
2007-08-16 | This adds a bunch of static functions that implement unsigned | Chris Lattner |
2007-05-19 | Fix an assertion introduced by my last change to the toString method. We | Reid Spencer |
2007-05-17 | Get rid of leading zeros in the output of toString. | Reid Spencer |
2007-05-17 | For lshr by 0 bits, just return *this as a short cut. This also prevents | Reid Spencer |
2007-05-16 | Fix a bug in the "fromString" method where radix 2,8 and 16 values were | Reid Spencer |
2007-05-14 | Make the results for the rotate functions correct when rotateAmt == 0. | Reid Spencer |
2007-05-13 | Add some things needed by the llvm-gcc version supporting bit accurate integer | Reid Spencer |
2007-05-12 | Fix shl to produce the correct result when the bitwidth is > 64 and the | Reid Spencer |
2007-05-03 | silence some annoying gcc 4.3 warnings | Chris Lattner |
2007-04-14 | We want the number of bits needed, not the power of 2. | Reid Spencer |
2007-04-13 | Implement a getBitsNeeded method to determine how many bits are needed to | Reid Spencer |
2007-04-11 | Fix an approximate calculation in an assertion not to give false negatives. | Reid Spencer |
2007-03-21 | Fix a bug in getAllOnesValue() which broke | Zhou Sheng |