aboutsummaryrefslogtreecommitdiff
path: root/lib/Support/StringMap.cpp
AgeCommit message (Expand)Author
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