Age | Commit message (Expand) | Author | Files | Lines |
2016-02-15 | SmallPtrSet: Avoid initializing Array in the small case. | Matthias Braun | 1 | -53/+50 |
2016-01-28 | SmallPtrSet: Make destructor available for inlining | Matthias Braun | 1 | -5/+0 |
2016-01-28 | SmallPtrSet: Share some code between copy/move constructor/assignment operator | Matthias Braun | 1 | -33/+13 |
2016-01-28 | SmallPtrSet: Remove trailing whitespace, fix indentation | Matthias Braun | 1 | -13/+13 |
2016-01-27 | SmallPtrSet: Inline the part of insert_imp in the small case | Matthias Braun | 1 | -16/+1 |
2015-02-23 | Sync the __builtin_expects for our 3 quadratically probed hash table implemen... | Benjamin Kramer | 1 | -9/+10 |
2014-11-19 | Update SetVector to rely on the underlying set's insert to return a pair<iter... | David Blaikie | 1 | -7/+9 |
2014-08-20 | Fix an off by 1 bug that prevented SmallPtrSet from using all of its 'small' ... | Craig Topper | 1 | -6/+5 |
2014-04-07 | [C++11] Make use of 'nullptr' in the Support library. | Craig Topper | 1 | -1/+1 |
2014-03-01 | [C++11] Remove the R-value reference #if usage from the ADT and Support | Chandler Carruth | 1 | -4/+0 |
2014-02-03 | Rename the non-templated base class of SmallPtrSet to | Chandler Carruth | 1 | -13/+15 |
2013-11-26 | Lift self-copy protection up to the header file and add self-move | Chandler Carruth | 1 | -2/+3 |
2013-11-26 | Fix a self-memcpy which only breaks under Valgrind's memcpy | Chandler Carruth | 1 | -0/+3 |
2013-11-20 | Make the moved-from SmallPtrSet be a valid, empty, small-state object. | Chandler Carruth | 1 | -1/+13 |
2013-11-20 | Give SmallPtrSet move semantics when we have R-value references. | Chandler Carruth | 1 | -0/+44 |
2013-11-18 | Fixing a possible memory leak from a failing realloc() call. | Aaron Ballman | 1 | -2/+7 |
2013-03-29 | SmallVector and SmallPtrSet allocations now power-of-two aligned. | Jean-Luc Duprat | 1 | -16/+8 |
2013-03-29 | Revert "Fix allocations of SmallVector and SmallPtrSet so they are more prone... | Rafael Espindola | 1 | -8/+16 |
2013-03-29 | Fix allocations of SmallVector and SmallPtrSet so they are more prone to | Jean-Luc Duprat | 1 | -16/+8 |
2012-04-18 | SmallPtrSet: Reuse DenseMapInfo's pointer hash function instead of inventing ... | Benjamin Kramer | 1 | -1/+2 |
2012-03-07 | Copy the right amount of elements. | Benjamin Kramer | 1 | -3/+5 |
2012-03-07 | SmallPtrSet: Copy all the elements when swapping, not just numelements. | Benjamin Kramer | 1 | -5/+4 |
2012-03-06 | SmallPtrSet: Provide a more efficient implementation of swap than the default... | Benjamin Kramer | 1 | -0/+50 |
2011-03-30 | Prevent infinite growth of SmallPtrSet instances. | Jakob Stoklund Olesen | 1 | -6/+9 |
2010-06-30 | Rather than giving SmallPtrSetImpl a member field SmallArray which is magically | Duncan Sands | 1 | -3/+6 |
2008-08-05 | Fix several const-correctness issues, resolving some -Wcast-qual warnings. | Dan Gohman | 1 | -2/+2 |
2007-12-29 | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 1 | -2/+2 |
2007-11-06 | make smallptrset more const and type correct, which caught a few | Chris Lattner | 1 | -2/+2 |
2007-08-15 | Properly use const qualifiers | Anton Korobeynikov | 1 | -1/+1 |
2007-08-05 | When clearing a SmallPtrSet, if the set had a huge capacity, but the | Chris Lattner | 1 | -0/+18 |
2007-07-27 | Allow SmallPtrSet to hold pointers to const data. | Owen Anderson | 1 | -20/+20 |
2007-07-24 | Make the copy constructor of SmallPtrSet much faster. | Owen Anderson | 1 | -22/+12 |
2007-07-19 | Remember to free the heap allocated array if we're not going to use it. | Owen Anderson | 1 | -2/+4 |
2007-07-18 | Fix an issue where assignments that caused a SmallPtrSet to become non-small | Owen Anderson | 1 | -4/+8 |
2007-07-17 | Unbreak the build by putting calls to free into the implementation file and | Reid Spencer | 1 | -0/+7 |
2007-07-16 | Use realloc() to (potentially) resize the contents of SmallPtrSet in place. | Owen Anderson | 1 | -10/+9 |
2007-07-09 | Make the assignment operator for SmallPtrSet much faster for normal cases. | Owen Anderson | 1 | -36/+21 |
2007-07-09 | Make the assignment operator for SmallPtrSet return a reference, and fix a lo... | Owen Anderson | 1 | -1/+1 |
2007-07-09 | Fix an error in the assignment operator that was causing an infinite loop in ... | Owen Anderson | 1 | -3/+11 |
2007-07-09 | implement operator= for smallptrset | Chris Lattner | 1 | -0/+36 |
2007-06-22 | Fix a bug in SmallPtrSet that was causing GVNPRE to enter an infinite loop. | Owen Anderson | 1 | -1/+1 |
2007-06-21 | Two changes: | Chris Lattner | 1 | -4/+5 |
2007-04-14 | Fix PR1329. | Jeff Cohen | 1 | -0/+28 |
2007-02-07 | do not let the table fill up with tombstones. | Chris Lattner | 1 | -1/+5 |
2007-02-05 | Fix a bug in smallptrset::erase: in the small case, return true if the | Chris Lattner | 1 | -1/+1 |
2007-01-27 | implement SmallPtrSet::erase | Chris Lattner | 1 | -0/+27 |
2007-01-27 | add a note | Chris Lattner | 1 | -1/+2 |
2007-01-27 | Add a new SmallSet ADT specialized for pointers. | Chris Lattner | 1 | -0/+113 |