aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/APInt.cpp
Commit message (Expand)AuthorAgeFilesLines
* APInt's countLeadingOnes() was broken for negative i128 values,edwin2009-01-271-1/+7
* Remove uses of uint32_t in favor of 'unsigned' for better Chris Lattner2009-01-211-193/+193
* Fix typo, sentence fragment.Nick Lewycky2009-01-191-2/+2
* rearrange some code.Chris Lattner2008-10-111-6/+6
* Switch the asmprinter (.ll) and all the stuff it requires over toChris Lattner2008-08-231-5/+4
* Move the fast-path (<=i64) cases of various APInt methods inlineChris Lattner2008-08-201-150/+40
* It's not necessary to check if a value is null before delete[].Dan Gohman2008-08-201-1/+1
* Rework the routines that convert AP[S]Int into a string. Now, instead ofChris Lattner2008-08-171-95/+98
* remove a dead APInt ctor.Chris Lattner2008-08-171-8/+1
* Fix PR2088. Use modulo linear equation solver to compute loop iterationWojciech Matyjewicz2008-07-201-1/+1
* First step to fix PR2088. Implement routine to compute the Wojciech Matyjewicz2008-06-231-7/+48
* Avoid creating a redundant zero APInt.Dan Gohman2008-06-211-1/+1
* As comments said, for negative value, the arithmetic Zhou Sheng2008-06-051-1/+1
* Suppress -Wshorten-64-to-32 warnings for 64-bit hosts.Evan Cheng2008-05-021-20/+21
* Make several symbols static.Dan Gohman2008-04-101-5/+5
* A quick nm audit turned up several fixed tables and objects that wereDan Gohman2008-03-251-1/+1
* Add assert for non-hexadecimal radixes.Bill Wendling2008-03-161-0/+4
* Fix a typo. It's causing consumer-typeset to miscompile. Perhaps more.Evan Cheng2008-03-071-1/+1
* Add support to APInt for shift and rotate operations with APIntDan Gohman2008-02-291-0/+27
* Fixed bug in APInt::Profile() where the BitWidth field was not included in theTed Kremenek2008-02-191-0/+2
* Fix a warning about comparison between signed and unsigned,Dan Gohman2008-02-141-1/+1
* Add countTrailingOnes member functions to APInt.Dan Gohman2008-02-131-0/+12
* Added FoldingSet style 'profiling' support for APInt.Ted Kremenek2008-01-191-1/+13
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Cygwin defines uint32_t as unsigned long. Unbreak call to std::min in this caseAnton Korobeynikov2007-12-241-1/+1
* Don't have APInt.cpp depend upon DerivedTypes.h. This helps with splitting theReid Spencer2007-12-111-14/+23
* Fix PR1816, by correcting the broken definition of APInt::countTrailingZeros.Chris Lattner2007-11-231-1/+1
* Fix APInt::countTrailingZeros to return BitWidth if the input is zero instead...Chris Lattner2007-11-231-2/+2
* Don't attempt to mask no bitsNeil Booth2007-10-121-1/+2
* Add a new function tcExtract for extracting a bignum from anNeil Booth2007-10-081-34/+76
* Fix and clarify some comments.Neil Booth2007-10-061-12/+12
* Generalize tcFullMultiply so that the operands can be of differingNeil Booth2007-10-061-13/+20
* Change APFloat::convertFromInteger to take the incomingDale Johannesen2007-09-211-1/+1
* Do not hide APInt::dump() inside #ifndef NDEBUG.Devang Patel2007-09-171-4/+0
* Remove the assumption that FP's are either float orDale Johannesen2007-09-141-1/+1
* rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()Chris Lattner2007-08-231-2/+2
* initial checkin of Neil's APFloat work.Chris Lattner2007-08-201-10/+30
* This adds a bunch of static functions that implement unsignedChris Lattner2007-08-161-0/+566
* It's not necessary to do rounding for alloca operations when the requestedDan Gohman2007-07-181-0/+2014