Add a ValueInfoT template parameter to DenseMap so that it can properly make decisions
[oota-llvm.git] / include / llvm / ADT / DenseMap.h
2007-09-11 Owen AndersonAdd a ValueInfoT template parameter to DenseMap so...
2007-09-11 Owen AndersonDon't bother to initialize values corresponding to...
2007-09-11 Owen AndersonFix non-deterministic behavior in the DenseMap copy...
2007-08-16 Owen AndersonForgot a line.
2007-08-16 Owen AndersonAdd a copy constructor and an assignment operator to...
2007-08-12 Reid SpencerChange casts from old style to new style. This helps...
2007-08-05 Chris LattnerFix a bug in DenseMap::clear, where we never reset...
2007-08-05 Chris LattnerWhen clearing a SmallPtrSet, if the set had a huge...
2007-07-20 Owen AndersonMake the heuristic for shrinking DenseMap smarter.
2007-07-20 Owen AndersonHave DenseMap auto-shrink itself on clear(). This...
2007-02-10 Chris LattnerMake find return the appropriate iterator/const_iterator
2007-02-10 Chris LattnerAllow DenseMAp to take an explicit DenseMapKeyInfo
2007-02-07 Chris LattnerFix a really subtle bug where the entire hash table...
2007-02-04 Chris Lattneradd a version of insert that takes the key and value.
2007-02-03 Chris Lattner8 buckets is way too small to start out with. This...
2007-02-02 Chris Lattnersilence annoying warning in release-asserts build
2007-02-02 Chris Lattneradd find/erase, add const iterators, fix bugs in iterators.
2007-02-02 Chris Lattneradd iterators
2007-02-01 Chris LattnerAdd a new dense hash table implementation
2007-02-01 Chris Lattnerrename DenseMap to IndexedMap.
2004-09-30 Alkis EvlogimenosRemove whitespace from the end of the line.
2004-09-09 Chris LattnerAdd missing #include
2004-09-02 Alkis EvlogimenosPull in definition of std::unary_function.
2004-09-01 Reid SpencerChanges For Bug 352
2004-08-27 Alkis EvlogimenosAdd size member function.
2004-08-26 Alkis EvlogimenosAdd default index functor (an identity functor). You...
2004-02-26 Chris LattnerFix a bug in the densemap that was killing the local...
2004-02-26 Chris LattnerFix typeo. grow() cannot shrink storage. clear()...
2004-02-25 Alkis EvlogimenosAdd DenseMap template and actually use it for for mappi...