Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 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 | /* |
| 16 | Copyright (c) 2001, 2002, 2003 Eliot Dresselhaus |
| 17 | |
| 18 | Permission is hereby granted, free of charge, to any person obtaining |
| 19 | a copy of this software and associated documentation files (the |
| 20 | "Software"), to deal in the Software without restriction, including |
| 21 | without limitation the rights to use, copy, modify, merge, publish, |
| 22 | distribute, sublicense, and/or sell copies of the Software, and to |
| 23 | permit persons to whom the Software is furnished to do so, subject to |
| 24 | the following conditions: |
| 25 | |
| 26 | The above copyright notice and this permission notice shall be |
| 27 | included in all copies or substantial portions of the Software. |
| 28 | |
| 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 30 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 31 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 32 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 33 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 34 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 35 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 36 | */ |
| 37 | |
| 38 | #ifndef included_clib_vec_bootstrap_h |
| 39 | #define included_clib_vec_bootstrap_h |
| 40 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 41 | /** \file |
Paul Vinciguerra | ec11b13 | 2018-09-24 05:25:00 -0700 | [diff] [blame] | 42 | Vector bootstrap header file |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 43 | */ |
| 44 | |
| 45 | /* Bootstrap include so that #include <vppinfra/mem.h> can include e.g. |
| 46 | <vppinfra/mheap.h> which depends on <vppinfra/vec.h>. */ |
| 47 | |
| 48 | /** \brief vector header structure |
| 49 | |
Paul Vinciguerra | ec11b13 | 2018-09-24 05:25:00 -0700 | [diff] [blame] | 50 | Bookkeeping header preceding vector elements in memory. |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 51 | User header information may preceed standard vec header. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 52 | If you change u32 len -> u64 len, single vectors can |
| 53 | exceed 2**32 elements. Clib heaps are vectors. */ |
| 54 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 55 | typedef struct |
| 56 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 57 | u32 len; /**< Number of elements in vector (NOT its allocated length). */ |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 58 | u8 numa_id; /**< NUMA id */ |
Damjan Marion | 1da361f | 2022-03-16 17:57:29 +0100 | [diff] [blame] | 59 | u8 hdr_size; /**< header size divided by VEC_HEADER_ROUND */ |
| 60 | u8 log2_align; /**< data alignment */ |
| 61 | u8 vpad[1]; /**< pad to 8 bytes */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | u8 vector_data[0]; /**< Vector data . */ |
| 63 | } vec_header_t; |
| 64 | |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 65 | #define VEC_NUMA_UNSPECIFIED (0xFF) |
| 66 | |
Damjan Marion | 1da361f | 2022-03-16 17:57:29 +0100 | [diff] [blame] | 67 | #define VEC_HEADER_ROUND 8 |
| 68 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | /** \brief Find the vector header |
| 70 | |
| 71 | Given the user's pointer to a vector, find the corresponding |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 72 | vector header |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 73 | |
| 74 | @param v pointer to a vector |
| 75 | @return pointer to the vector's vector_header_t |
| 76 | */ |
| 77 | #define _vec_find(v) ((vec_header_t *) (v) - 1) |
| 78 | |
| 79 | #define _vec_round_size(s) \ |
| 80 | (((s) + sizeof (uword) - 1) &~ (sizeof (uword) - 1)) |
| 81 | |
| 82 | always_inline uword |
| 83 | vec_header_bytes (uword header_bytes) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 84 | { |
Damjan Marion | 1da361f | 2022-03-16 17:57:29 +0100 | [diff] [blame] | 85 | return round_pow2 (header_bytes + sizeof (vec_header_t), VEC_HEADER_ROUND); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 86 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | |
Damjan Marion | 5c45d1c | 2022-03-17 15:32:56 +0100 | [diff] [blame] | 88 | always_inline uword |
| 89 | vec_get_header_size (void *v) |
| 90 | { |
| 91 | uword header_size = _vec_find (v)->hdr_size * VEC_HEADER_ROUND; |
Damjan Marion | 5c45d1c | 2022-03-17 15:32:56 +0100 | [diff] [blame] | 92 | return header_size; |
| 93 | } |
| 94 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | /** \brief Find a user vector header |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 96 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 97 | Finds the user header of a vector with unspecified alignment given |
| 98 | the user pointer to the vector. |
| 99 | */ |
| 100 | |
| 101 | always_inline void * |
Damjan Marion | a4a28f0 | 2022-03-17 15:46:25 +0100 | [diff] [blame] | 102 | vec_header (void *v) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 103 | { |
Damjan Marion | a4a28f0 | 2022-03-17 15:46:25 +0100 | [diff] [blame] | 104 | return v ? v - vec_get_header_size (v) : 0; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 105 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 106 | |
| 107 | /** \brief Find the end of user vector header |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 108 | |
| 109 | Finds the end of the user header of a vector with unspecified |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | alignment given the user pointer to the vector. |
| 111 | */ |
| 112 | |
| 113 | always_inline void * |
Damjan Marion | a4a28f0 | 2022-03-17 15:46:25 +0100 | [diff] [blame] | 114 | vec_header_end (void *v) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 115 | { |
Damjan Marion | a4a28f0 | 2022-03-17 15:46:25 +0100 | [diff] [blame] | 116 | return v + vec_get_header_size (v); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 117 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 118 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | /** \brief Number of elements in vector (lvalue-capable) |
| 120 | |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 121 | _vec_len (v) does not check for null, but can be used as an lvalue |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 122 | (e.g. _vec_len (v) = 99). |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | */ |
| 124 | |
| 125 | #define _vec_len(v) (_vec_find(v)->len) |
| 126 | |
| 127 | /** \brief Number of elements in vector (rvalue-only, NULL tolerant) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 128 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 129 | vec_len (v) checks for NULL, but cannot be used as an lvalue. |
| 130 | If in doubt, use vec_len... |
| 131 | */ |
| 132 | |
| 133 | #define vec_len(v) ((v) ? _vec_len(v) : 0) |
Dave Barach | e09ae01 | 2020-08-19 06:59:53 -0400 | [diff] [blame] | 134 | u32 vec_len_not_inline (void *v); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 135 | |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 136 | /** \brief Vector's NUMA id (lvalue-capable) |
| 137 | |
| 138 | _vec_numa(v) does not check for null, but can be used as an lvalue |
| 139 | (e.g. _vec_numa(v) = 1). |
| 140 | */ |
| 141 | |
| 142 | #define _vec_numa(v) (_vec_find(v)->numa_id) |
| 143 | |
| 144 | /** \brief Return vector's NUMA ID (rvalue-only, NULL tolerant) |
| 145 | vec_numa(v) checks for NULL, but cannot be used as an lvalue. |
| 146 | */ |
| 147 | #define vec_numa(v) ((v) ? _vec_numa(v) : 0) |
| 148 | |
| 149 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | /** \brief Number of data bytes in vector. */ |
| 151 | |
| 152 | #define vec_bytes(v) (vec_len (v) * sizeof (v[0])) |
| 153 | |
Florin Coras | 41a1bbf | 2022-03-11 10:58:55 -0800 | [diff] [blame] | 154 | /** |
| 155 | * Return size of memory allocated for the vector |
| 156 | * |
| 157 | * @param v vector |
Florin Coras | 41a1bbf | 2022-03-11 10:58:55 -0800 | [diff] [blame] | 158 | * @return memory size allocated for the vector |
| 159 | */ |
Damjan Marion | 5c45d1c | 2022-03-17 15:32:56 +0100 | [diff] [blame] | 160 | |
| 161 | always_inline uword |
| 162 | vec_mem_size (void *v) |
| 163 | { |
| 164 | return v ? clib_mem_size (v - vec_get_header_size (v)) : 0; |
| 165 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | |
Florin Coras | 41a1bbf | 2022-03-11 10:58:55 -0800 | [diff] [blame] | 167 | /** |
| 168 | * Number of elements that can fit into generic vector |
| 169 | * |
| 170 | * @param v vector |
| 171 | * @param b extra header bytes |
| 172 | * @return number of elements that can fit into vector |
| 173 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 174 | |
Damjan Marion | 5c45d1c | 2022-03-17 15:32:56 +0100 | [diff] [blame] | 175 | always_inline uword |
| 176 | _vec_max_len (void *v, uword elt_size) |
| 177 | { |
| 178 | return v ? vec_mem_size (v) / elt_size : 0; |
| 179 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 180 | |
Damjan Marion | 5c45d1c | 2022-03-17 15:32:56 +0100 | [diff] [blame] | 181 | #define vec_max_len(v) _vec_max_len (v, sizeof ((v)[0])) |
| 182 | |
| 183 | always_inline void |
| 184 | _vec_set_len (void *v, uword len, uword elt_size) |
| 185 | { |
| 186 | ASSERT (v); |
| 187 | ASSERT (len <= vec_max_len (v)); |
| 188 | |
| 189 | CLIB_MEM_POISON_LEN (v, _vec_len (v) * elt_size, len * elt_size); |
| 190 | _vec_len (v) = len; |
| 191 | } |
| 192 | |
| 193 | #define vec_set_len(v, l) _vec_set_len ((void *) v, l, sizeof ((v)[0])) |
Benoît Ganne | 8a4bfda | 2019-07-22 14:21:46 +0200 | [diff] [blame] | 194 | |
| 195 | /** \brief Reset vector length to zero |
| 196 | NULL-pointer tolerant |
| 197 | */ |
Benoît Ganne | 8a4bfda | 2019-07-22 14:21:46 +0200 | [diff] [blame] | 198 | #define vec_reset_length(v) do { if (v) vec_set_len (v, 0); } while (0) |
| 199 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 200 | /** \brief End (last data address) of vector. */ |
| 201 | #define vec_end(v) ((v) + vec_len (v)) |
| 202 | |
| 203 | /** \brief True if given pointer is within given vector. */ |
| 204 | #define vec_is_member(v,e) ((e) >= (v) && (e) < vec_end (v)) |
| 205 | |
| 206 | /** \brief Get vector value at index i checking that i is in bounds. */ |
| 207 | #define vec_elt_at_index(v,i) \ |
| 208 | ({ \ |
| 209 | ASSERT ((i) < vec_len (v)); \ |
| 210 | (v) + (i); \ |
| 211 | }) |
| 212 | |
| 213 | /** \brief Get vector value at index i */ |
| 214 | #define vec_elt(v,i) (vec_elt_at_index(v,i))[0] |
| 215 | |
| 216 | /** \brief Vector iterator */ |
| 217 | #define vec_foreach(var,vec) for (var = (vec); var < vec_end (vec); var++) |
| 218 | |
| 219 | /** \brief Vector iterator (reverse) */ |
Neale Ranns | 9d33cfc | 2022-01-09 13:24:47 +0000 | [diff] [blame] | 220 | #define vec_foreach_backwards(var, vec) \ |
| 221 | if (vec) \ |
| 222 | for (var = vec_end (vec) - 1; var >= (vec); var--) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 223 | |
| 224 | /** \brief Iterate over vector indices. */ |
| 225 | #define vec_foreach_index(var,v) for ((var) = 0; (var) < vec_len (v); (var)++) |
| 226 | |
Neale Ranns | fc5dda3 | 2018-07-27 00:44:52 -0700 | [diff] [blame] | 227 | /** \brief Iterate over vector indices (reverse). */ |
Neale Ranns | 9d33cfc | 2022-01-09 13:24:47 +0000 | [diff] [blame] | 228 | #define vec_foreach_index_backwards(var, v) \ |
| 229 | if (v) \ |
| 230 | for ((var) = vec_len ((v)) - 1; (var) >= 0; (var)--) |
Neale Ranns | fc5dda3 | 2018-07-27 00:44:52 -0700 | [diff] [blame] | 231 | |
Dave Barach | a690fdb | 2020-01-21 12:34:55 -0500 | [diff] [blame] | 232 | /** \brief return the NUMA index for a vector */ |
| 233 | always_inline uword |
| 234 | vec_get_numa (void *v) |
| 235 | { |
| 236 | vec_header_t *vh; |
| 237 | if (v == 0) |
| 238 | return 0; |
| 239 | vh = _vec_find (v); |
| 240 | return vh->numa_id; |
| 241 | } |
| 242 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 243 | #endif /* included_clib_vec_bootstrap_h */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 244 | |
| 245 | /* |
| 246 | * fd.io coding-style-patch-verification: ON |
| 247 | * |
| 248 | * Local Variables: |
| 249 | * eval: (c-set-style "gnu") |
| 250 | * End: |
| 251 | */ |