blob: 2d0decb0d37e49da29fe6f41095cbc4281b057d6 [file] [log] [blame]
/*
* Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef WTF_HashFunctions_h
#define WTF_HashFunctions_h
#include "platform/wtf/RefPtr.h"
#include "platform/wtf/StdLibExtras.h"
#include <memory>
#include <stdint.h>
#include <type_traits>
namespace WTF {
template <size_t size>
struct IntTypes;
template <>
struct IntTypes<1> {
typedef int8_t SignedType;
typedef uint8_t UnsignedType;
};
template <>
struct IntTypes<2> {
typedef int16_t SignedType;
typedef uint16_t UnsignedType;
};
template <>
struct IntTypes<4> {
typedef int32_t SignedType;
typedef uint32_t UnsignedType;
};
template <>
struct IntTypes<8> {
typedef int64_t SignedType;
typedef uint64_t UnsignedType;
};
// integer hash function
// Thomas Wang's 32 Bit Mix Function:
// http://www.cris.com/~Ttwang/tech/inthash.htm
inline unsigned HashInt(uint8_t key8) {
unsigned key = key8;
key += ~(key << 15);
key ^= (key >> 10);
key += (key << 3);
key ^= (key >> 6);
key += ~(key << 11);
key ^= (key >> 16);
return key;
}
// Thomas Wang's 32 Bit Mix Function:
// http://www.cris.com/~Ttwang/tech/inthash.htm
inline unsigned HashInt(uint16_t key16) {
unsigned key = key16;
key += ~(key << 15);
key ^= (key >> 10);
key += (key << 3);
key ^= (key >> 6);
key += ~(key << 11);
key ^= (key >> 16);
return key;
}
// Thomas Wang's 32 Bit Mix Function:
// http://www.cris.com/~Ttwang/tech/inthash.htm
inline unsigned HashInt(uint32_t key) {
key += ~(key << 15);
key ^= (key >> 10);
key += (key << 3);
key ^= (key >> 6);
key += ~(key << 11);
key ^= (key >> 16);
return key;
}
// Thomas Wang's 64 bit Mix Function:
// http://www.cris.com/~Ttwang/tech/inthash.htm
inline unsigned HashInt(uint64_t key) {
key += ~(key << 32);
key ^= (key >> 22);
key += ~(key << 13);
key ^= (key >> 8);
key += (key << 3);
key ^= (key >> 15);
key += ~(key << 27);
key ^= (key >> 31);
return static_cast<unsigned>(key);
}
// Compound integer hash method:
// http://opendatastructures.org/versions/edition-0.1d/ods-java/node33.html#SECTION00832000000000000000
inline unsigned HashInts(unsigned key1, unsigned key2) {
unsigned short_random1 = 277951225; // A random 32-bit value.
unsigned short_random2 = 95187966; // A random 32-bit value.
uint64_t long_random = 19248658165952623LL; // A random, odd 64-bit value.
uint64_t product =
long_random * short_random1 * key1 + long_random * short_random2 * key2;
unsigned high_bits = static_cast<unsigned>(
product >> (8 * (sizeof(uint64_t) - sizeof(unsigned))));
return high_bits;
}
template <typename T>
struct IntHash {
static unsigned GetHash(T key) {
return HashInt(
static_cast<typename IntTypes<sizeof(T)>::UnsignedType>(key));
}
static bool Equal(T a, T b) { return a == b; }
static const bool safe_to_compare_to_empty_or_deleted = true;
};
template <typename T>
struct FloatHash {
typedef typename IntTypes<sizeof(T)>::UnsignedType Bits;
static unsigned GetHash(T key) { return HashInt(BitwiseCast<Bits>(key)); }
static bool Equal(T a, T b) {
return BitwiseCast<Bits>(a) == BitwiseCast<Bits>(b);
}
static const bool safe_to_compare_to_empty_or_deleted = true;
};
// pointer identity hash function
template <typename T>
struct PtrHash {
static unsigned GetHash(T* key) {
#if COMPILER(MSVC)
#pragma warning(push)
// work around what seems to be a bug in MSVC's conversion warnings
#pragma warning(disable : 4244)
#endif
return IntHash<uintptr_t>::GetHash(reinterpret_cast<uintptr_t>(key));
#if COMPILER(MSVC)
#pragma warning(pop)
#endif
}
static bool Equal(T* a, T* b) { return a == b; }
static bool Equal(std::nullptr_t, T* b) { return !b; }
static bool Equal(T* a, std::nullptr_t) { return !a; }
static const bool safe_to_compare_to_empty_or_deleted = true;
};
template <typename T>
struct RefPtrHash : PtrHash<T> {
using PtrHash<T>::GetHash;
static unsigned GetHash(const RefPtr<T>& key) { return GetHash(key.Get()); }
static unsigned GetHash(const PassRefPtr<T>& key) {
return GetHash(key.Get());
}
using PtrHash<T>::Equal;
static bool Equal(const RefPtr<T>& a, const RefPtr<T>& b) { return a == b; }
static bool Equal(T* a, const RefPtr<T>& b) { return a == b; }
static bool Equal(const RefPtr<T>& a, T* b) { return a == b; }
static bool Equal(const RefPtr<T>& a, const PassRefPtr<T>& b) {
return a == b;
}
};
template <typename T>
struct UniquePtrHash : PtrHash<T> {
using PtrHash<T>::GetHash;
static unsigned GetHash(const std::unique_ptr<T>& key) {
return GetHash(key.get());
}
static bool Equal(const std::unique_ptr<T>& a, const std::unique_ptr<T>& b) {
return a == b;
}
static bool Equal(const std::unique_ptr<T>& a, const T* b) {
return a.get() == b;
}
static bool Equal(const T* a, const std::unique_ptr<T>& b) {
return a == b.get();
}
};
// Default hash function for each type.
template <typename T>
struct DefaultHash;
// Actual implementation of DefaultHash.
//
// The case of |isIntegral| == false is not implemented. If you see a compile
// error saying DefaultHashImpl<T, false> is not defined, that's because the
// default hash functions for T are not defined. You need to implement them
// yourself.
template <typename T, bool isIntegral>
struct DefaultHashImpl;
template <typename T>
struct DefaultHashImpl<T, true> {
using Hash = IntHash<typename std::make_unsigned<T>::type>;
};
// Canonical implementation of DefaultHash.
template <typename T>
struct DefaultHash
: DefaultHashImpl<T, std::is_integral<T>::value || std::is_enum<T>::value> {
};
// Specializations of DefaultHash follow.
template <>
struct DefaultHash<float> {
using Hash = FloatHash<float>;
};
template <>
struct DefaultHash<double> {
using Hash = FloatHash<double>;
};
// Specializations for pointer types.
template <typename T>
struct DefaultHash<T*> {
using Hash = PtrHash<T>;
};
template <typename T>
struct DefaultHash<RefPtr<T>> {
using Hash = RefPtrHash<T>;
};
template <typename T>
struct DefaultHash<std::unique_ptr<T>> {
using Hash = UniquePtrHash<T>;
};
// Specializations for pairs.
// Generic case (T or U is non-integral):
template <typename T, typename U, bool areBothIntegral>
struct PairHashImpl {
static unsigned GetHash(const std::pair<T, U>& p) {
return HashInts(DefaultHash<T>::Hash::GetHash(p.first),
DefaultHash<U>::Hash::GetHash(p.second));
}
static bool Equal(const std::pair<T, U>& a, const std::pair<T, U>& b) {
return DefaultHash<T>::Hash::Equal(a.first, b.first) &&
DefaultHash<U>::Hash::Equal(a.second, b.second);
}
static const bool safe_to_compare_to_empty_or_deleted =
DefaultHash<T>::Hash::safe_to_compare_to_empty_or_deleted &&
DefaultHash<U>::Hash::safe_to_compare_to_empty_or_deleted;
};
// Special version for pairs of integrals:
template <typename T, typename U>
struct PairHashImpl<T, U, true> {
static unsigned GetHash(const std::pair<T, U>& p) {
return HashInts(p.first, p.second);
}
static bool Equal(const std::pair<T, U>& a, const std::pair<T, U>& b) {
return PairHashImpl<T, U, false>::Equal(
a, b); // Refer to the generic version.
}
static const bool safe_to_compare_to_empty_or_deleted =
PairHashImpl<T, U, false>::safe_to_compare_to_empty_or_deleted;
};
// Combined version:
template <typename T, typename U>
struct PairHash
: PairHashImpl<T,
U,
std::is_integral<T>::value && std::is_integral<U>::value> {};
template <typename T, typename U>
struct DefaultHash<std::pair<T, U>> {
using Hash = PairHash<T, U>;
};
} // namespace WTF
using WTF::DefaultHash;
using WTF::IntHash;
using WTF::PtrHash;
#endif // WTF_HashFunctions_h