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)) 349 #define hash_foreach_pair(p,v,body) \ 351 __label__ _hash_foreach_done; \ 352 hash_t * _h = hash_header (v); \ 354 hash_pair_t * _q, * _q_end; \ 355 uword _i, _i1, _id, _pair_increment; \ 359 _pair_increment = 1; \ 361 _pair_increment = 1 << _h->log2_pair_size; \ 362 while (_i < hash_capacity (v)) \ 364 _id = _h->is_user[_i / BITS (_h->is_user[0])]; \ 365 _i1 = _i + BITS (_h->is_user[0]); \ 371 _q_end = _q + _pair_increment; \ 375 hash_pair_indirect_t * _pi = _p; \ 377 if (_h->log2_pair_size > 0) \ 378 _q_end = hash_forward (_h, _q, indirect_pair_get_len (_pi)); \ 380 _q_end = vec_end (_q); \ 385 while (_q < _q_end) \ 387 uword _break_in_body = 1; \ 391 _break_in_body = 0; \ 393 if (_break_in_body) \ 394 goto _hash_foreach_done; \ 395 _q += _pair_increment; \ 398 _p = (hash_pair_t *)_p + _pair_increment; \ 401 } while (_i < _i1); \ 403 _hash_foreach_done: \ 418 #define hash_foreach(key_var,value_var,h,body) \ 421 hash_foreach_pair (_r, (h), { \ 422 (key_var) = (__typeof__ (key_var)) _r->key; \ 423 (value_var) = (__typeof__ (value_var)) _r->value[0]; \ 424 do { body; } while (0); \ 437 #define hash_foreach_mem(key_var,value_var,h,body) \ 440 hash_foreach_pair (_r, (h), { \ 441 (key_var) = (__typeof__ (key_var)) uword_to_pointer (_r->key, void *); \ 442 (value_var) = (__typeof__ (value_var)) _r->value[0]; \ 443 do { body; } while (0); \ 467 1) / sizeof (p->
key));
470 #define hash_create2(_elts,_user,_value_bytes, \ 471 _key_sum,_key_equal, \ 472 _format_pair,_format_pair_arg) \ 475 memset (&_h, 0, sizeof (_h)); \ 477 _h.key_sum = (hash_key_sum_function_t *) (_key_sum); \ 478 _h.key_equal = (_key_equal); \ 479 hash_set_value_bytes (&_h, (_value_bytes)); \ 480 _h.format_pair = (format_function_t *) (_format_pair); \ 481 _h.format_pair_arg = (_format_pair_arg); \ 482 _hash_create ((_elts), &_h); \ 489 #define hash_mix_step(a,b,c,s0,s1,s2) \ 491 (a) -= (b) + (c); (a) ^= (c) >> (s0); \ 492 (b) -= (c) + (a); (b) ^= (a) << (s1); \ 493 (c) -= (a) + (b); (c) ^= (b) >> (s2); \ 496 #define hash_mix32_step_1(a,b,c) hash_mix_step(a,b,c,13,8,13) 497 #define hash_mix32_step_2(a,b,c) hash_mix_step(a,b,c,12,16,5) 498 #define hash_mix32_step_3(a,b,c) hash_mix_step(a,b,c,3,10,15) 500 #define hash_mix64_step_1(a,b,c) hash_mix_step(a,b,c,43,9,8) 501 #define hash_mix64_step_2(a,b,c) hash_mix_step(a,b,c,38,23,5) 502 #define hash_mix64_step_3(a,b,c) hash_mix_step(a,b,c,35,49,11) 503 #define hash_mix64_step_4(a,b,c) hash_mix_step(a,b,c,12,18,22) 507 #define hash_mix64(a0,b0,c0) \ 509 hash_mix64_step_1 (a0, b0, c0); \ 510 hash_mix64_step_2 (a0, b0, c0); \ 511 hash_mix64_step_3 (a0, b0, c0); \ 512 hash_mix64_step_4 (a0, b0, c0); \ 515 #define hash_mix32(a0,b0,c0) \ 517 hash_mix32_step_1 (a0, b0, c0); \ 518 hash_mix32_step_2 (a0, b0, c0); \ 519 hash_mix32_step_3 (a0, b0, c0); \ 527 return (x << i) | (x >> (
BITS (i) -
i));
530 #define hash_v3_mix32(a,b,c) \ 532 (a) -= (c); (a) ^= hash32_rotate_left ((c), 4); (c) += (b); \ 533 (b) -= (a); (b) ^= hash32_rotate_left ((a), 6); (a) += (c); \ 534 (c) -= (b); (c) ^= hash32_rotate_left ((b), 8); (b) += (a); \ 535 (a) -= (c); (a) ^= hash32_rotate_left ((c),16); (c) += (b); \ 536 (b) -= (a); (b) ^= hash32_rotate_left ((a),19); (a) += (c); \ 537 (c) -= (b); (c) ^= hash32_rotate_left ((b), 4); (b) += (a); \ 540 #define hash_v3_finalize32(a,b,c) \ 542 (c) ^= (b); (c) -= hash32_rotate_left ((b), 14); \ 543 (a) ^= (c); (a) -= hash32_rotate_left ((c), 11); \ 544 (b) ^= (a); (b) -= hash32_rotate_left ((a), 25); \ 545 (c) ^= (b); (c) -= hash32_rotate_left ((b), 16); \ 546 (a) ^= (c); (a) -= hash32_rotate_left ((c), 4); \ 547 (b) ^= (a); (b) -= hash32_rotate_left ((a), 14); \ 548 (c) ^= (b); (c) -= hash32_rotate_left ((b), 24); \ 553 #define hash_v3_mix32_step1(a,b,c) \ 555 (a) -= (c); (a) ^= hash32_rotate_left ((c), 4); (c) += (b); \ 556 (b) -= (a); (b) ^= hash32_rotate_left ((a), 6); (a) += (c); \ 559 #define hash_v3_mix32_step2(a,b,c) \ 561 (c) -= (b); (c) ^= hash32_rotate_left ((b), 8); (b) += (a); \ 562 (a) -= (c); (a) ^= hash32_rotate_left ((c),16); (c) += (b); \ 565 #define hash_v3_mix32_step3(a,b,c) \ 567 (b) -= (a); (b) ^= hash32_rotate_left ((a),19); (a) += (c); \ 568 (c) -= (b); (c) ^= hash32_rotate_left ((b), 4); (b) += (a); \ 571 #define hash_v3_finalize32_step1(a,b,c) \ 573 (c) ^= (b); (c) -= hash32_rotate_left ((b), 14); \ 574 (a) ^= (c); (a) -= hash32_rotate_left ((c), 11); \ 577 #define hash_v3_finalize32_step2(a,b,c) \ 579 (b) ^= (a); (b) -= hash32_rotate_left ((a), 25); \ 580 (c) ^= (b); (c) -= hash32_rotate_left ((b), 16); \ 583 #define hash_v3_finalize32_step3(a,b,c) \ 585 (a) ^= (c); (a) -= hash32_rotate_left ((c), 4); \ 586 (b) ^= (a); (b) -= hash32_rotate_left ((a), 14); \ 587 (c) ^= (b); (c) -= hash32_rotate_left ((b), 24); \ 591 #define hash_v3_mix_step_1_u32x(a,b,c) \ 593 (a) -= (c); (a) ^= u32x_irotate_left ((c), 4); (c) += (b); \ 594 (b) -= (a); (b) ^= u32x_irotate_left ((a), 6); (a) += (c); \ 595 (c) -= (b); (c) ^= u32x_irotate_left ((b), 8); (b) += (a); \ 598 #define hash_v3_mix_step_2_u32x(a,b,c) \ 600 (a) -= (c); (a) ^= u32x_irotate_left ((c),16); (c) += (b); \ 601 (b) -= (a); (b) ^= u32x_irotate_left ((a),19); (a) += (c); \ 602 (c) -= (b); (c) ^= u32x_irotate_left ((b), 4); (b) += (a); \ 605 #define hash_v3_finalize_step_1_u32x(a,b,c) \ 607 (c) ^= (b); (c) -= u32x_irotate_left ((b), 14); \ 608 (a) ^= (c); (a) -= u32x_irotate_left ((c), 11); \ 609 (b) ^= (a); (b) -= u32x_irotate_left ((a), 25); \ 612 #define hash_v3_finalize_step_2_u32x(a,b,c) \ 614 (c) ^= (b); (c) -= u32x_irotate_left ((b), 16); \ 615 (a) ^= (c); (a) -= u32x_irotate_left ((c), 4); \ 616 (b) ^= (a); (b) -= u32x_irotate_left ((a), 14); \ 617 (c) ^= (b); (c) -= u32x_irotate_left ((b), 24); \ 620 #define hash_v3_mix_u32x(a,b,c) \ 622 hash_v3_mix_step_1_u32x(a,b,c); \ 623 hash_v3_mix_step_2_u32x(a,b,c); \ 626 #define hash_v3_finalize_u32x(a,b,c) \ 628 hash_v3_finalize_step_1_u32x(a,b,c); \ 629 hash_v3_finalize_step_2_u32x(a,b,c); \ 637 #define hash_create_mem(elts,key_bytes,value_bytes) \ 638 hash_create2((elts),(key_bytes),(value_bytes),mem_key_sum,mem_key_equal,0,0) 644 #define hash_create_vec(elts,key_bytes,value_bytes) \ 645 hash_create2((elts),(key_bytes),(value_bytes),\ 646 vec_key_sum,vec_key_equal,vec_key_format_pair,0) 652 #define hash_create_string(elts,value_bytes) \ 653 hash_create2((elts),0,(value_bytes), \ 654 (hash_key_sum_function_t *) KEY_FUNC_STRING, \ 655 (hash_key_equal_function_t *)KEY_FUNC_STRING, \ 658 #define hash_create(elts,value_bytes) \ 659 hash_create2((elts),0,(value_bytes), \ 660 (hash_key_sum_function_t *) KEY_FUNC_NONE, \ 661 (hash_key_equal_function_t *) KEY_FUNC_NONE, \ 664 #define hash_create_uword(elts,value_bytes) \ 665 hash_create2((elts),0,(value_bytes), \ 666 (hash_key_sum_function_t *) KEY_FUNC_POINTER_UWORD, \ 667 (hash_key_equal_function_t *) KEY_FUNC_POINTER_UWORD, \ 670 #define hash_create_u32(elts,value_bytes) \ 671 hash_create2((elts),0,(value_bytes), \ 672 (hash_key_sum_function_t *) KEY_FUNC_POINTER_U32, \ 673 (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".