summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/StringMap.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* Use uniform mechanism for OOM errors handlingSerge Pavlov2018-06-091-6/+2
* Revert commit 333506Serge Pavlov2018-05-301-2/+6
* Use uniform mechanism for OOM errors handlingSerge Pavlov2018-05-301-6/+2
* Reverted commits 333390, 333391 and 333394Serge Pavlov2018-05-291-2/+6
* Use uniform mechanism for OOM errors handlingSerge Pavlov2018-05-291-6/+2
* Re-land: "[Support] Replace HashString with djbHash."Jonas Devlieghere2018-02-261-19/+20
* Revert "[Support] Replace HashString with djbHash."Jonas Devlieghere2018-02-261-20/+19
* [Support] Replace HashString with djbHash.Jonas Devlieghere2018-02-261-19/+20
* Report fatal error in the case of out of memorySerge Pavlov2018-02-201-8/+5
* Revert r325224 "Report fatal error in the case of out of memory"Serge Pavlov2018-02-151-5/+8
* Report fatal error in the case of out of memorySerge Pavlov2018-02-151-8/+5
* Support, IR, ADT: Check nullptr after allocation with malloc/realloc or callocMatthias Braun2017-07-201-2/+13
* Fix some Clang-tidy modernize-use-using and Include What You Use warnings; ot...Eugene Zelenko2016-08-231-6/+4
* Adjust initial size in StringMap constructor to guarantee no grow()Mehdi Amini2016-03-251-1/+15
* Sync the __builtin_expects for our 3 quadratically probed hash table implemen...Benjamin Kramer2015-02-231-2/+3
* Recommit 211309 (StringMap::insert), reverted in 211328 due to issues with pr...David Blaikie2014-06-231-2/+8
* Revert "Add StringMap::insert(pair) consistent with the standard associative ...Rafael Espindola2014-06-201-8/+2
* Add StringMap::insert(pair) consistent with the standard associative containe...David Blaikie2014-06-191-2/+8
* [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to...Craig Topper2014-04-091-3/+3
* [C++11] Make use of 'nullptr' in the Support library.Craig Topper2014-04-071-5/+5
* Add some __builtin_expect magic to StringMap.Benjamin Kramer2012-08-291-4/+5
* Fix PR13148, an inf-loop in StringMap.Chandler Carruth2012-06-191-1/+1
* Switch StringMap from an array of structures to a structure of arrays.Benjamin Kramer2011-12-271-27/+34
* Reset StringMap's NumTombstones on clears and rehashes.Jakob Stoklund Olesen2011-03-301-0/+3
* Prevent infinite growth of SmallMap instances.Jakob Stoklund Olesen2011-03-301-1/+13
* Change all self assignments X=X to (void)X, so that we can turn on aJeffrey Yasskin2010-12-231-1/+1
* Pass StringRef by value.Daniel Dunbar2009-11-061-3/+3
* Move StringMap's string has function into StringExtras.hDaniel Dunbar2009-10-171-16/+3
* Convert StringMap to using StringRef for its APIs.Daniel Dunbar2009-07-231-16/+10
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* stringmap memory managed with malloc nowChris Lattner2007-04-041-1/+1
* use calloc instead of new/memset, it is more efficientChris Lattner2007-04-041-4/+2
* Extend StringMap to support being initialized as completely empty. WhenChris Lattner2007-04-041-2/+22
* greatly reduce hte default size of stringmap.Chris Lattner2007-04-031-1/+1
* Add support for removing elements out of StringMap.Chris Lattner2007-02-111-11/+52
* Replace the ugly FindValue method with STL-like find methods.Chris Lattner2007-02-111-0/+43
* remove support for stringmap visitors now that iterators exist.Chris Lattner2007-02-111-13/+0
* add support for iterators.Chris Lattner2007-02-111-2/+9
* Rename CStringMap -> StringMap, since it now supports nul characters in theChris Lattner2007-02-081-0/+138
OpenPOWER on IntegriCloud