/* * Copyright 2015 WebAssembly Community Group participants * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef wasm_support_hash_h #define wasm_support_hash_h #include #include namespace wasm { // Computes the digest of `value`. template inline std::size_t hash(const T& value) { return std::hash{}(value); } // Combines two digests into the first digest. Use instead of `rehash` if // `otherDigest` is another digest. This is also deterministic, aside from // possible differences in size_t (see deterministic_hash_combine, below). inline void hash_combine(std::size_t& digest, const std::size_t otherDigest) { // see: boost/container_hash/hash.hpp // The constant is the N-bits reciprocal of the golden ratio: // phi = (1 + sqrt(5)) / 2 // trunc(2^64 / phi) = 0x9e3779b97f4a7c15 digest ^= otherDigest + 0x9e3779b97f4a7c15 + (digest << 12) + (digest >> 4); } // Hashes `value` and combines the resulting digest into the existing digest. // Use instead of `hash_combine` if `value` is not another digest (i.e., it // needs to be hashed first). template inline void rehash(std::size_t& digest, const T& value) { hash_combine(digest, hash(value)); } // Similar to hash_combine, but guaranteed to produce the exact same results on // all machines, even ones where size_t differs. This is essentially identical // to hash_combine, but the types are all uint64_t. inline void deterministic_hash_combine(uint64_t& digest, const uint64_t otherDigest) { digest ^= otherDigest + 0x9e3779b97f4a7c15 + (digest << 12) + (digest >> 4); } } // namespace wasm namespace std { // Hashing pairs is often useful template struct hash> { size_t operator()(const pair& p) const { auto digest = wasm::hash(p.first); wasm::rehash(digest, p.second); return digest; } }; // And hashing tuples is useful, too. template struct hash> { private: template static void rehash(const tuple& tup, size_t& digest, std::index_sequence) { (wasm::rehash(digest, std::get<1 + I>(tup)), ...); } public: size_t operator()(const tuple& tup) const { auto digest = wasm::hash(std::get<0>(tup)); rehash(tup, digest, std::index_sequence_for{}); return digest; } }; } // namespace std #endif // wasm_support_hash_h