1. f7a91e6 Add assert for non-hexadecimal radixes. by Bill Wendling · 17 years ago
  2. a8de38f Fix a typo. It's causing consumer-typeset to miscompile. Perhaps more. by Evan Cheng · 17 years ago
  3. cf60957 Add support to APInt for shift and rotate operations with APInt by Dan Gohman · 17 years ago
  4. 93c276e Add a method to APFloat to convert directly from APInt. by Dan Gohman · 17 years ago
  5. 61e015f Fix a bug that caused opt and other tools to silently ignore by Dan Gohman · 17 years ago
  6. b5660dc Add explicit keywords. by Dan Gohman · 17 years ago
  7. d57160d Add 'sink' cmdline option. Patch by Mikhail Glushenkov! by Anton Korobeynikov · 17 years ago
  8. ae9f3a3 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 17 years ago
  9. a795aca Fixed bug in APInt::Profile() where the BitWidth field was not included in the by Ted Kremenek · 17 years ago
  10. e3e0957 Fixed bug in FoldingSetIteratorImpl where we did not correctly check if by Ted Kremenek · 17 years ago
  11. 5a0e7b4 Fix a warning about comparison between signed and unsigned, by Dan Gohman · 18 years ago
  12. 42dd77f Add countTrailingOnes member functions to APInt. by Dan Gohman · 18 years ago
  13. 1f801fa Added "Profile" method to APFloat for use with FoldingSet. by Ted Kremenek · 18 years ago
  14. 167b8bc Add support to FoldingSet for hashing APInt objects. by Dan Gohman · 18 years ago
  15. 26e3c44 Added "bucket_iterators" to FoldingSet. Bucket iterators allow iteration by Ted Kremenek · 18 years ago
  16. 27a8e0d Fixed 80 col. violation. by Ted Kremenek · 18 years ago
  17. b63fa05 Chris' change to print an approximation to long doubles by Dale Johannesen · 18 years ago
  18. b10abe1 Remove top-level const qualifiers from casts, avoiding associated by Dan Gohman · 18 years ago
  19. 42f6e45 Simplify the code and fix a typo. by Lauro Ramos Venancio · 18 years ago
  20. 599ddf9 Fix fpcmp infinite loop when comparing "29-266" with "29-268". by Lauro Ramos Venancio · 18 years ago
  21. 4048a08 Added FoldingSet style 'profiling' support for APSInt. by Ted Kremenek · 18 years ago
  22. e420deb Added FoldingSet style 'profiling' support for APInt. by Ted Kremenek · 18 years ago
  23. 0a3feca Made 'FoldingSetNodeID' a proper class instead of a nested class in by Ted Kremenek · 18 years ago
  24. 4ee451d Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  25. fc643c5 remove attribution from lib Makefiles. by Chris Lattner · 18 years ago
  26. 97d3726 Cygwin defines uint32_t as unsigned long. Unbreak call to std::min in this case by Anton Korobeynikov · 18 years ago
  27. 9af1887 Don't have APInt.cpp depend upon DerivedTypes.h. This helps with splitting the by Reid Spencer · 18 years ago
  28. 36d26c2 proper #include order. by Chris Lattner · 18 years ago
  29. 985cb62 Adding a StringPool data structure, which GC will use. by Gordon Henriksen · 18 years ago
  30. cc23359 Prior commit updated wrong if, apologies. by Neil Booth · 18 years ago
  31. a89e45f Handle zero correctly. by Neil Booth · 18 years ago
  32. db1e302 Handle 0 correctly in string->APFloat conversion. by Dale Johannesen · 18 years ago
  33. 9e513ac Fix PR1816, by correcting the broken definition of APInt::countTrailingZeros. by Chris Lattner · 18 years ago
  34. 5e55712 Fix APInt::countTrailingZeros to return BitWidth if the input is zero instead of returning some random large number. by Chris Lattner · 18 years ago
  35. 2b1f106 Fix the Linker testcase regressions, by making MemoryBuffer::getFileOrSTDIN return by Chris Lattner · 18 years ago
  36. d0763b9 Fix denormal check in float->APInt conversion. PR 1804. by Dale Johannesen · 18 years ago
  37. 373a733 make smallptrset more const and type correct, which caught a few minor bugs. by Chris Lattner · 18 years ago
  38. e3d936a Remove some unnecessary C-style statics. by Neil Booth · 18 years ago
  39. 43a4b28 Add back line whose removal somehow crept into prior patch by Neil Booth · 18 years ago
  40. ee7ae38 When converting to integer, do bit manipulations in the destination by Neil Booth · 18 years ago
  41. 8df77a9 Clarified operator precedence. Silenced VC++ warning. by Hartmut Kaiser · 18 years ago
  42. 8dc2e28 This requires rtti info because tblgen uses commandline, by Chris Lattner · 18 years ago
  43. 686700e Fast-track obviously over-large and over-small exponents during decimal-> by Neil Booth · 18 years ago
  44. e5e0194 Consolidate logic for creating NaNs. Silence compiler warning. by Neil Booth · 18 years ago
  45. caf19d7 Whether arithmetic is supported is a property of the semantics. Make it by Neil Booth · 18 years ago
  46. 1870f29 Separate out parsing of decimal number. Use this to only allocate by Neil Booth · 18 years ago
  47. d1a23d5 If the power of 5 is exact, and the reciprocal exact, the error is zero not one half-ulps. This prevents an infinite loop in rare cases. by Neil Booth · 18 years ago
  48. 6ac7016 Remove duplicate comment. by Neil Booth · 18 years ago
  49. 96c7471 Implement correctly-rounded decimal->binary conversion, i.e. conversion by Neil Booth · 18 years ago
  50. 5b8e0c5 Remove a field that was never used. by Neil Booth · 18 years ago
  51. 7a951ca If we're trying to be arbitrary precision, unsigned char clearly won't cut it. Needed for dec->bin conversions. by Neil Booth · 18 years ago
  52. 1e8390d Don't attempt to mask no bits by Neil Booth · 18 years ago
  53. a471c2e Next PPC long double bits. First cut at constants. by Dale Johannesen · 18 years ago
  54. 3daae27 Add new MemoryBuffer::getMemBufferCopy method. by Chris Lattner · 18 years ago
  55. 9a52632 Pass argc by value, not by reference, since it isn't modified. by Dan Gohman · 18 years ago
  56. be2c459 Change a #include into a forward declaration by Chris Lattner · 18 years ago
  57. 82a13c9 Move the space in overview output for commands out of each of the by Dan Gohman · 18 years ago
  58. 5477f85 Use APInt::tcExtract. It's cleaner, and works :) by Neil Booth · 18 years ago
  59. 68e53ad Add a new function tcExtract for extracting a bignum from an by Neil Booth · 18 years ago
  60. f16c595 Add back convertFromSignExtendedInteger. by Neil Booth · 18 years ago
  61. 7a7bc0f Now that convertFromUnsignedParts has a sane, constant interface, by Neil Booth · 18 years ago
  62. 643ce59 Reimplement convertFromUnsignedInteger so it is passed a const bignum. by Neil Booth · 18 years ago
  63. ccf596a convertFromInteger, as originally written, expected sign-extended by Neil Booth · 18 years ago
  64. 33d4c92 combineLostFractions does not need to be a member function by Neil Booth · 18 years ago
  65. 92f7e8d Cleaner, more general exponent output. by Neil Booth · 18 years ago
  66. a11ef82 silence warnings in no-assert build. by Chris Lattner · 18 years ago
  67. 055c0b3 Fix and clarify some comments. by Neil Booth · 18 years ago
  68. 978661d Generalize tcFullMultiply so that the operands can be of differing by Neil Booth · 18 years ago
  69. a30b0ee Add APFloat -> hexadecimal string conversion, as per %a and %A in C99. by Neil Booth · 18 years ago
  70. 116c321 Add initial iterator support for folding set. by Chris Lattner · 18 years ago
  71. 9a7288b Simplify implementation of the FoldingSet circular list, a necessary step by Chris Lattner · 18 years ago
  72. b7dea4c Tweak RoundAwayFromZero the bit number below which is truncated, and make by Neil Booth · 18 years ago
  73. cce23a4 Simplify and fix signed int -> FP conversions. by Dale Johannesen · 18 years ago
  74. 4f88170 Whitespace and compiler warning cleanup. by Neil Booth · 18 years ago
  75. 0edc47a Make APFloat->int conversions deterministic even in by Dale Johannesen · 18 years ago
  76. 902ff94 Fix long double<->shorter FP type conversions of zero, infinity, and NaNs. by Dale Johannesen · 18 years ago
  77. c8db43d Handle storage complications of float->float conversions. by Neil Booth · 18 years ago
  78. 910993e Change APFloat::convertFromInteger to take the incoming by Dale Johannesen · 18 years ago
  79. a72a5a0 Fix PR 1688. See comments there. by Dale Johannesen · 18 years ago
  80. 8feb1f4 by Devang Patel · 18 years ago
  81. 2204906 fix a gcc warning: comparison between signed and unsigned integer expressions by Chris Lattner · 18 years ago
  82. 9e3d3ab Remove the assumption that FP's are either float or by Dale Johannesen · 18 years ago
  83. f82e1e6 And an FoldingSetImpl::NodeID::AddInteger overload for int64_t, to avoid by Dan Gohman · 18 years ago
  84. cb648f9 Remove spurious consts. This fixes warnings with compilers that by Dan Gohman · 18 years ago
  85. 257500d Compensate for partCount change in Bogus definition by Dale Johannesen · 18 years ago
  86. 3f6eb74 Add APInt interfaces to APFloat (allows directly by Dale Johannesen · 18 years ago
  87. 7dfda9e Smarter Reset(). Instead of deallocating all memory regions and reallocate the by Evan Cheng · 18 years ago
  88. 188b522 Added Reset() to free all allocated memory regions and reset state to be the same as right after ctor. by Evan Cheng · 18 years ago
  89. 58c2e4c Fix mod so it actually works. Fix conversions to by Dale Johannesen · 18 years ago
  90. e15c2db Oops, should be part of 41664; won't work very well without this piece. by Dale Johannesen · 18 years ago
  91. eaf0894 Enhance APFloat to retain bits of NaNs (fixes oggenc). by Dale Johannesen · 18 years ago
  92. f04afdb Change LegalFPImmediates to use APFloat. by Dale Johannesen · 18 years ago
  93. 12595d7 Poison APFloat::operator==. Replace existing uses with bitwiseIsEqual. by Dale Johannesen · 18 years ago
  94. d3b51fd Revised per review feedback from previous patch. by Dale Johannesen · 18 years ago
  95. ada530b silence some warnings in an optimized build. by Chris Lattner · 18 years ago
  96. 343e770 Change internal representation of ConstantFP to use APFloat. by Dale Johannesen · 18 years ago
  97. 9132a2b rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned() by Chris Lattner · 18 years ago
  98. b39cdde initial checkin of Neil's APFloat work. by Chris Lattner · 18 years ago
  99. fe8e14a This adds a bunch of static functions that implement unsigned by Chris Lattner · 18 years ago
  100. ebf0303 Properly use const qualifiers by Anton Korobeynikov · 18 years ago