38 #ifndef included_vec_h 39 #define included_vec_h 103 word length_increment,
119 #define _vec_resize_numa(V,L,DB,HB,A,S) \ 121 __typeof__ ((V)) _V; \ 122 _V = _vec_resize_inline((void *)V,L,DB,HB,clib_max((__alignof__((V)[0])),(A)),(S)); \ 126 #define _vec_resize(V,L,DB,HB,A) \ 127 _vec_resize_numa(V,L,DB,HB,A,VEC_NUMA_UNSPECIFIED) 130 _vec_resize_inline (
void *v,
131 word length_increment,
136 uword new_data_bytes, aligned_header_bytes;
141 new_data_bytes = data_bytes + aligned_header_bytes;
145 void *p = v - aligned_header_bytes;
160 vh->
len += length_increment;
173 data_align), numa_id);
187 _vec_resize_will_expand (
void *v,
188 word length_increment,
192 uword new_data_bytes, aligned_header_bytes;
196 new_data_bytes = data_bytes + aligned_header_bytes;
200 void *p = v - aligned_header_bytes;
235 #define _v(var) _vec_##var 250 #define vec_resize_has(V,N,H,A,S) \ 253 word _v(l) = vec_len (V); \ 254 V = _vec_resize_numa ((V), _v(n), \ 255 (_v(l) + _v(n)) * sizeof ((V)[0]), \ 270 #define vec_resize_ha(V,N,H,A) vec_resize_has(V,N,H,A,VEC_NUMA_UNSPECIFIED) 281 #define vec_resize(V,N) vec_resize_ha(V,N,0,0) 294 #define vec_resize_aligned(V,N,A) vec_resize_ha(V,N,0,A) 305 #define vec_alloc_ha(V,N,H,A) \ 307 uword _v(l) = vec_len (V); \ 308 vec_resize_ha (V, N, H, A); \ 309 _vec_len (V) = _v(l); \ 319 #define vec_alloc(V,N) vec_alloc_ha(V,N,0,0) 328 #define vec_alloc_aligned(V,N,A) vec_alloc_ha(V,N,0,A) 337 #define vec_new_ha(T,N,H,A) \ 340 (T *)_vec_resize ((T *) 0, _v(n), _v(n) * sizeof (T), (H), (A)); \ 350 #define vec_new(T,N) vec_new_ha(T,N,0,0) 359 #define vec_new_aligned(T,N,A) vec_new_ha(T,N,0,A) 367 #define vec_free_h(V,H) \ 371 clib_mem_free (vec_header ((V), (H))); \ 380 #define vec_free(V) vec_free_h(V,0) 388 #define vec_free_header(h) clib_mem_free (h) 400 #define vec_dup_ha_numa(V,H,A,S) \ 402 __typeof__ ((V)[0]) * _v(v) = 0; \ 403 uword _v(l) = vec_len (V); \ 406 vec_resize_has (_v(v), _v(l), (H), (A), (S)); \ 407 clib_memcpy_fast (_v(v), (V), _v(l) * sizeof ((V)[0]));\ 420 #define vec_dup_ha(V,H,A) \ 421 vec_dup_ha_numa(V,H,A,VEC_NUMA_UNSPECIFIED) 429 #define vec_dup(V) vec_dup_ha(V,0,0) 438 #define vec_dup_aligned(V,A) vec_dup_ha(V,0,A) 446 #define vec_copy(DST,SRC) clib_memcpy_fast (DST, SRC, vec_len (DST) * \ 455 #define vec_clone(NEW_V,OLD_V) \ 458 (NEW_V) = _vec_resize ((NEW_V), vec_len (OLD_V), \ 459 vec_len (OLD_V) * sizeof ((NEW_V)[0]), (0), (0)); \ 472 #define vec_validate_han(V,I,H,A,N) \ 475 STATIC_ASSERT(A==0 || ((A % sizeof(V[0]))==0) \ 476 || ((sizeof(V[0]) % A) == 0), \ 477 "vector validate aligned on incorrectly sized object"); \ 479 word _v(l) = vec_len (V); \ 480 if (_v(i) >= _v(l)) \ 483 if (PREDICT_FALSE(N != VEC_NUMA_UNSPECIFIED)) \ 485 oldheap = clib_mem_get_per_cpu_heap(); \ 486 clib_mem_set_per_cpu_heap (clib_mem_get_per_numa_heap(N)); \ 489 vec_resize_ha ((V), 1 + (_v(i) - _v(l)), (H), (A)); \ 492 clib_memset ((V) + _v(l), 0, \ 493 (1 + (_v(i) - _v(l))) * sizeof ((V)[0])); \ 495 if (PREDICT_FALSE (N != VEC_NUMA_UNSPECIFIED)) \ 496 clib_mem_set_per_cpu_heap (oldheap); \ 500 #define vec_validate_ha(V,I,H,A) vec_validate_han(V,I,H,A,VEC_NUMA_UNSPECIFIED) 509 #define vec_validate(V,I) vec_validate_ha(V,I,0,0) 520 #define vec_validate_aligned(V,I,A) vec_validate_ha(V,I,0,A) 532 #define vec_validate_init_empty_ha(V,I,INIT,H,A) \ 535 word _v(l) = vec_len (V); \ 536 if (_v(i) >= _v(l)) \ 538 vec_resize_ha ((V), 1 + (_v(i) - _v(l)), (H), (A)); \ 539 while (_v(l) <= _v(i)) \ 541 (V)[_v(l)] = (INIT); \ 556 #define vec_validate_init_empty(V,I,INIT) \ 557 vec_validate_init_empty_ha(V,I,INIT,0,0) 568 #define vec_validate_init_empty_aligned(V,I,INIT,A) \ 569 vec_validate_init_empty_ha(V,I,INIT,0,A) 579 #define vec_add1_ha(V,E,H,A) \ 581 word _v(l) = vec_len (V); \ 582 V = _vec_resize ((V), 1, (_v(l) + 1) * sizeof ((V)[0]), (H), (A)); \ 592 #define vec_add1(V,E) vec_add1_ha(V,E,0,0) 601 #define vec_add1_aligned(V,E,A) vec_add1_ha(V,E,0,A) 613 #define vec_add2_ha(V,P,N,H,A) \ 616 word _v(l) = vec_len (V); \ 617 V = _vec_resize ((V), _v(n), (_v(l) + _v(n)) * sizeof ((V)[0]), (H), (A)); \ 630 #define vec_add2(V,P,N) vec_add2_ha(V,P,N,0,0) 642 #define vec_add2_aligned(V,P,N,A) vec_add2_ha(V,P,N,0,A) 653 #define vec_add_ha(V,E,N,H,A) \ 656 word _v(l) = vec_len (V); \ 657 V = _vec_resize ((V), _v(n), (_v(l) + _v(n)) * sizeof ((V)[0]), (H), (A)); \ 658 clib_memcpy_fast ((V) + _v(l), (E), _v(n) * sizeof ((V)[0])); \ 668 #define vec_add(V,E,N) vec_add_ha(V,E,N,0,0) 678 #define vec_add_aligned(V,E,N,A) vec_add_ha(V,E,N,0,A) 687 uword _v(l) = vec_len (V); \ 688 ASSERT (_v(l) > 0); \ 690 _vec_len (V) = _v (l); \ 701 #define vec_pop2(V,E) \ 703 uword _v(l) = vec_len (V); \ 704 if (_v(l) > 0) (E) = vec_pop (V); \ 719 #define vec_insert_init_empty_ha(V,N,M,INIT,H,A) \ 721 word _v(l) = vec_len (V); \ 724 V = _vec_resize ((V), \ 726 (_v(l) + _v(n))*sizeof((V)[0]), \ 728 ASSERT (_v(m) <= _v(l)); \ 729 memmove ((V) + _v(m) + _v(n), \ 731 (_v(l) - _v(m)) * sizeof ((V)[0])); \ 732 clib_memset ((V) + _v(m), INIT, _v(n) * sizeof ((V)[0])); \ 745 #define vec_insert_ha(V,N,M,H,A) vec_insert_init_empty_ha(V,N,M,0,H,A) 755 #define vec_insert(V,N,M) vec_insert_ha(V,N,M,0,0) 766 #define vec_insert_aligned(V,N,M,A) vec_insert_ha(V,N,M,0,A) 778 #define vec_insert_init_empty(V,N,M,INIT) \ 779 vec_insert_init_empty_ha(V,N,M,INIT,0,0) 792 #define vec_insert_init_empty_aligned(V,N,M,INIT,A) \ 793 vec_insert_init_empty_ha(V,N,M,INIT,0,A) 807 #define vec_insert_elts_ha(V,E,N,M,H,A) \ 809 word _v(l) = vec_len (V); \ 812 V = _vec_resize ((V), \ 814 (_v(l) + _v(n))*sizeof((V)[0]), \ 816 ASSERT (_v(m) <= _v(l)); \ 817 memmove ((V) + _v(m) + _v(n), \ 819 (_v(l) - _v(m)) * sizeof ((V)[0])); \ 820 clib_memcpy_fast ((V) + _v(m), (E), \ 821 _v(n) * sizeof ((V)[0])); \ 833 #define vec_insert_elts(V,E,N,M) vec_insert_elts_ha(V,E,N,M,0,0) 845 #define vec_insert_elts_aligned(V,E,N,M,A) vec_insert_elts_ha(V,E,N,M,0,A) 854 #define vec_delete(V,N,M) \ 856 word _v(l) = vec_len (V); \ 860 if (_v(l) - _v(n) - _v(m) > 0) \ 861 memmove ((V) + _v(m), (V) + _v(m) + _v(n), \ 862 (_v(l) - _v(n) - _v(m)) * sizeof ((V)[0])); \ 865 clib_memset ((V) + _v(l) - _v(n), 0, _v(n) * sizeof ((V)[0])); \ 866 _vec_len (V) -= _v(n); \ 867 CLIB_MEM_POISON(vec_end(V), _v(n) * sizeof ((V)[0])); \ 875 #define vec_del1(v,i) \ 877 uword _vec_del_l = _vec_len (v) - 1; \ 878 uword _vec_del_i = (i); \ 879 if (_vec_del_i < _vec_del_l) \ 880 (v)[_vec_del_i] = (v)[_vec_del_l]; \ 881 _vec_len (v) = _vec_del_l; \ 882 CLIB_MEM_POISON(vec_end(v), sizeof ((v)[0])); \ 890 #define vec_append(v1,v2) \ 892 uword _v(l1) = vec_len (v1); \ 893 uword _v(l2) = vec_len (v2); \ 895 v1 = _vec_resize ((v1), _v(l2), \ 896 (_v(l1) + _v(l2)) * sizeof ((v1)[0]), 0, 0); \ 897 clib_memcpy_fast ((v1) + _v(l1), (v2), _v(l2) * sizeof ((v2)[0])); \ 906 #define vec_append_aligned(v1,v2,align) \ 908 uword _v(l1) = vec_len (v1); \ 909 uword _v(l2) = vec_len (v2); \ 911 v1 = _vec_resize ((v1), _v(l2), \ 912 (_v(l1) + _v(l2)) * sizeof ((v1)[0]), 0, align); \ 913 clib_memcpy_fast ((v1) + _v(l1), (v2), _v(l2) * sizeof ((v2)[0])); \ 921 #define vec_prepend(v1,v2) \ 923 uword _v(l1) = vec_len (v1); \ 924 uword _v(l2) = vec_len (v2); \ 926 v1 = _vec_resize ((v1), _v(l2), \ 927 (_v(l1) + _v(l2)) * sizeof ((v1)[0]), 0, 0); \ 928 memmove ((v1) + _v(l2), (v1), _v(l1) * sizeof ((v1)[0])); \ 929 clib_memcpy_fast ((v1), (v2), _v(l2) * sizeof ((v2)[0])); \ 938 #define vec_prepend_aligned(v1,v2,align) \ 940 uword _v(l1) = vec_len (v1); \ 941 uword _v(l2) = vec_len (v2); \ 943 v1 = _vec_resize ((v1), _v(l2), \ 944 (_v(l1) + _v(l2)) * sizeof ((v1)[0]), 0, align); \ 945 memmove ((v1) + _v(l2), (v1), _v(l1) * sizeof ((v1)[0])); \ 946 clib_memcpy_fast ((v1), (v2), _v(l2) * sizeof ((v2)[0])); \ 953 #define vec_zero(var) \ 956 clib_memset ((var), 0, vec_len (var) * sizeof ((var)[0])); \ 963 #define vec_set(v,val) \ 966 __typeof__ ((v)[0]) _val = (val); \ 967 for (_v(i) = 0; _v(i) < vec_len (v); _v(i)++) \ 981 #define vec_is_equal(v1,v2) \ 982 (vec_len (v1) == vec_len (v2) && ! memcmp ((v1), (v2), vec_len (v1) * sizeof ((v1)[0]))) 991 #define vec_cmp(v1,v2) \ 993 word _v(i), _v(cmp), _v(l); \ 994 _v(l) = clib_min (vec_len (v1), vec_len (v2)); \ 996 for (_v(i) = 0; _v(i) < _v(l); _v(i)++) { \ 997 _v(cmp) = (v1)[_v(i)] - (v2)[_v(i)]; \ 1001 if (_v(cmp) == 0 && _v(l) > 0) \ 1002 _v(cmp) = vec_len(v1) - vec_len(v2); \ 1003 (_v(cmp) < 0 ? -1 : (_v(cmp) > 0 ? +1 : 0)); \ 1012 #define vec_search(v,E) \ 1015 while (_v(i) < vec_len(v)) \ 1017 if ((v)[_v(i)] == E) \ 1021 if (_v(i) == vec_len(v)) \ 1033 #define vec_search_with_function(v,E,fn) \ 1036 while (_v(i) < vec_len(v)) \ 1038 if (0 != fn(&(v)[_v(i)], (E))) \ 1042 if (_v(i) == vec_len(v)) \ 1055 #define vec_sort_with_function(vec,f) \ 1057 if (vec_len (vec) > 1) \ 1058 qsort (vec, vec_len (vec), sizeof (vec[0]), (void *) (f)); \ 1067 #define vec_validate_init_c_string(V, S, L) \ 1069 vec_reset_length (V); \ 1070 vec_validate ((V), (L)); \ 1072 clib_memcpy_fast ((V), (S), (L)); \ 1082 #define vec_c_string_is_terminated(V) \ 1083 (((V) != 0) && (vec_len (V) != 0) && ((V)[vec_len ((V)) - 1] == 0)) 1090 #define vec_terminate_c_string(V) \ 1092 u32 vl = vec_len ((V)); \ 1093 if (!vec_c_string_is_terminated(V)) \ 1095 vec_validate ((V), vl); \ uword clib_mem_is_vec_h(void *v, uword header_bytes)
Predicate function, says whether the supplied vector is a clib heap object (general version)...
#define CLIB_MEM_UNPOISON(a, s)
Optimized string handling code, including c11-compliant "safe C library" variants.
void * vec_resize_allocate_memory(void *v, word length_increment, uword data_bytes, uword header_bytes, uword data_align, uword numa_id)
Low-level resize allocation function, usually not called directly.
#define VEC_NUMA_UNSPECIFIED
void vec_free_not_inline(void *v)
static uword vec_header_bytes(uword header_bytes)
static void * clib_mem_get_per_cpu_heap(void)
static uword clib_mem_size(void *p)
static uword clib_mem_is_heap_object(void *p)
static void * clib_mem_get_per_numa_heap(u32 numa_id)
static void * clib_mem_set_per_cpu_heap(u8 *new_heap)
static uword clib_mem_is_vec(void *v)
Predicate function, says whether the supplied vector is a clib heap object.
Vector bootstrap header file.