X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FHash.h;h=5253975a4a8f70998a88dc604bdf8fae8c1e7058;hb=bfa61031d36f41aaa907d40371c28ac0e84c8e0d;hp=e64633d2c8f552fb0a053d46497038bea382efda;hpb=b5e4bc034ee27308714f9fd7b3f1a6d5c75ac2bf;p=folly.git diff --git a/folly/Hash.h b/folly/Hash.h index e64633d2..5253975a 100644 --- a/folly/Hash.h +++ b/folly/Hash.h @@ -24,10 +24,10 @@ #include #include -#include #include -#include -#include +#include +#include +#include /* * Various hashing functions. @@ -214,9 +214,12 @@ inline uint32_t jenkins_rev_unmix32(uint32_t key) { const uint32_t FNV_32_HASH_START = 2166136261UL; const uint64_t FNV_64_HASH_START = 14695981039346656037ULL; +const uint64_t FNVA_64_HASH_START = 14695981039346656037ULL; + +inline uint32_t fnv32(const char* buf, uint32_t hash = FNV_32_HASH_START) { + // forcing signed char, since other platforms can use unsigned + const signed char* s = reinterpret_cast(buf); -inline uint32_t fnv32(const char* s, - uint32_t hash = FNV_32_HASH_START) { for (; *s; ++s) { hash += (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) + (hash << 24); @@ -245,8 +248,10 @@ inline uint32_t fnv32(const std::string& str, return fnv32_buf(str.data(), str.size(), hash); } -inline uint64_t fnv64(const char* s, - uint64_t hash = FNV_64_HASH_START) { +inline uint64_t fnv64(const char* buf, uint64_t hash = FNV_64_HASH_START) { + // forcing signed char, since other platforms can use unsigned + const signed char* s = reinterpret_cast(buf); + for (; *s; ++s) { hash += (hash << 1) + (hash << 4) + (hash << 5) + (hash << 7) + (hash << 8) + (hash << 40); @@ -274,6 +279,24 @@ inline uint64_t fnv64(const std::string& str, return fnv64_buf(str.data(), str.size(), hash); } +inline uint64_t fnva64_buf(const void* buf, + size_t n, + uint64_t hash = FNVA_64_HASH_START) { + const uint8_t* char_buf = reinterpret_cast(buf); + + for (size_t i = 0; i < n; ++i) { + hash ^= char_buf[i]; + hash += (hash << 1) + (hash << 4) + (hash << 5) + (hash << 7) + + (hash << 8) + (hash << 40); + } + return hash; +} + +inline uint64_t fnva64(const std::string& str, + uint64_t hash = FNVA_64_HASH_START) { + return fnva64_buf(str.data(), str.size(), hash); +} + /* * Paul Hsieh: http://www.azillionmonkeys.com/qed/hash.html */ @@ -287,7 +310,7 @@ inline uint32_t hsieh_hash32_buf(const void* buf, size_t len) { uint32_t tmp; size_t rem; - if (len <= 0 || buf == 0) { + if (len <= 0 || buf == nullptr) { return 0; } @@ -347,7 +370,24 @@ inline uint32_t hsieh_hash32_str(const std::string& str) { } // namespace hash -template +namespace detail { +struct integral_hasher { + template + size_t operator()(I const& i) const { + static_assert(sizeof(I) <= 8, "input type is too wide"); + if (sizeof(I) <= 4) { // the branch taken is known at compile time + auto const i32 = static_cast(i); // impl accident: sign-extends + auto const u32 = static_cast(i32); + return static_cast(hash::jenkins_rev_mix32(u32)); + } else { + auto const u64 = static_cast(i); + return static_cast(hash::twang_mix64(u64)); + } + } +}; +} // namespace detail + +template struct hasher; struct Hash { @@ -370,31 +410,40 @@ struct hasher { } }; -template<> struct hasher { - size_t operator()(int32_t key) const { - return hash::jenkins_rev_mix32(uint32_t(key)); - } -}; +template <> +struct hasher : detail::integral_hasher {}; -template<> struct hasher { - size_t operator()(uint32_t key) const { - return hash::jenkins_rev_mix32(key); - } -}; +template <> +struct hasher : detail::integral_hasher {}; -template<> struct hasher { - size_t operator()(int64_t key) const { - return static_cast(hash::twang_mix64(uint64_t(key))); - } -}; +template <> +struct hasher : detail::integral_hasher {}; -template<> struct hasher { - size_t operator()(uint64_t key) const { - return static_cast(hash::twang_mix64(key)); - } -}; +template <> +struct hasher : detail::integral_hasher {}; + +template <> +struct hasher : detail::integral_hasher {}; + +template <> +struct hasher : detail::integral_hasher {}; + +template <> +struct hasher : detail::integral_hasher {}; + +template <> +struct hasher : detail::integral_hasher {}; + +template <> +struct hasher : detail::integral_hasher {}; + +template <> +struct hasher : detail::integral_hasher {}; + +template <> // char is a different type from both signed char and unsigned char +struct hasher : detail::integral_hasher {}; -template<> struct hasher { +template <> struct hasher { size_t operator()(const std::string& key) const { return static_cast( hash::SpookyHashV2::Hash64(key.data(), key.size(), 0)); @@ -450,7 +499,7 @@ namespace std { // items in the pair. template struct hash > { - public: + public: size_t operator()(const std::pair& x) const { return folly::hash::hash_combine(x.first, x.second); }