aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/APFloat.h
Commit message (Expand)AuthorAgeFilesLines
* Remove getIEEEFloatParts and getIEEEDoubleParts. They are not needed.Evan Cheng2009-10-281-7/+0
* Add new APFloat methods that return sign, exp, and mantissa of ieee float and...Evan Cheng2009-10-271-0/+7
* Add half precision floating point support (float16) to APFloat,Chris Lattner2009-10-161-0/+3
* add a version of the APFloat constructor that initializes to 0.0Chris Lattner2009-09-171-0/+1
* Implement APInt <-> APFloat conversion for IEEE 128-bit floats.Anton Korobeynikov2009-08-211-0/+2
* Make a declaration consistent with its definition.Oscar Fuentes2009-08-171-1/+1
* Modify APFloat to take a StringRef instead of a c string.Erick Tryzelaar2009-08-161-4/+5
* Dcoument that the opauque value used to construct QNaNs is truncatedMike Stump2009-06-011-1/+1
* Add some documentation.Mike Stump2009-05-301-1/+6
* Add support for letting the client choose different flavors of NaNs. Testcas...Mike Stump2009-05-301-4/+5
* Make special cases (0 inf nan) work for frem.Dale Johannesen2009-01-211-0/+1
* Add an IEEE remainder function, which is notDale Johannesen2009-01-201-0/+3
* Removed trailing whitespace.Misha Brukman2009-01-091-3/+3
* Add a "loses information" return value to APFloat::convertDale Johannesen2008-10-091-3/+3
* Rename APFloat::convertToAPInt to bitcastToAPInt toDale Johannesen2008-10-091-5/+5
* add convenience 'constructors'Chris Lattner2008-06-301-4/+15
* add a predicate.Chris Lattner2008-06-011-0/+1
* Add a method to APFloat to convert directly from APInt.Dan Gohman2008-02-291-0/+2
* DetabifyBill Wendling2008-02-261-6/+6
* Added "Profile" method to APFloat for use with FoldingSet.Ted Kremenek2008-02-111-0/+4
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* remove dead #include.Chris Lattner2007-12-081-1/+0
* remove dead #include, APInt.h already has the needed forward decls.Chris Lattner2007-12-081-1/+0
* Implemented generic serialization of APFloat.Ted Kremenek2007-11-071-0/+7
* When converting to integer, do bit manipulations in the destinationNeil Booth2007-11-011-0/+2
* add a nice predicate to check to see if nanChris Lattner2007-10-241-0/+1
* Consolidate logic for creating NaNs. Silence compiler warning.Neil Booth2007-10-141-0/+1
* Implement correctly-rounded decimal->binary conversion, i.e. conversionNeil Booth2007-10-121-7/+15
* Next PPC long double bits. First cut at constants.Dale Johannesen2007-10-111-2/+12
* Add back convertFromSignExtendedInteger.Neil Booth2007-10-071-0/+2
* Reimplement convertFromUnsignedInteger so it is passed a const bignum.Neil Booth2007-10-071-2/+2
* convertFromInteger, as originally written, expected sign-extendedNeil Booth2007-10-071-2/+2
* combineLostFractions does not need to be a member functionNeil Booth2007-10-071-1/+0
* Add APFloat -> hexadecimal string conversion, as per %a and %A in C99.Neil Booth2007-10-031-13/+27
* Tweak RoundAwayFromZero the bit number below which is truncated, and makeNeil Booth2007-10-031-1/+1
* Whitespace cleanup.Neil Booth2007-09-261-9/+9
* Make single-argument ctors explicit to avoid tricky bugs :)Chris Lattner2007-09-131-3/+3
* Add APInt interfaces to APFloat (allows directlyDale Johannesen2007-09-111-0/+9
* Fix for VisualStudio. It is treating a 2 bit enum as a signed int for compar...Chuck Rose III2007-09-081-1/+3
* Add mod, copysign, abs operations to APFloat.Dale Johannesen2007-08-311-1/+5
* Enhance APFloat to retain bits of NaNs (fixes oggenc).Dale Johannesen2007-08-311-4/+9
* Comment out declaration of operator== (undefined).Dale Johannesen2007-08-251-1/+1
* Poison APFloat::operator==. Replace existing uses with bitwiseIsEqual.Dale Johannesen2007-08-241-6/+6
* Revised per review feedback from previous patch.Dale Johannesen2007-08-241-0/+5
* Change internal representation of ConstantFP to use APFloat.Dale Johannesen2007-08-241-1/+15
* initial checkin of Neil's APFloat work.Chris Lattner2007-08-201-0/+258