X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fhashtable%2Futils.c;h=3c6994b1d0a98c0a9da5c5905c5de9a3b1e87e7d;hb=6c1c0768320135c6936c371b09731851b508c023;hp=850f9e5db3d905be2f83da28221fc18ab6e589cb;hpb=90e535ef0d0433d31e805775f85e4d187b1cf82c;p=lttng-tools.git diff --git a/src/common/hashtable/utils.c b/src/common/hashtable/utils.c index 850f9e5db..3c6994b1d 100644 --- a/src/common/hashtable/utils.c +++ b/src/common/hashtable/utils.c @@ -49,6 +49,7 @@ * byte), but shoehorning those bytes into integers efficiently is messy. */ #define _GNU_SOURCE +#define _LGPL_SOURCE #include #include /* defines uint32_t etc */ #include /* defines printf for tests */ @@ -60,6 +61,7 @@ #include "utils.h" #include /* attempt to define endianness */ #include +#include /* * My best guess at if you are big-endian or little-endian. This may @@ -446,12 +448,8 @@ static uint32_t __attribute__((unused)) hashlittle(const void *key, return c; } -#if (CAA_BITS_PER_LONG == 64) -/* - * Hash function for number value. - */ LTTNG_HIDDEN -unsigned long hash_key_ulong(void *_key, unsigned long seed) +unsigned long hash_key_u64(void *_key, unsigned long seed) { union { uint64_t v64; @@ -463,10 +461,21 @@ unsigned long hash_key_ulong(void *_key, unsigned long seed) } key; v.v64 = (uint64_t) seed; - key.v64 = (uint64_t) _key; + key.v64 = *(uint64_t *) _key; hashword2(key.v32, 2, &v.v32[0], &v.v32[1]); return v.v64; } + +#if (CAA_BITS_PER_LONG == 64) +/* + * Hash function for number value. + */ +LTTNG_HIDDEN +unsigned long hash_key_ulong(void *_key, unsigned long seed) +{ + uint64_t __key = (uint64_t) _key; + return (unsigned long) hash_key_u64(&__key, seed); +} #else /* * Hash function for number value. @@ -489,6 +498,17 @@ unsigned long hash_key_str(void *key, unsigned long seed) return hashlittle(key, strlen((char *) key), seed); } +/* + * Hash function for two uint64_t. + */ +LTTNG_HIDDEN +unsigned long hash_key_two_u64(void *key, unsigned long seed) +{ + struct lttng_ht_two_u64 *k = (struct lttng_ht_two_u64 *) key; + + return hash_key_u64(&k->key1, seed) ^ hash_key_u64(&k->key2, seed); +} + /* * Hash function compare for number value. */ @@ -502,6 +522,19 @@ int hash_match_key_ulong(void *key1, void *key2) return 0; } +/* + * Hash function compare for number value. + */ +LTTNG_HIDDEN +int hash_match_key_u64(void *key1, void *key2) +{ + if (*(uint64_t *) key1 == *(uint64_t *) key2) { + return 1; + } + + return 0; +} + /* * Hash compare function for string. */ @@ -514,3 +547,20 @@ int hash_match_key_str(void *key1, void *key2) return 0; } + +/* + * Hash function compare two uint64_t. + */ +LTTNG_HIDDEN +int hash_match_key_two_u64(void *key1, void *key2) +{ + struct lttng_ht_two_u64 *k1 = (struct lttng_ht_two_u64 *) key1; + struct lttng_ht_two_u64 *k2 = (struct lttng_ht_two_u64 *) key2; + + if (hash_match_key_u64(&k1->key1, &k2->key1) && + hash_match_key_u64(&k1->key2, &k2->key2)) { + return 1; + } + + return 0; +}