2011-01-23 |
Ted Kremenek | Null initialize a few variables flagged by |
blob | commitdiff | raw |
2011-01-06 |
Abramo Bagnara | Fixed parsing of hex floats. |
blob | commitdiff | raw | diff to current |
2010-12-07 |
Jay Foad | PR5207: Change APInt methods trunc(), sext(), zext... |
blob | commitdiff | raw | diff to current |
2010-11-28 |
Jay Foad | PR5207: change APInt::doubleToBits() and APInt::floatTo... |
blob | commitdiff | raw | diff to current |
2010-08-19 |
Dale Johannesen | Do not assert when reading an exponent out of range. |
blob | commitdiff | raw | diff to current |
2010-07-14 |
Benjamin Kramer | Don't pass StringRef by reference. |
blob | commitdiff | raw | diff to current |
2010-03-24 |
Dan Gohman | Fix minor style issues. |
blob | commitdiff | raw | diff to current |
2010-03-06 |
Chris Lattner | make APFloat::toString be const. |
blob | commitdiff | raw | diff to current |
2010-03-01 |
John McCall | Don't potentially read past the end of the fill data... |
blob | commitdiff | raw | diff to current |
2010-02-28 |
John McCall | Properly clear all the extra bits in a significand... |
blob | commitdiff | raw | diff to current |
2010-02-28 |
John McCall | Teach APFloat how to create both QNaNs and SNaNs and... |
blob | commitdiff | raw | diff to current |
2010-02-26 |
John McCall | Make APFloat's string-parsing routines a bit safer... |
blob | commitdiff | raw | diff to current |
2009-12-24 |
John McCall | Implement support for converting to string at "natural... |
blob | commitdiff | raw | diff to current |
2009-12-24 |
John McCall | Substantially optimize APFloat::toString() by doing... |
blob | commitdiff | raw | diff to current |
2009-12-24 |
John McCall | Add accessors for the largest-magnitude, smallest-magni... |
blob | commitdiff | raw | diff to current |
2009-10-28 |
Evan Cheng | Remove getIEEEFloatParts and getIEEEDoubleParts. They... |
blob | commitdiff | raw | diff to current |
2009-10-27 |
Evan Cheng | Add new APFloat methods that return sign, exp, and... |
blob | commitdiff | raw | diff to current |
2009-10-23 |
Dale Johannesen | Commit fixes for half precision I noted in review, so |
blob | commitdiff | raw | diff to current |
2009-10-16 |
Chris Lattner | Add half precision floating point support (float16... |
blob | commitdiff | raw | diff to current |
2009-09-24 |
Chris Lattner | wrap long lines. |
blob | commitdiff | raw | diff to current |
2009-09-17 |
Chris Lattner | add a version of the APFloat constructor that initializ... |
blob | commitdiff | raw | diff to current |
2009-08-21 |
Anton Korobeynikov | Fix typo. |
blob | commitdiff | raw | diff to current |
2009-08-21 |
Anton Korobeynikov | Implement APInt <-> APFloat conversion for IEEE 128... |
blob | commitdiff | raw | diff to current |
2009-08-20 |
Erick Tryzelaar | Add support for including '+' in APFloat strings, more... |
blob | commitdiff | raw | diff to current |
2009-08-20 |
Daniel Dunbar | Fix two APFloat bugs in converting hexadecimal constants. |
blob | commitdiff | raw | diff to current |
2009-08-18 |
Erick Tryzelaar | Fix an uninitialized value warning in APFloat. |
blob | commitdiff | raw | diff to current |
2009-08-16 |
Erick Tryzelaar | Modify APFloat to take a StringRef instead of a c string. |
blob | commitdiff | raw | diff to current |
2009-07-14 |
Torok Edwin | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE... |
blob | commitdiff | raw | diff to current |
2009-07-11 |
Torok Edwin | assert(0) -> LLVM_UNREACHABLE. |
blob | commitdiff | raw | diff to current |
2009-05-30 |
Mike Stump | Add support for letting the client choose different... |
blob | commitdiff | raw | diff to current |
2009-05-13 |
Mike Stump | Fix whitespacing (space after switch). |
blob | commitdiff | raw | diff to current |
2009-03-23 |
Dale Johannesen | Fix internal representation of fp80 to be the |
blob | commitdiff | raw | diff to current |
2009-03-13 |
Chris Lattner | just initialize the first element, we don't need to... |
blob | commitdiff | raw | diff to current |
2009-03-13 |
Chris Lattner | Eliminate a 9640 byte static mutable initialized data... |
blob | commitdiff | raw | diff to current |
2009-03-12 |
Chris Lattner | static functions don't need an anonymous namespace. |
blob | commitdiff | raw | diff to current |
2009-02-14 |
Cedric Venet | Unbreak the build on win32. |
blob | commitdiff | raw | diff to current |
2009-01-21 |
Dale Johannesen | Do not use host floating point types when emitting |
blob | commitdiff | raw | diff to current |
2009-01-21 |
Dale Johannesen | Make special cases (0 inf nan) work for frem. |
blob | commitdiff | raw | diff to current |
2009-01-20 |
Dale Johannesen | Add an IEEE remainder function, which is not |
blob | commitdiff | raw | diff to current |
2009-01-19 |
Dale Johannesen | compile-time fmod was done incorrectly. PR 3316. |
blob | commitdiff | raw | diff to current |
2008-11-27 |
Bill Wendling | Get rid of bogus "control may reach end of non-void... |
blob | commitdiff | raw | diff to current |
2008-11-26 |
Evan Cheng | Revert r60042. IndVarSimplify should check if APFloat... |
blob | commitdiff | raw | diff to current |
2008-11-25 |
Evan Cheng | convertToSignExtendedInteger should return opInvalidOp... |
blob | commitdiff | raw | diff to current |
2008-10-09 |
Dale Johannesen | Add a "loses information" return value to APFloat:... |
blob | commitdiff | raw | diff to current |
2008-10-09 |
Dale Johannesen | Rename APFloat::convertToAPInt to bitcastToAPInt to |
blob | commitdiff | raw | diff to current |
2008-10-07 |
Dale Johannesen | Mark negative-zero-to-int conversion as Inexact, |
blob | commitdiff | raw | diff to current |
2008-10-06 |
Dale Johannesen | Be more precise about which conversions of NaNs |
blob | commitdiff | raw | diff to current |
2008-10-06 |
Dale Johannesen | Temporarily revert functionality change from my previou... |
blob | commitdiff | raw | diff to current |
2008-10-06 |
Dale Johannesen | Mark shortening NaN conversions as Inexact. PR 2856. |
blob | commitdiff | raw | diff to current |
2008-08-17 |
Chris Lattner | Rework the routines that convert AP[S]Int into a string... |
blob | commitdiff | raw | diff to current |
2008-08-17 |
Chris Lattner | remove a dead APInt ctor. |
blob | commitdiff | raw | diff to current |
2008-05-14 |
Dale Johannesen | Don't assume underlying APInt type is limited |
blob | commitdiff | raw | diff to current |
2008-05-14 |
Dale Johannesen | Remove undefined behavior in hex string->APFloat |
blob | commitdiff | raw | diff to current |
2008-05-12 |
Dan Gohman | Make firstEightPowers const. |
blob | commitdiff | raw | diff to current |
2008-05-02 |
Evan Cheng | Suppress -Wshorten-64-to-32 warnings for 64-bit hosts. |
blob | commitdiff | raw | diff to current |
2008-04-20 |
Dale Johannesen | Check that APFloat::convert is not trying to target |
blob | commitdiff | raw | diff to current |
2008-04-10 |
Dan Gohman | Make several symbols static. |
blob | commitdiff | raw | diff to current |
2008-02-29 |
Dan Gohman | Add a method to APFloat to convert directly from APInt. |
blob | commitdiff | raw | diff to current |
2008-02-11 |
Ted Kremenek | Added "Profile" method to APFloat for use with FoldingSet. |
blob | commitdiff | raw | diff to current |
2008-01-31 |
Dale Johannesen | Chris' change to print an approximation to long doubles |
blob | commitdiff | raw | diff to current |
2008-01-29 |
Dan Gohman | Remove top-level const qualifiers from casts, avoiding... |
blob | commitdiff | raw | diff to current |
2007-12-29 |
Chris Lattner | Remove attribution from file headers, per discussion... |
blob | commitdiff | raw | diff to current |
2007-12-08 |
Chris Lattner | proper #include order. |
blob | commitdiff | raw | diff to current |
2007-12-05 |
Neil Booth | Prior commit updated wrong if, apologies. |
blob | commitdiff | raw | diff to current |
2007-12-05 |
Neil Booth | Handle zero correctly. |
blob | commitdiff | raw | diff to current |
2007-12-05 |
Dale Johannesen | Handle 0 correctly in string->APFloat conversion. |
blob | commitdiff | raw | diff to current |
2007-11-17 |
Dale Johannesen | Fix denormal check in float->APInt conversion. |
blob | commitdiff | raw | diff to current |
2007-11-02 |
Neil Booth | Remove some unnecessary C-style statics. |
blob | commitdiff | raw | diff to current |
2007-11-01 |
Neil Booth | Add back line whose removal somehow crept into prior... |
blob | commitdiff | raw | diff to current |
2007-11-01 |
Neil Booth | When converting to integer, do bit manipulations in... |
blob | commitdiff | raw | diff to current |
2007-10-25 |
Hartmut Kaiser | Clarified operator precedence. |
blob | commitdiff | raw | diff to current |
2007-10-15 |
Neil Booth | Fast-track obviously over-large and over-small exponent... |
blob | commitdiff | raw | diff to current |
2007-10-14 |
Neil Booth | Consolidate logic for creating NaNs. Silence compiler... |
blob | commitdiff | raw | diff to current |
2007-10-14 |
Neil Booth | Whether arithmetic is supported is a property of the... |
blob | commitdiff | raw | diff to current |
2007-10-14 |
Neil Booth | Separate out parsing of decimal number. Use this to... |
blob | commitdiff | raw | diff to current |
2007-10-13 |
Neil Booth | If the power of 5 is exact, and the reciprocal exact... |
blob | commitdiff | raw | diff to current |
2007-10-12 |
Neil Booth | Remove duplicate comment. |
blob | commitdiff | raw | diff to current |
2007-10-12 |
Neil Booth | Implement correctly-rounded decimal->binary conversion... |
blob | commitdiff | raw | diff to current |
2007-10-12 |
Neil Booth | Remove a field that was never used. |
blob | commitdiff | raw | diff to current |
2007-10-12 |
Neil Booth | If we're trying to be arbitrary precision, unsigned... |
blob | commitdiff | raw | diff to current |
2007-10-11 |
Dale Johannesen | Next PPC long double bits. First cut at constants. |
blob | commitdiff | raw | diff to current |
2007-10-08 |
Neil Booth | Use APInt::tcExtract. It's cleaner, and works :) |
blob | commitdiff | raw | diff to current |
2007-10-07 |
Neil Booth | Add back convertFromSignExtendedInteger. |
blob | commitdiff | raw | diff to current |
2007-10-07 |
Neil Booth | Now that convertFromUnsignedParts has a sane, constant... |
blob | commitdiff | raw | diff to current |
2007-10-07 |
Neil Booth | Reimplement convertFromUnsignedInteger so it is passed... |
blob | commitdiff | raw | diff to current |
2007-10-07 |
Neil Booth | convertFromInteger, as originally written, expected... |
blob | commitdiff | raw | diff to current |
2007-10-07 |
Neil Booth | combineLostFractions does not need to be a member function |
blob | commitdiff | raw | diff to current |
2007-10-06 |
Neil Booth | Cleaner, more general exponent output. |
blob | commitdiff | raw | diff to current |
2007-10-06 |
Chris Lattner | silence warnings in no-assert build. |
blob | commitdiff | raw | diff to current |
2007-10-06 |
Neil Booth | Generalize tcFullMultiply so that the operands can... |
blob | commitdiff | raw | diff to current |
2007-10-03 |
Neil Booth | Add APFloat -> hexadecimal string conversion, as per... |
blob | commitdiff | raw | diff to current |
2007-10-03 |
Neil Booth | Tweak RoundAwayFromZero the bit number below which... |
blob | commitdiff | raw | diff to current |
2007-09-30 |
Dale Johannesen | Simplify and fix signed int -> FP conversions. |
blob | commitdiff | raw | diff to current |
2007-09-26 |
Neil Booth | Whitespace and compiler warning cleanup. |
blob | commitdiff | raw | diff to current |
2007-09-25 |
Dale Johannesen | Make APFloat->int conversions deterministic even in |
blob | commitdiff | raw | diff to current |
2007-09-25 |
Dale Johannesen | Fix long double<->shorter FP type conversions |
blob | commitdiff | raw | diff to current |
2007-09-22 |
Neil Booth | Handle storage complications of float->float conversions. |
blob | commitdiff | raw | diff to current |
2007-09-21 |
Dale Johannesen | Change APFloat::convertFromInteger to take the incoming |
blob | commitdiff | raw | diff to current |
2007-09-20 |
Dale Johannesen | Fix PR 1688. See comments there. |
blob | commitdiff | raw | diff to current |
2007-09-14 |
Dan Gohman | Remove spurious consts. This fixes warnings with compil... |
blob | commitdiff | raw | diff to current |
next |