DPDK 26.07.0
rte_common.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2019 Intel Corporation
3 */
4
5#ifndef _RTE_COMMON_H_
6#define _RTE_COMMON_H_
7
15#include <assert.h>
16#include <limits.h>
17#include <stdbool.h>
18#include <stdint.h>
19#include <stdalign.h>
20
21#include <rte_compat.h>
22#include <rte_config.h>
23
24/* OS specific include */
25#include <rte_os.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31#ifndef RTE_TOOLCHAIN_MSVC
32#ifndef typeof
33#define typeof __typeof__
34#endif
35#endif
36
37#ifndef __cplusplus
38#ifndef asm
39#define asm __asm__
40#endif
41#endif
42
43#ifdef RTE_TOOLCHAIN_MSVC
44#ifdef __cplusplus
45#define __extension__
46#endif
47#endif
48
49/*
50 * Macro __rte_constant checks if an expression's value can be determined at
51 * compile time. It takes a single argument, the expression to test, and
52 * returns 1 if the expression is a compile-time constant, and 0 otherwise.
53 * For most compilers it uses built-in function __builtin_constant_p, but for
54 * MSVC it uses a different method because MSVC does not have an equivalent
55 * to __builtin_constant_p.
56 *
57 * The trick used with MSVC relies on the way null pointer constants interact
58 * with the type of a ?: expression:
59 * An integer constant expression with the value 0, or such an expression cast
60 * to type void *, is called a null pointer constant.
61 * If both the second and third operands (of the ?: expression) are pointers or
62 * one is a null pointer constant and the other is a pointer, the result type
63 * is a pointer to a type qualified with all the type qualifiers of the types
64 * referenced by both operands. Furthermore, if both operands are pointers to
65 * compatible types or to differently qualified versions of compatible types,
66 * the result type is a pointer to an appropriately qualified version of the
67 * composite type; if one operand is a null pointer constant, the result has
68 * the type of the other operand; otherwise, one operand is a pointer to void
69 * or a qualified version of void, in which case the result type is a pointer
70 * to an appropriately qualified version of void.
71 *
72 * The _Generic keyword then checks the type of the expression
73 * (void *) ((e) * 0ll). It matches this type against the types listed in the
74 * _Generic construct:
75 * - If the type is int *, the result is 1.
76 * - If the type is void *, the result is 0.
77 *
78 * This explanation with some more details can be found at:
79 * https://stackoverflow.com/questions/49480442/detecting-integer-constant-expressions-in-macros
80 */
81#ifdef RTE_TOOLCHAIN_MSVC
82#define __rte_constant(e) _Generic((1 ? (void *) ((e) * 0ll) : (int *) 0), int * : 1, void * : 0)
83#else
84#define __rte_constant(e) __extension__(__builtin_constant_p(e))
85#endif
86
87/*
88 * RTE_TOOLCHAIN_GCC is defined if the target is built with GCC,
89 * while a host application (like pmdinfogen) may have another compiler.
90 * RTE_CC_IS_GNU is true if the file is compiled with GCC,
91 * no matter it is a target or host application.
92 */
93#define RTE_CC_IS_GNU 0
94#if defined __clang__
95#define RTE_CC_CLANG
96#elif defined __GNUC__
97#define RTE_CC_GCC
98#undef RTE_CC_IS_GNU
99#define RTE_CC_IS_GNU 1
100#endif
101#if RTE_CC_IS_GNU
102#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + \
103 __GNUC_PATCHLEVEL__)
104#endif
105
118#ifdef RTE_TOOLCHAIN_MSVC
119#define __rte_aligned(a) __declspec(align(a))
120#else
121#define __rte_aligned(a) __attribute__((__aligned__(a)))
122#endif
123
124#ifdef RTE_ARCH_STRICT_ALIGN
125typedef uint64_t unaligned_uint64_t __rte_aligned(1);
126typedef uint32_t unaligned_uint32_t __rte_aligned(1);
127typedef uint16_t unaligned_uint16_t __rte_aligned(1);
128#else
129typedef uint64_t unaligned_uint64_t;
130typedef uint32_t unaligned_uint32_t;
131typedef uint16_t unaligned_uint16_t;
132#endif
133
141#ifdef RTE_TOOLCHAIN_MSVC
142#define __rte_packed RTE_DEPRECATED(__rte_packed)
143#else
144#define __rte_packed (RTE_DEPRECATED(__rte_packed) __attribute__((__packed__)))
145#endif
146
154#ifdef RTE_TOOLCHAIN_MSVC
155#define __rte_packed_begin __pragma(pack(push, 1))
156#define __rte_packed_end __pragma(pack(pop))
157#else
158#define __rte_packed_begin
159#define __rte_packed_end __attribute__((__packed__))
160#endif
161
165#ifdef RTE_TOOLCHAIN_MSVC
166#define __rte_may_alias
167#else
168#define __rte_may_alias __attribute__((__may_alias__))
169#endif
170
171/******* Macro to mark functions and fields scheduled for removal *****/
172#ifdef RTE_TOOLCHAIN_MSVC
173#define __rte_deprecated
174#define __rte_deprecated_msg(msg)
175#else
176#define __rte_deprecated __attribute__((__deprecated__))
177#define __rte_deprecated_msg(msg) __attribute__((__deprecated__(msg)))
178#endif
179
183#if defined(RTE_CC_GCC) || defined(RTE_CC_CLANG)
184#define RTE_PRAGMA(x) _Pragma(#x)
185#define RTE_PRAGMA_WARNING(w) RTE_PRAGMA(GCC warning #w)
186#define RTE_DEPRECATED(x) RTE_PRAGMA_WARNING(#x is deprecated)
187#else
188#define RTE_DEPRECATED(x)
189#endif
190
195#if !defined(RTE_TOOLCHAIN_MSVC)
196#define __rte_diagnostic_push _Pragma("GCC diagnostic push")
197#define __rte_diagnostic_pop _Pragma("GCC diagnostic pop")
198#else
199#define __rte_diagnostic_push
200#define __rte_diagnostic_pop
201#endif
202
207#if !defined(RTE_TOOLCHAIN_MSVC)
208#define __rte_diagnostic_ignored_wcast_qual _Pragma("GCC diagnostic ignored \"-Wcast-qual\"")
209#else
210#define __rte_diagnostic_ignored_wcast_qual
211#endif
212
216#ifdef RTE_TOOLCHAIN_MSVC
217#define __rte_weak RTE_DEPRECATED(__rte_weak)
218#else
219#define __rte_weak RTE_DEPRECATED(__rte_weak) __attribute__((__weak__))
220#endif
221
225#ifdef RTE_TOOLCHAIN_MSVC
226#define __rte_pure
227#else
228#define __rte_pure __attribute__((pure))
229#endif
230
234#ifdef RTE_TOOLCHAIN_MSVC
235#define __rte_used
236#else
237#define __rte_used __attribute__((used))
238#endif
239
240/*********** Macros to eliminate unused variable warnings ********/
241
245#ifdef RTE_TOOLCHAIN_MSVC
246#define __rte_unused
247#else
248#define __rte_unused __attribute__((__unused__))
249#endif
250
254#if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L
255#define __rte_restrict __restrict
256#else
257#define __rte_restrict restrict
258#endif
259
264#define RTE_SET_USED(x) (void)(x)
265
273#ifdef RTE_TOOLCHAIN_MSVC
274#define __rte_format_printf(format_index, first_arg)
275#else
276#if RTE_CC_IS_GNU
277#define __rte_format_printf(format_index, first_arg) \
278 __attribute__((format(gnu_printf, format_index, first_arg)))
279#else
280#define __rte_format_printf(format_index, first_arg) \
281 __attribute__((format(printf, format_index, first_arg)))
282#endif
283#endif
284
288#ifdef RTE_TOOLCHAIN_MSVC
289#define __rte_section(name) \
290 __pragma(data_seg(name)) __declspec(allocate(name))
291#else
292#define __rte_section(name) \
293 __attribute__((section(name)))
294#endif
295
301#if defined(RTE_CC_GCC) || defined(RTE_CC_CLANG)
302#define __rte_alloc_size(...) \
303 __attribute__((alloc_size(__VA_ARGS__)))
304#else
305#define __rte_alloc_size(...)
306#endif
307
314#if defined(RTE_CC_GCC)
315#define __rte_alloc_align(argno) \
316 __attribute__((alloc_align(argno)))
317#else
318#define __rte_alloc_align(argno)
319#endif
320
325#if defined(RTE_CC_GCC) || defined(RTE_CC_CLANG)
326#define __rte_malloc __attribute__((__malloc__))
327#else
328#define __rte_malloc
329#endif
330
335#if defined(RTE_TOOLCHAIN_GCC) && (GCC_VERSION >= 110000)
336#define __rte_dealloc(dealloc, argno) \
337 __attribute__((malloc(dealloc, argno)))
338#else
339#define __rte_dealloc(dealloc, argno)
340#endif
341
342#define RTE_PRIORITY_LOG 101
343#define RTE_PRIORITY_BUS 110
344#define RTE_PRIORITY_CLASS 120
345#define RTE_PRIORITY_LAST 65535
346
347#define RTE_PRIO(prio) \
348 RTE_PRIORITY_ ## prio
349
359#ifndef RTE_INIT_PRIO /* Allow overriding from EAL */
360#ifndef RTE_TOOLCHAIN_MSVC
361#define RTE_INIT_PRIO(func, prio) \
362static void __attribute__((constructor(RTE_PRIO(prio)), used)) func(void)
363#else
364/* definition from the Microsoft CRT */
365typedef int(__cdecl *_PIFV)(void);
366
367#define CTOR_SECTION_LOG ".CRT$XIB"
368#define CTOR_SECTION_BUS ".CRT$XIC"
369#define CTOR_SECTION_CLASS ".CRT$XID"
370#define CTOR_SECTION_LAST ".CRT$XIY"
371
372#define CTOR_PRIORITY_TO_SECTION(priority) CTOR_SECTION_ ## priority
373
374#define RTE_INIT_PRIO(name, priority) \
375 static void name(void); \
376 static int __cdecl name ## _thunk(void) { name(); return 0; } \
377 __pragma(const_seg(CTOR_PRIORITY_TO_SECTION(priority))) \
378 __declspec(allocate(CTOR_PRIORITY_TO_SECTION(priority))) \
379 _PIFV name ## _pointer = &name ## _thunk; \
380 __pragma(const_seg()) \
381 static void name(void)
382#endif
383#endif
384
393#define RTE_INIT(func) \
394 RTE_INIT_PRIO(func, LAST)
395
405#ifndef RTE_FINI_PRIO /* Allow overriding from EAL */
406#ifndef RTE_TOOLCHAIN_MSVC
407#define RTE_FINI_PRIO(func, prio) \
408static void __attribute__((destructor(RTE_PRIO(prio)), used)) func(void)
409#else
410#define DTOR_SECTION_LOG "mydtor$B"
411#define DTOR_SECTION_BUS "mydtor$C"
412#define DTOR_SECTION_CLASS "mydtor$D"
413#define DTOR_SECTION_LAST "mydtor$Y"
414
415#define DTOR_PRIORITY_TO_SECTION(priority) DTOR_SECTION_ ## priority
416
417#define RTE_FINI_PRIO(name, priority) \
418 static void name(void); \
419 __pragma(const_seg(DTOR_PRIORITY_TO_SECTION(priority))) \
420 __declspec(allocate(DTOR_PRIORITY_TO_SECTION(priority))) void *name ## _pointer = &name; \
421 __pragma(const_seg()) \
422 static void name(void)
423#endif
424#endif
425
434#define RTE_FINI(func) \
435 RTE_FINI_PRIO(func, LAST)
436
440#ifdef RTE_TOOLCHAIN_MSVC
441#define __rte_noreturn
442#else
443#define __rte_noreturn __attribute__((noreturn))
444#endif
445
449#if defined(RTE_TOOLCHAIN_GCC) || defined(RTE_TOOLCHAIN_CLANG)
450#define __rte_unreachable() __extension__(__builtin_unreachable())
451#else
452#define __rte_unreachable() __assume(0)
453#endif
454
478#ifdef RTE_TOOLCHAIN_MSVC
479#define __rte_warn_unused_result
480#else
481#define __rte_warn_unused_result __attribute__((warn_unused_result))
482#endif
483
503#ifdef RTE_TOOLCHAIN_MSVC
504#define __rte_always_inline __forceinline
505#else
506#define __rte_always_inline inline __attribute__((always_inline))
507#endif
508
516#ifdef RTE_TOOLCHAIN_MSVC
517#define __rte_noinline __declspec(noinline)
518#else
519#define __rte_noinline __attribute__((noinline))
520#endif
521
531#ifdef RTE_TOOLCHAIN_MSVC
532#define __rte_hot
533#else
534#define __rte_hot __attribute__((hot))
535#endif
536
548#ifdef RTE_TOOLCHAIN_MSVC
549#define __rte_cold
550#else
551#define __rte_cold __attribute__((cold))
552#endif
553
560#if defined(RTE_TOOLCHAIN_GCC) && (GCC_VERSION >= 130000)
561#define __rte_assume(condition) __attribute__((assume(condition)))
562#elif defined(RTE_TOOLCHAIN_GCC)
563#define __rte_assume(condition) do { if (!(condition)) __rte_unreachable(); } while (0)
564#elif defined(RTE_TOOLCHAIN_CLANG)
565#define __rte_assume(condition) __extension__(__builtin_assume(condition))
566#else
567#define __rte_assume(condition) __assume(condition)
568#endif
569
573#ifdef RTE_MALLOC_ASAN
574#ifdef RTE_CC_CLANG
575#define __rte_no_asan __attribute__((no_sanitize("address", "hwaddress")))
576#else
577#define __rte_no_asan __attribute__((no_sanitize_address))
578#endif
579#else /* ! RTE_MALLOC_ASAN */
580#define __rte_no_asan
581#endif
582
583/*********** Macros for pointer arithmetic ********/
584
588#define RTE_PTR_ADD(ptr, x) ((void*)((uintptr_t)(ptr) + (x)))
589
593#define RTE_PTR_SUB(ptr, x) ((void *)((uintptr_t)(ptr) - (x)))
594
600#define RTE_PTR_DIFF(ptr1, ptr2) ((uintptr_t)(ptr1) - (uintptr_t)(ptr2))
601
602/*********** Macros for casting pointers ********/
603
608#define RTE_PTR_UNQUAL(X) ((void *)(uintptr_t)(X))
609
627#define RTE_CAST_PTR(type, ptr) ((type)(uintptr_t)(ptr))
628
632#define RTE_CAST_FIELD(var, field, type) \
633 (*(type *)((uintptr_t)(var) + offsetof(typeof(*(var)), field)))
634
635/*********** Macros/static functions for doing alignment ********/
636
637
644#define RTE_PTR_ALIGN_FLOOR(ptr, align) \
645 ((typeof(ptr))RTE_ALIGN_FLOOR((uintptr_t)(ptr), align))
646
653#define RTE_ALIGN_FLOOR(val, align) \
654 (typeof(val))((val) & (~((typeof(val))((align) - 1))))
655
662#define RTE_PTR_ALIGN_CEIL(ptr, align) \
663 RTE_PTR_ALIGN_FLOOR((typeof(ptr))RTE_PTR_ADD(ptr, (align) - 1), align)
664
671#define RTE_ALIGN_CEIL(val, align) \
672 RTE_ALIGN_FLOOR(((val) + ((typeof(val)) (align) - 1)), align)
673
681#define RTE_PTR_ALIGN(ptr, align) RTE_PTR_ALIGN_CEIL(ptr, align)
682
690#define RTE_ALIGN(val, align) RTE_ALIGN_CEIL(val, align)
691
697#define RTE_ALIGN_MUL_CEIL(v, mul) \
698 ((((v) + (typeof(v))(mul) - 1) / ((typeof(v))(mul))) * (typeof(v))(mul))
699
705#define RTE_ALIGN_MUL_FLOOR(v, mul) \
706 (((v) / ((typeof(v))(mul))) * (typeof(v))(mul))
707
713#define RTE_ALIGN_MUL_NEAR(v, mul) \
714 __extension__ ({ \
715 typeof(v) ceil = RTE_ALIGN_MUL_CEIL(v, mul); \
716 typeof(v) floor = RTE_ALIGN_MUL_FLOOR(v, mul); \
717 (ceil - (v)) > ((v) - floor) ? floor : ceil; \
718 })
719
731static inline int
732rte_is_aligned(const void * const __rte_restrict ptr, const unsigned int align)
733{
734 return ((uintptr_t)ptr & (align - 1)) == 0;
735}
736
737/*********** Macros for compile type checks ********/
738
739/* Workaround for toolchain issues with missing C11 macro in FreeBSD */
740#if !defined(static_assert) && !defined(__cplusplus)
741#define static_assert _Static_assert
742#endif
743
750#define RTE_BUILD_BUG_ON(condition) do { static_assert(!(condition), #condition); } while (0)
751
752/*********** Cache line related macros ********/
753
755#define RTE_CACHE_LINE_MASK (RTE_CACHE_LINE_SIZE-1)
756
758#define RTE_CACHE_LINE_ROUNDUP(size) RTE_ALIGN_CEIL(size, RTE_CACHE_LINE_SIZE)
759
761#if RTE_CACHE_LINE_SIZE == 64
762#define RTE_CACHE_LINE_SIZE_LOG2 6
763#elif RTE_CACHE_LINE_SIZE == 128
764#define RTE_CACHE_LINE_SIZE_LOG2 7
765#else
766#error "Unsupported cache line size"
767#endif
768
770#define RTE_CACHE_LINE_MIN_SIZE 64
771
773#define __rte_cache_aligned __rte_aligned(RTE_CACHE_LINE_SIZE)
774
776#define __rte_cache_min_aligned __rte_aligned(RTE_CACHE_LINE_MIN_SIZE)
777
778#define _RTE_CACHE_GUARD_HELPER2(unique) \
779 alignas(RTE_CACHE_LINE_SIZE) \
780 char cache_guard_ ## unique[RTE_CACHE_LINE_SIZE * RTE_CACHE_GUARD_LINES]
781#define _RTE_CACHE_GUARD_HELPER1(unique) _RTE_CACHE_GUARD_HELPER2(unique)
793#define RTE_CACHE_GUARD _RTE_CACHE_GUARD_HELPER1(__LINE__)
794
795/*********** PA/IOVA type definitions ********/
796
798typedef uint64_t phys_addr_t;
799#define RTE_BAD_PHYS_ADDR ((phys_addr_t)-1)
800
808typedef uint64_t rte_iova_t;
809#define RTE_BAD_IOVA ((rte_iova_t)-1)
810
811/*********** Structure alignment markers ********/
812
813#ifndef RTE_TOOLCHAIN_MSVC
814
816__extension__ typedef void *RTE_MARKER[0];
818__extension__ typedef uint8_t RTE_MARKER8[0];
820__extension__ typedef uint16_t RTE_MARKER16[0];
822__extension__ typedef uint32_t RTE_MARKER32[0];
824__extension__ typedef uint64_t RTE_MARKER64[0];
825
826#endif
827
828/*********** Macros for calculating min and max **********/
829
833#define RTE_MIN(a, b) \
834 __extension__ ({ \
835 typeof (a) _a_min = (a); \
836 typeof (b) _b_min = (b); \
837 _a_min < _b_min ? _a_min : _b_min; \
838 })
839
843#define RTE_MIN3(a, b, c) \
844 __extension__ ({ \
845 typeof (a) _a_min3 = (a); \
846 typeof (b) _b_min3 = (b); \
847 typeof (c) _c_min3 = (c); \
848 _a_min3 < _b_min3 ? \
849 (_a_min3 < _c_min3 ? _a_min3 : _c_min3) : \
850 (_b_min3 < _c_min3 ? _b_min3 : _c_min3); \
851 })
852
860#define RTE_MIN_T(a, b, t) \
861 ((t)(a) < (t)(b) ? (t)(a) : (t)(b))
862
866#define RTE_MAX(a, b) \
867 __extension__ ({ \
868 typeof (a) _a_max = (a); \
869 typeof (b) _b_max = (b); \
870 _a_max > _b_max ? _a_max : _b_max; \
871 })
872
876#define RTE_MAX3(a, b, c) \
877 __extension__ ({ \
878 typeof (a) _a_max3 = (a); \
879 typeof (b) _b_max3 = (b); \
880 typeof (c) _c_max3 = (c); \
881 _a_max3 > _b_max3 ? \
882 (_a_max3 > _c_max3 ? _a_max3 : _c_max3) : \
883 (_b_max3 > _c_max3 ? _b_max3 : _c_max3); \
884 })
885
893#define RTE_MAX_T(a, b, t) \
894 ((t)(a) > (t)(b) ? (t)(a) : (t)(b))
895
896/*********** Other general functions / macros ********/
897
898#ifndef offsetof
900#define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
901#endif
902
917#ifndef container_of
918#ifdef RTE_TOOLCHAIN_MSVC
919#define container_of(ptr, type, member) \
920 ((type *)((uintptr_t)(ptr) - offsetof(type, member)))
921#else
922#define container_of(ptr, type, member) __extension__ ({ \
923 const typeof(((type *)0)->member) *_ptr = (ptr); \
924 __rte_unused type *_target_ptr = \
925 (type *)(ptr); \
926 (type *)(((uintptr_t)_ptr) - offsetof(type, member)); \
927 })
928#endif
929#endif
930
932#define RTE_SWAP(a, b) \
933 __extension__ ({ \
934 typeof (a) _a = a; \
935 a = b; \
936 b = _a; \
937 })
938
949#define RTE_SIZEOF_FIELD(type, field) (sizeof(((type *)0)->field))
950
951#define _RTE_STR(x) #x
953#define RTE_STR(x) _RTE_STR(x)
954
956#define _RTE_CONCAT2(a, b) a ## b
957#define RTE_CONCAT(a, b) _RTE_CONCAT2(a, b)
958
964#define RTE_FMT(fmt, ...) fmt "%.0s", __VA_ARGS__ ""
965#define RTE_FMT_HEAD(fmt, ...) fmt
966#define RTE_FMT_TAIL(fmt, ...) __VA_ARGS__
967
969#define RTE_LEN2MASK(ln, tp) \
970 ((tp)((uint64_t)-1 >> (sizeof(uint64_t) * CHAR_BIT - (ln))))
971
973#define RTE_DIM(a) (sizeof (a) / sizeof ((a)[0]))
974
989uint64_t
990rte_str_to_size(const char *str);
991
1023__rte_experimental
1024char *
1025rte_size_to_str(char *buf, int buf_size, uint64_t count, bool use_iec, const char *unit);
1026
1040__rte_noreturn void
1041rte_exit(int exit_code, const char *format, ...)
1042 __rte_format_printf(2, 3);
1043
1044#ifdef __cplusplus
1045}
1046#endif
1047
1048#endif
uint64_t rte_str_to_size(const char *str)
__extension__ typedef uint64_t RTE_MARKER64[0]
Definition: rte_common.h:824
__extension__ typedef uint8_t RTE_MARKER8[0]
Definition: rte_common.h:818
__extension__ typedef uint32_t RTE_MARKER32[0]
Definition: rte_common.h:822
__extension__ typedef uint16_t RTE_MARKER16[0]
Definition: rte_common.h:820
#define __rte_format_printf(format_index, first_arg)
Definition: rte_common.h:280
uint64_t rte_iova_t
Definition: rte_common.h:808
#define __rte_aligned(a)
Definition: rte_common.h:121
__rte_experimental char * rte_size_to_str(char *buf, int buf_size, uint64_t count, bool use_iec, const char *unit)
static int rte_is_aligned(const void *const __rte_restrict ptr, const unsigned int align)
Definition: rte_common.h:732
__rte_noreturn void rte_exit(int exit_code, const char *format,...) __rte_format_printf(2
#define __rte_noreturn
Definition: rte_common.h:443
uint64_t phys_addr_t
Definition: rte_common.h:798
__extension__ typedef void * RTE_MARKER[0]
Definition: rte_common.h:816
#define __rte_restrict
Definition: rte_common.h:255