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