2015-06-23 |
Alexander Kornienko | Revert r240137 (Fixed/added namespace ending comments... |
blob | commitdiff | raw |
2015-06-19 |
Alexander Kornienko | Fixed/added namespace ending comments using clang-tidy... |
blob | commitdiff | raw | diff to current |
2015-03-03 |
David Blaikie | [Small]BitVector::reference: Explicitly default copy... |
blob | commitdiff | raw |
2015-02-12 |
Benjamin Kramer | MathExtras: Bring Count(Trailing|Leading)Ones and Count... |
blob | commitdiff | raw | diff to current |
2015-02-12 |
Benjamin Kramer | BitVector: Remove manual bit width dispatch, this is... |
blob | commitdiff | raw | diff to current |
2014-12-15 |
Michael Ilseman | Silence more static analyzer warnings. |
blob | commitdiff | raw | diff to current |
2014-12-12 |
Michael Ilseman | Clean up static analyzer warnings. |
blob | commitdiff | raw | diff to current |
2014-06-20 |
Yaron Keren | Attempting to fix the 64 bit bots. |
blob | commitdiff | raw | diff to current |
2014-06-20 |
Yaron Keren | The count() function for STL datatypes returns unsigned... |
blob | commitdiff | raw | diff to current |
2014-04-14 |
Craig Topper | [C++11] More 'nullptr' conversion. In some cases just... |
blob | commitdiff | raw | diff to current |
2014-03-31 |
Joerg Sonnenberger | Shifting into the sign bit is UB as discussed on IRC... |
blob | commitdiff | raw | diff to current |
2014-03-01 |
Chandler Carruth | [C++11] Remove the R-value reference #if usage from... |
blob | commitdiff | raw | diff to current |
2013-12-19 |
Anna Zaks | Fix a buffer overrun detected by AddressSanitizer. |
blob | commitdiff | raw | diff to current |
2013-06-07 |
Benjamin Kramer | BitVector: Do the right thing in all() when Size is... |
blob | commitdiff | raw | diff to current |
2013-06-07 |
Benjamin Kramer | Optimize BitVector::all(). |
blob | commitdiff | raw | diff to current |
2013-05-24 |
Michael J. Spencer | Replace Count{Leading,Trailing}Zeros_{32,64} with count... |
blob | commitdiff | raw | diff to current |
2012-11-30 |
Chandler Carruth | Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_RE... |
blob | commitdiff | raw | diff to current |
2012-10-16 |
Owen Anderson | Fix a bug in the set(I,E)/reset(I,E) methods that I... |
blob | commitdiff | raw | diff to current |
2012-10-15 |
Owen Anderson | Add range-based set()/reset() to BitVector. These... |
blob | commitdiff | raw | diff to current |
2012-09-06 |
Nadav Rotem | Add a new optimization pass: Stack Coloring, that merge... |
blob | commitdiff | raw | diff to current |
2012-08-24 |
Richard Smith | Fix integer undefined behavior due to signed left shift... |
blob | commitdiff | raw | diff to current |
2012-06-01 |
Benjamin Kramer | Provide move semantics for (Small)BitVector. |
blob | commitdiff | raw | diff to current |
2012-05-14 |
Jakob Stoklund Olesen | Remove the expensive BitVector::operator~(). |
blob | commitdiff | raw | diff to current |
2012-05-14 |
Jakob Stoklund Olesen | Remove BitVector binops. |
blob | commitdiff | raw | diff to current |
2012-05-14 |
Jakob Stoklund Olesen | Add BitVector::anyCommon(). |
blob | commitdiff | raw | diff to current |
2012-02-05 |
Craig Topper | Convert assert(0) to llvm_unreachable |
blob | commitdiff | raw | diff to current |
2012-01-29 |
Jakob Stoklund Olesen | Add a BitVector::reset(BitVector&) method. |
blob | commitdiff | raw | diff to current |
2012-01-17 |
Jakob Stoklund Olesen | Add portable bit mask operations to BitVector. |
blob | commitdiff | raw | diff to current |
2010-11-26 |
Benjamin Kramer | BitVector tweaks. |
blob | commitdiff | raw | diff to current |
2010-09-27 |
Dan Gohman | Add an all() method to BitVector, for testing whether... |
blob | commitdiff | raw | diff to current |
2010-04-30 |
Dan Gohman | Update BitVectorTest.cpp to stay in sync with SmallBitV... |
blob | commitdiff | raw | diff to current |
2010-03-16 |
Chris Lattner | work around an MSVC2010 bug, PR6504 |
blob | commitdiff | raw | diff to current |
2010-02-10 |
Dan Gohman | Implement operators |=, &=, and ^= for SmallBitVector... |
blob | commitdiff | raw | diff to current |
2010-01-05 |
Dan Gohman | Add a SmallBitVector class, which mimics BitVector... |
blob | commitdiff | raw | diff to current |
2009-04-01 |
Dan Gohman | Use CHAR_BIT instead of hard-coding 8 in several places... |
blob | commitdiff | raw | diff to current |
2009-01-26 |
Roman Levenstein | Fix a bug in BitVector.h. All assignment operations... |
blob | commitdiff | raw | diff to current |
2009-01-09 |
Misha Brukman | Removed trailing whitespace. |
blob | commitdiff | raw | diff to current |
2008-05-29 |
Dan Gohman | Prune and tidy #includes. |
blob | commitdiff | raw | diff to current |
2008-05-05 |
Evan Cheng | Fix more -Wshorten-64-to-32 warnings. |
blob | commitdiff | raw | diff to current |
2008-02-20 |
Anton Korobeynikov | Unbreak build with gcc 4.3: provide missed includes... |
blob | commitdiff | raw | diff to current |
2007-12-29 |
Chris Lattner | Don't attribute in file headers anymore. See llvmdev... |
blob | commitdiff | raw | diff to current |
2007-12-10 |
Ted Kremenek | Added two bounds checks to the BitVector class to detect |
blob | commitdiff | raw | diff to current |
2007-10-17 |
Hartmut Kaiser | Updated VC++ build system. |
blob | commitdiff | raw | diff to current |
2007-10-12 |
Chris Lattner | make operator== work with non-equal sized bitvectors... |
blob | commitdiff | raw | diff to current |
2007-10-11 |
Chris Lattner | make bitvector &= do the right thing if vectors have... |
blob | commitdiff | raw | diff to current |
2007-08-06 |
Chandler Carruth | This fixes resizing issues with BitVectors. It ensures... |
blob | commitdiff | raw | diff to current |
2007-07-10 |
Owen Anderson | Evidently my earlier fix did not go far enough. When... |
blob | commitdiff | raw | diff to current |
2007-07-09 |
Owen Anderson | When resizing a BitVector with size 0, be sure to clear... |
blob | commitdiff | raw | diff to current |
2007-04-26 |
Jeff Cohen | Rename identifier that GCC uses as a macro, breaking... |
blob | commitdiff | raw | diff to current |
2007-04-16 |
Anton Korobeynikov | Removed tabs everywhere except autogenerated & external... |
blob | commitdiff | raw | diff to current |
2007-04-04 |
Lauro Ramos Venancio | Fix release build. |
blob | commitdiff | raw | diff to current |
2007-04-04 |
Anton Korobeynikov | Properly emit range comparisons for switch cases, where... |
blob | commitdiff | raw | diff to current |
2007-03-20 |
Chris Lattner | Add a dtor to fix leaks from all clients of BitVector. |
blob | commitdiff | raw | diff to current |
2007-03-02 |
Evan Cheng | Make it 64-bit safe. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Proper fix for the off-by-one bug in clear_unused_bits(). |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Reid Spencer | Fix an off-by-one bug in computing the index of the... |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Reid Spencer | Make sure Capacity gets initialized too. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Missing a ; |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | BitVector::reference operator=(const reference& rhs... |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Remove unnecessary checks. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | operator== returns false when two bitvectors have diffe... |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Merges two resize() variants. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Clear no longer deleting the bits to avoid mallocs. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | BitVector::count() bugs. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Eliminate a redundent ctor; eliminate one more potentia... |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | 1 -> 1L since BitWord has type unsigned long. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Eliminate new[0], just set Bits to NULL. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Inverted the condition by accident. |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Bug fixes: assignment operator forgot to copy over... |
blob | commitdiff | raw | diff to current |
2007-02-15 |
Evan Cheng | Add a BitVector class. |
blob | commitdiff | raw | diff to current |
|