index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
llvm
/
ADT
/
SmallBitVector.h
Age
Commit message (
Expand
)
Author
2013-03-15
Use NumBaseBits in a few more places in SmallBitVector instead of recalculati...
Craig Topper
2012-11-30
Switch LLVM_USE_RVALUE_REFERENCES to LLVM_HAS_RVALUE_REFERENCES.
Chandler Carruth
2012-10-16
Speculative fix the mask constants to be of type uintptr_t. I don't know of ...
Owen Anderson
2012-10-15
Add range-based set()/reset() to BitVector. These allow fast setting/resetti...
Owen Anderson
2012-06-16
Merge the SmallBitVector and BitVector unit tests with gtest's typed test mag...
Benjamin Kramer
2012-06-01
Provide move semantics for (Small)BitVector.
Benjamin Kramer
2012-02-05
Convert assert(0) to llvm_unreachable
Craig Topper
2010-09-27
Add an all() method to BitVector, for testing whether all bits are set.
Dan Gohman
2010-04-30
SmallBitVector: Rework find_first/find_next and tweak test to test them (at l...
Benjamin Kramer
2010-04-30
Implement a read/write operator[] for SmallBitVector with a proxy class.
Benjamin Kramer
2010-04-30
Make sure SmallBitVector actually uses the small case and fix latent bugs.
Benjamin Kramer
2010-02-10
Implement operators |=, &=, and ^= for SmallBitVector, and remove the
Dan Gohman
2010-01-05
Some versions of GCC don't like non-static data members in sizeof
Dan Gohman
2010-01-05
Add a SmallBitVector class, which mimics BitVector but uses only
Dan Gohman