Age | Commit message (Expand) | Author | Files | Lines |
2020-04-12 | Refactor StringMap.h, splitting StringMapEntry out to its own header. | Chris Lattner | 1 | -26/+26 |
2019-01-19 | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 1 | -4/+3 |
2018-06-09 | Use uniform mechanism for OOM errors handling | Serge Pavlov | 1 | -6/+2 |
2018-05-30 | Revert commit 333506 | Serge Pavlov | 1 | -2/+6 |
2018-05-30 | Use uniform mechanism for OOM errors handling | Serge Pavlov | 1 | -6/+2 |
2018-05-29 | Reverted commits 333390, 333391 and 333394 | Serge Pavlov | 1 | -2/+6 |
2018-05-29 | Use uniform mechanism for OOM errors handling | Serge Pavlov | 1 | -6/+2 |
2018-02-26 | Re-land: "[Support] Replace HashString with djbHash." | Jonas Devlieghere | 1 | -19/+20 |
2018-02-26 | Revert "[Support] Replace HashString with djbHash." | Jonas Devlieghere | 1 | -20/+19 |
2018-02-26 | [Support] Replace HashString with djbHash. | Jonas Devlieghere | 1 | -19/+20 |
2018-02-20 | Report fatal error in the case of out of memory | Serge Pavlov | 1 | -8/+5 |
2018-02-15 | Revert r325224 "Report fatal error in the case of out of memory" | Serge Pavlov | 1 | -5/+8 |
2018-02-15 | Report fatal error in the case of out of memory | Serge Pavlov | 1 | -8/+5 |
2017-07-20 | Support, IR, ADT: Check nullptr after allocation with malloc/realloc or calloc | Matthias Braun | 1 | -2/+13 |
2016-08-23 | Fix some Clang-tidy modernize-use-using and Include What You Use warnings; ot... | Eugene Zelenko | 1 | -6/+4 |
2016-03-25 | Adjust initial size in StringMap constructor to guarantee no grow() | Mehdi Amini | 1 | -1/+15 |
2015-02-23 | Sync the __builtin_expects for our 3 quadratically probed hash table implemen... | Benjamin Kramer | 1 | -2/+3 |
2014-06-23 | Recommit 211309 (StringMap::insert), reverted in 211328 due to issues with pr... | David Blaikie | 1 | -2/+8 |
2014-06-20 | Revert "Add StringMap::insert(pair) consistent with the standard associative ... | Rafael Espindola | 1 | -8/+2 |
2014-06-19 | Add StringMap::insert(pair) consistent with the standard associative containe... | David Blaikie | 1 | -2/+8 |
2014-04-09 | [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to... | Craig Topper | 1 | -3/+3 |
2014-04-07 | [C++11] Make use of 'nullptr' in the Support library. | Craig Topper | 1 | -5/+5 |
2012-08-29 | Add some __builtin_expect magic to StringMap. | Benjamin Kramer | 1 | -4/+5 |
2012-06-19 | Fix PR13148, an inf-loop in StringMap. | Chandler Carruth | 1 | -1/+1 |
2011-12-27 | Switch StringMap from an array of structures to a structure of arrays. | Benjamin Kramer | 1 | -27/+34 |
2011-03-30 | Reset StringMap's NumTombstones on clears and rehashes. | Jakob Stoklund Olesen | 1 | -0/+3 |
2011-03-30 | Prevent infinite growth of SmallMap instances. | Jakob Stoklund Olesen | 1 | -1/+13 |
2010-12-23 | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin | 1 | -1/+1 |
2009-11-06 | Pass StringRef by value. | Daniel Dunbar | 1 | -3/+3 |
2009-10-17 | Move StringMap's string has function into StringExtras.h | Daniel Dunbar | 1 | -16/+3 |
2009-07-23 | Convert StringMap to using StringRef for its APIs. | Daniel Dunbar | 1 | -16/+10 |
2007-12-29 | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 1 | -2/+2 |
2007-04-04 | stringmap memory managed with malloc now | Chris Lattner | 1 | -1/+1 |
2007-04-04 | use calloc instead of new/memset, it is more efficient | Chris Lattner | 1 | -4/+2 |
2007-04-04 | Extend StringMap to support being initialized as completely empty. When | Chris Lattner | 1 | -2/+22 |
2007-04-03 | greatly reduce hte default size of stringmap. | Chris Lattner | 1 | -1/+1 |
2007-02-11 | Add support for removing elements out of StringMap. | Chris Lattner | 1 | -11/+52 |
2007-02-11 | Replace the ugly FindValue method with STL-like find methods. | Chris Lattner | 1 | -0/+43 |
2007-02-11 | remove support for stringmap visitors now that iterators exist. | Chris Lattner | 1 | -13/+0 |
2007-02-11 | add support for iterators. | Chris Lattner | 1 | -2/+9 |
2007-02-08 | Rename CStringMap -> StringMap, since it now supports nul characters in the | Chris Lattner | 1 | -0/+138 |