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