Zephyr API Documentation 3.7.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
util_macro.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2011-2014, Wind River Systems, Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
17#ifndef ZEPHYR_INCLUDE_SYS_UTIL_MACROS_H_
18#define ZEPHYR_INCLUDE_SYS_UTIL_MACROS_H_
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
29/*
30 * Most of the eldritch implementation details for all the macrobatics
31 * below (APIs like IS_ENABLED(), COND_CODE_1(), etc.) are hidden away
32 * in this file.
33 */
35
36#ifndef BIT
37#if defined(_ASMLANGUAGE)
38#define BIT(n) (1 << (n))
39#else
44#define BIT(n) (1UL << (n))
45#endif
46#endif
47
49#define BIT64(_n) (1ULL << (_n))
50
61#define WRITE_BIT(var, bit, set) \
62 ((var) = (set) ? ((var) | BIT(bit)) : ((var) & ~BIT(bit)))
63
68#define BIT_MASK(n) (BIT(n) - 1UL)
69
74#define BIT64_MASK(n) (BIT64(n) - 1ULL)
75
77#define IS_POWER_OF_TWO(x) (((x) != 0U) && (((x) & ((x) - 1U)) == 0U))
78
87#define IS_SHIFTED_BIT_MASK(m, s) (!(((m) >> (s)) & (((m) >> (s)) + 1U)))
88
94#define IS_BIT_MASK(m) IS_SHIFTED_BIT_MASK(m, 0)
95
97#define LSB_GET(value) ((value) & -(value))
98
103#define FIELD_GET(mask, value) (((value) & (mask)) / LSB_GET(mask))
104
110#define FIELD_PREP(mask, value) (((value) * LSB_GET(mask)) & (mask))
111
140#define IS_ENABLED(config_macro) Z_IS_ENABLED1(config_macro)
141/* INTERNAL: the first pass above is just to expand any existing
142 * macros, we need the macro value to be e.g. a literal "1" at
143 * expansion time in the next macro, not "(1)", etc... Standard
144 * recursive expansion does not work.
145 */
146
195#define COND_CODE_1(_flag, _if_1_code, _else_code) \
196 Z_COND_CODE_1(_flag, _if_1_code, _else_code)
197
211#define COND_CODE_0(_flag, _if_0_code, _else_code) \
212 Z_COND_CODE_0(_flag, _if_0_code, _else_code)
213
239#define IF_ENABLED(_flag, _code) \
240 COND_CODE_1(_flag, _code, ())
241
263#define IF_DISABLED(_flag, _code) \
264 COND_CODE_1(_flag, (), _code)
265
293#define IS_EMPTY(...) Z_IS_EMPTY_(__VA_ARGS__)
294
302#define IS_EQ(a, b) Z_IS_EQ(a, b)
303
331#define LIST_DROP_EMPTY(...) \
332 Z_LIST_DROP_FIRST(FOR_EACH(Z_LIST_NO_EMPTIES, (), __VA_ARGS__))
333
351#define EMPTY
352
361#define IDENTITY(V) V
362
371#define GET_ARG_N(N, ...) Z_GET_ARG_##N(__VA_ARGS__)
372
381#define GET_ARGS_LESS_N(N, ...) Z_GET_ARGS_LESS_##N(__VA_ARGS__)
382
394#define UTIL_OR(a, b) COND_CODE_1(UTIL_BOOL(a), (a), (b))
395
407#define UTIL_AND(a, b) COND_CODE_1(UTIL_BOOL(a), (b), (0))
408
415#define UTIL_INC(x) UTIL_PRIMITIVE_CAT(Z_UTIL_INC_, x)
416
423#define UTIL_DEC(x) UTIL_PRIMITIVE_CAT(Z_UTIL_DEC_, x)
424
429#define UTIL_X2(y) UTIL_PRIMITIVE_CAT(Z_UTIL_X2_, y)
430
431
458#define LISTIFY(LEN, F, sep, ...) UTIL_CAT(Z_UTIL_LISTIFY_, LEN)(F, sep, __VA_ARGS__)
459
481#define FOR_EACH(F, sep, ...) \
482 Z_FOR_EACH(F, sep, REVERSE_ARGS(__VA_ARGS__))
483
536#define FOR_EACH_NONEMPTY_TERM(F, term, ...) \
537 COND_CODE_0( \
538 /* are there zero non-empty arguments ? */ \
539 NUM_VA_ARGS_LESS_1(LIST_DROP_EMPTY(__VA_ARGS__, _)), \
540 /* if so, expand to nothing */ \
541 (), \
542 /* otherwise, expand to: */ \
543 (/* FOR_EACH() on nonempty elements, */ \
544 FOR_EACH(F, term, LIST_DROP_EMPTY(__VA_ARGS__)) \
545 /* plus a final terminator */ \
546 __DEBRACKET term \
547 ))
548
573#define FOR_EACH_IDX(F, sep, ...) \
574 Z_FOR_EACH_IDX(F, sep, REVERSE_ARGS(__VA_ARGS__))
575
601#define FOR_EACH_FIXED_ARG(F, sep, fixed_arg, ...) \
602 Z_FOR_EACH_FIXED_ARG(F, sep, fixed_arg, REVERSE_ARGS(__VA_ARGS__))
603
629#define FOR_EACH_IDX_FIXED_ARG(F, sep, fixed_arg, ...) \
630 Z_FOR_EACH_IDX_FIXED_ARG(F, sep, fixed_arg, REVERSE_ARGS(__VA_ARGS__))
631
636#define REVERSE_ARGS(...) \
637 Z_FOR_EACH_ENGINE(Z_FOR_EACH_EXEC, (,), Z_BYPASS, _, __VA_ARGS__)
638
647#define NUM_VA_ARGS_LESS_1(...) \
648 NUM_VA_ARGS_LESS_1_IMPL(__VA_ARGS__, 63, 62, 61, \
649 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, \
650 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, \
651 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, \
652 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, \
653 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, \
654 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, ~)
655
664#define NUM_VA_ARGS(...) \
665 COND_CODE_1(IS_EMPTY(__VA_ARGS__), (0), (UTIL_INC(NUM_VA_ARGS_LESS_1(__VA_ARGS__))))
666
687#define MACRO_MAP_CAT(...) MACRO_MAP_CAT_(__VA_ARGS__)
688
702#define MACRO_MAP_CAT_N(N, ...) MACRO_MAP_CAT_N_(N, __VA_ARGS__)
703
708#ifdef __cplusplus
709}
710#endif
711
712#endif /* ZEPHYR_INCLUDE_SYS_UTIL_MACROS_H_ */
Misc utilities.