[llvm] [ADT] Update hash function of uint64_t for DenseMap (PR #95734)
Ilya Biryukov via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 18 09:29:13 PDT 2024
================
@@ -151,7 +151,7 @@ template<> struct DenseMapInfo<unsigned long long> {
static inline unsigned long long getTombstoneKey() { return ~0ULL - 1ULL; }
static unsigned getHashValue(const unsigned long long& Val) {
- return (unsigned)(Val * 37ULL);
+ return DenseMapInfo<unsigned>(Val) ^ DenseMapInfo<unsigned>(Val >> 32);
----------------
ilya-biryukov wrote:
The current version should also relieve the immediate pain, but I wonder if other people also feel that using murmur-like hashing is a better long-term option anyway.
https://github.com/llvm/llvm-project/pull/95734
More information about the llvm-commits
mailing list