summaryrefslogtreecommitdiff
path: root/lib/Support/StringMap.cpp
AgeCommit message (Expand)Author
2017-07-20Support, IR, ADT: Check nullptr after allocation with malloc/realloc or callocMatthias Braun
2016-08-23Fix some Clang-tidy modernize-use-using and Include What You Use warnings; ot...Eugene Zelenko
2016-03-25Adjust initial size in StringMap constructor to guarantee no grow()Mehdi Amini
2015-02-23Sync the __builtin_expects for our 3 quadratically probed hash table implemen...Benjamin Kramer
2014-06-23Recommit 211309 (StringMap::insert), reverted in 211328 due to issues with pr...David Blaikie
2014-06-20Revert "Add StringMap::insert(pair) consistent with the standard associative ...Rafael Espindola
2014-06-19Add StringMap::insert(pair) consistent with the standard associative containe...David Blaikie
2014-04-09[C++11] Replace some comparisons with 'nullptr' with simple boolean checks to...Craig Topper
2014-04-07[C++11] Make use of 'nullptr' in the Support library.Craig Topper
2012-08-29Add some __builtin_expect magic to StringMap.Benjamin Kramer
2012-06-19Fix PR13148, an inf-loop in StringMap.Chandler Carruth
2011-12-27Switch StringMap from an array of structures to a structure of arrays.Benjamin Kramer
2011-03-30Reset StringMap's NumTombstones on clears and rehashes.Jakob Stoklund Olesen
2011-03-30Prevent infinite growth of SmallMap instances.Jakob Stoklund Olesen
2010-12-23Change all self assignments X=X to (void)X, so that we can turn on aJeffrey Yasskin
2009-11-06Pass StringRef by value.Daniel Dunbar
2009-10-17Move StringMap's string has function into StringExtras.hDaniel Dunbar
2009-07-23Convert StringMap to using StringRef for its APIs.Daniel Dunbar
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-04-04stringmap memory managed with malloc nowChris Lattner
2007-04-04use calloc instead of new/memset, it is more efficientChris Lattner
2007-04-04Extend StringMap to support being initialized as completely empty. WhenChris Lattner
2007-04-03greatly reduce hte default size of stringmap.Chris Lattner
2007-02-11Add support for removing elements out of StringMap.Chris Lattner
2007-02-11Replace the ugly FindValue method with STL-like find methods.Chris Lattner
2007-02-11remove support for stringmap visitors now that iterators exist.Chris Lattner
2007-02-11add support for iterators.Chris Lattner
2007-02-08Rename CStringMap -> StringMap, since it now supports nul characters in theChris Lattner
2007-02-08Allow cstringmap to contain strings with nul characters in them.Chris Lattner
2007-01-06wow, the link was already broken :)Chris Lattner
2007-01-06add a noteChris Lattner
2006-10-29add a highly efficient hash table that is specialized for mapping C stringsChris Lattner