23 nbuckets = 1 << (
max_log2 (nbuckets));
25 h->name = (
u8 *) name;
26 h->nbuckets = nbuckets;
27 h->log2_nbuckets =
max_log2 (nbuckets);
42 memset (h, 0,
sizeof (*h));
52 ASSERT (h->writer_lock[0]);
53 if (log2_pages >=
vec_len (h->freelists) || h->freelists[log2_pages] == 0)
73 memset (rv, 0xff,
sizeof (*rv) * (1 << log2_pages));
82 ASSERT (h->writer_lock[0]);
101 if (cpu_number >=
vec_len (h->working_copies))
113 working_copy = h->working_copies[cpu_number];
115 h->saved_bucket.as_u64 = b->as_u64;
118 if ((1 << b->log2_pages) >
vec_len (working_copy))
122 h->working_copies[cpu_number] = working_copy;
125 _vec_len (working_copy) = 1 << b->log2_pages;
130 clib_memcpy (working_copy,
v,
sizeof (*
v) * (1 << b->log2_pages));
131 working_bucket.as_u64 = b->as_u64;
134 b->as_u64 = working_bucket.as_u64;
135 h->working_copies[cpu_number] = working_copy;
141 (
BVT (clib_bihash) *
h,
147 new_values = BV (value_alloc) (
h, new_log2_pages);
150 for (i = 0; i < length; i++)
155 if (BV (clib_bihash_is_free) (&(old_values->kvp[i])))
159 new_hash = BV (clib_bihash_hash) (&(old_values->kvp[
i]));
160 new_hash >>= h->log2_nbuckets;
161 new_hash &= (1 << new_log2_pages) - 1;
162 new_v = &new_values[new_hash];
168 if (BV (clib_bihash_is_free) (&(new_v->kvp[j])))
170 clib_memcpy (&(new_v->kvp[j]), &(old_values->kvp[i]),
171 sizeof (new_v->kvp[j]));
176 BV (value_free) (
h, new_values);
185 BV (split_and_rehash_linear)
186 (
BVT (clib_bihash) *
h,
190 int i, j, new_length;
192 new_values = BV (value_alloc) (
h, new_log2_pages);
193 new_length = (1 << new_log2_pages) * BIHASH_KVP_PER_PAGE;
200 for (; j < new_length; j++)
203 if (BV (clib_bihash_is_free) (&(old_values->kvp[
i])))
207 if (BV (clib_bihash_is_free) (&(new_values->kvp[j])))
210 clib_memcpy (&(new_values->kvp[j]), &(old_values->kvp[i]),
211 sizeof (new_values->kvp[j]));
218 BV (value_free) (
h, new_values);
227 (
BVT (clib_bihash) *
h,
BVT (clib_bihash_kv) * add_v,
int is_add)
237 int mark_bucket_linear;
240 hash = BV (clib_bihash_hash) (add_v);
242 bucket_index = hash & (h->nbuckets - 1);
243 b = &h->buckets[bucket_index];
245 hash >>= h->log2_nbuckets;
247 while (__sync_lock_test_and_set (h->writer_lock, 1))
259 v = BV (value_alloc) (
h, 0);
264 b->as_u64 = tmp_b.as_u64;
273 v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
274 if (b->linear_search)
275 limit <<= b->log2_pages;
283 for (i = 0; i < limit; i++)
285 if (!memcmp (&(
v->kvp[i]), &add_v->key,
sizeof (add_v->key)))
290 b->as_u64 = h->saved_bucket.as_u64;
294 for (i = 0; i < limit; i++)
296 if (BV (clib_bihash_is_free) (&(
v->kvp[i])))
300 b->as_u64 = h->saved_bucket.as_u64;
308 for (i = 0; i < limit; i++)
310 if (!memcmp (&(
v->kvp[i]), &add_v->key, sizeof (add_v->key)))
312 memset (&(
v->kvp[i]), 0xff, sizeof (*(add_v)));
314 b->as_u64 = h->saved_bucket.as_u64;
319 b->as_u64 = h->saved_bucket.as_u64;
323 new_log2_pages = h->saved_bucket.log2_pages + 1;
324 mark_bucket_linear = 0;
326 working_copy = h->working_copies[cpu_number];
343 BV (split_and_rehash_linear) (
h, working_copy, new_log2_pages);
344 mark_bucket_linear = 1;
350 new_hash = BV (clib_bihash_hash) (add_v);
352 if (mark_bucket_linear)
353 limit <<= new_log2_pages;
354 new_hash >>= h->log2_nbuckets;
355 new_hash &= (1 << new_log2_pages) - 1;
356 new_v += mark_bucket_linear ? 0 : new_hash;
358 for (i = 0; i < limit; i++)
360 if (BV (clib_bihash_is_free) (&(new_v->kvp[
i])))
362 clib_memcpy (&(new_v->kvp[i]), add_v, sizeof (*add_v));
367 BV (value_free) (
h, save_new_v);
379 if (tmp_b.linear_search ^ mark_bucket_linear)
380 h->linear_buckets += (mark_bucket_linear == 1) ? 1 : -1;
382 tmp_b.log2_pages = new_log2_pages;
384 tmp_b.linear_search = mark_bucket_linear;
386 b->as_u64 = tmp_b.as_u64;
388 BV (value_free) (
h,
v);
392 h->writer_lock[0] = 0;
397 (
const BVT (clib_bihash) *
h,
398 BVT (clib_bihash_kv) * search_key,
BVT (clib_bihash_kv) * valuep)
408 hash = BV (clib_bihash_hash) (search_key);
410 bucket_index = hash & (h->nbuckets - 1);
411 b = &h->buckets[bucket_index];
416 hash >>= h->log2_nbuckets;
420 v += (b->linear_search == 0) ? hash & ((1 << b->log2_pages) - 1) : 0;
422 limit <<= b->log2_pages;
424 for (i = 0; i < limit; i++)
426 if (BV (clib_bihash_key_compare) (
v->kvp[
i].key, search_key->key))
435 u8 *BV (format_bihash) (
u8 * s, va_list * args)
437 BVT (clib_bihash) * h = va_arg (*args,
BVT (clib_bihash) *);
438 int verbose = va_arg (*args,
int);
442 u64 active_elements = 0;
444 s =
format (s,
"Hash table %s\n", h->name ? h->name : (
u8 *)
"(unnamed)");
446 for (i = 0; i < h->nbuckets; i++)
452 s =
format (s,
"[%d]: empty\n", i);
458 s =
format (s,
"[%d]: heap offset %d, len %d, linear %d\n", i,
459 b->offset, (1 << b->log2_pages), b->linear_search);
463 for (j = 0; j < (1 << b->log2_pages); j++)
467 if (BV (clib_bihash_is_free) (&
v->kvp[k]))
470 s =
format (s,
" %d: empty\n",
471 j * BIHASH_KVP_PER_PAGE + k);
476 s =
format (s,
" %d: %U\n",
477 j * BIHASH_KVP_PER_PAGE + k,
478 BV (format_bihash_kvp), &(
v->kvp[k]));
486 s =
format (s,
" %lld active elements\n", active_elements);
488 s =
format (s,
" %d linear search buckets\n", h->linear_buckets);
494 (
BVT (clib_bihash) *
h,
void *callback,
void *arg)
499 void (*fp) (
BVT (clib_bihash_kv) *,
void *) = callback;
501 for (i = 0; i < h->nbuckets; i++)
508 for (j = 0; j < (1 << b->log2_pages); j++)
512 if (BV (clib_bihash_is_free) (&
v->kvp[k]))
515 (*fp) (&
v->kvp[k], arg);
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
sll srl srl sll sra u16x4 i
#define BIHASH_KVP_PER_PAGE
void clib_bihash_free(clib_bihash *h)
Destroy a bounded index extensible hash table.
void * mheap_alloc(void *memory, uword size)
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
static uword min_log2(uword x)
int clib_bihash_add_del(clib_bihash *h, clib_bihash_kv *add_v, int is_add)
Add or delete a (key,value) pair from a bi-hash table.
static uword clib_bihash_get_offset(clib_bihash *h, void *v)
Get clib mheap offset given a pointer.
uword os_get_cpu_number(void)
void clib_bihash_init(clib_bihash *h, char *name, u32 nbuckets, uword memory_size)
initialize a bounded index extensible hash table
void clib_bihash_foreach_key_value_pair(clib_bihash *h, void *callback, void *arg)
Visit active (key,value) pairs in a bi-hash table.
static void * clib_mem_set_heap(void *heap)
#define clib_warning(format, args...)
#define clib_memcpy(a, b, c)
static void make_working_copy(vnet_classify_table_t *t, vnet_classify_bucket_t *b)
int clib_bihash_search(clib_bihash *h, clib_bihash_kv *search_v, clib_bihash_kv *return_v)
Search a bi-hash table.
template key/value backing page structure
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
static uword max_log2(uword x)
static void * clib_mem_alloc_aligned(uword size, uword align)
#define CLIB_MEMORY_BARRIER()
static void * clib_bihash_get_value(clib_bihash *h, uword offset)
Get pointer to value page given its clib mheap offset.
#define CLIB_CACHE_LINE_BYTES
static vnet_classify_entry_t * split_and_rehash(vnet_classify_table_t *t, vnet_classify_entry_t *old_values, u32 new_log2_pages)