aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/BitVector.h
AgeCommit message (Expand)Author
2012-11-30Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.Chandler Carruth
2012-10-16Fix a bug in the set(I,E)/reset(I,E) methods that I recently added. The boun...Owen Anderson
2012-10-15Add range-based set()/reset() to BitVector. These allow fast setting/resetti...Owen Anderson
2012-09-06Add a new optimization pass: Stack Coloring, that merges disjoint static allo...Nadav Rotem
2012-08-24Fix integer undefined behavior due to signed left shift overflow in LLVM.Richard Smith
2012-06-01Provide move semantics for (Small)BitVector.Benjamin Kramer
2012-05-14Remove the expensive BitVector::operator~().Jakob Stoklund Olesen
2012-05-14Remove BitVector binops.Jakob Stoklund Olesen
2012-05-14Add BitVector::anyCommon().Jakob Stoklund Olesen
2012-02-05Convert assert(0) to llvm_unreachableCraig Topper
2012-01-29Add a BitVector::reset(BitVector&) method.Jakob Stoklund Olesen
2012-01-17Add portable bit mask operations to BitVector.Jakob Stoklund Olesen
2010-11-26BitVector tweaks.Benjamin Kramer
2010-09-27Add an all() method to BitVector, for testing whether all bits are set.Dan Gohman
2010-04-30Update BitVectorTest.cpp to stay in sync with SmallBitVectorTest.cpp,Dan Gohman
2010-03-16work around an MSVC2010 bug, PR6504Chris Lattner
2010-02-10Implement operators |=, &=, and ^= for SmallBitVector, and remove theDan Gohman
2010-01-05Add a SmallBitVector class, which mimics BitVector but uses onlyDan Gohman
2009-04-01Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman
2009-01-26Fix a bug in BitVector.h. All assignment operations (except the usual Roman Levenstein
2009-01-09Removed trailing whitespace.Misha Brukman
2008-05-29Prune and tidy #includes.Dan Gohman
2008-05-05Fix more -Wshorten-64-to-32 warnings.Evan Cheng
2008-02-20Unbreak build with gcc 4.3: provide missed includes and silence most annoying...Anton Korobeynikov
2007-12-29Don't attribute in file headers anymore. See llvmdev for theChris Lattner
2007-12-10Added two bounds checks to the BitVector class to detectTed Kremenek
2007-10-17Updated VC++ build system.Hartmut Kaiser
2007-10-12make operator== work with non-equal sized bitvectors, as long as Chris Lattner
2007-10-11make bitvector &= do the right thing if vectors have mismatched length.Chris Lattner
2007-08-06This fixes resizing issues with BitVectors. It ensures that the BitWord type ...Chandler Carruth
2007-07-10Evidently my earlier fix did not go far enough. When resizing a zero-sizedOwen Anderson
2007-07-09When resizing a BitVector with size 0, be sure to clear the low word before u...Owen Anderson
2007-04-26Rename identifier that GCC uses as a macro, breaking llvm-gcc build.Jeff Cohen
2007-04-16Removed tabs everywhere except autogenerated & external files. Add makeAnton Korobeynikov
2007-04-04Fix release build.Lauro Ramos Venancio
2007-04-04Properly emit range comparisons for switch cases, where neighbour casesAnton Korobeynikov
2007-03-20Add a dtor to fix leaks from all clients of BitVector.Chris Lattner
2007-03-02Make it 64-bit safe.Evan Cheng
2007-02-15Proper fix for the off-by-one bug in clear_unused_bits().Evan Cheng
2007-02-15Fix an off-by-one bug in computing the index of the word to clear.Reid Spencer
2007-02-15Make sure Capacity gets initialized too.Reid Spencer
2007-02-15Missing a ;Evan Cheng
2007-02-15BitVector::reference operator=(const reference& rhs) is unnecessary thanks to...Evan Cheng
2007-02-15Remove unnecessary checks.Evan Cheng
2007-02-15operator== returns false when two bitvectors have different sizes.Evan Cheng
2007-02-15Merges two resize() variants.Evan Cheng
2007-02-15Clear no longer deleting the bits to avoid mallocs.Evan Cheng
2007-02-15BitVector::count() bugs.Evan Cheng
2007-02-15Eliminate a redundent ctor; eliminate one more potential new [0].Evan Cheng
2007-02-151 -> 1L since BitWord has type unsigned long.Evan Cheng