1. 86497ad fix typos by Adrian Prantl · 7 years ago
  2. f78650a Remove trailing space by Fangrui Song · 7 years ago
  3. 15681ad Use uniform mechanism for OOM errors handling by Serge Pavlov · 7 years ago
  4. c4b6d0e Revert commit 333506 by Serge Pavlov · 7 years ago
  5. 5096d06 Use uniform mechanism for OOM errors handling by Serge Pavlov · 7 years ago
  6. 1a09552 Reverted commits 333390, 333391 and 333394 by Serge Pavlov · 7 years ago
  7. 0e31285 Use uniform mechanism for OOM errors handling by Serge Pavlov · 7 years ago
  8. 4500001 Revert r325224 "Report fatal error in the case of out of memory" by Serge Pavlov · 8 years ago
  9. 431502a Report fatal error in the case of out of memory by Serge Pavlov · 8 years ago
  10. c20b338 Support, IR, ADT: Check nullptr after allocation with malloc/realloc or calloc by Matthias Braun · 8 years ago
  11. 1f990e5 [ADT] Reduce duplication between {Contextual,}FoldingSet; NFC by George Burgess IV · 8 years ago
  12. e3a9a67 PR30711: Fix incorrect profiling of 'long long' in FoldingSet, then use it to by Richard Smith · 9 years ago
  13. cd1d5aa Replace a few more "fall through" comments with LLVM_FALLTHROUGH by Justin Bogner · 9 years ago
  14. 60adb92 Adding reserve and capacity methods to FoldingSet by Ben Craig · 9 years ago
  15. b596ba2 [ADT] Teach FoldingSet to be movable. by Chandler Carruth · 10 years ago
  16. 16ab5e6 fix typos; NFC by Sanjay Patel · 10 years ago
  17. 66f486f FoldingSet: Make FoldingSetImpl's dtor protected and non-virtual by Benjamin Kramer · 11 years ago
  18. fee0434 [llvm] Replacing asserts with static_asserts where appropriate by Gabor Horvath · 11 years ago
  19. 2617dcc [C++11] More 'nullptr' conversion. In some cases just using a boolean check instead of comparing to nullptr. by Craig Topper · 11 years ago
  20. 8d399f8 [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to reduce verbosity. by Craig Topper · 11 years ago
  21. c10719f [C++11] Make use of 'nullptr' in the Support library. by Craig Topper · 11 years ago
  22. 41cb64f Make the host endianness check an integer constant expression. by Rafael Espindola · 12 years ago
  23. d192517 Fix whitespace. No functionality change. by Nick Lewycky · 13 years ago
  24. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  25. 5412945 move irrelevant attribution. by Chris Lattner · 13 years ago
  26. 0b3e805 Add operator< for FoldingSetNodeID. by Ted Kremenek · 13 years ago
  27. 63057a5 FoldingSet: Push the hash through FoldingSetTraits::Equals, so clients can use it. by Benjamin Kramer · 13 years ago
  28. d8e918b Revert commit 152300 (ddunbar) since it still seems to be breaking by Duncan Sands · 14 years ago
  29. 5446379 [ADT] Change the trivial FoldingSetNodeID::Add* methods to be inline, reapplied by Daniel Dunbar · 14 years ago
  30. 5ecfd7f Revert r152288, "[ADT] Change the trivial FoldingSetNodeID::Add* methods to be by Daniel Dunbar · 14 years ago
  31. faa48eb [ADT] Change the trivial FoldingSetNodeID::Add* methods to be inline. by Daniel Dunbar · 14 years ago
  32. 93cffd2 Switch FoldingSet over to the new hashing infrastructure. We might want by Chandler Carruth · 14 years ago
  33. 2b8cb92 Simplify & microoptimize code. No intended functionality change. by Benjamin Kramer · 14 years ago
  34. 3e4abe5 singed int causes signed extension, which contradicts the intention to pick up by Zhongxing Xu · 14 years ago
  35. 63e9190 allow adding a FoldingSetNodeID to a FastFoldingSetNode, resolving PR9499, by Chris Lattner · 14 years ago
  36. 447762d Merge System into Support. by Michael J. Spencer · 15 years ago
  37. 461e704 Aligned and unaligned copies of the same string by Dale Johannesen · 15 years ago
  38. 3d9ed28 Use Bits.data() instead of &Bits[0]. by Dan Gohman · 15 years ago
  39. 9c9ce53 Add hooks to FoldingSetTrait to allow specializations to provide by Dan Gohman · 15 years ago
  40. 27c98e6 Reverse the order of GetNodeProfile's arguments, for consistency by Dan Gohman · 15 years ago
  41. bf5c3d4 Use calloc instead of new/memset, it is more efficient when the set is very large. by Benjamin Kramer · 15 years ago
  42. 6556c89 Add the ability to "intern" FoldingSetNodeID data into a by Dan Gohman · 16 years ago
  43. 78faee0 Switch FoldingSet::AddString to StringRef based API. by Daniel Dunbar · 16 years ago
  44. fbcc663 llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
  45. 56d0659 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
  46. ef01e11 Add an API for strings with possible NULLs in the middle. Refactor the other by Nick Lewycky · 17 years ago
  47. 1f86498 Do not use host floating point types when emitting by Dale Johannesen · 17 years ago
  48. bde8539 Overload AddInteger on int/long/long long instead of on int/int64_t, by Dan Gohman · 17 years ago
  49. 0e44e0d Add a clear() method to FoldingSet. by Dan Gohman · 17 years ago
  50. be5e69e Avoid repeatedly reallocating the FoldingSetNodeID when searching by Dan Gohman · 17 years ago
  51. 31936d6 Add a version of AddString that takes a const char* so we can avoid extraneous by Owen Anderson · 17 years ago
  52. 90ada83 Consistently set "Buckets[NumBuckets] = reinterpret_cast<void*>(-1)" throughout FoldingSet.cpp. by Ted Kremenek · 17 years ago
  53. 86cb318 Fix more -Wshorten-64-to-32 warnings. by Evan Cheng · 17 years ago
  54. 579f071 Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings. by Anton Korobeynikov · 18 years ago
  55. d66c791 Fixed bug in FoldingSetIteratorImpl where we did not correctly check if by Ted Kremenek · 18 years ago
  56. 6f30a07 Added "Profile" method to APFloat for use with FoldingSet. by Ted Kremenek · 18 years ago
  57. 4f26eb7 Add support to FoldingSet for hashing APInt objects. by Dan Gohman · 18 years ago
  58. e288786 Added "bucket_iterators" to FoldingSet. Bucket iterators allow iteration by Ted Kremenek · 18 years ago
  59. 726933a Fixed 80 col. violation. by Ted Kremenek · 18 years ago
  60. c025963 Made 'FoldingSetNodeID' a proper class instead of a nested class in by Ted Kremenek · 18 years ago
  61. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  62. 5c50f59 Change a #include into a forward declaration by Chris Lattner · 18 years ago
  63. 99f6ab7 Add initial iterator support for folding set. by Chris Lattner · 18 years ago
  64. 8c41ed6 Simplify implementation of the FoldingSet circular list, a necessary step by Chris Lattner · 18 years ago
  65. 6395e50 fix a gcc warning: comparison between signed and unsigned integer expressions by Chris Lattner · 18 years ago
  66. 98d3a08 Remove the assumption that FP's are either float or by Dale Johannesen · 18 years ago
  67. 14cf78c And an FoldingSetImpl::NodeID::AddInteger overload for int64_t, to avoid by Dan Gohman · 18 years ago
  68. a5821ec remove folding set debug output by Chris Lattner · 19 years ago
  69. 010ee96 Encode small integers more densely in foldingset, avoiding overflowing the SmallVector as often. by Chris Lattner · 19 years ago
  70. 4f5cdec improve comments, add an assertion by Chris Lattner · 19 years ago
  71. e7422f6 Add some debug output. by Reid Spencer · 19 years ago
  72. 0dbb137 minor cleanups. Fix off-by-one in accounting the number of nodes when the by Chris Lattner · 19 years ago
  73. a94523d reformat comment by Chris Lattner · 19 years ago
  74. f16dbf6 assert.h -> cassert by Rafael Espindola · 19 years ago
  75. a1fde82 #include <assert.h> by Rafael Espindola · 19 years ago
  76. eb0fd25 Allow FoldingSet clients to pump up the initial hash size. by Jim Laskey · 19 years ago
  77. 179ebd3 Try again. by Jim Laskey · 19 years ago
  78. 8f05a61 Not handling zero length strings. by Jim Laskey · 19 years ago
  79. cef515f SmallVector append not insert. by Jim Laskey · 19 years ago
  80. a9e9cae Grrr. by Jim Laskey · 19 years ago
  81. a88e609 Temp patch for missing functionality. by Jim Laskey · 19 years ago
  82. e0412f5 MathExtras isn't in the llvm/ADT directory but in the llvm/Support directory. by Bill Wendling · 19 years ago
  83. 6ca4a34 Apply editorials. by Jim Laskey · 19 years ago
  84. 43bc184 Breakout folding hash set from SelectionDAGCSEMap. by Jim Laskey · 19 years ago