Improve documentation.
[oota-llvm.git] / include / llvm / ADT /
2007-02-24 Reid SpencerImprove documentation.
2007-02-21 Reid SpencerAdd a dump() method for debugging.
2007-02-20 Reid SpencerAdd an internal convenience method for division that...
2007-02-19 Reid SpencerAdd some new constants.
2007-02-18 Reid Spencer1. "unsigned" -> "uint32_t" to gaurantee its bit width...
2007-02-18 Reid SpencerImplement signed output for toString.
2007-02-17 Reid SpencerFix bugs introduced by constructor parameter order...
2007-02-16 Reid SpencerReview changes:
2007-02-15 Evan ChengProper fix for the off-by-one bug in clear_unused_bits().
2007-02-15 Reid SpencerFix an off-by-one bug in computing the index of the...
2007-02-15 Reid SpencerMake sure Capacity gets initialized too.
2007-02-15 Evan ChengMissing a ;
2007-02-15 Evan ChengBitVector::reference operator=(const reference& rhs...
2007-02-15 Evan ChengRemove unnecessary checks.
2007-02-15 Evan Chengoperator== returns false when two bitvectors have diffe...
2007-02-15 Evan ChengMerges two resize() variants.
2007-02-15 Evan ChengClear no longer deleting the bits to avoid mallocs.
2007-02-15 Evan ChengBitVector::count() bugs.
2007-02-15 Evan ChengEliminate a redundent ctor; eliminate one more potentia...
2007-02-15 Evan Cheng1 -> 1L since BitWord has type unsigned long.
2007-02-15 Evan ChengEliminate new[0], just set Bits to NULL.
2007-02-15 Evan ChengInverted the condition by accident.
2007-02-15 Evan ChengBug fixes: assignment operator forgot to copy over...
2007-02-15 Zhou ShengFix some buges:
2007-02-15 Evan ChengAdd a BitVector class.
2007-02-13 Reid SpencerMake some minor improvements to APInt:
2007-02-13 Chris Lattnerfix a critical bug in smallvector, where it would destr...
2007-02-12 Zhou Sheng1. Make APInt::shl work correctly and more efficiently.
2007-02-11 Chris Lattneradd new ShouldRehash method to factor out common code...
2007-02-11 Chris Lattnerdo not allow hash table to be filled with tombstones.
2007-02-11 Chris LattnerAdd support for removing elements out of StringMap.
2007-02-11 Chris LattnerReplace the ugly FindValue method with STL-like find...
2007-02-11 Chris Lattnerremove support for stringmap visitors now that iterator...
2007-02-11 Chris Lattneradd iterator support, plus support for size() and empty().
2007-02-11 Chris LattnerSplit StringMapEntry construction out of StringMap...
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-09 Zhou ShengEliminates friend function declaration inside APInt...
2007-02-08 Chris LattnerRename CStringMap -> StringMap, since it now supports...
2007-02-08 Chris LattnerAllow cstringmap to contain strings with nul characters...
2007-02-08 Zhou ShengAs Chris and Reid suggested, remove "isSigned" field...
2007-02-07 Lauro Ramos VenancioFix build error.
2007-02-07 Zhou ShengAs Chris suggested, fixed some problems. (This is the...
2007-02-07 Chris Lattnerdo not let the table fill up with tombstones.
2007-02-07 Chris LattnerFix a really subtle bug where the entire hash table...
2007-02-06 Lauro Ramos VenancioFix build error.
2007-02-06 Zhou ShengAs Reid suggested, fixed some problems.
2007-02-05 Chris LattnerSimplify this a bit, add an assertion
2007-02-05 Chris LattnerConst method must use const_iterator.
2007-02-05 Zhou ShengAdd a class APInt to represent arbitrary precision...
2007-02-04 Chris Lattneradd a version of insert that takes the key and value.
2007-02-04 Chris LattnerMake SmallSetVector useful
2007-02-04 Chris LattnerVarious bugfixes
2007-02-03 Chris LattnerConvert SetVector to be a true adapter class and add...
2007-02-03 Chris Lattner8 buckets is way too small to start out with. This...
2007-02-03 Chris Lattnerremove a dead header
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.
2007-02-01 Chris Lattnerrename DenseMap -> IndexedMap.
2007-01-31 Chris Lattneradd missing ctor
2007-01-27 Chris Lattnerprovide a definition for uintptr_t
2007-01-27 Chris LattnerMake SmallSet<whatever*, N> faster by transparently...
2007-01-27 Chris Lattneradd some missing API
2007-01-27 Chris LattnerGive SmallSet a reasonable fallback if it gets large...
2007-01-27 Chris Lattnerimplement SmallPtrSet::erase
2007-01-27 Chris LattnerFix a limitation of SmallPtrSet. Before it would asser...
2007-01-27 Chris Lattneradd some comments on the algorithm
2007-01-27 Chris LattnerAdd a new SmallSet ADT specialized for pointers.
2007-01-27 Chris Lattnersimplify insert interface
2007-01-27 Chris Lattnerclean up comment
2007-01-26 Chris Lattnerfit in 80 cols
2007-01-23 Chris Lattnerfix typo
2007-01-23 Chris Lattnermake the SmallSet interface more std::set-like
2007-01-23 Chris Lattneradd a trivial SmallSet class, which operates on a simil...
2007-01-17 Reid SpencerFor PR1094:
2006-12-19 Chris Lattnereliminate constructor from Statistic class. It is...
2006-12-19 John CriswellAdded operator methods to the Statistic class; some...
2006-12-19 Chris LattnerRefactor statistic a big and introduce a horrible-but...
2006-12-18 Bill WendlingRemoved llvm_ostream and used std::ostream instead.
2006-12-17 Bill WendlingAdded an automatic cast to "std::ostream*" etc. from...
2006-12-08 Chris LattnerChange the implementation of statistic to not need...
2006-12-07 Bill WendlingChanged llvm_ostream et all to OStream. llvm_cerr,...
2006-12-06 Chris Lattnermerge the Statistic and StatisticBase classes, eliminat...
2006-12-06 Chris LattnerDetemplatize the Statistic class. The only type it...
2006-11-28 Bill WendlingSupport for llvm_ostreams.
2006-11-28 Chris LattnerAdd a helper function
2006-11-28 Bill WendlingAdded a temporary hack to get the llvm-streams to work...
2006-11-05 Jeff CohenUnbreak VC++ build.
2006-11-02 Jim LaskeyAllow FoldingSet clients to pump up the initial hash...
2006-10-30 Chris Lattneradd a new form of insert.
2006-10-30 Chris LattnerAdd SmallString a (currently) minimal class that adapts...
2006-10-30 Chris Lattneradd a method
2006-10-29 Chris Lattneradd newline at end of file
2006-10-29 Chris Lattneradd a highly efficient hash table that is specialized...
2006-10-27 Jim LaskeyClean up
2006-10-27 Jim LaskeyApply editorials.
2006-10-27 Jim LaskeyBreakout folding hash set from SelectionDAGCSEMap.
next