aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/DenseMap.h
Commit message (Expand)AuthorAgeFilesLines
* add densemap range insertion method.Chris Lattner2008-12-021-0/+8
* fix indentation. std::pair is "isPod" if the first/second are both isPod.Chris Lattner2008-11-301-16/+17
* Add STL-style typedefs and default constructors to make it possible toDavid Greene2008-10-271-0/+5
* Add DenseMap::lookup:Daniel Dunbar2008-08-291-0/+9
* consolidate DenseMapInfo implementations, and add one for std::pair.Chris Lattner2008-08-221-0/+42
* Make DenseMap's insert return a pair, to more closely resemble std::map.Dan Gohman2008-07-071-4/+6
* Use operator new instead of new char[].Dan Gohman2008-07-031-9/+9
* Fix use of placement new to actually use an address. Owen Anderson2008-06-171-1/+1
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-201-1/+1
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Added typedef "value_type" to DenseMap (similar typedef appears in std::map).Ted Kremenek2007-11-011-5/+11
* Fix problems where DenseMap used operator!= instead of correctly Chris Lattner2007-10-091-10/+15
* Finish off PR1723, by working around some strange compiler bug.Chris Lattner2007-10-071-2/+2
* Implement offline variable substitution in order to reduce memoryDaniel Berlin2007-09-241-3/+7
* Fix CopyFrom for non-POD data types.Owen Anderson2007-09-211-1/+1
* Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfoChris Lattner2007-09-171-24/+17
* Add a ValueInfoT template parameter to DenseMap so that it can properly make ...Owen Anderson2007-09-111-8/+22
* Don't bother to initialize values corresponding to empty or tombstone Owen Anderson2007-09-111-1/+3
* Fix non-deterministic behavior in the DenseMap copy constructor.Owen Anderson2007-09-111-2/+8
* Forgot a line.Owen Anderson2007-08-161-0/+1
* Add a copy constructor and an assignment operator to DenseMap.Owen Anderson2007-08-161-1/+32
* Change casts from old style to new style. This helps document the detailsReid Spencer2007-08-121-10/+10
* Fix a bug in DenseMap::clear, where we never reset a tombstoneChris Lattner2007-08-051-3/+5
* When clearing a SmallPtrSet, if the set had a huge capacity, but theChris Lattner2007-08-051-0/+2
* Make the heuristic for shrinking DenseMap smarter.Owen Anderson2007-07-201-2/+4
* Have DenseMap auto-shrink itself on clear(). This improves the time to optimizeOwen Anderson2007-07-201-1/+36
* Make find return the appropriate iterator/const_iteratorChris Lattner2007-02-101-2/+8
* Allow DenseMAp to take an explicit DenseMapKeyInfoChris Lattner2007-02-101-19/+20
* Fix a really subtle bug where the entire hash table could fill withChris Lattner2007-02-071-2/+23
* add a version of insert that takes the key and value.Chris Lattner2007-02-041-8/+23
* 8 buckets is way too small to start out with. This was only for testing.Chris Lattner2007-02-031-1/+1
* silence annoying warning in release-asserts buildChris Lattner2007-02-021-0/+1
* add find/erase, add const iterators, fix bugs in iterators.Chris Lattner2007-02-021-19/+67
* add iteratorsChris Lattner2007-02-021-22/+82
* Add a new dense hash table implementationChris Lattner2007-02-011-0/+203
* rename DenseMap to IndexedMap.Chris Lattner2007-02-011-75/+0
* Remove whitespace from the end of the line.Alkis Evlogimenos2004-09-301-2/+2
* Add missing #includeChris Lattner2004-09-091-0/+1
* Pull in definition of std::unary_function.Alkis Evlogimenos2004-09-021-0/+1
* Changes For Bug 352Reid Spencer2004-09-011-3/+3
* Add size member function.Alkis Evlogimenos2004-08-271-0/+4
* Add default index functor (an identity functor). You could use aAlkis Evlogimenos2004-08-261-12/+18
* Fix a bug in the densemap that was killing the local allocator, and probablyChris Lattner2004-02-261-1/+1
* Fix typeo. grow() cannot shrink storage. clear() should really nuke storageChris Lattner2004-02-261-3/+5
* Add DenseMap template and actually use it for for mapping virtual regsAlkis Evlogimenos2004-02-251-0/+61