1. e3796d3 APFloat: allow 64-bit of payload by JF Bastien · 7 years ago
  2. 6e3463c [Intrinsic] Add llvm.minimum and llvm.maximum instrinsic functions by Thomas Lively · 7 years ago
  3. 277cedd APFloat/x87: Fix string conversion for "unnormal" values (pr35860) by Pavel Labath · 7 years ago
  4. 643edab Fix APFloat from string conversion for Inf by Serguei Katkov · 8 years ago
  5. bfaa9ed Fix APFloat mod sign by Serguei Katkov · 8 years ago
  6. c6c4c8b Revert rL316156 due to failure on APFloatTest.fromToStringSpecials by Max Kazantsev · 8 years ago
  7. 90ee44d Fix APFloat from string conversion for Inf by Serguei Katkov · 8 years ago
  8. d8ff2f4 Untabify. by NAKAMURA Takumi · 8 years ago
  9. ef15f2c Untabify. by NAKAMURA Takumi · 8 years ago
  10. 6d97003 [APFloat] Fix IsInteger() for DoubleAPFloat. by Davide Italiano · 8 years ago
  11. 23efab2 [ADT] Fix another "oops" spotted by eddyb and reported in IRC. by Chandler Carruth · 8 years ago
  12. cf8b560 [ADT] Fix a test case to use a correct escape for a null byte followed by Chandler Carruth · 8 years ago
  13. c849a0c [AsmWriter/APFloat] FP constant printing: Avoid usage of locale dependent snprinf by Serguei Katkov · 8 years ago
  14. 2215b7d Fix 80-column violation in previous commit. by Stephen Canon · 8 years ago
  15. 872b505 Fix APFloat mod (committing for simonbyrne) by Stephen Canon · 8 years ago
  16. f337952 DAGCombiner: Allow negating ConstantFP after legalize by Matt Arsenault · 9 years ago
  17. 3796f1e [APFloat] Add PPCDoubleDouble multiplication by Tim Shen · 9 years ago
  18. 207a20d [APFloat] Switch from (PPCDoubleDoubleImpl, IEEEdouble) layout to (IEEEdouble, IEEEdouble) by Tim Shen · 9 years ago
  19. 81d263b [APFloatTest] Add tests for various operations by Tim Shen · 9 years ago
  20. 1254a59 [APFloatTest] Log when test fails. NFC by Tim Shen · 9 years ago
  21. dbb11ef Adapt to recent APFloat change by Stephan Bergmann · 9 years ago
  22. 20a600c Replace APFloatBase static fltSemantics data members with getter functions by Stephan Bergmann · 9 years ago
  23. 2229ea1 [APFloatTest] Use std::make_tuple to make GCC 4.8 happy by Tim Shen · 9 years ago
  24. 611d8de [APFloat] Implement PPCDoubleDouble add and subtract. by Tim Shen · 9 years ago
  25. c7524ad [APFloat] Make functions that produce APFloaat objects use correct semantics. by Tim Shen · 9 years ago
  26. f6071e1 [NFC] Header cleanup by Mehdi Amini · 9 years ago
  27. b883372 APFloat: Fix signalling nans for scalbn by Matt Arsenault · 9 years ago
  28. 7c9226f APFloat: Add frexp by Matt Arsenault · 9 years ago
  29. 499f78c APFloat: Fix ilogb for denormals by Matt Arsenault · 9 years ago
  30. 2ef9469 APFloat: Fix scalbn handling of denormals by Matt Arsenault · 9 years ago
  31. 0136ee9 Add isInteger() to APFloat. by Stephen Canon · 10 years ago
  32. 0df66b8 Drop the hacks used for partial C99 math libraries. by Benjamin Kramer · 10 years ago
  33. a46dd58 [APFloat][ADT] Fix sign handling logic for FMA results that truncate to zero. by Lang Hames · 11 years ago
  34. 58c62e1 [ADT] Fix PR20728 - Incorrect APFloat::fusedMultiplyAdd results for x86_fp80. by Lang Hames · 11 years ago
  35. 082e667 [ADT] Add an (ADL-friendly) abs free function for APFloat that returns by Chandler Carruth · 11 years ago
  36. c08f0e3 Add minnum / maxnum to APFloat by Matt Arsenault · 11 years ago
  37. f4ec669 [ADT] Replace the logb implementation with the simpler and much closer by Chandler Carruth · 11 years ago
  38. cb84b21 [ADT] Add the scalbn function for APFloat. by Chandler Carruth · 11 years ago
  39. 9ea4dd2 [ADT] Implement the 'logb' functionality for APFloat. This is necessary by Chandler Carruth · 11 years ago
  40. 0ffdb31 [ADT] Add basic operator overloads for arithmetic to APFloat to make by Chandler Carruth · 11 years ago
  41. b177041 [C++11] Use 'nullptr'. by Craig Topper · 11 years ago
  42. bef256f APFloat: x - NaN needs to flip the signbit of NaN when x is a number. by Stephen Canon · 11 years ago
  43. 1053a0b Change default # of digits for APFloat::toString by Eli Friedman · 12 years ago
  44. 9006170 Revert r189442 "Change default # of digits for APFloat::toString" by Ted Kremenek · 12 years ago
  45. 631bce5 Change default # of digits for APFloat::toString by Eli Friedman · 12 years ago
  46. ca4d2e6 [APFloat] Make all arithmetic operations with NaN produce positive NaNs. by Michael Gottesman · 12 years ago
  47. 763c066 Handle '.' correctly in hex float literal parsing. by Eli Friedman · 12 years ago
  48. b577703 [APFloat] Ensure that we can properly parse strings that do not have null terminators. by Michael Gottesman · 12 years ago
  49. fb76ffd [APFloat] Added unittest for APFloat.divide that checks special cases, result categories, and result statuses. by Michael Gottesman · 12 years ago
  50. bb77593 Removed two logging printf statements from the APFloat tests... = /. by Michael Gottesman · 12 years ago
  51. 2eda897 [APFloat] Added unittest for APFloat.multiply that checks special cases, result categories, and result status. by Michael Gottesman · 12 years ago
  52. d7d88d9 [APFloat] Added unittest for APFloat.subtract that checks special cases, result categories, and result status. by Michael Gottesman · 12 years ago
  53. a8f9364 [APFloat] Removed debugging cruft that snuck in. by Michael Gottesman · 12 years ago
  54. 567a112 [APFloat] Removed trailing whitespace from unittests. by Michael Gottesman · 12 years ago
  55. 683069f [APFloat] Added a large unittest for APFloat.add that checks that special values are computed correctly. by Michael Gottesman · 12 years ago
  56. a1694e5 [APFloat] Rename isIEEENormal => isNormal and remove old isNormal method. by Michael Gottesman · 12 years ago
  57. 3781fbc [APFloat] Fix typo in test so we actually test if we handle denormals. by Michael Gottesman · 12 years ago
  58. 4f71c1b [APFloat] Changed APFloat::isNormal => APFloat::isFiniteNonZero for all tests in unittests. by Michael Gottesman · 12 years ago
  59. 7032c88 [APFloat] Added isFiniteNonZero predicate. by Michael Gottesman · 12 years ago
  60. b30718a IEEE-754R 5.7.2 General Operations is* operations (except for isCanonical). by Michael Gottesman · 12 years ago
  61. 44dbb74 Try to avoid "integer literal too big" warnings from older GCCs. by Benjamin Kramer · 12 years ago
  62. 504e2da [APFloat] Added a unittest for APFloat::getZero. by Michael Gottesman · 12 years ago
  63. 964722c Implement IEEE-754R 2008 nextUp/nextDown functions in the guise of the function APFloat::next(bool nextDown). by Michael Gottesman · 12 years ago
  64. 999c693 Added a unittest for APFloat::getSmallestNormalized. by Michael Gottesman · 12 years ago
  65. 7d13d52 Added code to the unittest for APFloat::getSmallest to double check that we consider the result to be denormal. by Michael Gottesman · 12 years ago
  66. 3e8d356 Add a unittest for APFloat::getSmallest. by Michael Gottesman · 12 years ago
  67. 4b6b53b Fix a bug that APFloat::fusedMultiplyAdd() mistakenly evaluate "14.5f * -14.5f + 225.0f" to 225.0f. by Shuxin Yang · 12 years ago
  68. bd7561e APFloat: Make sure that we get a well-formed x87 NaN when converting from a smaller type. by Benjamin Kramer · 13 years ago
  69. 7aa1c32 Implement APFloat::isDenormal() by Shuxin Yang · 13 years ago
  70. 5a88dda Sort the #include lines for unittest/... by Chandler Carruth · 13 years ago
  71. 6b370e6 Drop the limitation to IEEE floating point types from the fdiv of pow2 -> fmul transform. by Benjamin Kramer · 13 years ago
  72. 69c9c8c Implement arithmetic on APFloat with PPCDoubleDouble semantics by by Ulrich Weigand · 13 years ago
  73. 3e7735f APFloat::roundToIntegral: Special values don't keep the exponent value up to date, don't rely on it. by Benjamin Kramer · 13 years ago
  74. c82cc58 Fix another roundToIntegral bug where very large values could become infinity. Problem and solution identified by Steve Canon. by Owen Anderson · 13 years ago
  75. f7a5dfc Fix a problem with APFloat::roundToIntegral where it would return incorrect results for negative inputs to trunc. Add unit tests to verify this behavior. by Owen Anderson · 13 years ago
  76. 4455142 Fix APFloat::convert so that it handles narrowing conversions correctly; it by Eli Friedman · 14 years ago
  77. a3a1635 Attempt to fix MSVC build. by Eli Friedman · 14 years ago
  78. 7247a5f Fix APFloat::getLargest so that it actually returns the correct value. Found by accident while reviewing a patch to nearby code. by Eli Friedman · 14 years ago
  79. 9d74909 Fix a test that wasn't testing the right thing. by Matt Beaumont-Gay · 14 years ago
  80. 3d42bfb Add an APFloat::convertToInt(APSInt) function that automatically manages the by Jeffrey Yasskin · 14 years ago
  81. 8398512 Avoid turning a floating point division with a constant power of two into a denormal multiplication. by Benjamin Kramer · 14 years ago
  82. 2746000 Add APFloat::getExactInverse. by Benjamin Kramer · 14 years ago
  83. b5f59f5 Fix death tests in -Asserts builds. by Jeffrey Yasskin · 15 years ago
  84. e12b738 Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width by John McCall · 16 years ago
  85. 8b3f330 Make APFloat's string-parsing routines a bit safer against very large exponents. by John McCall · 16 years ago
  86. 281d051 Make APInt::countLeadingZerosSlowCase() treat the contents of padding bits by John McCall · 16 years ago
  87. 6a09aff Implement support for converting to string at "natural precision", and fix some by John McCall · 16 years ago
  88. 00e65de Add accessors for the largest-magnitude, smallest-magnitude, and by John McCall · 16 years ago
  89. 83fecfa Add test for PR4873, which works for me. by Daniel Dunbar · 16 years ago
  90. c78b33b Add support for including '+' in APFloat strings, more asserts, by Erick Tryzelaar · 16 years ago
  91. cdd93d8 Fix two APFloat bugs in converting hexadecimal constants. by Daniel Dunbar · 16 years ago
  92. 2ad40a3 Wrap unit test death tests in GTEST_HAS_DEATH_TEST by Erick Tryzelaar · 16 years ago
  93. 33d7dd6 Change APFloatTest from using ASSERTs to EXPECTs by Erick Tryzelaar · 16 years ago
  94. a15d890 Modify APFloat to take a StringRef instead of a c string. by Erick Tryzelaar · 16 years ago