blob: 42748b0a34cab66e1aad2aee19f837ebf27a1c49 [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
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 Barachdbf19ca2016-03-15 10:21:54 +010067#define STRUCT_MARK(mark) u8 mark[0]
68#define STRUCT_MARK_PTR(v, f) &(v)->f
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
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 Barachc3799992016-08-15 11:12:27 -040079#define CLIB_UNUSED(x) x __attribute__ ((unused))
Ed Warnickecb9cada2015-12-08 15:45:58 -070080
Dave Barachcabbee72017-11-18 08:43:06 -050081/* Make a string from the macro's argument */
82#define CLIB_STRING_MACRO(x) #x
83
Damjan Marion04f3db32017-11-10 21:55:45 +010084#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 Warnickecb9cada2015-12-08 15:45:58 -070089#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 Marioneaabe072017-03-22 10:18:13 +0100111#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 Warnickecb9cada2015-12-08 15:45:58 -0700117/* 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 Warnickecb9cada2015-12-08 15:45:58 -0700128#if uword_bits == 64
Damjan Marion11056002018-05-10 13:40:44 +0200129#define count_leading_zeros(x) __builtin_clzll (x)
130#define count_trailing_zeros(x) __builtin_ctzll (x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131#else
Damjan Marion11056002018-05-10 13:40:44 +0200132#define count_leading_zeros(x) __builtin_clzl (x)
133#define count_trailing_zeros(x) __builtin_ctzl (x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134#endif
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135
136#if defined (count_leading_zeros)
Dave Barachc3799992016-08-15 11:12:27 -0400137always_inline uword
138min_log2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139{
140 uword n;
Damjan Marion11056002018-05-10 13:40:44 +0200141 n = count_leading_zeros (x);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142 return BITS (uword) - n - 1;
143}
144#else
Dave Barachc3799992016-08-15 11:12:27 -0400145always_inline uword
146min_log2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147{
Dave Barachc3799992016-08-15 11:12:27 -0400148 uword a = x, b = BITS (uword) / 2, c = 0, r = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149
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 Barachc3799992016-08-15 11:12:27 -0400159 if (BITS (uword) > 32)
160 _;
161 _;
162 _;
163 _;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164#undef _
165
166 /* Do table lookup on 4 bit partial. */
167 if (BITS (uword) > 32)
168 {
169 const u64 table = 0x3333333322221104LL;
Dave Barachc3799992016-08-15 11:12:27 -0400170 uword t = (table >> (4 * a)) & 0xf;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 r = t < 4 ? r + t : ~0;
172 }
173 else
174 {
175 const u32 table = 0x22221104;
Dave Barachc3799992016-08-15 11:12:27 -0400176 uword t = (a & 8) ? 3 : ((table >> (4 * a)) & 0xf);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177 r = t < 4 ? r + t : ~0;
Dave Barachc3799992016-08-15 11:12:27 -0400178 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
180 return r;
181}
182#endif
183
Dave Barachc3799992016-08-15 11:12:27 -0400184always_inline uword
185max_log2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186{
187 uword l = min_log2 (x);
188 if (x > ((uword) 1 << l))
189 l++;
190 return l;
191}
192
Dave Barachc3799992016-08-15 11:12:27 -0400193always_inline u64
194min_log2_u64 (u64 x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195{
196 if (BITS (uword) == 64)
197 return min_log2 (x);
198 else
199 {
200 uword l, y;
201 y = x;
202 l = 0;
Dave Barachc3799992016-08-15 11:12:27 -0400203 if (y == 0)
204 {
205 l += 32;
206 x >>= 32;
207 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 l += min_log2 (x);
209 return l;
210 }
211}
212
Dave Barachc3799992016-08-15 11:12:27 -0400213always_inline uword
214pow2_mask (uword x)
215{
216 return ((uword) 1 << x) - (uword) 1;
217}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218
Dave Barachc3799992016-08-15 11:12:27 -0400219always_inline uword
220max_pow2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221{
222 word y = (word) 1 << min_log2 (x);
Dave Barachc3799992016-08-15 11:12:27 -0400223 if (x > y)
224 y *= 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225 return y;
226}
227
Dave Barachc3799992016-08-15 11:12:27 -0400228always_inline uword
229is_pow2 (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230{
Dave Barachc3799992016-08-15 11:12:27 -0400231 return 0 == (x & (x - 1));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232}
233
Dave Barachc3799992016-08-15 11:12:27 -0400234always_inline uword
235round_pow2 (uword x, uword pow2)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236{
Dave Barachc3799992016-08-15 11:12:27 -0400237 return (x + pow2 - 1) & ~(pow2 - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238}
239
Dave Barachc3799992016-08-15 11:12:27 -0400240always_inline u64
241round_pow2_u64 (u64 x, u64 pow2)
242{
243 return (x + pow2 - 1) & ~(pow2 - 1);
244}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700245
Dave Barachc3799992016-08-15 11:12:27 -0400246always_inline uword
247first_set (uword x)
248{
249 return x & -x;
250}
251
252always_inline uword
253log2_first_set (uword x)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254{
255 uword result;
256#ifdef count_trailing_zeros
Damjan Marion11056002018-05-10 13:40:44 +0200257 result = count_trailing_zeros (x);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258#else
259 result = min_log2 (first_set (x));
260#endif
261 return result;
262}
263
Dave Barachc3799992016-08-15 11:12:27 -0400264always_inline f64
265flt_round_down (f64 x)
266{
267 return (int) x;
268}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269
Dave Barachc3799992016-08-15 11:12:27 -0400270always_inline word
271flt_round_nearest (f64 x)
272{
273 return (word) (x + .5);
274}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275
Dave Barachc3799992016-08-15 11:12:27 -0400276always_inline f64
277flt_round_to_multiple (f64 x, f64 f)
278{
279 return f * flt_round_nearest (x / f);
280}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281
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 Barachc3799992016-08-15 11:12:27 -0400304void clib_standalone_init (void *memory, uword memory_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305
Dave Barachc3799992016-08-15 11:12:27 -0400306void qsort (void *base, uword n, uword size,
307 int (*)(const void *, const void *));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308#endif
309
310/* Stack backtrace. */
311uword
Dave Barachc3799992016-08-15 11:12:27 -0400312clib_backtrace (uword * callers, uword max_callers, uword n_frames_to_skip);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313
314#endif /* included_clib_h */
Dave Barachc3799992016-08-15 11:12:27 -0400315
316/*
317 * fd.io coding-style-patch-verification: ON
318 *
319 * Local Variables:
320 * eval: (c-set-style "gnu")
321 * End:
322 */