hash_pointer() now uses either 32-bit or 64-bit hash depending on pointer size.
hashtable.h with an atomic key does the same.
#define HASH_GIVE_HASHFN
static uns test4_hash(char *host, int port)
{
- return hash_string_nocase(host) ^ hash_int(port);
+ return hash_string_nocase(host) ^ hash_u32(port);
}
#define HASH_GIVE_EQ
* of using shifts and adds on architectures where multiplication
* instructions are slow).
*/
-static inline uns CONST hash_int(uns x) { return 0x01008041*x; }
-static inline uns CONST hash_pointer(void *x) { return hash_int((uns)(addr_int_t)x); }
+static inline uns CONST hash_u32(uns x) { return 0x01008041*x; }
+static inline uns CONST hash_u64(u64 x) { return hash_u32((uns)x ^ (uns)(x >> 32)); }
+static inline uns CONST hash_pointer(void *x) { return ((sizeof(x) <= 4) ? hash_u32((uns)(addr_int_t)x) : hash_u64((u64)(addr_int_t)x)); }
#endif
#ifndef HASH_GIVE_HASHFN
# define HASH_GIVE_HASHFN
static inline int P(hash) (TAUC HASH_ATOMIC_TYPE x)
- { return hash_int(x); }
+ { return ((sizeof(x) <= 4) ? hash_u32(x) : hash_u64(x)); }
#endif
#ifndef HASH_GIVE_EQ