38 #ifndef included_hash_h 39 #define included_hash_h 62 #define HASH_FLAG_NO_AUTO_GROW (1 << 0) 64 #define HASH_FLAG_NO_AUTO_SHRINK (1 << 1) 66 #define HASH_FLAG_HASH_NEXT_IN_PROGRESS (1 << 2) 76 #define KEY_FUNC_NONE (0) 77 #define KEY_FUNC_POINTER_UWORD (1) 78 #define KEY_FUNC_POINTER_U32 (2) 79 #define KEY_FUNC_STRING (3) 103 uword is_user_bytes =
105 return sizeof (h[0]) + is_user_bytes;
120 return v ? h->
elts : 0;
190 #define LOG2_ALLOC_BITS (5) 191 #define PAIR_BITS (BITS (uword) - LOG2_ALLOC_BITS) 226 void *_hash_unset (
void *v,
uword key,
void *old_value);
229 void *_hash_set3 (
void *v,
uword key,
void *value,
void *old_value);
241 #define hash_set3(h,key,value,old_value) \ 243 uword _v = (uword) (value); \ 244 (h) = _hash_set3 ((h), (uword) (key), (void *) &_v, (old_value)); \ 248 #define hash_get(h,key) _hash_get ((h), (uword) (key)) 251 #define hash_get_pair(h,key) _hash_get_pair ((h), (uword) (key)) 254 #define hash_set(h,key,value) hash_set3(h,key,value,0) 257 #define hash_set1(h,key) (h) = _hash_set3(h,(uword) (key),0,0) 260 #define hash_unset(h,key) ((h) = _hash_unset ((h), (uword) (key),0)) 263 #define hash_unset3(h,key,old_value) ((h) = _hash_unset ((h), (uword) (key), (void *) (old_value))) 268 #define hash_get_mem(h,key) _hash_get ((h), pointer_to_uword (key)) 271 #define hash_get_pair_mem(h,key) _hash_get_pair ((h), pointer_to_uword (key)) 274 #define hash_set_mem(h,key,value) hash_set3 (h, pointer_to_uword (key), (value), 0) 277 #define hash_set1_mem(h,key) hash_set3 ((h), pointer_to_uword (key), 0, 0) 280 #define hash_unset_mem(h,key) ((h) = _hash_unset ((h), pointer_to_uword (key),0)) 283 extern void *_hash_free (
void *v);
286 #define hash_free(h) (h) = _hash_free ((h)) 338 #define hash_foreach_pair(p,v,body) \ 340 __label__ _hash_foreach_done; \ 341 hash_t * _h = hash_header (v); \ 342 hash_pair_union_t * _p; \ 343 hash_pair_t * _q, * _q_end; \ 344 uword _i, _i1, _id, _pair_increment; \ 346 _p = (hash_pair_union_t *) (v); \ 348 _pair_increment = 1; \ 350 _pair_increment = 1 << _h->log2_pair_size; \ 351 while (_i < hash_capacity (v)) \ 353 _id = _h->is_user[_i / BITS (_h->is_user[0])]; \ 354 _i1 = _i + BITS (_h->is_user[0]); \ 360 _q_end = _q + _pair_increment; \ 364 hash_pair_indirect_t * _pi = &_p->indirect; \ 366 if (_h->log2_pair_size > 0) \ 367 _q_end = hash_forward (_h, _q, indirect_pair_get_len (_pi)); \ 369 _q_end = vec_end (_q); \ 374 while (_q < _q_end) \ 376 uword _break_in_body = 1; \ 380 _break_in_body = 0; \ 382 if (_break_in_body) \ 383 goto _hash_foreach_done; \ 384 _q += _pair_increment; \ 387 _p = (hash_pair_union_t *) (&_p->direct + _pair_increment); \ 390 } while (_i < _i1); \ 392 _hash_foreach_done: \ 407 #define hash_foreach(key_var,value_var,h,body) \ 410 hash_foreach_pair (_r, (h), { \ 411 (key_var) = (__typeof__ (key_var)) _r->key; \ 412 (value_var) = (__typeof__ (value_var)) _r->value[0]; \ 413 do { body; } while (0); \ 426 #define hash_foreach_mem(key_var,value_var,h,body) \ 429 hash_foreach_pair (_r, (h), { \ 430 (key_var) = (__typeof__ (key_var)) uword_to_pointer (_r->key, void *); \ 431 (value_var) = (__typeof__ (value_var)) _r->value[0]; \ 432 do { body; } while (0); \ 456 1) / sizeof (p->
key));
459 #define hash_create2(_elts,_user,_value_bytes, \ 460 _key_sum,_key_equal, \ 461 _format_pair,_format_pair_arg) \ 464 memset (&_h, 0, sizeof (_h)); \ 466 _h.key_sum = (hash_key_sum_function_t *) (_key_sum); \ 467 _h.key_equal = (_key_equal); \ 468 hash_set_value_bytes (&_h, (_value_bytes)); \ 469 _h.format_pair = (format_function_t *) (_format_pair); \ 470 _h.format_pair_arg = (_format_pair_arg); \ 471 _hash_create ((_elts), &_h); \ 478 #define hash_mix_step(a,b,c,s0,s1,s2) \ 480 (a) -= (b) + (c); (a) ^= (c) >> (s0); \ 481 (b) -= (c) + (a); (b) ^= (a) << (s1); \ 482 (c) -= (a) + (b); (c) ^= (b) >> (s2); \ 485 #define hash_mix32_step_1(a,b,c) hash_mix_step(a,b,c,13,8,13) 486 #define hash_mix32_step_2(a,b,c) hash_mix_step(a,b,c,12,16,5) 487 #define hash_mix32_step_3(a,b,c) hash_mix_step(a,b,c,3,10,15) 489 #define hash_mix64_step_1(a,b,c) hash_mix_step(a,b,c,43,9,8) 490 #define hash_mix64_step_2(a,b,c) hash_mix_step(a,b,c,38,23,5) 491 #define hash_mix64_step_3(a,b,c) hash_mix_step(a,b,c,35,49,11) 492 #define hash_mix64_step_4(a,b,c) hash_mix_step(a,b,c,12,18,22) 496 #define hash_mix64(a0,b0,c0) \ 498 hash_mix64_step_1 (a0, b0, c0); \ 499 hash_mix64_step_2 (a0, b0, c0); \ 500 hash_mix64_step_3 (a0, b0, c0); \ 501 hash_mix64_step_4 (a0, b0, c0); \ 504 #define hash_mix32(a0,b0,c0) \ 506 hash_mix32_step_1 (a0, b0, c0); \ 507 hash_mix32_step_2 (a0, b0, c0); \ 508 hash_mix32_step_3 (a0, b0, c0); \ 516 return (x << i) | (x >> (
BITS (i) -
i));
519 #define hash_v3_mix32(a,b,c) \ 521 (a) -= (c); (a) ^= hash32_rotate_left ((c), 4); (c) += (b); \ 522 (b) -= (a); (b) ^= hash32_rotate_left ((a), 6); (a) += (c); \ 523 (c) -= (b); (c) ^= hash32_rotate_left ((b), 8); (b) += (a); \ 524 (a) -= (c); (a) ^= hash32_rotate_left ((c),16); (c) += (b); \ 525 (b) -= (a); (b) ^= hash32_rotate_left ((a),19); (a) += (c); \ 526 (c) -= (b); (c) ^= hash32_rotate_left ((b), 4); (b) += (a); \ 529 #define hash_v3_finalize32(a,b,c) \ 531 (c) ^= (b); (c) -= hash32_rotate_left ((b), 14); \ 532 (a) ^= (c); (a) -= hash32_rotate_left ((c), 11); \ 533 (b) ^= (a); (b) -= hash32_rotate_left ((a), 25); \ 534 (c) ^= (b); (c) -= hash32_rotate_left ((b), 16); \ 535 (a) ^= (c); (a) -= hash32_rotate_left ((c), 4); \ 536 (b) ^= (a); (b) -= hash32_rotate_left ((a), 14); \ 537 (c) ^= (b); (c) -= hash32_rotate_left ((b), 24); \ 542 #define hash_v3_mix32_step1(a,b,c) \ 544 (a) -= (c); (a) ^= hash32_rotate_left ((c), 4); (c) += (b); \ 545 (b) -= (a); (b) ^= hash32_rotate_left ((a), 6); (a) += (c); \ 548 #define hash_v3_mix32_step2(a,b,c) \ 550 (c) -= (b); (c) ^= hash32_rotate_left ((b), 8); (b) += (a); \ 551 (a) -= (c); (a) ^= hash32_rotate_left ((c),16); (c) += (b); \ 554 #define hash_v3_mix32_step3(a,b,c) \ 556 (b) -= (a); (b) ^= hash32_rotate_left ((a),19); (a) += (c); \ 557 (c) -= (b); (c) ^= hash32_rotate_left ((b), 4); (b) += (a); \ 560 #define hash_v3_finalize32_step1(a,b,c) \ 562 (c) ^= (b); (c) -= hash32_rotate_left ((b), 14); \ 563 (a) ^= (c); (a) -= hash32_rotate_left ((c), 11); \ 566 #define hash_v3_finalize32_step2(a,b,c) \ 568 (b) ^= (a); (b) -= hash32_rotate_left ((a), 25); \ 569 (c) ^= (b); (c) -= hash32_rotate_left ((b), 16); \ 572 #define hash_v3_finalize32_step3(a,b,c) \ 574 (a) ^= (c); (a) -= hash32_rotate_left ((c), 4); \ 575 (b) ^= (a); (b) -= hash32_rotate_left ((a), 14); \ 576 (c) ^= (b); (c) -= hash32_rotate_left ((b), 24); \ 580 #define hash_v3_mix_step_1_u32x(a,b,c) \ 582 (a) -= (c); (a) ^= u32x_irotate_left ((c), 4); (c) += (b); \ 583 (b) -= (a); (b) ^= u32x_irotate_left ((a), 6); (a) += (c); \ 584 (c) -= (b); (c) ^= u32x_irotate_left ((b), 8); (b) += (a); \ 587 #define hash_v3_mix_step_2_u32x(a,b,c) \ 589 (a) -= (c); (a) ^= u32x_irotate_left ((c),16); (c) += (b); \ 590 (b) -= (a); (b) ^= u32x_irotate_left ((a),19); (a) += (c); \ 591 (c) -= (b); (c) ^= u32x_irotate_left ((b), 4); (b) += (a); \ 594 #define hash_v3_finalize_step_1_u32x(a,b,c) \ 596 (c) ^= (b); (c) -= u32x_irotate_left ((b), 14); \ 597 (a) ^= (c); (a) -= u32x_irotate_left ((c), 11); \ 598 (b) ^= (a); (b) -= u32x_irotate_left ((a), 25); \ 601 #define hash_v3_finalize_step_2_u32x(a,b,c) \ 603 (c) ^= (b); (c) -= u32x_irotate_left ((b), 16); \ 604 (a) ^= (c); (a) -= u32x_irotate_left ((c), 4); \ 605 (b) ^= (a); (b) -= u32x_irotate_left ((a), 14); \ 606 (c) ^= (b); (c) -= u32x_irotate_left ((b), 24); \ 609 #define hash_v3_mix_u32x(a,b,c) \ 611 hash_v3_mix_step_1_u32x(a,b,c); \ 612 hash_v3_mix_step_2_u32x(a,b,c); \ 615 #define hash_v3_finalize_u32x(a,b,c) \ 617 hash_v3_finalize_step_1_u32x(a,b,c); \ 618 hash_v3_finalize_step_2_u32x(a,b,c); \ 626 #define hash_create_mem(elts,key_bytes,value_bytes) \ 627 hash_create2((elts),(key_bytes),(value_bytes),mem_key_sum,mem_key_equal,0,0) 633 #define hash_create_vec(elts,key_bytes,value_bytes) \ 634 hash_create2((elts),(key_bytes),(value_bytes),\ 635 vec_key_sum,vec_key_equal,vec_key_format_pair,0) 641 #define hash_create_string(elts,value_bytes) \ 642 hash_create2((elts),0,(value_bytes), \ 643 (hash_key_sum_function_t *) KEY_FUNC_STRING, \ 644 (hash_key_equal_function_t *)KEY_FUNC_STRING, \ 647 #define hash_create(elts,value_bytes) \ 648 hash_create2((elts),0,(value_bytes), \ 649 (hash_key_sum_function_t *) KEY_FUNC_NONE, \ 650 (hash_key_equal_function_t *) KEY_FUNC_NONE, \ 653 #define hash_create_uword(elts,value_bytes) \ 654 hash_create2((elts),0,(value_bytes), \ 655 (hash_key_sum_function_t *) KEY_FUNC_POINTER_UWORD, \ 656 (hash_key_equal_function_t *) KEY_FUNC_POINTER_UWORD, \ 659 #define hash_create_u32(elts,value_bytes) \ 660 hash_create2((elts),0,(value_bytes), \ 661 (hash_key_sum_function_t *) KEY_FUNC_POINTER_U32, \ 662 (hash_key_equal_function_t *) KEY_FUNC_POINTER_U32, \
clib_error_t * hash_validate(void *v)
u8 pad[3]
log2 (size of the packing page block)
sll srl srl sll sra u16x4 i
uword hash_bytes(void *v)
static uword indirect_pair_get_len(hash_pair_indirect_t *p)
unformat_function_t unformat_hash_string
uword hash_memory(void *p, word n_bytes, uword state)
u8 * format_hash(u8 *s, va_list *va)
uword mem_key_sum(hash_t *h, uword key)
static void hash_set_value_bytes(hash_t *h, uword value_bytes)
int test_hash_main(unformat_input_t *input)
static void indirect_pair_set(hash_pair_indirect_t *p, uword log2_alloc, uword len)
uword vec_key_equal(hash_t *h, uword key1, uword key2)
uword( hash_key_equal_function_t)(struct hash_header *, uword key1, uword key2)
static uword hash_header_bytes(void *v)
static void hash_set_flags(void *v, uword flags)
static uword hash_value_bytes(hash_t *h)
static hash_t * hash_header(void *v)
static uword hash_capacity(void *v)
void * hash_dup(void *old)
static uword hash_is_user(void *v, uword i)
static uword hash_pair_bytes(hash_t *h)
uword string_key_equal(hash_t *h, uword key1, uword key2)
void * hash_resize(void *old, uword new_size)
unformat_function_t unformat_hash_vec_string
static uword hash_pair_log2_bytes(hash_t *h)
hash_pair_indirect_t indirect
static void * hash_forward1(hash_t *h, void *v)
static void hash_set_pair_format(void *v, format_function_t *format_pair, void *format_pair_arg)
static uword hash32_rotate_left(u32 x, u32 i)
u8 * string_key_format_pair(u8 *s, va_list *args)
uword mem_key_equal(hash_t *h, uword key1, uword key2)
static uword indirect_pair_get_log2_bytes(hash_pair_indirect_t *p)
static uword hash_elts(void *v)
static void * hash_forward(hash_t *h, void *v, uword n)
vhost_vring_state_t state
hash_pair_t * hash_next(void *v, hash_next_t *hn)
uword( hash_key_sum_function_t)(struct hash_header *, uword key)
u8 * vec_key_format_pair(u8 *s, va_list *args)
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
struct hash_header hash_t
static uword max_log2(uword x)
static void * vec_header(void *v, uword header_bytes)
Find a user vector header.
uword string_key_sum(hash_t *h, uword key)
uword vec_key_sum(hash_t *h, uword key)
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".