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_h |
| 39 | #define included_clib_h |
| 40 | |
Damjan Marion | 5f21e1b | 2018-08-01 14:38:36 +0200 | [diff] [blame] | 41 | #include <vppinfra/config.h> |
| 42 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 43 | #ifdef __x86_64__ |
| 44 | #include <x86intrin.h> |
| 45 | #endif |
| 46 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 47 | /* Standalone means to not assume we are running on a Unix box. */ |
| 48 | #if ! defined (CLIB_STANDALONE) && ! defined (CLIB_LINUX_KERNEL) |
| 49 | #define CLIB_UNIX |
| 50 | #endif |
| 51 | |
| 52 | #include <vppinfra/types.h> |
Sirshak Das | 2f6d7bb | 2018-10-03 22:53:51 +0000 | [diff] [blame] | 53 | #include <vppinfra/atomics.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 54 | |
| 55 | /* Global DEBUG flag. Setting this to 1 or 0 turns off |
| 56 | ASSERT (see vppinfra/error.h) & other debugging code. */ |
| 57 | #ifndef CLIB_DEBUG |
| 58 | #define CLIB_DEBUG 0 |
| 59 | #endif |
| 60 | |
| 61 | #ifndef NULL |
| 62 | #define NULL ((void *) 0) |
| 63 | #endif |
| 64 | |
| 65 | #define BITS(x) (8*sizeof(x)) |
| 66 | #define ARRAY_LEN(x) (sizeof (x)/sizeof (x[0])) |
| 67 | |
| 68 | #define _STRUCT_FIELD(t,f) (((t *) 0)->f) |
| 69 | #define STRUCT_OFFSET_OF(t,f) ((uword) & _STRUCT_FIELD (t, f)) |
| 70 | #define STRUCT_BIT_OFFSET_OF(t,f) (BITS(u8) * (uword) & _STRUCT_FIELD (t, f)) |
| 71 | #define STRUCT_SIZE_OF(t,f) (sizeof (_STRUCT_FIELD (t, f))) |
| 72 | #define STRUCT_BITS_OF(t,f) (BITS (_STRUCT_FIELD (t, f))) |
| 73 | #define STRUCT_ARRAY_LEN(t,f) ARRAY_LEN (_STRUCT_FIELD (t, f)) |
Dave Barach | dbf19ca | 2016-03-15 10:21:54 +0100 | [diff] [blame] | 74 | #define STRUCT_MARK(mark) u8 mark[0] |
| 75 | #define STRUCT_MARK_PTR(v, f) &(v)->f |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 76 | |
| 77 | /* Stride in bytes between struct array elements. */ |
| 78 | #define STRUCT_STRIDE_OF(t,f) \ |
| 79 | ( ((uword) & (((t *) 0)[1].f)) \ |
| 80 | - ((uword) & (((t *) 0)[0].f))) |
| 81 | |
| 82 | #define STRUCT_OFFSET_OF_VAR(v,f) ((uword) (&(v)->f) - (uword) (v)) |
| 83 | |
| 84 | /* Used to pack structure elements. */ |
| 85 | #define CLIB_PACKED(x) x __attribute__ ((packed)) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 86 | #define CLIB_UNUSED(x) x __attribute__ ((unused)) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | |
David Johnson | d9818dd | 2018-12-14 14:53:41 -0500 | [diff] [blame] | 88 | /* similar to CLIB_CACHE_LINE_ALIGN_MARK() but with arbitrary alignment */ |
| 89 | #define CLIB_ALIGN_MARK(name, alignment) u8 name[0] __attribute__((aligned(alignment))) |
| 90 | |
Dave Barach | cabbee7 | 2017-11-18 08:43:06 -0500 | [diff] [blame] | 91 | /* Make a string from the macro's argument */ |
| 92 | #define CLIB_STRING_MACRO(x) #x |
| 93 | |
Damjan Marion | 04f3db3 | 2017-11-10 21:55:45 +0100 | [diff] [blame] | 94 | #define __clib_unused __attribute__ ((unused)) |
| 95 | #define __clib_weak __attribute__ ((weak)) |
| 96 | #define __clib_packed __attribute__ ((packed)) |
| 97 | #define __clib_constructor __attribute__ ((constructor)) |
Damjan Marion | a1e03d4 | 2020-05-06 23:38:58 +0200 | [diff] [blame] | 98 | #define __clib_noinline __attribute__ ((noinline)) |
| 99 | #define __clib_aligned(x) __attribute__ ((aligned(x))) |
| 100 | #define __clib_section(s) __attribute__ ((section(s))) |
Damjan Marion | a218512 | 2020-04-08 00:52:53 +0200 | [diff] [blame^] | 101 | #define __clib_warn_unused_result __attribute__ ((warn_unused_result)) |
Damjan Marion | 04f3db3 | 2017-11-10 21:55:45 +0100 | [diff] [blame] | 102 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 103 | #define never_inline __attribute__ ((__noinline__)) |
| 104 | |
| 105 | #if CLIB_DEBUG > 0 |
| 106 | #define always_inline static inline |
| 107 | #define static_always_inline static inline |
| 108 | #else |
| 109 | #define always_inline static inline __attribute__ ((__always_inline__)) |
| 110 | #define static_always_inline static inline __attribute__ ((__always_inline__)) |
| 111 | #endif |
| 112 | |
| 113 | |
| 114 | /* Reserved (unused) structure element with address offset between |
| 115 | from and to. */ |
| 116 | #define CLIB_PAD_FROM_TO(from,to) u8 pad_##from[(to) - (from)] |
| 117 | |
| 118 | /* Hints to compiler about hot/cold code. */ |
| 119 | #define PREDICT_FALSE(x) __builtin_expect((x),0) |
| 120 | #define PREDICT_TRUE(x) __builtin_expect((x),1) |
| 121 | |
BenoƮt Ganne | dc812d9 | 2019-12-16 10:42:25 +0100 | [diff] [blame] | 122 | /* |
| 123 | * Compiler barrier |
| 124 | * prevent compiler to reorder memory access accross this boundary |
| 125 | * prevent compiler to cache values in register (force reload) |
| 126 | * Not to be confused with CPU memory barrier below |
| 127 | */ |
| 128 | #define CLIB_COMPILER_BARRIER() asm volatile ("":::"memory") |
| 129 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 130 | /* Full memory barrier (read and write). */ |
| 131 | #define CLIB_MEMORY_BARRIER() __sync_synchronize () |
| 132 | |
Damjan Marion | eaabe07 | 2017-03-22 10:18:13 +0100 | [diff] [blame] | 133 | #if __x86_64__ |
| 134 | #define CLIB_MEMORY_STORE_BARRIER() __builtin_ia32_sfence () |
| 135 | #else |
| 136 | #define CLIB_MEMORY_STORE_BARRIER() __sync_synchronize () |
| 137 | #endif |
| 138 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | /* Arranges for function to be called before main. */ |
| 140 | #define INIT_FUNCTION(decl) \ |
| 141 | decl __attribute ((constructor)); \ |
| 142 | decl |
| 143 | |
| 144 | /* Arranges for function to be called before exit. */ |
| 145 | #define EXIT_FUNCTION(decl) \ |
| 146 | decl __attribute ((destructor)); \ |
| 147 | decl |
| 148 | |
| 149 | /* Use __builtin_clz if available. */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | #if uword_bits == 64 |
Damjan Marion | 1105600 | 2018-05-10 13:40:44 +0200 | [diff] [blame] | 151 | #define count_leading_zeros(x) __builtin_clzll (x) |
| 152 | #define count_trailing_zeros(x) __builtin_ctzll (x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 153 | #else |
Damjan Marion | 1105600 | 2018-05-10 13:40:44 +0200 | [diff] [blame] | 154 | #define count_leading_zeros(x) __builtin_clzl (x) |
| 155 | #define count_trailing_zeros(x) __builtin_ctzl (x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 156 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 157 | |
| 158 | #if defined (count_leading_zeros) |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 159 | always_inline uword |
| 160 | min_log2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 161 | { |
| 162 | uword n; |
Damjan Marion | 1105600 | 2018-05-10 13:40:44 +0200 | [diff] [blame] | 163 | n = count_leading_zeros (x); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 164 | return BITS (uword) - n - 1; |
| 165 | } |
| 166 | #else |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 167 | always_inline uword |
| 168 | min_log2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 169 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 170 | uword a = x, b = BITS (uword) / 2, c = 0, r = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 171 | |
| 172 | /* Reduce x to 4 bit result. */ |
| 173 | #define _ \ |
| 174 | { \ |
| 175 | c = a >> b; \ |
| 176 | if (c) a = c; \ |
| 177 | if (c) r += b; \ |
| 178 | b /= 2; \ |
| 179 | } |
| 180 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 181 | if (BITS (uword) > 32) |
| 182 | _; |
| 183 | _; |
| 184 | _; |
| 185 | _; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | #undef _ |
| 187 | |
| 188 | /* Do table lookup on 4 bit partial. */ |
| 189 | if (BITS (uword) > 32) |
| 190 | { |
| 191 | const u64 table = 0x3333333322221104LL; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 192 | uword t = (table >> (4 * a)) & 0xf; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | r = t < 4 ? r + t : ~0; |
| 194 | } |
| 195 | else |
| 196 | { |
| 197 | const u32 table = 0x22221104; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 198 | uword t = (a & 8) ? 3 : ((table >> (4 * a)) & 0xf); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 199 | r = t < 4 ? r + t : ~0; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 200 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 201 | |
| 202 | return r; |
| 203 | } |
| 204 | #endif |
| 205 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 206 | always_inline uword |
| 207 | max_log2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 208 | { |
| 209 | uword l = min_log2 (x); |
| 210 | if (x > ((uword) 1 << l)) |
| 211 | l++; |
| 212 | return l; |
| 213 | } |
| 214 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 215 | always_inline u64 |
| 216 | min_log2_u64 (u64 x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 217 | { |
| 218 | if (BITS (uword) == 64) |
| 219 | return min_log2 (x); |
| 220 | else |
| 221 | { |
| 222 | uword l, y; |
| 223 | y = x; |
| 224 | l = 0; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 225 | if (y == 0) |
| 226 | { |
| 227 | l += 32; |
| 228 | x >>= 32; |
| 229 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 230 | l += min_log2 (x); |
| 231 | return l; |
| 232 | } |
| 233 | } |
| 234 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 235 | always_inline uword |
| 236 | pow2_mask (uword x) |
| 237 | { |
| 238 | return ((uword) 1 << x) - (uword) 1; |
| 239 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 240 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 241 | always_inline uword |
| 242 | max_pow2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 243 | { |
| 244 | word y = (word) 1 << min_log2 (x); |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 245 | if (x > y) |
| 246 | y *= 2; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 247 | return y; |
| 248 | } |
| 249 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 250 | always_inline uword |
| 251 | is_pow2 (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 253 | return 0 == (x & (x - 1)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 254 | } |
| 255 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 256 | always_inline uword |
| 257 | round_pow2 (uword x, uword pow2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 258 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 259 | return (x + pow2 - 1) & ~(pow2 - 1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 262 | always_inline u64 |
| 263 | round_pow2_u64 (u64 x, u64 pow2) |
| 264 | { |
| 265 | return (x + pow2 - 1) & ~(pow2 - 1); |
| 266 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 267 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 268 | always_inline uword |
| 269 | first_set (uword x) |
| 270 | { |
| 271 | return x & -x; |
| 272 | } |
| 273 | |
| 274 | always_inline uword |
| 275 | log2_first_set (uword x) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 276 | { |
| 277 | uword result; |
| 278 | #ifdef count_trailing_zeros |
Damjan Marion | 1105600 | 2018-05-10 13:40:44 +0200 | [diff] [blame] | 279 | result = count_trailing_zeros (x); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 280 | #else |
| 281 | result = min_log2 (first_set (x)); |
| 282 | #endif |
| 283 | return result; |
| 284 | } |
| 285 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 286 | always_inline f64 |
| 287 | flt_round_down (f64 x) |
| 288 | { |
| 289 | return (int) x; |
| 290 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 291 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 292 | always_inline word |
| 293 | flt_round_nearest (f64 x) |
| 294 | { |
| 295 | return (word) (x + .5); |
| 296 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 297 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 298 | always_inline f64 |
| 299 | flt_round_to_multiple (f64 x, f64 f) |
| 300 | { |
| 301 | return f * flt_round_nearest (x / f); |
| 302 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 303 | |
Damjan Marion | 68e5fd5 | 2020-04-23 13:41:47 +0200 | [diff] [blame] | 304 | always_inline uword |
| 305 | extract_bits (uword x, int start, int count) |
| 306 | { |
| 307 | #ifdef __BMI__ |
| 308 | return _bextr_u64 (x, start, count); |
| 309 | #endif |
| 310 | return (x >> start) & pow2_mask (count); |
| 311 | } |
| 312 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 313 | #define clib_max(x,y) \ |
| 314 | ({ \ |
| 315 | __typeof__ (x) _x = (x); \ |
| 316 | __typeof__ (y) _y = (y); \ |
| 317 | _x > _y ? _x : _y; \ |
| 318 | }) |
| 319 | |
| 320 | #define clib_min(x,y) \ |
| 321 | ({ \ |
| 322 | __typeof__ (x) _x = (x); \ |
| 323 | __typeof__ (y) _y = (y); \ |
| 324 | _x < _y ? _x : _y; \ |
| 325 | }) |
| 326 | |
| 327 | #define clib_abs(x) \ |
| 328 | ({ \ |
| 329 | __typeof__ (x) _x = (x); \ |
| 330 | _x < 0 ? -_x : _x; \ |
| 331 | }) |
| 332 | |
| 333 | /* Standard standalone-only function declarations. */ |
| 334 | #ifndef CLIB_UNIX |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 335 | void clib_standalone_init (void *memory, uword memory_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 336 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 337 | void qsort (void *base, uword n, uword size, |
| 338 | int (*)(const void *, const void *)); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 339 | #endif |
| 340 | |
| 341 | /* Stack backtrace. */ |
| 342 | uword |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 343 | clib_backtrace (uword * callers, uword max_callers, uword n_frames_to_skip); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 344 | |
| 345 | #endif /* included_clib_h */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 346 | |
| 347 | /* |
| 348 | * fd.io coding-style-patch-verification: ON |
| 349 | * |
| 350 | * Local Variables: |
| 351 | * eval: (c-set-style "gnu") |
| 352 | * End: |
| 353 | */ |