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