16 #undef BIHASH_KVP_PER_PAGE
17 #undef BIHASH_32_64_SVM
18 #undef BIHASH_ENABLE_STATS
19 #undef BIHASH_KVP_AT_BUCKET_LEVEL
20 #undef BIHASH_LAZY_INSTANTIATE
21 #undef BIHASH_BUCKET_PREFETCH_CACHE_LINES
22 #undef BIHASH_USE_HEAP
24 #define BIHASH_TYPE _32_8
25 #define BIHASH_KVP_PER_PAGE 4
26 #define BIHASH_KVP_AT_BUCKET_LEVEL 0
27 #define BIHASH_LAZY_INSTANTIATE 1
28 #define BIHASH_BUCKET_PREFETCH_CACHE_LINES 1
29 #define BIHASH_USE_HEAP 1
31 #ifndef __included_bihash_32_8_h__
32 #define __included_bihash_32_8_h__
50 if (v->
key[0] == ~0ULL && v->
value == ~0ULL)
58 #ifdef clib_crc32c_uses_intrinsics
59 return clib_crc32c ((
u8 *) v->
key, 32);
71 s =
format (s,
"key %llu %llu %llu %llu value %llu", v->
key[0], v->
key[1],
79 #if defined(CLIB_HAVE_VEC512)
80 u64x8 v = u64x8_load_unaligned (
a) ^ u64x8_load_unaligned (
b);
81 return (u64x8_is_zero_mask (v) & 0xf) == 0;
82 #elif defined(CLIB_HAVE_VEC256)
83 u64x4 v = u64x4_load_unaligned (
a) ^ u64x4_load_unaligned (
b);
84 return u64x4_is_all_zero (v);
85 #elif defined(CLIB_HAVE_VEC128) && \
86 defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE)
88 v = u64x2_load_unaligned (
a) ^ u64x2_load_unaligned (
b);
89 v |= u64x2_load_unaligned (
a + 2) ^ u64x2_load_unaligned (
b + 2);
90 return u64x2_is_all_zero (v);
92 return ((
a[0] ^
b[0]) | (
a[1] ^
b[1]) | (
a[2] ^
b[2]) | (
a[3] ^
b[3])) == 0;
96 #undef __included_bihash_template_h__