DPDK  21.11.7-rc1
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 #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 /* OS specific include */
28 #include <rte_os.h>
29 
30 #ifndef typeof
31 #define typeof __typeof__
32 #endif
33 
34 #ifndef __cplusplus
35 #ifndef asm
36 #define asm __asm__
37 #endif
38 #endif
39 
41 #if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 201112L
42 #define RTE_STD_C11 __extension__
43 #else
44 #define RTE_STD_C11
45 #endif
46 
47 /*
48  * RTE_TOOLCHAIN_GCC is defined if the target is built with GCC,
49  * while a host application (like pmdinfogen) may have another compiler.
50  * RTE_CC_IS_GNU is true if the file is compiled with GCC,
51  * no matter it is a target or host application.
52  */
53 #define RTE_CC_IS_GNU 0
54 #if defined __clang__
55 #define RTE_CC_CLANG
56 #elif defined __INTEL_COMPILER
57 #define RTE_CC_ICC
58 #elif defined __GNUC__
59 #define RTE_CC_GCC
60 #undef RTE_CC_IS_GNU
61 #define RTE_CC_IS_GNU 1
62 #endif
63 #if RTE_CC_IS_GNU
64 #define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + \
65  __GNUC_PATCHLEVEL__)
66 #endif
67 
71 #define __rte_aligned(a) __attribute__((__aligned__(a)))
72 
73 #ifdef RTE_ARCH_STRICT_ALIGN
74 typedef uint64_t unaligned_uint64_t __rte_aligned(1);
75 typedef uint32_t unaligned_uint32_t __rte_aligned(1);
76 typedef uint16_t unaligned_uint16_t __rte_aligned(1);
77 #else
78 typedef uint64_t unaligned_uint64_t;
79 typedef uint32_t unaligned_uint32_t;
80 typedef uint16_t unaligned_uint16_t;
81 #endif
82 
86 #define __rte_packed __attribute__((__packed__))
87 
91 #define __rte_may_alias __attribute__((__may_alias__))
92 
93 /******* Macro to mark functions and fields scheduled for removal *****/
94 #define __rte_deprecated __attribute__((__deprecated__))
95 #define __rte_deprecated_msg(msg) __attribute__((__deprecated__(msg)))
96 
100 #if defined(RTE_CC_GCC) || defined(RTE_CC_CLANG)
101 #define RTE_PRAGMA(x) _Pragma(#x)
102 #define RTE_PRAGMA_WARNING(w) RTE_PRAGMA(GCC warning #w)
103 #define RTE_DEPRECATED(x) RTE_PRAGMA_WARNING(#x is deprecated)
104 #else
105 #define RTE_DEPRECATED(x)
106 #endif
107 
111 #define __rte_weak __attribute__((__weak__))
112 
116 #define __rte_used __attribute__((used))
117 
118 /*********** Macros to eliminate unused variable warnings ********/
119 
123 #define __rte_unused __attribute__((__unused__))
124 
128 #if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L
129 #define __rte_restrict __restrict
130 #else
131 #define __rte_restrict restrict
132 #endif
133 
138 #define RTE_SET_USED(x) (void)(x)
139 
147 #if RTE_CC_IS_GNU
148 #define __rte_format_printf(format_index, first_arg) \
149  __attribute__((format(gnu_printf, format_index, first_arg)))
150 #else
151 #define __rte_format_printf(format_index, first_arg) \
152  __attribute__((format(printf, format_index, first_arg)))
153 #endif
154 
160 #if defined(RTE_CC_GCC) || defined(RTE_CC_CLANG)
161 #define __rte_alloc_size(...) \
162  __attribute__((alloc_size(__VA_ARGS__)))
163 #else
164 #define __rte_alloc_size(...)
165 #endif
166 
167 #define RTE_PRIORITY_LOG 101
168 #define RTE_PRIORITY_BUS 110
169 #define RTE_PRIORITY_CLASS 120
170 #define RTE_PRIORITY_LAST 65535
171 
172 #define RTE_PRIO(prio) \
173  RTE_PRIORITY_ ## prio
174 
184 #ifndef RTE_INIT_PRIO /* Allow to override from EAL */
185 #define RTE_INIT_PRIO(func, prio) \
186 static void __attribute__((constructor(RTE_PRIO(prio)), used)) func(void)
187 #endif
188 
197 #define RTE_INIT(func) \
198  RTE_INIT_PRIO(func, LAST)
199 
209 #ifndef RTE_FINI_PRIO /* Allow to override from EAL */
210 #define RTE_FINI_PRIO(func, prio) \
211 static void __attribute__((destructor(RTE_PRIO(prio)), used)) func(void)
212 #endif
213 
222 #define RTE_FINI(func) \
223  RTE_FINI_PRIO(func, LAST)
224 
228 #define __rte_noreturn __attribute__((noreturn))
229 
233 #define __rte_always_inline inline __attribute__((always_inline))
234 
238 #define __rte_noinline __attribute__((noinline))
239 
243 #define __rte_hot __attribute__((hot))
244 
248 #define __rte_cold __attribute__((cold))
249 
253 #ifdef RTE_MALLOC_ASAN
254 #ifdef RTE_CC_CLANG
255 #define __rte_no_asan __attribute__((no_sanitize("address", "hwaddress")))
256 #else
257 #define __rte_no_asan __attribute__((no_sanitize_address))
258 #endif
259 #else /* ! RTE_MALLOC_ASAN */
260 #define __rte_no_asan
261 #endif
262 
263 /*********** Macros for pointer arithmetic ********/
264 
268 #define RTE_PTR_ADD(ptr, x) ((void*)((uintptr_t)(ptr) + (x)))
269 
273 #define RTE_PTR_SUB(ptr, x) ((void *)((uintptr_t)(ptr) - (x)))
274 
280 #define RTE_PTR_DIFF(ptr1, ptr2) ((uintptr_t)(ptr1) - (uintptr_t)(ptr2))
281 
285 #define RTE_CAST_FIELD(var, field, type) \
286  (*(type *)((uintptr_t)(var) + offsetof(typeof(*(var)), field)))
287 
288 /*********** Macros/static functions for doing alignment ********/
289 
290 
297 #define RTE_PTR_ALIGN_FLOOR(ptr, align) \
298  ((typeof(ptr))RTE_ALIGN_FLOOR((uintptr_t)(ptr), align))
299 
306 #define RTE_ALIGN_FLOOR(val, align) \
307  (typeof(val))((val) & (~((typeof(val))((align) - 1))))
308 
315 #define RTE_PTR_ALIGN_CEIL(ptr, align) \
316  RTE_PTR_ALIGN_FLOOR((typeof(ptr))RTE_PTR_ADD(ptr, (align) - 1), align)
317 
324 #define RTE_ALIGN_CEIL(val, align) \
325  RTE_ALIGN_FLOOR(((val) + ((typeof(val)) (align) - 1)), align)
326 
334 #define RTE_PTR_ALIGN(ptr, align) RTE_PTR_ALIGN_CEIL(ptr, align)
335 
343 #define RTE_ALIGN(val, align) RTE_ALIGN_CEIL(val, align)
344 
350 #define RTE_ALIGN_MUL_CEIL(v, mul) \
351  ((((v) + (typeof(v))(mul) - 1) / ((typeof(v))(mul))) * (typeof(v))(mul))
352 
358 #define RTE_ALIGN_MUL_FLOOR(v, mul) \
359  (((v) / ((typeof(v))(mul))) * (typeof(v))(mul))
360 
366 #define RTE_ALIGN_MUL_NEAR(v, mul) \
367  ({ \
368  typeof(v) ceil = RTE_ALIGN_MUL_CEIL(v, mul); \
369  typeof(v) floor = RTE_ALIGN_MUL_FLOOR(v, mul); \
370  (ceil - (v)) > ((v) - floor) ? floor : ceil; \
371  })
372 
384 static inline int
385 rte_is_aligned(void *ptr, unsigned align)
386 {
387  return RTE_PTR_ALIGN(ptr, align) == ptr;
388 }
389 
390 /*********** Macros for compile type checks ********/
391 
395 #define RTE_BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
396 
397 /*********** Cache line related macros ********/
398 
400 #define RTE_CACHE_LINE_MASK (RTE_CACHE_LINE_SIZE-1)
401 
403 #define RTE_CACHE_LINE_ROUNDUP(size) \
404  (RTE_CACHE_LINE_SIZE * ((size + RTE_CACHE_LINE_SIZE - 1) / \
405  RTE_CACHE_LINE_SIZE))
406 
408 #if RTE_CACHE_LINE_SIZE == 64
409 #define RTE_CACHE_LINE_SIZE_LOG2 6
410 #elif RTE_CACHE_LINE_SIZE == 128
411 #define RTE_CACHE_LINE_SIZE_LOG2 7
412 #else
413 #error "Unsupported cache line size"
414 #endif
415 
417 #define RTE_CACHE_LINE_MIN_SIZE 64
418 
420 #define __rte_cache_aligned __rte_aligned(RTE_CACHE_LINE_SIZE)
421 
423 #define __rte_cache_min_aligned __rte_aligned(RTE_CACHE_LINE_MIN_SIZE)
424 
425 /*********** PA/IOVA type definitions ********/
426 
428 typedef uint64_t phys_addr_t;
429 #define RTE_BAD_PHYS_ADDR ((phys_addr_t)-1)
430 
438 typedef uint64_t rte_iova_t;
439 #define RTE_BAD_IOVA ((rte_iova_t)-1)
440 
441 /*********** Structure alignment markers ********/
442 
444 __extension__ typedef void *RTE_MARKER[0];
446 __extension__ typedef uint8_t RTE_MARKER8[0];
448 __extension__ typedef uint16_t RTE_MARKER16[0];
450 __extension__ typedef uint32_t RTE_MARKER32[0];
452 __extension__ typedef uint64_t RTE_MARKER64[0];
453 
464 static inline uint32_t
465 rte_combine32ms1b(uint32_t x)
466 {
467  x |= x >> 1;
468  x |= x >> 2;
469  x |= x >> 4;
470  x |= x >> 8;
471  x |= x >> 16;
472 
473  return x;
474 }
475 
486 static inline uint64_t
487 rte_combine64ms1b(uint64_t v)
488 {
489  v |= v >> 1;
490  v |= v >> 2;
491  v |= v >> 4;
492  v |= v >> 8;
493  v |= v >> 16;
494  v |= v >> 32;
495 
496  return v;
497 }
498 
499 /*********** Macros to work with powers of 2 ********/
500 
504 #define RTE_IS_POWER_OF_2(n) ((n) && !(((n) - 1) & (n)))
505 
512 static inline int
513 rte_is_power_of_2(uint32_t n)
514 {
515  return n && !(n & (n - 1));
516 }
517 
527 static inline uint32_t
528 rte_align32pow2(uint32_t x)
529 {
530  x--;
531  x = rte_combine32ms1b(x);
532 
533  return x + 1;
534 }
535 
545 static inline uint32_t
547 {
548  x = rte_combine32ms1b(x);
549 
550  return x - (x >> 1);
551 }
552 
562 static inline uint64_t
563 rte_align64pow2(uint64_t v)
564 {
565  v--;
566  v = rte_combine64ms1b(v);
567 
568  return v + 1;
569 }
570 
580 static inline uint64_t
582 {
583  v = rte_combine64ms1b(v);
584 
585  return v - (v >> 1);
586 }
587 
588 /*********** Macros for calculating min and max **********/
589 
593 #define RTE_MIN(a, b) \
594  __extension__ ({ \
595  typeof (a) _a = (a); \
596  typeof (b) _b = (b); \
597  _a < _b ? _a : _b; \
598  })
599 
603 #define RTE_MAX(a, b) \
604  __extension__ ({ \
605  typeof (a) _a = (a); \
606  typeof (b) _b = (b); \
607  _a > _b ? _a : _b; \
608  })
609 
610 /*********** Other general functions / macros ********/
611 
623 static inline uint32_t
624 rte_bsf32(uint32_t v)
625 {
626  return (uint32_t)__builtin_ctz(v);
627 }
628 
643 static inline int
644 rte_bsf32_safe(uint32_t v, uint32_t *pos)
645 {
646  if (v == 0)
647  return 0;
648 
649  *pos = rte_bsf32(v);
650  return 1;
651 }
652 
664 static inline uint32_t
665 rte_log2_u32(uint32_t v)
666 {
667  if (v == 0)
668  return 0;
669  v = rte_align32pow2(v);
670  return rte_bsf32(v);
671 }
672 
673 
685 static inline int
686 rte_fls_u32(uint32_t x)
687 {
688  return (x == 0) ? 0 : 32 - __builtin_clz(x);
689 }
690 
702 static inline int
703 rte_bsf64(uint64_t v)
704 {
705  return (uint32_t)__builtin_ctzll(v);
706 }
707 
722 static inline int
723 rte_bsf64_safe(uint64_t v, uint32_t *pos)
724 {
725  if (v == 0)
726  return 0;
727 
728  *pos = rte_bsf64(v);
729  return 1;
730 }
731 
744 static inline int
745 rte_fls_u64(uint64_t x)
746 {
747  return (x == 0) ? 0 : 64 - __builtin_clzll(x);
748 }
749 
761 static inline uint32_t
762 rte_log2_u64(uint64_t v)
763 {
764  if (v == 0)
765  return 0;
766  v = rte_align64pow2(v);
767  /* we checked for v being 0 already, so no undefined behavior */
768  return rte_bsf64(v);
769 }
770 
771 #ifndef offsetof
772 
773 #define offsetof(TYPE, MEMBER) __builtin_offsetof (TYPE, MEMBER)
774 #endif
775 
790 #ifndef container_of
791 #define container_of(ptr, type, member) __extension__ ({ \
792  const typeof(((type *)0)->member) *_ptr = (ptr); \
793  __rte_unused type *_target_ptr = \
794  (type *)(ptr); \
795  (type *)(((uintptr_t)_ptr) - offsetof(type, member)); \
796  })
797 #endif
798 
800 #define RTE_SWAP(a, b) \
801  __extension__ ({ \
802  typeof (a) _a = a; \
803  a = b; \
804  b = _a; \
805  })
806 
817 #define RTE_SIZEOF_FIELD(type, field) (sizeof(((type *)0)->field))
818 
819 #define _RTE_STR(x) #x
820 
821 #define RTE_STR(x) _RTE_STR(x)
822 
828 #define RTE_FMT(fmt, ...) fmt "%.0s", __VA_ARGS__ ""
829 #define RTE_FMT_HEAD(fmt, ...) fmt
830 #define RTE_FMT_TAIL(fmt, ...) __VA_ARGS__
831 
833 #define RTE_LEN2MASK(ln, tp) \
834  ((tp)((uint64_t)-1 >> (sizeof(uint64_t) * CHAR_BIT - (ln))))
835 
837 #define RTE_DIM(a) (sizeof (a) / sizeof ((a)[0]))
838 
853 static inline uint64_t
854 rte_str_to_size(const char *str)
855 {
856  char *endptr;
857  unsigned long long size;
858 
859  while (isspace((int)*str))
860  str++;
861  if (*str == '-')
862  return 0;
863 
864  errno = 0;
865  size = strtoull(str, &endptr, 0);
866  if (errno)
867  return 0;
868 
869  if (*endptr == ' ')
870  endptr++; /* allow 1 space gap */
871 
872  switch (*endptr){
873  case 'G': case 'g': size *= 1024; /* fall-through */
874  case 'M': case 'm': size *= 1024; /* fall-through */
875  case 'K': case 'k': size *= 1024; /* fall-through */
876  default:
877  break;
878  }
879  return size;
880 }
881 
895 __rte_noreturn void
896 rte_exit(int exit_code, const char *format, ...)
897  __rte_format_printf(2, 3);
898 
899 #ifdef __cplusplus
900 }
901 #endif
902 
903 #endif
static int rte_is_aligned(void *ptr, unsigned align)
Definition: rte_common.h:385
static uint64_t rte_combine64ms1b(uint64_t v)
Definition: rte_common.h:487
uint64_t rte_iova_t
Definition: rte_common.h:438
static int rte_fls_u32(uint32_t x)
Definition: rte_common.h:686
static uint32_t rte_log2_u64(uint64_t v)
Definition: rte_common.h:762
static uint32_t rte_combine32ms1b(uint32_t x)
Definition: rte_common.h:465
static uint64_t rte_align64pow2(uint64_t v)
Definition: rte_common.h:563
static uint32_t rte_log2_u32(uint32_t v)
Definition: rte_common.h:665
__extension__ typedef uint8_t RTE_MARKER8[0]
Definition: rte_common.h:446
__extension__ typedef void * RTE_MARKER[0]
Definition: rte_common.h:444
static uint32_t rte_bsf32(uint32_t v)
Definition: rte_common.h:624
static uint64_t rte_align64prevpow2(uint64_t v)
Definition: rte_common.h:581
static uint32_t rte_align32pow2(uint32_t x)
Definition: rte_common.h:528
static int rte_bsf64_safe(uint64_t v, uint32_t *pos)
Definition: rte_common.h:723
uint64_t phys_addr_t
Definition: rte_common.h:428
__extension__ typedef uint64_t RTE_MARKER64[0]
Definition: rte_common.h:452
#define __rte_format_printf(format_index, first_arg)
Definition: rte_common.h:151
static int rte_fls_u64(uint64_t x)
Definition: rte_common.h:745
static int rte_bsf32_safe(uint32_t v, uint32_t *pos)
Definition: rte_common.h:644
#define RTE_PTR_ALIGN(ptr, align)
Definition: rte_common.h:334
static int rte_is_power_of_2(uint32_t n)
Definition: rte_common.h:513
__extension__ typedef uint16_t RTE_MARKER16[0]
Definition: rte_common.h:448
static int rte_bsf64(uint64_t v)
Definition: rte_common.h:703
__extension__ typedef uint32_t RTE_MARKER32[0]
Definition: rte_common.h:450
#define __rte_noreturn
Definition: rte_common.h:228
static uint32_t rte_align32prevpow2(uint32_t x)
Definition: rte_common.h:546
static uint64_t rte_str_to_size(const char *str)
Definition: rte_common.h:854
__rte_noreturn void rte_exit(int exit_code, const char *format,...) __rte_format_printf(2
#define __rte_aligned(a)
Definition: rte_common.h:71