aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/SmallPtrSet.h
AgeCommit message (Expand)Author
2013-03-29SmallVector and SmallPtrSet allocations now power-of-two aligned.Jean-Luc Duprat
2013-03-29Revert "Fix allocations of SmallVector and SmallPtrSet so they are more prone...Rafael Espindola
2013-03-29Fix allocations of SmallVector and SmallPtrSet so they are more prone toJean-Luc Duprat
2012-09-16Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment operators...Craig Topper
2012-04-18SmallPtrSet: Reuse DenseMapInfo's pointer hash function instead of inventing ...Benjamin Kramer
2012-03-06SmallPtrSet: Provide a more efficient implementation of swap than the default...Benjamin Kramer
2011-03-30Prevent infinite growth of SmallPtrSet instances.Jakob Stoklund Olesen
2011-02-15Spelling fix: consequtive -> consecutive.Duncan Sands
2010-12-19Add missing standard headers. Patch by Joerg Sonnenberger!Nick Lewycky
2010-11-29Merge System into Support.Michael J. Spencer
2010-06-30Rename NextPowerOfTwo to RoundUpToPowerOfTwo.Duncan Sands
2010-06-30Clarify that the NextPowerOfTwo template is idempotent.Duncan Sands
2010-06-30Rather than giving SmallPtrSetImpl a member field SmallArray which is magicallyDuncan Sands
2010-06-29Fix a buffer overflow noticed by gcc-4.6: zero is written intoDuncan Sands
2010-06-29NextPowerOfTwo was already used to ensure that SmallSizePowTwo is a powerDuncan Sands
2010-02-12Fix a comment typo.Bob Wilson
2009-10-26Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth
2009-07-08Make SmallPtrSet iterators real iteratorsDouglas Gregor
2009-03-29rename PointerLikeTypeInto to PointerLikeTypeTraits, add trait for Chris Lattner
2009-03-28declare everything as class to avoid angering the VC++ gods.Chris Lattner
2009-03-28add a traits class for SmallPtrSet that allows us to stick things that areChris Lattner
2009-02-07Change several SmallPtrSetImpl members from public to protected,Dan Gohman
2009-01-09Removed trailing whitespace.Misha Brukman
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng
2008-03-25Add explicit keywords.Dan Gohman
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-11-06make smallptrset more const and type correct, which caught a fewChris Lattner
2007-08-15Properly use const qualifiersAnton Korobeynikov
2007-08-05When clearing a SmallPtrSet, if the set had a huge capacity, but theChris Lattner
2007-07-27Allow SmallPtrSet to hold pointers to const data.Owen Anderson
2007-07-17Unbreak the build by putting calls to free into the implementation file andReid Spencer
2007-07-16Use realloc() to (potentially) resize the contents of SmallPtrSet in place.Owen Anderson
2007-07-09Make the assignment operator for SmallPtrSet return a reference, and fix a lo...Owen Anderson
2007-07-09work around an aparent gcc name resolution bug by Chris Lattner
2007-07-09implement operator= for smallptrsetChris Lattner
2007-04-14Fix PR1329.Jeff Cohen
2007-04-02add range version of insert()Chris Lattner
2007-03-04add iterator range version of ctor.Chris Lattner
2007-03-02Fix PR1234 by working around a compiler bug.Chris Lattner
2007-02-07do not let the table fill up with tombstones.Chris Lattner
2007-01-27provide a definition for uintptr_tChris Lattner
2007-01-27add some missing APIChris Lattner
2007-01-27implement SmallPtrSet::eraseChris Lattner
2007-01-27Fix a limitation of SmallPtrSet. Before it would assert if the smallsizeChris Lattner
2007-01-27add some comments on the algorithmChris Lattner
2007-01-27Add a new SmallSet ADT specialized for pointers.Chris Lattner