aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/BitVector.h
Commit message (Expand)AuthorAgeFilesLines
* BitVector: Do the right thing in all() when Size is a multiple of BITWORD_SIZE.Benjamin Kramer2013-06-071-7/+6
* Optimize BitVector::all().Benjamin Kramer2013-06-071-2/+10
* Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.Michael J. Spencer2013-05-241-6/+6
* Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.Chandler Carruth2012-11-301-2/+2
* Fix a bug in the set(I,E)/reset(I,E) methods that I recently added. The boun...Owen Anderson2012-10-161-6/+6
* Add range-based set()/reset() to BitVector. These allow fast setting/resetti...Owen Anderson2012-10-151-0/+56
* Add a new optimization pass: Stack Coloring, that merges disjoint static allo...Nadav Rotem2012-09-061-2/+19
* Fix integer undefined behavior due to signed left shift overflow in LLVM.Richard Smith2012-08-241-3/+6
* Provide move semantics for (Small)BitVector.Benjamin Kramer2012-06-011-0/+23
* Remove the expensive BitVector::operator~().Jakob Stoklund Olesen2012-05-141-5/+0
* Remove BitVector binops.Jakob Stoklund Olesen2012-05-141-18/+0
* Add BitVector::anyCommon().Jakob Stoklund Olesen2012-05-141-0/+10
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-051-11/+8
* Add a BitVector::reset(BitVector&) method.Jakob Stoklund Olesen2012-01-291-0/+10
* Add portable bit mask operations to BitVector.Jakob Stoklund Olesen2012-01-171-0/+63
* BitVector tweaks.Benjamin Kramer2010-11-261-19/+11
* Add an all() method to BitVector, for testing whether all bits are set.Dan Gohman2010-09-271-0/+6
* Update BitVectorTest.cpp to stay in sync with SmallBitVectorTest.cpp,Dan Gohman2010-04-301-0/+5
* work around an MSVC2010 bug, PR6504Chris Lattner2010-03-161-1/+2
* Implement operators |=, &=, and ^= for SmallBitVector, and remove theDan Gohman2010-02-101-4/+6
* Add a SmallBitVector class, which mimics BitVector but uses onlyDan Gohman2010-01-051-0/+18
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-011-1/+2
* Fix a bug in BitVector.h. All assignment operations (except the usual Roman Levenstein2009-01-261-3/+3
* Removed trailing whitespace.Misha Brukman2009-01-091-17/+17
* Prune and tidy #includes.Dan Gohman2008-05-291-3/+2
* Fix more -Wshorten-64-to-32 warnings.Evan Cheng2008-05-051-5/+5
* Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov2008-02-201-1/+2
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Added two bounds checks to the BitVector class to detectTed Kremenek2007-12-101-0/+4
* Updated VC++ build system.Hartmut Kaiser2007-10-171-1/+1
* make operator== work with non-equal sized bitvectors, as long as Chris Lattner2007-10-121-4/+15
* make bitvector &= do the right thing if vectors have mismatched length.Chris Lattner2007-10-111-2/+11
* This fixes resizing issues with BitVectors. It ensures that the BitWord type ...Chandler Carruth2007-08-061-11/+26
* Evidently my earlier fix did not go far enough. When resizing a zero-sizedOwen Anderson2007-07-101-1/+2
* When resizing a BitVector with size 0, be sure to clear the low word before u...Owen Anderson2007-07-091-0/+5
* Rename identifier that GCC uses as a macro, breaking llvm-gcc build.Jeff Cohen2007-04-261-22/+22
* Removed tabs everywhere except autogenerated & external files. Add makeAnton Korobeynikov2007-04-161-15/+15
* Fix release build.Lauro Ramos Venancio2007-04-041-0/+1
* Properly emit range comparisons for switch cases, where neighbour casesAnton Korobeynikov2007-04-041-0/+2
* Add a dtor to fix leaks from all clients of BitVector.Chris Lattner2007-03-201-0/+4
* Make it 64-bit safe.Evan Cheng2007-03-021-7/+25
* Proper fix for the off-by-one bug in clear_unused_bits().Evan Cheng2007-02-151-5/+3
* Fix an off-by-one bug in computing the index of the word to clear.Reid Spencer2007-02-151-1/+4
* Make sure Capacity gets initialized too.Reid Spencer2007-02-151-0/+1
* Missing a ;Evan Cheng2007-02-151-3/+2
* BitVector::reference operator=(const reference& rhs) is unnecessary thanks to...Evan Cheng2007-02-151-8/+0
* Remove unnecessary checks.Evan Cheng2007-02-151-10/+5
* operator== returns false when two bitvectors have different sizes.Evan Cheng2007-02-151-1/+3
* Merges two resize() variants.Evan Cheng2007-02-151-11/+3
* Clear no longer deleting the bits to avoid mallocs.Evan Cheng2007-02-151-5/+1