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