aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/SmallBitVector.h
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-0/+2
* Update aosp/master LLVM for rebase to r230699.Stephen Hines2015-03-231-17/+11
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-1/+1
* Update LLVM for rebase to r212749.Stephen Hines2014-07-211-1/+2
* Update to LLVM 3.5a.Stephen Hines2014-04-241-4/+0
* Sync SmallBitVector with BitVector. Add unit tests for the missing methods.Benjamin Kramer2013-07-111-0/+34
* Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.Michael J. Spencer2013-05-241-4/+4
* Use NumBaseBits in a few more places in SmallBitVector instead of recalculati...Craig Topper2013-03-151-6/+6
* Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.Chandler Carruth2012-11-301-2/+2
* Speculative fix the mask constants to be of type uintptr_t. I don't know of ...Owen Anderson2012-10-161-4/+4
* Add range-based set()/reset() to BitVector. These allow fast setting/resetti...Owen Anderson2012-10-151-0/+30
* Merge the SmallBitVector and BitVector unit tests with gtest's typed test mag...Benjamin Kramer2012-06-161-0/+66
* Provide move semantics for (Small)BitVector.Benjamin Kramer2012-06-011-0/+17
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-051-3/+3
* Add an all() method to BitVector, for testing whether all bits are set.Dan Gohman2010-09-271-0/+7
* SmallBitVector: Rework find_first/find_next and tweak test to test them (at l...Benjamin Kramer2010-04-301-14/+12
* Implement a read/write operator[] for SmallBitVector with a proxy class.Benjamin Kramer2010-04-301-3/+35
* Make sure SmallBitVector actually uses the small case and fix latent bugs.Benjamin Kramer2010-04-301-67/+82
* Implement operators |=, &=, and ^= for SmallBitVector, and remove theDan Gohman2010-02-101-3/+39
* Some versions of GCC don't like non-static data members in sizeofDan Gohman2010-01-051-1/+1
* Add a SmallBitVector class, which mimics BitVector but uses onlyDan Gohman2010-01-051-0/+373