2 * Utilities for working with hash values.
4 * Portions Copyright (c) 2017-2024, PostgreSQL Global Development Group
12 * Rotate the high 32 bits and the low 32 bits separately. The standard
13 * hash function sometimes rotates the low 32 bits by one bit when
14 * combining elements. We want extended hash functions to be compatible with
15 * that algorithm when the seed is 0, so we can't just do a normal rotation.
18 #define ROTATE_HIGH_AND_LOW_32BITS(v) \
19 ((((v) << 1) & UINT64CONST(0xfffffffefffffffe)) | \
20 (((v) >> 31) & UINT64CONST(0x100000001)))
23 extern uint32
hash_bytes(const unsigned char *k
, int keylen
);
24 extern uint64
hash_bytes_extended(const unsigned char *k
,
25 int keylen
, uint64 seed
);
26 extern uint32
hash_bytes_uint32(uint32 k
);
27 extern uint64
hash_bytes_uint32_extended(uint32 k
, uint64 seed
);
31 hash_any(const unsigned char *k
, int keylen
)
33 return UInt32GetDatum(hash_bytes(k
, keylen
));
37 hash_any_extended(const unsigned char *k
, int keylen
, uint64 seed
)
39 return UInt64GetDatum(hash_bytes_extended(k
, keylen
, seed
));
45 return UInt32GetDatum(hash_bytes_uint32(k
));
49 hash_uint32_extended(uint32 k
, uint64 seed
)
51 return UInt64GetDatum(hash_bytes_uint32_extended(k
, seed
));
55 extern uint32
string_hash(const void *key
, Size keysize
);
56 extern uint32
tag_hash(const void *key
, Size keysize
);
57 extern uint32
uint32_hash(const void *key
, Size keysize
);
59 #define oid_hash uint32_hash /* Remove me eventually */
62 * Combine two 32-bit hash values, resulting in another hash value, with
65 * Similar to boost's hash_combine().
68 hash_combine(uint32 a
, uint32 b
)
70 a
^= b
+ 0x9e3779b9 + (a
<< 6) + (a
>> 2);
75 * Combine two 64-bit hash values, resulting in another hash value, using the
76 * same kind of technique as hash_combine(). Testing shows that this also
77 * produces good bit mixing.
80 hash_combine64(uint64 a
, uint64 b
)
82 /* 0x49a0f4dd15e5a8e3 is 64bit random data */
83 a
^= b
+ UINT64CONST(0x49a0f4dd15e5a8e3) + (a
<< 54) + (a
>> 7);
88 * Simple inline murmur hash implementation hashing a 32 bit integer, for
92 murmurhash32(uint32 data
)
106 murmurhash64(uint64 data
)
111 h
*= 0xff51afd7ed558ccd;
113 h
*= 0xc4ceb9fe1a85ec53;
119 #endif /* HASHFN_H */