summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/SmallPtrSet.h
Commit message (Expand)AuthorAge
* [C++11] Remove the R-value reference #if usage from the ADT and SupportChandler Carruth2014-03-01
* Introduce SmallPtrSetImpl<T *> which allows insert, erase, count, andChandler Carruth2014-02-03
* Rename the non-templated base class of SmallPtrSet toChandler Carruth2014-02-03
* The count() function for STL datatypes returns unsigned, evenYaron Keren2013-12-22
* Lift self-copy protection up to the header file and add self-moveChandler Carruth2013-11-26
* Make the moved-from SmallPtrSet be a valid, empty, small-state object.Chandler Carruth2013-11-20
* Give SmallPtrSet move semantics when we have R-value references.Chandler Carruth2013-11-20
* Add warn_unused_result to empty() on various containers.Benjamin Kramer2013-09-13
* SmallVector and SmallPtrSet allocations now power-of-two aligned.Jean-Luc Duprat2013-03-29
* Revert "Fix allocations of SmallVector and SmallPtrSet so they are more prone...Rafael Espindola2013-03-29
* Fix allocations of SmallVector and SmallPtrSet so they are more prone toJean-Luc Duprat2013-03-29
* Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment operators...Craig Topper2012-09-16
* SmallPtrSet: Reuse DenseMapInfo's pointer hash function instead of inventing ...Benjamin Kramer2012-04-18
* SmallPtrSet: Provide a more efficient implementation of swap than the default...Benjamin Kramer2012-03-06
* Prevent infinite growth of SmallPtrSet instances.Jakob Stoklund Olesen2011-03-30
* Spelling fix: consequtive -> consecutive.Duncan Sands2011-02-15
* Add missing standard headers. Patch by Joerg Sonnenberger!Nick Lewycky2010-12-19
* Merge System into Support.Michael J. Spencer2010-11-29
* Rename NextPowerOfTwo to RoundUpToPowerOfTwo.Duncan Sands2010-06-30
* Clarify that the NextPowerOfTwo template is idempotent.Duncan Sands2010-06-30
* Rather than giving SmallPtrSetImpl a member field SmallArray which is magicallyDuncan Sands2010-06-30
* Fix a buffer overflow noticed by gcc-4.6: zero is written intoDuncan Sands2010-06-29
* NextPowerOfTwo was already used to ensure that SmallSizePowTwo is a powerDuncan Sands2010-06-29
* Fix a comment typo.Bob Wilson2010-02-12
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-26
* Make SmallPtrSet iterators real iteratorsDouglas Gregor2009-07-08
* rename PointerLikeTypeInto to PointerLikeTypeTraits, add trait for Chris Lattner2009-03-29
* declare everything as class to avoid angering the VC++ gods.Chris Lattner2009-03-28
* add a traits class for SmallPtrSet that allows us to stick things that areChris Lattner2009-03-28
* Change several SmallPtrSetImpl members from public to protected,Dan Gohman2009-02-07
* Removed trailing whitespace.Misha Brukman2009-01-09
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-05
* Add explicit keywords.Dan Gohman2008-03-25
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-29
* make smallptrset more const and type correct, which caught a fewChris Lattner2007-11-06
* Properly use const qualifiersAnton Korobeynikov2007-08-15
* When clearing a SmallPtrSet, if the set had a huge capacity, but theChris Lattner2007-08-05
* Allow SmallPtrSet to hold pointers to const data.Owen Anderson2007-07-27
* Unbreak the build by putting calls to free into the implementation file andReid Spencer2007-07-17
* Use realloc() to (potentially) resize the contents of SmallPtrSet in place.Owen Anderson2007-07-16
* Make the assignment operator for SmallPtrSet return a reference, and fix a lo...Owen Anderson2007-07-09
* work around an aparent gcc name resolution bug by Chris Lattner2007-07-09
* implement operator= for smallptrsetChris Lattner2007-07-09
* Fix PR1329.Jeff Cohen2007-04-14
* add range version of insert()Chris Lattner2007-04-02
* add iterator range version of ctor.Chris Lattner2007-03-04
* Fix PR1234 by working around a compiler bug.Chris Lattner2007-03-02
* do not let the table fill up with tombstones.Chris Lattner2007-02-07
* provide a definition for uintptr_tChris Lattner2007-01-27
* add some missing APIChris Lattner2007-01-27