summaryrefslogtreecommitdiff
path: root/lib/Support/StringMap.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-08-29Add some __builtin_expect magic to StringMap.Benjamin Kramer1-4/+5
2012-06-19Fix PR13148, an inf-loop in StringMap.Chandler Carruth1-1/+1
2011-12-27Switch StringMap from an array of structures to a structure of arrays.Benjamin Kramer1-27/+34
2011-03-30Reset StringMap's NumTombstones on clears and rehashes.Jakob Stoklund Olesen1-0/+3
2011-03-30Prevent infinite growth of SmallMap instances.Jakob Stoklund Olesen1-1/+13
2010-12-23Change all self assignments X=X to (void)X, so that we can turn on aJeffrey Yasskin1-1/+1
2009-11-06Pass StringRef by value.Daniel Dunbar1-3/+3
2009-10-17Move StringMap's string has function into StringExtras.hDaniel Dunbar1-16/+3
2009-07-23Convert StringMap to using StringRef for its APIs.Daniel Dunbar1-16/+10
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner1-2/+2
2007-04-04stringmap memory managed with malloc nowChris Lattner1-1/+1
2007-04-04use calloc instead of new/memset, it is more efficientChris Lattner1-4/+2
2007-04-04Extend StringMap to support being initialized as completely empty. WhenChris Lattner1-2/+22
2007-04-03greatly reduce hte default size of stringmap.Chris Lattner1-1/+1
2007-02-11Add support for removing elements out of StringMap.Chris Lattner1-11/+52
2007-02-11Replace the ugly FindValue method with STL-like find methods.Chris Lattner1-0/+43
2007-02-11remove support for stringmap visitors now that iterators exist.Chris Lattner1-13/+0
2007-02-11add support for iterators.Chris Lattner1-2/+9
2007-02-08Rename CStringMap -> StringMap, since it now supports nul characters in theChris Lattner1-8/+8
2007-02-08Allow cstringmap to contain strings with nul characters in them.Chris Lattner1-4/+5
2007-01-06wow, the link was already broken :)Chris Lattner1-1/+1
2007-01-06add a noteChris Lattner1-1/+4
2006-10-29add a highly efficient hash table that is specialized for mapping C stringsChris Lattner1-0/+134