New upstream version 18.02
[deb_dpdk.git] / lib / librte_eal / common / include / rte_common.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4
5 #ifndef _RTE_COMMON_H_
6 #define _RTE_COMMON_H_
7
8 /**
9  * @file
10  *
11  * Generic, commonly-used macro and inline function definitions
12  * for DPDK.
13  */
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 #include <stdint.h>
20 #include <stdlib.h>
21 #include <ctype.h>
22 #include <errno.h>
23 #include <limits.h>
24
25 #include <rte_config.h>
26
27 #ifndef typeof
28 #define typeof __typeof__
29 #endif
30
31 #ifndef asm
32 #define asm __asm__
33 #endif
34
35 /** C extension macro for environments lacking C11 features. */
36 #if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 201112L
37 #define RTE_STD_C11 __extension__
38 #else
39 #define RTE_STD_C11
40 #endif
41
42 /** Define GCC_VERSION **/
43 #ifdef RTE_TOOLCHAIN_GCC
44 #define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 +  \
45                 __GNUC_PATCHLEVEL__)
46 #endif
47
48 #ifdef RTE_ARCH_STRICT_ALIGN
49 typedef uint64_t unaligned_uint64_t __attribute__ ((aligned(1)));
50 typedef uint32_t unaligned_uint32_t __attribute__ ((aligned(1)));
51 typedef uint16_t unaligned_uint16_t __attribute__ ((aligned(1)));
52 #else
53 typedef uint64_t unaligned_uint64_t;
54 typedef uint32_t unaligned_uint32_t;
55 typedef uint16_t unaligned_uint16_t;
56 #endif
57
58 /**
59  * Force alignment
60  */
61 #define __rte_aligned(a) __attribute__((__aligned__(a)))
62
63 /**
64  * Force a structure to be packed
65  */
66 #define __rte_packed __attribute__((__packed__))
67
68 /******* Macro to mark functions and fields scheduled for removal *****/
69 #define __rte_deprecated        __attribute__((__deprecated__))
70
71 /*********** Macros to eliminate unused variable warnings ********/
72
73 /**
74  * short definition to mark a function parameter unused
75  */
76 #define __rte_unused __attribute__((__unused__))
77
78 /**
79  * definition to mark a variable or function parameter as used so
80  * as to avoid a compiler warning
81  */
82 #define RTE_SET_USED(x) (void)(x)
83
84 /**
85  * Run function before main() with low priority.
86  *
87  * The constructor will be run after prioritized constructors.
88  *
89  * @param func
90  *   Constructor function.
91  */
92 #define RTE_INIT(func) \
93 static void __attribute__((constructor, used)) func(void)
94
95 /**
96  * Run function before main() with high priority.
97  *
98  * @param func
99  *   Constructor function.
100  * @param prio
101  *   Priority number must be above 100.
102  *   Lowest number is the first to run.
103  */
104 #define RTE_INIT_PRIO(func, prio) \
105 static void __attribute__((constructor(prio), used)) func(void)
106
107 /**
108  * Force a function to be inlined
109  */
110 #define __rte_always_inline inline __attribute__((always_inline))
111
112 /**
113  * Force a function to be noinlined
114  */
115 #define __rte_noinline  __attribute__((noinline))
116
117 /*********** Macros for pointer arithmetic ********/
118
119 /**
120  * add a byte-value offset from a pointer
121  */
122 #define RTE_PTR_ADD(ptr, x) ((void*)((uintptr_t)(ptr) + (x)))
123
124 /**
125  * subtract a byte-value offset from a pointer
126  */
127 #define RTE_PTR_SUB(ptr, x) ((void*)((uintptr_t)ptr - (x)))
128
129 /**
130  * get the difference between two pointer values, i.e. how far apart
131  * in bytes are the locations they point two. It is assumed that
132  * ptr1 is greater than ptr2.
133  */
134 #define RTE_PTR_DIFF(ptr1, ptr2) ((uintptr_t)(ptr1) - (uintptr_t)(ptr2))
135
136 /*********** Macros/static functions for doing alignment ********/
137
138
139 /**
140  * Macro to align a pointer to a given power-of-two. The resultant
141  * pointer will be a pointer of the same type as the first parameter, and
142  * point to an address no higher than the first parameter. Second parameter
143  * must be a power-of-two value.
144  */
145 #define RTE_PTR_ALIGN_FLOOR(ptr, align) \
146         ((typeof(ptr))RTE_ALIGN_FLOOR((uintptr_t)ptr, align))
147
148 /**
149  * Macro to align a value to a given power-of-two. The resultant value
150  * will be of the same type as the first parameter, and will be no
151  * bigger than the first parameter. Second parameter must be a
152  * power-of-two value.
153  */
154 #define RTE_ALIGN_FLOOR(val, align) \
155         (typeof(val))((val) & (~((typeof(val))((align) - 1))))
156
157 /**
158  * Macro to align a pointer to a given power-of-two. The resultant
159  * pointer will be a pointer of the same type as the first parameter, and
160  * point to an address no lower than the first parameter. Second parameter
161  * must be a power-of-two value.
162  */
163 #define RTE_PTR_ALIGN_CEIL(ptr, align) \
164         RTE_PTR_ALIGN_FLOOR((typeof(ptr))RTE_PTR_ADD(ptr, (align) - 1), align)
165
166 /**
167  * Macro to align a value to a given power-of-two. The resultant value
168  * will be of the same type as the first parameter, and will be no lower
169  * than the first parameter. Second parameter must be a power-of-two
170  * value.
171  */
172 #define RTE_ALIGN_CEIL(val, align) \
173         RTE_ALIGN_FLOOR(((val) + ((typeof(val)) (align) - 1)), align)
174
175 /**
176  * Macro to align a pointer to a given power-of-two. The resultant
177  * pointer will be a pointer of the same type as the first parameter, and
178  * point to an address no lower than the first parameter. Second parameter
179  * must be a power-of-two value.
180  * This function is the same as RTE_PTR_ALIGN_CEIL
181  */
182 #define RTE_PTR_ALIGN(ptr, align) RTE_PTR_ALIGN_CEIL(ptr, align)
183
184 /**
185  * Macro to align a value to a given power-of-two. The resultant
186  * value will be of the same type as the first parameter, and
187  * will be no lower than the first parameter. Second parameter
188  * must be a power-of-two value.
189  * This function is the same as RTE_ALIGN_CEIL
190  */
191 #define RTE_ALIGN(val, align) RTE_ALIGN_CEIL(val, align)
192
193 /**
194  * Checks if a pointer is aligned to a given power-of-two value
195  *
196  * @param ptr
197  *   The pointer whose alignment is to be checked
198  * @param align
199  *   The power-of-two value to which the ptr should be aligned
200  *
201  * @return
202  *   True(1) where the pointer is correctly aligned, false(0) otherwise
203  */
204 static inline int
205 rte_is_aligned(void *ptr, unsigned align)
206 {
207         return RTE_PTR_ALIGN(ptr, align) == ptr;
208 }
209
210 /*********** Macros for compile type checks ********/
211
212 /**
213  * Triggers an error at compilation time if the condition is true.
214  */
215 #ifndef __OPTIMIZE__
216 #define RTE_BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
217 #else
218 extern int RTE_BUILD_BUG_ON_detected_error;
219 #define RTE_BUILD_BUG_ON(condition) do {             \
220         ((void)sizeof(char[1 - 2*!!(condition)]));   \
221         if (condition)                               \
222                 RTE_BUILD_BUG_ON_detected_error = 1; \
223 } while(0)
224 #endif
225
226 /*********** Macros to work with powers of 2 ********/
227
228 /**
229  * Returns true if n is a power of 2
230  * @param n
231  *     Number to check
232  * @return 1 if true, 0 otherwise
233  */
234 static inline int
235 rte_is_power_of_2(uint32_t n)
236 {
237         return n && !(n & (n - 1));
238 }
239
240 /**
241  * Aligns input parameter to the next power of 2
242  *
243  * @param x
244  *   The integer value to algin
245  *
246  * @return
247  *   Input parameter aligned to the next power of 2
248  */
249 static inline uint32_t
250 rte_align32pow2(uint32_t x)
251 {
252         x--;
253         x |= x >> 1;
254         x |= x >> 2;
255         x |= x >> 4;
256         x |= x >> 8;
257         x |= x >> 16;
258
259         return x + 1;
260 }
261
262 /**
263  * Aligns 64b input parameter to the next power of 2
264  *
265  * @param v
266  *   The 64b value to align
267  *
268  * @return
269  *   Input parameter aligned to the next power of 2
270  */
271 static inline uint64_t
272 rte_align64pow2(uint64_t v)
273 {
274         v--;
275         v |= v >> 1;
276         v |= v >> 2;
277         v |= v >> 4;
278         v |= v >> 8;
279         v |= v >> 16;
280         v |= v >> 32;
281
282         return v + 1;
283 }
284
285 /*********** Macros for calculating min and max **********/
286
287 /**
288  * Macro to return the minimum of two numbers
289  */
290 #define RTE_MIN(a, b) \
291         __extension__ ({ \
292                 typeof (a) _a = (a); \
293                 typeof (b) _b = (b); \
294                 _a < _b ? _a : _b; \
295         })
296
297 /**
298  * Macro to return the maximum of two numbers
299  */
300 #define RTE_MAX(a, b) \
301         __extension__ ({ \
302                 typeof (a) _a = (a); \
303                 typeof (b) _b = (b); \
304                 _a > _b ? _a : _b; \
305         })
306
307 /*********** Other general functions / macros ********/
308
309 /**
310  * Searches the input parameter for the least significant set bit
311  * (starting from zero).
312  * If a least significant 1 bit is found, its bit index is returned.
313  * If the content of the input parameter is zero, then the content of the return
314  * value is undefined.
315  * @param v
316  *     input parameter, should not be zero.
317  * @return
318  *     least significant set bit in the input parameter.
319  */
320 static inline uint32_t
321 rte_bsf32(uint32_t v)
322 {
323         return __builtin_ctz(v);
324 }
325
326 /**
327  * Return the rounded-up log2 of a integer.
328  *
329  * @param v
330  *     The input parameter.
331  * @return
332  *     The rounded-up log2 of the input, or 0 if the input is 0.
333  */
334 static inline uint32_t
335 rte_log2_u32(uint32_t v)
336 {
337         if (v == 0)
338                 return 0;
339         v = rte_align32pow2(v);
340         return rte_bsf32(v);
341 }
342
343 #ifndef offsetof
344 /** Return the offset of a field in a structure. */
345 #define offsetof(TYPE, MEMBER)  __builtin_offsetof (TYPE, MEMBER)
346 #endif
347
348 /**
349  * Return pointer to the wrapping struct instance.
350  *
351  * Example:
352  *
353  *  struct wrapper {
354  *      ...
355  *      struct child c;
356  *      ...
357  *  };
358  *
359  *  struct child *x = obtain(...);
360  *  struct wrapper *w = container_of(x, struct wrapper, c);
361  */
362 #ifndef container_of
363 #define container_of(ptr, type, member) __extension__ ({                \
364                         const typeof(((type *)0)->member) *_ptr = (ptr); \
365                         __attribute__((unused)) type *_target_ptr =     \
366                                 (type *)(ptr);                          \
367                         (type *)(((uintptr_t)_ptr) - offsetof(type, member)); \
368                 })
369 #endif
370
371 #define _RTE_STR(x) #x
372 /** Take a macro value and get a string version of it */
373 #define RTE_STR(x) _RTE_STR(x)
374
375 /**
376  * ISO C helpers to modify format strings using variadic macros.
377  * This is a replacement for the ", ## __VA_ARGS__" GNU extension.
378  * An empty %s argument is appended to avoid a dangling comma.
379  */
380 #define RTE_FMT(fmt, ...) fmt "%.0s", __VA_ARGS__ ""
381 #define RTE_FMT_HEAD(fmt, ...) fmt
382 #define RTE_FMT_TAIL(fmt, ...) __VA_ARGS__
383
384 /** Mask value of type "tp" for the first "ln" bit set. */
385 #define RTE_LEN2MASK(ln, tp)    \
386         ((tp)((uint64_t)-1 >> (sizeof(uint64_t) * CHAR_BIT - (ln))))
387
388 /** Number of elements in the array. */
389 #define RTE_DIM(a)      (sizeof (a) / sizeof ((a)[0]))
390
391 /**
392  * Converts a numeric string to the equivalent uint64_t value.
393  * As well as straight number conversion, also recognises the suffixes
394  * k, m and g for kilobytes, megabytes and gigabytes respectively.
395  *
396  * If a negative number is passed in  i.e. a string with the first non-black
397  * character being "-", zero is returned. Zero is also returned in the case of
398  * an error with the strtoull call in the function.
399  *
400  * @param str
401  *     String containing number to convert.
402  * @return
403  *     Number.
404  */
405 static inline uint64_t
406 rte_str_to_size(const char *str)
407 {
408         char *endptr;
409         unsigned long long size;
410
411         while (isspace((int)*str))
412                 str++;
413         if (*str == '-')
414                 return 0;
415
416         errno = 0;
417         size = strtoull(str, &endptr, 0);
418         if (errno)
419                 return 0;
420
421         if (*endptr == ' ')
422                 endptr++; /* allow 1 space gap */
423
424         switch (*endptr){
425         case 'G': case 'g': size *= 1024; /* fall-through */
426         case 'M': case 'm': size *= 1024; /* fall-through */
427         case 'K': case 'k': size *= 1024; /* fall-through */
428         default:
429                 break;
430         }
431         return size;
432 }
433
434 /**
435  * Function to terminate the application immediately, printing an error
436  * message and returning the exit_code back to the shell.
437  *
438  * This function never returns
439  *
440  * @param exit_code
441  *     The exit code to be returned by the application
442  * @param format
443  *     The format string to be used for printing the message. This can include
444  *     printf format characters which will be expanded using any further parameters
445  *     to the function.
446  */
447 void
448 rte_exit(int exit_code, const char *format, ...)
449         __attribute__((noreturn))
450         __attribute__((format(printf, 2, 3)));
451
452 #ifdef __cplusplus
453 }
454 #endif
455
456 #endif