Lift self-copy protection up to the header file and add self-move
[oota-llvm.git] / lib / Support / SmallPtrSet.cpp
2013-11-26 Chandler CarruthLift self-copy protection up to the header file and...
2013-11-26 Chandler CarruthFix a self-memcpy which only breaks under Valgrind...
2013-11-20 Chandler CarruthMake the moved-from SmallPtrSet be a valid, empty,...
2013-11-20 Chandler CarruthGive SmallPtrSet move semantics when we have R-value...
2013-11-18 Aaron BallmanFixing a possible memory leak from a failing realloc...
2013-03-29 Jean-Luc DupratSmallVector and SmallPtrSet allocations now power-of...
2013-03-29 Rafael EspindolaRevert "Fix allocations of SmallVector and SmallPtrSet...
2013-03-29 Jean-Luc DupratFix allocations of SmallVector and SmallPtrSet so they...
2012-04-18 Benjamin KramerSmallPtrSet: Reuse DenseMapInfo's pointer hash function...
2012-03-07 Benjamin KramerCopy the right amount of elements.
2012-03-07 Benjamin KramerSmallPtrSet: Copy all the elements when swapping, not...
2012-03-06 Benjamin KramerSmallPtrSet: Provide a more efficient implementation...
2011-03-30 Jakob Stoklund OlesenPrevent infinite growth of SmallPtrSet instances.
2010-06-30 Duncan SandsRather than giving SmallPtrSetImpl a member field Small...
2008-08-05 Dan GohmanFix several const-correctness issues, resolving some...
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-11-06 Chris Lattnermake smallptrset more const and type correct, which...
2007-08-15 Anton KorobeynikovProperly use const qualifiers
2007-08-05 Chris LattnerWhen clearing a SmallPtrSet, if the set had a huge...
2007-07-27 Owen AndersonAllow SmallPtrSet to hold pointers to const data.
2007-07-24 Owen AndersonMake the copy constructor of SmallPtrSet much faster.
2007-07-19 Owen AndersonRemember to free the heap allocated array if we're...
2007-07-18 Owen AndersonFix an issue where assignments that caused a SmallPtrSe...
2007-07-17 Reid SpencerUnbreak the build by putting calls to free into the...
2007-07-16 Owen AndersonUse realloc() to (potentially) resize the contents...
2007-07-09 Owen AndersonMake the assignment operator for SmallPtrSet much faste...
2007-07-09 Owen AndersonMake the assignment operator for SmallPtrSet return...
2007-07-09 Owen AndersonFix an error in the assignment operator that was causin...
2007-07-09 Chris Lattnerimplement operator= for smallptrset
2007-06-22 Owen AndersonFix a bug in SmallPtrSet that was causing GVNPRE to...
2007-06-21 Chris LattnerTwo changes:
2007-04-14 Jeff CohenFix PR1329.
2007-02-07 Chris Lattnerdo not let the table fill up with tombstones.
2007-02-05 Chris LattnerFix a bug in smallptrset::erase: in the small case...
2007-01-27 Chris Lattnerimplement SmallPtrSet::erase
2007-01-27 Chris Lattneradd a note
2007-01-27 Chris LattnerAdd a new SmallSet ADT specialized for pointers.