aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/APFloat.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-11-08Fix memory leaks (coverity issues 1365586 & 1365591)Sylvestre Ledru1-2/+6
2016-11-06[APFloat] Make functions that produce APFloaat objects use correct semantics.Tim Shen1-19/+37
2016-10-29[APFloat] Remove the redundent function body of uninitialized ctor, which sho...Tim Shen1-4/+1
2016-10-28[APFloat] Fix memory bugs revealed by MSanTim Shen1-3/+8
2016-10-27Reapply r285351 "[APFloat] Add DoubleAPFloat mode to APFloat. NFC." withTim Shen1-59/+115
2016-10-27Revert "[APFloat] Add DoubleAPFloat mode to APFloat. NFC."Tim Shen1-115/+59
2016-10-27[APFloat] Add DoubleAPFloat mode to APFloat. NFC.Tim Shen1-59/+115
2016-10-25[APFloat] Make APFloat an interface class to the internal IEEEFloat. NFC.Tim Shen1-372/+244
2016-04-16Remove some unneeded headers and replace some headers with forward class decl...Mehdi Amini1-0/+1
2016-04-05Revert "Fix Clang-tidy modernize-deprecated-headers warnings in remaining fil...Duncan P. N. Exon Smith1-44/+30
2016-04-05Fix Clang-tidy modernize-deprecated-headers warnings in remaining files; othe...Eugene Zelenko1-30/+44
2016-03-23APFloat: Fix signalling nans for scalbnMatt Arsenault1-0/+2
2016-03-21APFloat: Add frexpMatt Arsenault1-1/+25
2016-03-13APFloat: Fix ilogb for denormalsMatt Arsenault1-0/+18
2016-03-13APFloat: Fix scalbn handling of denormalsMatt Arsenault1-12/+14
2016-02-18Remove uses of builtin comma operator.Richard Trieu1-1/+3
2015-11-16Add isInteger() to APFloat.Stephen Canon1-0/+9
2015-09-21Remove roundingMode argument in APFloat::modStephen Canon1-3/+3
2015-08-26Expose more properties of llvm::fltSemanticsJF Bastien1-0/+15
2015-08-21[APFloat] Remove else after return and replace loop with std::equal. NFC.Benjamin Kramer1-11/+5
2015-07-09Add getSizeInBits function to the APFloat classTamas Berghammer1-8/+15
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko1-2/+2
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-2/+2
2015-04-30Fix -Wpessimizing-move warnings by removing std::move calls.Richard Trieu1-2/+2
2015-03-24Silencing some MSVC warnings "C4805: '^' : unsafe mix of type 'bool' and type...Aaron Ballman1-1/+1
2015-03-23Refactor: Simplify boolean expressions in llvm SupportDavid Blaikie1-1/+1
2015-03-09Simplify expressions involving boolean constants with clang-tidyDavid Blaikie1-2/+2
2015-01-04[APFloat][ADT] Fix sign handling logic for FMA results that truncate to zero.Lang Hames1-1/+1
2014-11-19[ADT] Fix PR20728 - Incorrect APFloat::fusedMultiplyAdd results for x86_fp80.Lang Hames1-12/+24
2014-10-14Revert "r216914 - Revert: [APFloat] Fixed a bug in method 'fusedMultiplyAdd'"Hal Finkel1-2/+2
2014-10-12Modernize old-style static asserts. NFC.Benjamin Kramer1-2/+1
2014-10-10[ADT] Add the scalbn function for APFloat.Chandler Carruth1-0/+17
2014-09-06Check whether the iterator p == the end iterator before trying to dereference...Nick Lewycky1-3/+3
2014-09-06Fix right shift by 64 bits detected on CXX/lex/lex.literal/lex.ext/p4.cppAlexey Samsonov1-1/+3
2014-09-02Revert: [APFloat] Fixed a bug in method 'fusedMultiplyAdd'.Andrea Di Biagio1-1/+1
2014-09-02[APFloat] Fixed a bug in method 'fusedMultiplyAdd'.Andrea Di Biagio1-1/+1
2014-08-26Revert "Support/APFloat: unique_ptr-ify temp arrays"Dylan Noblesmith1-8/+11
2014-08-25Support/APFloat: unique_ptr-ify temp arraysDylan Noblesmith1-11/+8
2014-06-08APFloat: x - NaN needs to flip the signbit of NaN when x is a number.Stephen Canon1-1/+3
2014-04-15[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-6/+6
2014-04-07[C++11] Make use of 'nullptr' in the Support library.Craig Topper1-3/+3
2014-03-04APFloat: Add a move ctor and operator=Benjamin Kramer1-0/+18
2014-01-24Fix known typosAlp Toker1-1/+1
2013-12-05Correct word hyphenationsAlp Toker1-1/+1
2013-08-29Change default # of digits for APFloat::toStringEli Friedman1-5/+8
2013-08-28Revert r189442 "Change default # of digits for APFloat::toString"Ted Kremenek1-8/+5
2013-08-28Change default # of digits for APFloat::toStringEli Friedman1-5/+8
2013-07-27[APFloat] Make all arithmetic operations with NaN produce positive NaNs.Michael Gottesman1-7/+10
2013-07-27[APFloat] Move setting fcNormal in zeroSignificand() to calling code.Michael Gottesman1-2/+4
2013-07-17Handle '.' correctly in hex float literal parsing.Eli Friedman1-30/+20