Age | Commit message (Expand) | Author |
2009-01-22 | Get rid of warning about implicit 64-to-32 bit conversions. | Bill Wendling |
2009-01-19 | improve compatibility with cygwin, patch by Jay Foad! | Chris Lattner |
2009-01-09 | Removed trailing whitespace. | Misha Brukman |
2008-12-02 | add densemap range insertion method. | Chris Lattner |
2008-11-30 | fix indentation. std::pair is "isPod" if the first/second are both isPod. | Chris Lattner |
2008-10-27 | Add STL-style typedefs and default constructors to make it possible to | David Greene |
2008-08-29 | Add DenseMap::lookup: | Daniel Dunbar |
2008-08-22 | consolidate DenseMapInfo implementations, and add one for std::pair. | Chris Lattner |
2008-07-07 | Make DenseMap's insert return a pair, to more closely resemble std::map. | Dan Gohman |
2008-07-03 | Use operator new instead of new char[]. | Dan Gohman |
2008-06-17 | Fix use of placement new to actually use an address. | Owen Anderson |
2008-02-20 | Unbreak build with gcc 4.3: provide missed includes and silence most annoying... | Anton Korobeynikov |
2007-12-29 | Don't attribute in file headers anymore. See llvmdev for the | Chris Lattner |
2007-11-01 | Added typedef "value_type" to DenseMap (similar typedef appears in std::map). | Ted Kremenek |
2007-10-09 | Fix problems where DenseMap used operator!= instead of correctly | Chris Lattner |
2007-10-07 | Finish off PR1723, by working around some strange compiler bug. | Chris Lattner |
2007-09-24 | Implement offline variable substitution in order to reduce memory | Daniel Berlin |
2007-09-21 | Fix CopyFrom for non-POD data types. | Owen Anderson |
2007-09-17 | Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfo | Chris Lattner |
2007-09-11 | Add a ValueInfoT template parameter to DenseMap so that it can properly make ... | Owen Anderson |
2007-09-11 | Don't bother to initialize values corresponding to empty or tombstone | Owen Anderson |
2007-09-11 | Fix non-deterministic behavior in the DenseMap copy constructor. | Owen Anderson |
2007-08-16 | Forgot a line. | Owen Anderson |
2007-08-16 | Add a copy constructor and an assignment operator to DenseMap. | Owen Anderson |
2007-08-12 | Change casts from old style to new style. This helps document the details | Reid Spencer |
2007-08-05 | Fix a bug in DenseMap::clear, where we never reset a tombstone | Chris Lattner |
2007-08-05 | When clearing a SmallPtrSet, if the set had a huge capacity, but the | Chris Lattner |
2007-07-20 | Make the heuristic for shrinking DenseMap smarter. | Owen Anderson |
2007-07-20 | Have DenseMap auto-shrink itself on clear(). This improves the time to optimize | Owen Anderson |
2007-02-10 | Make find return the appropriate iterator/const_iterator | Chris Lattner |
2007-02-10 | Allow DenseMAp to take an explicit DenseMapKeyInfo | Chris Lattner |
2007-02-07 | Fix a really subtle bug where the entire hash table could fill with | Chris Lattner |
2007-02-04 | add a version of insert that takes the key and value. | Chris Lattner |
2007-02-03 | 8 buckets is way too small to start out with. This was only for testing. | Chris Lattner |
2007-02-02 | silence annoying warning in release-asserts build | Chris Lattner |
2007-02-02 | add find/erase, add const iterators, fix bugs in iterators. | Chris Lattner |
2007-02-02 | add iterators | Chris Lattner |
2007-02-01 | Add a new dense hash table implementation | Chris Lattner |
2007-02-01 | rename DenseMap to IndexedMap. | Chris Lattner |
2004-09-30 | Remove whitespace from the end of the line. | Alkis Evlogimenos |
2004-09-09 | Add missing #include | Chris Lattner |
2004-09-02 | Pull in definition of std::unary_function. | Alkis Evlogimenos |
2004-09-01 | Changes For Bug 352 | Reid Spencer |
2004-08-27 | Add size member function. | Alkis Evlogimenos |
2004-08-26 | Add default index functor (an identity functor). You could use a | Alkis Evlogimenos |
2004-02-26 | Fix a bug in the densemap that was killing the local allocator, and probably | Chris Lattner |
2004-02-26 | Fix typeo. grow() cannot shrink storage. clear() should really nuke storage | Chris Lattner |
2004-02-25 | Add DenseMap template and actually use it for for mapping virtual regs | Alkis Evlogimenos |