1. be8a57f Adjust initial size in StringMap constructor to guarantee no grow() by Mehdi Amini · 10 years ago
  2. 654a85e Sync the __builtin_expects for our 3 quadratically probed hash table implementations. by Benjamin Kramer · 11 years ago
  3. 16a9eab Recommit 211309 (StringMap::insert), reverted in 211328 due to issues with private, but non-deleted, move members. by David Blaikie · 11 years ago
  4. 393b2b5 Revert "Add StringMap::insert(pair) consistent with the standard associative container concept." by Rafael Espindola · 11 years ago
  5. 37700dc Add StringMap::insert(pair) consistent with the standard associative container concept. by David Blaikie · 11 years ago
  6. 8d399f8 [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to reduce verbosity. by Craig Topper · 11 years ago
  7. c10719f [C++11] Make use of 'nullptr' in the Support library. by Craig Topper · 11 years ago
  8. ffa24e0 Add some __builtin_expect magic to StringMap. by Benjamin Kramer · 13 years ago
  9. 198422a Fix PR13148, an inf-loop in StringMap. by Chandler Carruth · 13 years ago
  10. 46236ee Switch StringMap from an array of structures to a structure of arrays. by Benjamin Kramer · 14 years ago
  11. 846f950 Reset StringMap's NumTombstones on clears and rehashes. by Jakob Stoklund Olesen · 15 years ago
  12. f587f44 Prevent infinite growth of SmallMap instances. by Jakob Stoklund Olesen · 15 years ago
  13. 9b43f33 Change all self assignments X=X to (void)X, so that we can turn on a by Jeffrey Yasskin · 15 years ago
  14. ad36e8a Pass StringRef by value. by Daniel Dunbar · 16 years ago
  15. 7766800 Move StringMap's string has function into StringExtras.h by Daniel Dunbar · 16 years ago
  16. 5bf72e2 Convert StringMap to using StringRef for its APIs. by Daniel Dunbar · 16 years ago
  17. f3ebc3f Remove attribution from file headers, per discussion on llvmdev. by Chris Lattner · 18 years ago
  18. c770a02 stringmap memory managed with malloc now by Chris Lattner · 18 years ago
  19. adf83a3 use calloc instead of new/memset, it is more efficient by Chris Lattner · 18 years ago
  20. 2376346 Extend StringMap to support being initialized as completely empty. When by Chris Lattner · 18 years ago
  21. 64df4ba greatly reduce hte default size of stringmap. by Chris Lattner · 18 years ago
  22. 77baa56 Add support for removing elements out of StringMap. by Chris Lattner · 19 years ago
  23. db08c1b Replace the ugly FindValue method with STL-like find methods. by Chris Lattner · 19 years ago
  24. 9521fec remove support for stringmap visitors now that iterators exist. by Chris Lattner · 19 years ago
  25. e15605c add support for iterators. by Chris Lattner · 19 years ago
  26. 751a420 Rename CStringMap -> StringMap, since it now supports nul characters in the by Chris Lattner · 19 years ago[Renamed (91%) from llvm/lib/Support/CStringMap.cpp]
  27. 259ba20b Allow cstringmap to contain strings with nul characters in them. by Chris Lattner · 19 years ago
  28. dff39e5 wow, the link was already broken :) by Chris Lattner · 19 years ago
  29. 8a7183b add a note by Chris Lattner · 19 years ago
  30. 149e666 add a highly efficient hash table that is specialized for mapping C strings by Chris Lattner · 19 years ago