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
23 #undef BIHASH_USE_HEAP
25 #define BIHASH_TYPE _40_56
26 #define BIHASH_KVP_PER_PAGE 2
27 #define BIHASH_KVP_AT_BUCKET_LEVEL 1
28 #define BIHASH_LAZY_INSTANTIATE 1
29 #define BIHASH_BUCKET_PREFETCH_CACHE_LINES 2
30 #define BIHASH_USE_HEAP 1
32 #ifndef __included_bihash_40_56_h__
33 #define __included_bihash_40_56_h__
51 if (v->
key[0] == ~0ULL && v->
value[0] == ~0ULL)
59 #ifdef clib_crc32c_uses_intrinsics
60 return clib_crc32c ((
u8 *) v->
key, 40);
73 "key %llu %llu %llu %llu %llu"
74 "value %llu %llu %llu %llu %llu %llu %llu",
84 #if defined (CLIB_HAVE_VEC512)
86 v = u64x8_load_unaligned (
a) ^ u64x8_load_unaligned (
b);
87 return (u64x8_is_zero_mask (v) & 0x1f) == 0;
88 #elif defined (CLIB_HAVE_VEC256)
89 u64x4 v = {
a[4] ^
b[4], 0, 0, 0 };
90 v |= u64x4_load_unaligned (
a) ^ u64x4_load_unaligned (
b);
91 return u64x4_is_all_zero (v);
92 #elif defined(CLIB_HAVE_VEC128) && defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE)
94 v |= u64x2_load_unaligned (
a) ^ u64x2_load_unaligned (
b);
95 v |= u64x2_load_unaligned (
a + 2) ^ u64x2_load_unaligned (
b + 2);
96 return u64x2_is_all_zero (v);
98 return ((
a[0] ^
b[0]) | (
a[1] ^
b[1]) | (
a[2] ^
b[2]) | (
a[3] ^
b[3])
99 | (
a[4] ^
b[4])) == 0;
103 #undef __included_bihash_template_h__
109 #define cnat_bihash_search_i2_hash clib_bihash_search_inline_2_with_hash_40_56
110 #define cnat_bihash_search_i2 clib_bihash_search_inline_2_40_56
111 #define cnat_bihash_add_del clib_bihash_add_del_40_56
112 #define cnat_bihash_hash clib_bihash_hash_40_56
113 #define cnat_bihash_prefetch_bucket clib_bihash_prefetch_bucket_40_56
114 #define cnat_bihash_prefetch_data clib_bihash_prefetch_data_40_56