[PATCH] D77038: Fix bug in BitVector and SmallBitVector DenseMap hashing
Michael Kruse via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 17 22:34:34 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfb42d3afad1d: [ADT] Fix bug in BitVector and SmallBitVector DenseMap hashing. (authored by bmoody, committed by Meinersbur).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77038/new/
https://reviews.llvm.org/D77038
Files:
llvm/include/llvm/ADT/BitVector.h
llvm/include/llvm/ADT/SmallBitVector.h
llvm/unittests/ADT/BitVectorTest.cpp
Index: llvm/unittests/ADT/BitVectorTest.cpp
===================================================================
--- llvm/unittests/ADT/BitVectorTest.cpp
+++ llvm/unittests/ADT/BitVectorTest.cpp
@@ -1204,4 +1204,34 @@
EXPECT_EQ(true, Set.erase(A));
EXPECT_EQ(0U, Set.size());
}
+
+/// Test that capacity doesn't affect hashing.
+TYPED_TEST(BitVectorTest, DenseMapHashing) {
+ using DMI = DenseMapInfo<TypeParam>;
+ {
+ TypeParam A;
+ A.resize(200);
+ A.set(100);
+
+ TypeParam B;
+ B.resize(200);
+ B.set(100);
+ B.reserve(1000);
+
+ EXPECT_EQ(DMI::getHashValue(A), DMI::getHashValue(B));
+ }
+ {
+ TypeParam A;
+ A.resize(20);
+ A.set(10);
+
+ TypeParam B;
+ B.resize(20);
+ B.set(10);
+ B.reserve(1000);
+
+ EXPECT_EQ(DMI::getHashValue(A), DMI::getHashValue(B));
+ }
+}
+
} // namespace
Index: llvm/include/llvm/ADT/SmallBitVector.h
===================================================================
--- llvm/include/llvm/ADT/SmallBitVector.h
+++ llvm/include/llvm/ADT/SmallBitVector.h
@@ -668,8 +668,11 @@
}
bool isInvalid() const { return X == (uintptr_t)-1; }
- ArrayRef<uintptr_t> getData() const {
- return isSmall() ? makeArrayRef(X) : getPointer()->getData();
+ ArrayRef<uintptr_t> getData(uintptr_t &Store) const {
+ if (!isSmall())
+ return getPointer()->getData();
+ Store = getSmallBits();
+ return makeArrayRef(Store);
}
private:
@@ -717,8 +720,9 @@
return V;
}
static unsigned getHashValue(const SmallBitVector &V) {
+ uintptr_t Store;
return DenseMapInfo<std::pair<unsigned, ArrayRef<uintptr_t>>>::getHashValue(
- std::make_pair(V.size(), V.getData()));
+ std::make_pair(V.size(), V.getData(Store)));
}
static bool isEqual(const SmallBitVector &LHS, const SmallBitVector &RHS) {
if (LHS.isInvalid() || RHS.isInvalid())
Index: llvm/include/llvm/ADT/BitVector.h
===================================================================
--- llvm/include/llvm/ADT/BitVector.h
+++ llvm/include/llvm/ADT/BitVector.h
@@ -759,7 +759,9 @@
}
bool isInvalid() const { return Size == (unsigned)-1; }
- ArrayRef<BitWord> getData() const { return Bits; }
+ ArrayRef<BitWord> getData() const {
+ return Bits.take_front(NumBitWords(size()));
+ }
//===--------------------------------------------------------------------===//
// Portable bit mask operations.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77038.258479.patch
Type: text/x-patch
Size: 2412 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200418/661ec251/attachment.bin>
More information about the llvm-commits
mailing list