Add llvm::hexDigitValue to convert single characters to hex.
[oota-llvm.git] / lib / Support / APFloat.cpp
2013-01-18 Jordan RoseAdd llvm::hexDigitValue to convert single characters...
2013-01-13 Dmitri GribenkoRemove redundant 'llvm::' qualifications
2013-01-07 Shuxin YangImplement APFloat::isDenormal()
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-11-30 Alexey SamsonovFix a bug in APFloat.cpp: declare APFloat after fltSema...
2012-11-08 Benjamin KramerDrop the limitation to IEEE floating point types from...
2012-10-29 Ulrich WeigandAPFloat cleanup: Remove now unused "arithmeticOK" logic.
2012-10-29 Ulrich WeigandAPFloat cleanup: Remove now unused fields "sign2" and...
2012-10-29 Ulrich WeigandImplement arithmetic on APFloat with PPCDoubleDouble...
2012-09-26 Benjamin KramerAPFloat::roundToIntegral: Special values don't keep...
2012-08-24 Richard SmithFix undefined behavior (signed integer overflow) when...
2012-08-15 Owen AndersonFix another roundToIntegral bug where very large values...
2012-08-15 Owen AndersonFix typo in comment.
2012-08-15 Owen AndersonFix a problem with APFloat::roundToIntegral where it...
2012-08-14 Owen AndersonFix the construction of the magic constant for roundToI...
2012-08-13 Owen AndersonAdd a roundToIntegral method to APFloat, which can...
2012-07-25 David BlaikieDon't add null characters to the end of the APFloat...
2012-03-04 Chandler CarruthReplace the hashing functions on APInt and APFloat...
2012-02-19 NAKAMURA TakumiAPFloat::toString(): Fix overrun at scanning.
2012-01-10 Chandler CarruthAdd 'llvm_unreachable' to passify GCC's understanding...
2012-01-10 David BlaikieRemove unnecessary default cases in switches that cover...
2011-11-28 Eli FriedmanAdd back a line I deleted by accident in r145141. ...
2011-11-26 Eli FriedmanFix APFloat::convert so that it handles narrowing conve...
2011-10-12 Eli FriedmanFix APFloat::getSmallestNormalized so the shift doesn...
2011-10-12 Eli FriedmanFix APFloat::getLargest so that it actually returns...
2011-10-07 Eli FriedmanFix APInt::operator*= so that it computes the correct...
2011-10-03 Nick LewyckyFix typo in comments.
2011-08-12 Duncan SandsSilence a bunch (but not all) "variable written but...
2011-07-18 Jeffrey YasskinAdd APInt(numBits, ArrayRef<uint64_t> bigVal) construct...
2011-07-15 Chandler CarruthExplicitly cast the second argument to unsigned in...
2011-07-15 Jeffrey YasskinAdd an APFloat::convertToInt(APSInt) function that...
2011-04-15 Chris LattnerFix a ton of comment typos found by codespell. Patch by
2011-03-30 Benjamin KramerAvoid turning a floating point division with a constant...
2011-03-30 Benjamin KramerAdd APFloat::getExactInverse.
2011-03-18 Bill WendlingInitialize the only-used-with-PPC-double-double parts...
2011-02-17 Nadav RotemEnhance constant folding of bitcast operations on vecto...
2011-01-23 Ted KremenekNull initialize a few variables flagged by
2011-01-06 Abramo BagnaraFixed parsing of hex floats.
2010-12-07 Jay FoadPR5207: Change APInt methods trunc(), sext(), zext...
2010-11-28 Jay FoadPR5207: change APInt::doubleToBits() and APInt::floatTo...
2010-08-19 Dale JohannesenDo not assert when reading an exponent out of range.
2010-07-14 Benjamin KramerDon't pass StringRef by reference.
2010-03-24 Dan GohmanFix minor style issues.
2010-03-06 Chris Lattnermake APFloat::toString be const.
2010-03-01 John McCallDon't potentially read past the end of the fill data...
2010-02-28 John McCallProperly clear all the extra bits in a significand...
2010-02-28 John McCallTeach APFloat how to create both QNaNs and SNaNs and...
2010-02-26 John McCallMake APFloat's string-parsing routines a bit safer...
2009-12-24 John McCallImplement support for converting to string at "natural...
2009-12-24 John McCallSubstantially optimize APFloat::toString() by doing...
2009-12-24 John McCallAdd accessors for the largest-magnitude, smallest-magni...
2009-10-28 Evan ChengRemove getIEEEFloatParts and getIEEEDoubleParts. They...
2009-10-27 Evan ChengAdd new APFloat methods that return sign, exp, and...
2009-10-23 Dale JohannesenCommit fixes for half precision I noted in review, so
2009-10-16 Chris LattnerAdd half precision floating point support (float16...
2009-09-24 Chris Lattnerwrap long lines.
2009-09-17 Chris Lattneradd a version of the APFloat constructor that initializ...
2009-08-21 Anton KorobeynikovFix typo.
2009-08-21 Anton KorobeynikovImplement APInt <-> APFloat conversion for IEEE 128...
2009-08-20 Erick TryzelaarAdd support for including '+' in APFloat strings, more...
2009-08-20 Daniel DunbarFix two APFloat bugs in converting hexadecimal constants.
2009-08-18 Erick TryzelaarFix an uninitialized value warning in APFloat.
2009-08-16 Erick TryzelaarModify APFloat to take a StringRef instead of a c string.
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-05-30 Mike StumpAdd support for letting the client choose different...
2009-05-13 Mike StumpFix whitespacing (space after switch).
2009-03-23 Dale JohannesenFix internal representation of fp80 to be the
2009-03-13 Chris Lattnerjust initialize the first element, we don't need to...
2009-03-13 Chris LattnerEliminate a 9640 byte static mutable initialized data...
2009-03-12 Chris Lattnerstatic functions don't need an anonymous namespace.
2009-02-14 Cedric VenetUnbreak the build on win32.
2009-01-21 Dale JohannesenDo not use host floating point types when emitting
2009-01-21 Dale JohannesenMake special cases (0 inf nan) work for frem.
2009-01-20 Dale JohannesenAdd an IEEE remainder function, which is not
2009-01-19 Dale Johannesencompile-time fmod was done incorrectly. PR 3316.
2008-11-27 Bill WendlingGet rid of bogus "control may reach end of non-void...
2008-11-26 Evan ChengRevert r60042. IndVarSimplify should check if APFloat...
2008-11-25 Evan ChengconvertToSignExtendedInteger should return opInvalidOp...
2008-10-09 Dale JohannesenAdd a "loses information" return value to APFloat:...
2008-10-09 Dale JohannesenRename APFloat::convertToAPInt to bitcastToAPInt to
2008-10-07 Dale JohannesenMark negative-zero-to-int conversion as Inexact,
2008-10-06 Dale JohannesenBe more precise about which conversions of NaNs
2008-10-06 Dale JohannesenTemporarily revert functionality change from my previou...
2008-10-06 Dale JohannesenMark shortening NaN conversions as Inexact. PR 2856.
2008-08-17 Chris LattnerRework the routines that convert AP[S]Int into a string...
2008-08-17 Chris Lattnerremove a dead APInt ctor.
2008-05-14 Dale JohannesenDon't assume underlying APInt type is limited
2008-05-14 Dale JohannesenRemove undefined behavior in hex string->APFloat
2008-05-12 Dan GohmanMake firstEightPowers const.
2008-05-02 Evan ChengSuppress -Wshorten-64-to-32 warnings for 64-bit hosts.
2008-04-20 Dale JohannesenCheck that APFloat::convert is not trying to target
2008-04-10 Dan GohmanMake several symbols static.
2008-02-29 Dan GohmanAdd a method to APFloat to convert directly from APInt.
2008-02-11 Ted KremenekAdded "Profile" method to APFloat for use with FoldingSet.
2008-01-31 Dale JohannesenChris' change to print an approximation to long doubles
2008-01-29 Dan GohmanRemove top-level const qualifiers from casts, avoiding...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-08 Chris Lattnerproper #include order.
2007-12-05 Neil BoothPrior commit updated wrong if, apologies.
next