aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/SmallPtrSet.h
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-4/+6
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-5/+10
* Update LLVM for rebase to r212749.Stephen Hines2014-07-211-2/+3
* Update to LLVM 3.5a.Stephen Hines2014-04-241-38/+70
* Add warn_unused_result to empty() on various containers.Benjamin Kramer2013-09-131-1/+1
* SmallVector and SmallPtrSet allocations now power-of-two aligned.Jean-Luc Duprat2013-03-291-16/+15
* Revert "Fix allocations of SmallVector and SmallPtrSet so they are more prone...Rafael Espindola2013-03-291-15/+16
* Fix allocations of SmallVector and SmallPtrSet so they are more prone toJean-Luc Duprat2013-03-291-16/+15
* Use LLVM_DELETED_FUNCTION for copy constructors and copy assignment operators...Craig Topper2012-09-161-3/+4
* SmallPtrSet: Reuse DenseMapInfo's pointer hash function instead of inventing ...Benjamin Kramer2012-04-181-3/+0
* SmallPtrSet: Provide a more efficient implementation of swap than the default...Benjamin Kramer2012-03-061-0/+16
* Prevent infinite growth of SmallPtrSet instances.Jakob Stoklund Olesen2011-03-301-1/+1
* Spelling fix: consequtive -> consecutive.Duncan Sands2011-02-151-1/+1
* Add missing standard headers. Patch by Joerg Sonnenberger!Nick Lewycky2010-12-191-0/+1
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* Rename NextPowerOfTwo to RoundUpToPowerOfTwo.Duncan Sands2010-06-301-10/+10
* Clarify that the NextPowerOfTwo template is idempotent.Duncan Sands2010-06-301-1/+1
* Rather than giving SmallPtrSetImpl a member field SmallArray which is magicallyDuncan Sands2010-06-301-12/+14
* Fix a buffer overflow noticed by gcc-4.6: zero is written intoDuncan Sands2010-06-291-1/+1
* NextPowerOfTwo was already used to ensure that SmallSizePowTwo is a powerDuncan Sands2010-06-291-3/+2
* Fix a comment typo.Bob Wilson2010-02-121-1/+1
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* Make SmallPtrSet iterators real iteratorsDouglas Gregor2009-07-081-0/+8
* rename PointerLikeTypeInto to PointerLikeTypeTraits, add trait for Chris Lattner2009-03-291-27/+3
* declare everything as class to avoid angering the VC++ gods.Chris Lattner2009-03-281-2/+4
* add a traits class for SmallPtrSet that allows us to stick things that areChris Lattner2009-03-281-5/+36
* Change several SmallPtrSetImpl members from public to protected,Dan Gohman2009-02-071-8/+11
* Removed trailing whitespace.Misha Brukman2009-01-091-24/+24
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-051-1/+1
* Add explicit keywords.Dan Gohman2008-03-251-3/+4
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* make smallptrset more const and type correct, which caught a fewChris Lattner2007-11-061-13/+28
* Properly use const qualifiersAnton Korobeynikov2007-08-151-2/+2
* When clearing a SmallPtrSet, if the set had a huge capacity, but theChris Lattner2007-08-051-2/+8
* Allow SmallPtrSet to hold pointers to const data.Owen Anderson2007-07-271-13/+13
* Unbreak the build by putting calls to free into the implementation file andReid Spencer2007-07-171-4/+1
* Use realloc() to (potentially) resize the contents of SmallPtrSet in place.Owen Anderson2007-07-161-1/+1
* Make the assignment operator for SmallPtrSet return a reference, and fix a lo...Owen Anderson2007-07-091-1/+1
* work around an aparent gcc name resolution bug by Chris Lattner2007-07-091-2/+1
* implement operator= for smallptrsetChris Lattner2007-07-091-0/+14
* Fix PR1329.Jeff Cohen2007-04-141-0/+4
* add range version of insert()Chris Lattner2007-04-021-2/+7
* add iterator range version of ctor.Chris Lattner2007-03-041-0/+7
* Fix PR1234 by working around a compiler bug.Chris Lattner2007-03-021-2/+1
* do not let the table fill up with tombstones.Chris Lattner2007-02-071-0/+2
* provide a definition for uintptr_tChris Lattner2007-01-271-0/+1
* add some missing APIChris Lattner2007-01-271-0/+3
* implement SmallPtrSet::eraseChris Lattner2007-01-271-3/+10
* Fix a limitation of SmallPtrSet. Before it would assert if the smallsizeChris Lattner2007-01-271-2/+30
* add some comments on the algorithmChris Lattner2007-01-271-1/+20