blob: 67af79c0e501b5230174c048c49b24691a753682 [file] [log] [blame]
Klement Sekera470a0112017-03-08 05:21:24 +01001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#undef CLIB_CUCKOO_TYPE
16
17#define CLIB_CUCKOO_TYPE _8_8
18#define CLIB_CUCKOO_KVP_PER_BUCKET (4)
19#define CLIB_CUCKOO_LOG2_KVP_PER_BUCKET (2)
20#define CLIB_CUCKOO_BFS_MAX_STEPS (2000)
21#define CLIB_CUCKOO_BFS_MAX_PATH_LENGTH (8)
22
23#ifndef __included_cuckoo_8_8_h__
24#define __included_cuckoo_8_8_h__
25
26#include <vppinfra/heap.h>
27#include <vppinfra/format.h>
28#include <vppinfra/pool.h>
29#include <vppinfra/xxhash.h>
30#include <vppinfra/cuckoo_debug.h>
31#include <vppinfra/cuckoo_common.h>
32
33#undef CLIB_CUCKOO_OPTIMIZE_PREFETCH
Klement Sekera470a0112017-03-08 05:21:24 +010034#undef CLIB_CUCKOO_OPTIMIZE_UNROLL
35#undef CLIB_CUCKOO_OPTIMIZE_USE_COUNT_LIMITS_SEARCH
36#define CLIB_CUCKOO_OPTIMIZE_PREFETCH 1
Klement Sekera470a0112017-03-08 05:21:24 +010037#define CLIB_CUCKOO_OPTIMIZE_UNROLL 1
38#define CLIB_CUCKOO_OPTIMIZE_USE_COUNT_LIMITS_SEARCH 1
39
Gabriel Gannea19d7b82017-10-23 08:54:50 +020040#if __SSE4_2__ && !defined (__i386__)
Klement Sekera470a0112017-03-08 05:21:24 +010041#include <x86intrin.h>
Gabriel Gannea19d7b82017-10-23 08:54:50 +020042#endif
Klement Sekera470a0112017-03-08 05:21:24 +010043
44/** 8 octet key, 8 octet key value pair */
45typedef struct
46{
47 u64 key; /**< the key */
48 u64 value; /**< the value */
49} clib_cuckoo_kv_8_8_t;
50
51/** Decide if a clib_cuckoo_kv_8_8_t instance is free
52 @param v- pointer to the (key,value) pair
53*/
54always_inline int
55clib_cuckoo_kv_is_free_8_8 (const clib_cuckoo_kv_8_8_t * v)
56{
57 if (v->key == ~0ULL && v->value == ~0ULL)
58 return 1;
59 return 0;
60}
61
62always_inline void
63clib_cuckoo_kv_set_free_8_8 (clib_cuckoo_kv_8_8_t * v)
64{
Dave Barachb7b92992018-10-17 10:38:51 -040065 clib_memset (v, 0xff, sizeof (*v));
Klement Sekera470a0112017-03-08 05:21:24 +010066}
67
68/** Format a clib_cuckoo_kv_8_8_t instance
69 @param s - u8 * vector under construction
70 @param args (vararg) - the (key,value) pair to format
71 @return s - the u8 * vector under construction
72*/
73always_inline u8 *
74format_cuckoo_kvp_8_8 (u8 * s, va_list * args)
75{
76 clib_cuckoo_kv_8_8_t *v = va_arg (*args, clib_cuckoo_kv_8_8_t *);
77
78 if (clib_cuckoo_kv_is_free_8_8 (v))
79 {
Klement Sekera39d02852020-02-20 11:39:58 +000080 s = format (s, " -- empty -- ");
Klement Sekera470a0112017-03-08 05:21:24 +010081 }
82 else
83 {
84 s = format (s, "key %llu value %llu", v->key, v->value);
85 }
86 return s;
87}
88
89always_inline u64
90clib_cuckoo_hash_8_8 (clib_cuckoo_kv_8_8_t * v)
91{
Gabriel Ganne8e66b9b2017-12-14 16:20:37 +010092#if defined(clib_crc32c_uses_intrinsics) && !defined (__i386__)
93 return crc32_u64 (0, v->key);
Klement Sekera470a0112017-03-08 05:21:24 +010094#else
95 return clib_xxhash (v->key);
96#endif
97}
98
99/** Compare two clib_cuckoo_kv_8_8_t instances
100 @param a - first key
101 @param b - second key
102*/
103always_inline int
104clib_cuckoo_key_compare_8_8 (u64 a, u64 b)
105{
106 return a == b;
107}
108
Klement Sekera470a0112017-03-08 05:21:24 +0100109#undef __included_cuckoo_template_h__
110#include <vppinfra/cuckoo_template.h>
Klement Sekera470a0112017-03-08 05:21:24 +0100111
112#endif /* __included_cuckoo_8_8_h__ */
113
114/*
115 * fd.io coding-style-patch-verification: ON
116 *
117 * Local Variables:
118 * eval: (c-set-style "gnu")
119 * End:
120 */