17 #undef BIHASH_KVP_PER_PAGE 18 #undef BIHASH_32_64_SVM 19 #undef BIHASH_ENABLE_STATS 20 #undef BIHASH_KVP_AT_BUCKET_LEVEL 21 #undef BIHASH_LAZY_INSTANTIATE 22 #undef BIHASH_BUCKET_PREFETCH_CACHE_LINES 24 #define BIHASH_TYPE _40_48 25 #define BIHASH_KVP_PER_PAGE 2 26 #define BIHASH_KVP_AT_BUCKET_LEVEL 1 27 #define BIHASH_LAZY_INSTANTIATE 1 28 #define BIHASH_BUCKET_PREFETCH_CACHE_LINES 2 30 #ifndef __included_bihash_40_48_h__ 31 #define __included_bihash_40_48_h__ 49 if (v->
key[0] == ~0ULL && v->
value[0] == ~0ULL)
57 #ifdef clib_crc32c_uses_intrinsics 58 return clib_crc32c ((
u8 *) v->
key, 40);
72 "key %llu %llu %llu %llu %llu value %llu %llu %llu %llu %llu %u",
82 #if defined (CLIB_HAVE_VEC512) 84 v = u64x8_load_unaligned (a) ^ u64x8_load_unaligned (b);
85 return (u64x8_is_zero_mask (v) & 0x1f) == 0;
86 #elif defined (CLIB_HAVE_VEC256) 87 u64x4 v = { a[4] ^ b[4], 0, 0, 0 };
88 v |= u64x4_load_unaligned (a) ^ u64x4_load_unaligned (b);
89 return u64x4_is_all_zero (v);
90 #elif defined(CLIB_HAVE_VEC128) && defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE) 91 u64x2 v = { a[4] ^ b[4], 0 };
92 v |= u64x2_load_unaligned (a) ^ u64x2_load_unaligned (b);
93 v |= u64x2_load_unaligned (a + 2) ^ u64x2_load_unaligned (b + 2);
94 return u64x2_is_all_zero (v);
96 return ((a[0] ^ b[0]) | (a[1] ^ b[1]) | (a[2] ^ b[2]) | (a[3] ^ b[3])
97 | (a[4] ^ b[4])) == 0;
101 #undef __included_bihash_template_h__
Fixed length block allocator.
static u64 clib_bihash_hash_40_48(const clib_bihash_kv_40_48_t *v)
static u64 clib_xxhash(u64 key)
epu8_epi32 epu16_epi32 u64x2
static int clib_bihash_key_compare_40_48(u64 *a, u64 *b)
static u8 * format_bihash_kvp_40_48(u8 *s, va_list *args)
static int clib_bihash_is_free_40_48(const clib_bihash_kv_40_48_t *v)