summaryrefslogtreecommitdiff
path: root/lib/Support/APFloat.cpp
Commit message (Expand)AuthorAge
* Change default # of digits for APFloat::toStringEli Friedman2013-08-29
* Revert r189442 "Change default # of digits for APFloat::toString"Ted Kremenek2013-08-28
* Change default # of digits for APFloat::toStringEli Friedman2013-08-28
* [APFloat] Make all arithmetic operations with NaN produce positive NaNs.Michael Gottesman2013-07-27
* [APFloat] Move setting fcNormal in zeroSignificand() to calling code.Michael Gottesman2013-07-27
* Handle '.' correctly in hex float literal parsing.Eli Friedman2013-07-17
* [APFloat] PR16573: Avoid losing mantissa bits in ppc_fp128 to double truncationUlrich Weigand2013-07-16
* [APFloat] Swap an early out check so we do not dereference str.end().Michael Gottesman2013-07-02
* [APFloat] Ensure that we can properly parse strings that do not have null ter...Michael Gottesman2013-07-01
* Revert "Revert "[APFloat] Removed APFloat constructor which initialized to ei...Michael Gottesman2013-06-27
* Revert "[APFloat] Removed APFloat constructor which initialized to either zer...Michael Gottesman2013-06-27
* [APFloat] Removed APFloat constructor which initialized to either zero/NaN bu...Michael Gottesman2013-06-27
* [APFloat] Convert all references to fcNormal to references to isFiniteNonZero().Michael Gottesman2013-06-26
* [APFloat] Added support for parsing float strings which contain {inf,-inf,NaN...Michael Gottesman2013-06-24
* [APFloat] Added make{Zero,Inf} methods and implemented get{Zero,Inf} on top o...Michael Gottesman2013-06-24
* [APFloat] Removed a assert from significandParts() which says that one can on...Michael Gottesman2013-06-24
* [APFloat] Rename macro convolve => PackCategoriesIntoKey so that it is clear ...Michael Gottesman2013-06-24
* [APFloat] Rename llvm::exponent_t => llvm::APFloat::ExponentType.Michael Gottesman2013-06-24
* [APFloat] Converted all references to APFloat::isNormal => APFloat::isFiniteN...Michael Gottesman2013-06-19
* Fixed comment typo that causes the given comment to actually make sense.Michael Gottesman2013-06-19
* Introduce needsCleanup() for APFloat and APInt.Manuel Klimek2013-06-03
* APFloat: Use isDenormal instead of hand-rolled code to check for denormals.Benjamin Kramer2013-06-01
* Implement IEEE-754R 2008 nextUp/nextDown functions in the guise of the functi...Michael Gottesman2013-05-30
* Fix a bug that APFloat::fusedMultiplyAdd() mistakenly evaluate "14.5f * -14.5...Shuxin Yang2013-05-13
* Fix AsmPrinter crashes with assertion. Bug 15318 in BugzillaHao Liu2013-03-20
* APFloat: Make sure that we get a well-formed x87 NaN when converting from a s...Benjamin Kramer2013-01-25
* Make APFloat constructor require explicit semantics.Tim Northover2013-01-22
* Add llvm::hexDigitValue to convert single characters to hex.Jordan Rose2013-01-18
* Remove redundant 'llvm::' qualificationsDmitri Gribenko2013-01-13
* Implement APFloat::isDenormal()Shuxin Yang2013-01-07
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Fix a bug in APFloat.cpp: declare APFloat after fltSemantics itAlexey Samsonov2012-11-30
* Drop the limitation to IEEE floating point types from the fdiv of pow2 -> fmu...Benjamin Kramer2012-11-08
* APFloat cleanup: Remove now unused "arithmeticOK" logic.Ulrich Weigand2012-10-29
* APFloat cleanup: Remove now unused fields "sign2" and "exponent2".Ulrich Weigand2012-10-29
* Implement arithmetic on APFloat with PPCDoubleDouble semantics byUlrich Weigand2012-10-29
* APFloat::roundToIntegral: Special values don't keep the exponent value up to ...Benjamin Kramer2012-09-26
* Fix undefined behavior (signed integer overflow) when Clang parses a hexfloat...Richard Smith2012-08-24
* Fix another roundToIntegral bug where very large values could become infinity...Owen Anderson2012-08-15
* Fix typo in comment.Owen Anderson2012-08-15
* Fix a problem with APFloat::roundToIntegral where it would return incorrect r...Owen Anderson2012-08-15
* Fix the construction of the magic constant for roundToIntegral to be 64-bit s...Owen Anderson2012-08-14
* Add a roundToIntegral method to APFloat, which can be parameterized over vari...Owen Anderson2012-08-13
* Don't add null characters to the end of the APFloat string buffer.David Blaikie2012-07-25
* Replace the hashing functions on APInt and APFloat with overloads of theChandler Carruth2012-03-04
* APFloat::toString(): Fix overrun at scanning.NAKAMURA Takumi2012-02-19
* Add 'llvm_unreachable' to passify GCC's understanding of the constraintsChandler Carruth2012-01-10
* Remove unnecessary default cases in switches that cover all enum values.David Blaikie2012-01-10
* Add back a line I deleted by accident in r145141. Fixes uninitialized variab...Eli Friedman2011-11-28
* Fix APFloat::convert so that it handles narrowing conversions correctly; itEli Friedman2011-11-26