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