blob: 746cb511bbe79ff932c9cab443721ea484680671 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 Ganne5e60c172020-07-07 16:32:22 +020041#include <stddef.h>
Damjan Marionedca8c62021-04-28 17:30:51 +020042
43#if __has_include(<vppinfra/config.h>)
Damjan Marion5f21e1b2018-08-01 14:38:36 +020044#include <vppinfra/config.h>
Damjan Marionedca8c62021-04-28 17:30:51 +020045#endif
Damjan Marion5f21e1b2018-08-01 14:38:36 +020046
Damjan Marion68e5fd52020-04-23 13:41:47 +020047#ifdef __x86_64__
48#include <x86intrin.h>
49#endif
50
Ed Warnickecb9cada2015-12-08 15:45:58 -070051/* 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 Das2f6d7bb2018-10-03 22:53:51 +000057#include <vppinfra/atomics.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
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 Ganne5e60c172020-07-07 16:32:22 +020073#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 Warnickecb9cada2015-12-08 15:45:58 -070075#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 Barachdbf19ca2016-03-15 10:21:54 +010078#define STRUCT_MARK(mark) u8 mark[0]
79#define STRUCT_MARK_PTR(v, f) &(v)->f
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
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 Barachc3799992016-08-15 11:12:27 -040090#define CLIB_UNUSED(x) x __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
David Johnsond9818dd2018-12-14 14:53:41 -050092/* 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 Barachcabbee72017-11-18 08:43:06 -050095/* Make a string from the macro's argument */
96#define CLIB_STRING_MACRO(x) #x
97
Damjan Mariond5045e62022-04-06 21:16:37 +020098#define CLIB_STRING_ARRAY(...) \
99 (char *[]) { __VA_ARGS__, 0 }
100
Damjan Marion79934e82022-04-05 12:40:31 +0200101/* sanitizers */
102#ifdef __has_feature
103#if __has_feature(address_sanitizer)
104#define CLIB_SANITIZE_ADDR 1
105#endif
106#elif defined(__SANITIZE_ADDRESS__)
107#define CLIB_SANITIZE_ADDR 1
108#endif
109
Damjan Marion04f3db32017-11-10 21:55:45 +0100110#define __clib_unused __attribute__ ((unused))
111#define __clib_weak __attribute__ ((weak))
112#define __clib_packed __attribute__ ((packed))
Damjan Marion24738582022-03-31 15:12:20 +0200113#define __clib_flatten __attribute__ ((flatten))
Damjan Marion04f3db32017-11-10 21:55:45 +0100114#define __clib_constructor __attribute__ ((constructor))
Damjan Mariona1e03d42020-05-06 23:38:58 +0200115#define __clib_noinline __attribute__ ((noinline))
Damjan Marion3c9dee22021-12-16 12:23:23 +0000116#ifdef __clang__
117#define __clib_noclone
118#else
Damjan Marion88019c42021-12-15 10:17:04 +0000119#define __clib_noclone __attribute__ ((noclone))
Damjan Marion3c9dee22021-12-16 12:23:23 +0000120#endif
Damjan Mariona1e03d42020-05-06 23:38:58 +0200121#define __clib_aligned(x) __attribute__ ((aligned(x)))
122#define __clib_section(s) __attribute__ ((section(s)))
Damjan Mariona2185122020-04-08 00:52:53 +0200123#define __clib_warn_unused_result __attribute__ ((warn_unused_result))
Damjan Mariondae1c7e2020-10-17 13:32:25 +0200124#define __clib_export __attribute__ ((visibility("default")))
Damjan Marion317cace2022-03-09 14:47:05 +0100125#ifdef __clang__
126#define __clib_no_tail_calls __attribute__ ((disable_tail_calls))
127#else
128#define __clib_no_tail_calls \
129 __attribute__ ((optimize ("no-optimize-sibling-calls")))
130#endif
Damjan Marion04f3db32017-11-10 21:55:45 +0100131
Damjan Marion79934e82022-04-05 12:40:31 +0200132#ifdef CLIB_SANITIZE_ADDR
133#define __clib_nosanitize_addr __attribute__ ((no_sanitize_address))
134#else
135#define __clib_nosanitize_addr
136#endif
137
Ed Warnickecb9cada2015-12-08 15:45:58 -0700138#define never_inline __attribute__ ((__noinline__))
139
140#if CLIB_DEBUG > 0
141#define always_inline static inline
142#define static_always_inline static inline
143#else
144#define always_inline static inline __attribute__ ((__always_inline__))
145#define static_always_inline static inline __attribute__ ((__always_inline__))
146#endif
147
148
149/* Reserved (unused) structure element with address offset between
150 from and to. */
151#define CLIB_PAD_FROM_TO(from,to) u8 pad_##from[(to) - (from)]
152
153/* Hints to compiler about hot/cold code. */
154#define PREDICT_FALSE(x) __builtin_expect((x),0)
155#define PREDICT_TRUE(x) __builtin_expect((x),1)
Damjan Marionb14c49d2021-04-25 10:55:53 +0200156#define COMPILE_TIME_CONST(x) __builtin_constant_p (x)
Damjan Marion31ee6f52021-10-27 18:19:43 +0200157#define CLIB_ASSUME(x) \
158 do \
159 { \
160 if (!(x)) \
161 __builtin_unreachable (); \
162 } \
163 while (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164
Benoît Gannedc812d92019-12-16 10:42:25 +0100165/*
166 * Compiler barrier
Nathan Skrzypczakecd6b1a2021-09-29 15:35:31 +0200167 * prevent compiler to reorder memory access across this boundary
Benoît Gannedc812d92019-12-16 10:42:25 +0100168 * prevent compiler to cache values in register (force reload)
169 * Not to be confused with CPU memory barrier below
170 */
171#define CLIB_COMPILER_BARRIER() asm volatile ("":::"memory")
172
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173/* Full memory barrier (read and write). */
174#define CLIB_MEMORY_BARRIER() __sync_synchronize ()
175
Damjan Marioneaabe072017-03-22 10:18:13 +0100176#if __x86_64__
177#define CLIB_MEMORY_STORE_BARRIER() __builtin_ia32_sfence ()
178#else
179#define CLIB_MEMORY_STORE_BARRIER() __sync_synchronize ()
180#endif
181
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182/* Arranges for function to be called before main. */
183#define INIT_FUNCTION(decl) \
184 decl __attribute ((constructor)); \
185 decl
186
187/* Arranges for function to be called before exit. */
188#define EXIT_FUNCTION(decl) \
189 decl __attribute ((destructor)); \
190 decl
191
Damjan Marion7b90f662022-01-13 00:28:14 +0100192#include <vppinfra/bitops.h>
Damjan Marione21a0b22021-04-25 10:58:07 +0200193
194always_inline uword
Dave Barachc3799992016-08-15 11:12:27 -0400195min_log2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196{
197 uword n;
Damjan Marion11056002018-05-10 13:40:44 +0200198 n = count_leading_zeros (x);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199 return BITS (uword) - n - 1;
200}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201
Dave Barachc3799992016-08-15 11:12:27 -0400202always_inline uword
203max_log2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204{
205 uword l = min_log2 (x);
206 if (x > ((uword) 1 << l))
207 l++;
208 return l;
209}
210
Dave Barachc3799992016-08-15 11:12:27 -0400211always_inline u64
212min_log2_u64 (u64 x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213{
214 if (BITS (uword) == 64)
215 return min_log2 (x);
216 else
217 {
218 uword l, y;
219 y = x;
220 l = 0;
Dave Barachc3799992016-08-15 11:12:27 -0400221 if (y == 0)
222 {
223 l += 32;
224 x >>= 32;
225 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 l += min_log2 (x);
227 return l;
228 }
229}
230
Dave Barachc3799992016-08-15 11:12:27 -0400231always_inline uword
232pow2_mask (uword x)
233{
Damjan Marionbd908d52021-10-27 17:31:46 +0200234#ifdef __BMI2__
235 return _bzhi_u64 (-1ULL, x);
236#endif
Dave Barachc3799992016-08-15 11:12:27 -0400237 return ((uword) 1 << x) - (uword) 1;
238}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239
Dave Barachc3799992016-08-15 11:12:27 -0400240always_inline uword
241max_pow2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242{
243 word y = (word) 1 << min_log2 (x);
Dave Barachc3799992016-08-15 11:12:27 -0400244 if (x > y)
245 y *= 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246 return y;
247}
248
Dave Barachc3799992016-08-15 11:12:27 -0400249always_inline uword
250is_pow2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251{
Dave Barachc3799992016-08-15 11:12:27 -0400252 return 0 == (x & (x - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253}
254
Dave Barachc3799992016-08-15 11:12:27 -0400255always_inline uword
Ryujiro Shibuyacc108562020-06-24 08:36:14 +0100256round_down_pow2 (uword x, uword pow2)
257{
258 return (x) & ~(pow2 - 1);
259}
260
261always_inline uword
Dave Barachc3799992016-08-15 11:12:27 -0400262round_pow2 (uword x, uword pow2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263{
Dave Barachc3799992016-08-15 11:12:27 -0400264 return (x + pow2 - 1) & ~(pow2 - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265}
266
Dave Barachc3799992016-08-15 11:12:27 -0400267always_inline u64
268round_pow2_u64 (u64 x, u64 pow2)
269{
270 return (x + pow2 - 1) & ~(pow2 - 1);
271}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Dave Barachc3799992016-08-15 11:12:27 -0400273always_inline uword
274first_set (uword x)
275{
276 return x & -x;
277}
278
Dave Barachc3799992016-08-15 11:12:27 -0400279always_inline f64
280flt_round_down (f64 x)
281{
282 return (int) x;
283}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
Dave Barachc3799992016-08-15 11:12:27 -0400285always_inline word
286flt_round_nearest (f64 x)
287{
288 return (word) (x + .5);
289}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290
Dave Barachc3799992016-08-15 11:12:27 -0400291always_inline f64
292flt_round_to_multiple (f64 x, f64 f)
293{
294 return f * flt_round_nearest (x / f);
295}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700296
Damjan Marion68e5fd52020-04-23 13:41:47 +0200297always_inline uword
298extract_bits (uword x, int start, int count)
299{
300#ifdef __BMI__
301 return _bextr_u64 (x, start, count);
302#endif
303 return (x >> start) & pow2_mask (count);
304}
305
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306#define clib_max(x,y) \
307({ \
308 __typeof__ (x) _x = (x); \
309 __typeof__ (y) _y = (y); \
310 _x > _y ? _x : _y; \
311})
312
313#define clib_min(x,y) \
314({ \
315 __typeof__ (x) _x = (x); \
316 __typeof__ (y) _y = (y); \
317 _x < _y ? _x : _y; \
318})
319
Florin Coras7808df22020-11-02 18:00:32 -0800320#define clib_clamp(x,lo,hi) \
321({ \
322 __typeof__ (x) _x = (x); \
323 __typeof__ (lo) _lo = (lo); \
324 __typeof__ (hi) _hi = (hi); \
325 _x < _lo ? _lo : (_x > _hi ? _hi : _x); \
326})
327
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328#define clib_abs(x) \
329({ \
330 __typeof__ (x) _x = (x); \
331 _x < 0 ? -_x : _x; \
332})
333
334/* Standard standalone-only function declarations. */
335#ifndef CLIB_UNIX
Dave Barachc3799992016-08-15 11:12:27 -0400336void clib_standalone_init (void *memory, uword memory_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337
Dave Barachc3799992016-08-15 11:12:27 -0400338void qsort (void *base, uword n, uword size,
339 int (*)(const void *, const void *));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340#endif
341
342/* Stack backtrace. */
343uword
Dave Barachc3799992016-08-15 11:12:27 -0400344clib_backtrace (uword * callers, uword max_callers, uword n_frames_to_skip);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345
Damjan Marionef0bac72021-04-22 18:08:28 +0200346#include <vppinfra/byte_order.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -0700347#endif /* included_clib_h */
Dave Barachc3799992016-08-15 11:12:27 -0400348
349/*
350 * fd.io coding-style-patch-verification: ON
351 *
352 * Local Variables:
353 * eval: (c-set-style "gnu")
354 * End:
355 */