| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S... | Sylvestre Ledru | 2012-09-27 | 1 | -4/+4 |
* | Fix a typo 'iff' => 'if' | Sylvestre Ledru | 2012-09-27 | 1 | -4/+4 |
* | Add a roundToIntegral method to APFloat, which can be parameterized over vari... | Owen Anderson | 2012-08-13 | 1 | -0/+1 |
* | Express the number of ULPs in fpaccuracy metadata as a real rather than a | Duncan Sands | 2012-04-10 | 1 | -0/+1 |
* | Replace the hashing functions on APInt and APFloat with overloads of the | Chandler Carruth | 2012-03-04 | 1 | -2/+10 |
* | Add an APFloat::convertToInt(APSInt) function that automatically manages the | Jeffrey Yasskin | 2011-07-15 | 1 | -0/+2 |
* | Add APFloat::getExactInverse. | Benjamin Kramer | 2011-03-30 | 1 | -0/+4 |
* | Enhance constant folding of bitcast operations on vectors of floats. | Nadav Rotem | 2011-02-17 | 1 | -0/+7 |
* | Don't pass StringRef by reference. | Benjamin Kramer | 2010-07-14 | 1 | -4/+4 |
* | make APFloat::toString be const. | Chris Lattner | 2010-03-06 | 1 | -1/+1 |
* | Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width | John McCall | 2010-02-28 | 1 | -3/+29 |
* | Implement support for converting to string at "natural precision", and fix some | John McCall | 2009-12-24 | 1 | -3/+4 |
* | Add accessors for the largest-magnitude, smallest-magnitude, and | John McCall | 2009-12-24 | 1 | -0/+44 |
* | Remove getIEEEFloatParts and getIEEEDoubleParts. They are not needed. | Evan Cheng | 2009-10-28 | 1 | -7/+0 |
* | Add new APFloat methods that return sign, exp, and mantissa of ieee float and... | Evan Cheng | 2009-10-27 | 1 | -0/+7 |
* | Add half precision floating point support (float16) to APFloat, | Chris Lattner | 2009-10-16 | 1 | -0/+3 |
* | add a version of the APFloat constructor that initializes to 0.0 | Chris Lattner | 2009-09-17 | 1 | -0/+1 |
* | Implement APInt <-> APFloat conversion for IEEE 128-bit floats. | Anton Korobeynikov | 2009-08-21 | 1 | -0/+2 |
* | Make a declaration consistent with its definition. | Oscar Fuentes | 2009-08-17 | 1 | -1/+1 |
* | Modify APFloat to take a StringRef instead of a c string. | Erick Tryzelaar | 2009-08-16 | 1 | -4/+5 |
* | Dcoument that the opauque value used to construct QNaNs is truncated | Mike Stump | 2009-06-01 | 1 | -1/+1 |
* | Add some documentation. | Mike Stump | 2009-05-30 | 1 | -1/+6 |
* | Add support for letting the client choose different flavors of NaNs. Testcas... | Mike Stump | 2009-05-30 | 1 | -4/+5 |
* | Make special cases (0 inf nan) work for frem. | Dale Johannesen | 2009-01-21 | 1 | -0/+1 |
* | Add an IEEE remainder function, which is not | Dale Johannesen | 2009-01-20 | 1 | -0/+3 |
* | Removed trailing whitespace. | Misha Brukman | 2009-01-09 | 1 | -3/+3 |
* | Add a "loses information" return value to APFloat::convert | Dale Johannesen | 2008-10-09 | 1 | -3/+3 |
* | Rename APFloat::convertToAPInt to bitcastToAPInt to | Dale Johannesen | 2008-10-09 | 1 | -5/+5 |
* | add convenience 'constructors' | Chris Lattner | 2008-06-30 | 1 | -4/+15 |
* | add a predicate. | Chris Lattner | 2008-06-01 | 1 | -0/+1 |
* | Add a method to APFloat to convert directly from APInt. | Dan Gohman | 2008-02-29 | 1 | -0/+2 |
* | Detabify | Bill Wendling | 2008-02-26 | 1 | -6/+6 |
* | Added "Profile" method to APFloat for use with FoldingSet. | Ted Kremenek | 2008-02-11 | 1 | -0/+4 |
* | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | remove dead #include. | Chris Lattner | 2007-12-08 | 1 | -1/+0 |
* | remove dead #include, APInt.h already has the needed forward decls. | Chris Lattner | 2007-12-08 | 1 | -1/+0 |
* | Implemented generic serialization of APFloat. | Ted Kremenek | 2007-11-07 | 1 | -0/+7 |
* | When converting to integer, do bit manipulations in the destination | Neil Booth | 2007-11-01 | 1 | -0/+2 |
* | add a nice predicate to check to see if nan | Chris Lattner | 2007-10-24 | 1 | -0/+1 |
* | Consolidate logic for creating NaNs. Silence compiler warning. | Neil Booth | 2007-10-14 | 1 | -0/+1 |
* | Implement correctly-rounded decimal->binary conversion, i.e. conversion | Neil Booth | 2007-10-12 | 1 | -7/+15 |
* | Next PPC long double bits. First cut at constants. | Dale Johannesen | 2007-10-11 | 1 | -2/+12 |
* | Add back convertFromSignExtendedInteger. | Neil Booth | 2007-10-07 | 1 | -0/+2 |
* | Reimplement convertFromUnsignedInteger so it is passed a const bignum. | Neil Booth | 2007-10-07 | 1 | -2/+2 |
* | convertFromInteger, as originally written, expected sign-extended | Neil Booth | 2007-10-07 | 1 | -2/+2 |
* | combineLostFractions does not need to be a member function | Neil Booth | 2007-10-07 | 1 | -1/+0 |
* | Add APFloat -> hexadecimal string conversion, as per %a and %A in C99. | Neil Booth | 2007-10-03 | 1 | -13/+27 |
* | Tweak RoundAwayFromZero the bit number below which is truncated, and make | Neil Booth | 2007-10-03 | 1 | -1/+1 |
* | Whitespace cleanup. | Neil Booth | 2007-09-26 | 1 | -9/+9 |
* | Make single-argument ctors explicit to avoid tricky bugs :) | Chris Lattner | 2007-09-13 | 1 | -3/+3 |