util_macro.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610
  1. /*
  2. * Copyright (c) 2011-2014, Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Macro utilities
  9. *
  10. * Macro utilities are the public interface for C/C++ code and device tree
  11. * related implementation. In general, C/C++ will include <sys/util.h>
  12. * instead this file directly. For device tree implementation, this file
  13. * should be include instead <sys/util_internal.h>
  14. */
  15. #ifndef ZEPHYR_INCLUDE_SYS_UTIL_MACROS_H_
  16. #define ZEPHYR_INCLUDE_SYS_UTIL_MACROS_H_
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * @addtogroup sys-util
  22. * @{
  23. */
  24. /*
  25. * Most of the eldritch implementation details for all the macrobatics
  26. * below (APIs like IS_ENABLED(), COND_CODE_1(), etc.) are hidden away
  27. * in this file.
  28. */
  29. #include <sys/util_internal.h>
  30. #ifndef BIT
  31. #if defined(_ASMLANGUAGE)
  32. #define BIT(n) (1 << (n))
  33. #else
  34. /**
  35. * @brief Unsigned integer with bit position @p n set (signed in
  36. * assembly language).
  37. */
  38. #define BIT(n) (1UL << (n))
  39. #endif
  40. #endif
  41. /** @brief 64-bit unsigned integer with bit position @p _n set. */
  42. #define BIT64(_n) (1ULL << (_n))
  43. /**
  44. * @brief Set or clear a bit depending on a boolean value
  45. *
  46. * The argument @p var is a variable whose value is written to as a
  47. * side effect.
  48. *
  49. * @param var Variable to be altered
  50. * @param bit Bit number
  51. * @param set if 0, clears @p bit in @p var; any other value sets @p bit
  52. */
  53. #define WRITE_BIT(var, bit, set) \
  54. ((var) = (set) ? ((var) | BIT(bit)) : ((var) & ~BIT(bit)))
  55. /**
  56. * @brief Bit mask with bits 0 through <tt>n-1</tt> (inclusive) set,
  57. * or 0 if @p n is 0.
  58. */
  59. #define BIT_MASK(n) (BIT(n) - 1UL)
  60. /**
  61. * @brief 64-bit bit mask with bits 0 through <tt>n-1</tt> (inclusive) set,
  62. * or 0 if @p n is 0.
  63. */
  64. #define BIT64_MASK(n) (BIT64(n) - 1ULL)
  65. /**
  66. * @brief Check for macro definition in compiler-visible expressions
  67. *
  68. * This trick was pioneered in Linux as the config_enabled() macro. It
  69. * has the effect of taking a macro value that may be defined to "1"
  70. * or may not be defined at all and turning it into a literal
  71. * expression that can be handled by the C compiler instead of just
  72. * the preprocessor. It is often used with a @p CONFIG_FOO macro which
  73. * may be defined to 1 via Kconfig, or left undefined.
  74. *
  75. * That is, it works similarly to <tt>\#if defined(CONFIG_FOO)</tt>
  76. * except that its expansion is a C expression. Thus, much <tt>\#ifdef</tt>
  77. * usage can be replaced with equivalents like:
  78. *
  79. * if (IS_ENABLED(CONFIG_FOO)) {
  80. * do_something_with_foo
  81. * }
  82. *
  83. * This is cleaner since the compiler can generate errors and warnings
  84. * for @p do_something_with_foo even when @p CONFIG_FOO is undefined.
  85. *
  86. * @param config_macro Macro to check
  87. * @return 1 if @p config_macro is defined to 1, 0 otherwise (including
  88. * if @p config_macro is not defined)
  89. */
  90. #define IS_ENABLED(config_macro) Z_IS_ENABLED1(config_macro)
  91. /* INTERNAL: the first pass above is just to expand any existing
  92. * macros, we need the macro value to be e.g. a literal "1" at
  93. * expansion time in the next macro, not "(1)", etc... Standard
  94. * recursive expansion does not work.
  95. */
  96. /**
  97. * @brief Insert code depending on whether @p _flag expands to 1 or not.
  98. *
  99. * This relies on similar tricks as IS_ENABLED(), but as the result of
  100. * @p _flag expansion, results in either @p _if_1_code or @p
  101. * _else_code is expanded.
  102. *
  103. * To prevent the preprocessor from treating commas as argument
  104. * separators, the @p _if_1_code and @p _else_code expressions must be
  105. * inside brackets/parentheses: <tt>()</tt>. These are stripped away
  106. * during macro expansion.
  107. *
  108. * Example:
  109. *
  110. * COND_CODE_1(CONFIG_FLAG, (uint32_t x;), (there_is_no_flag();))
  111. *
  112. * If @p CONFIG_FLAG is defined to 1, this expands to:
  113. *
  114. * uint32_t x;
  115. *
  116. * It expands to <tt>there_is_no_flag();</tt> otherwise.
  117. *
  118. * This could be used as an alternative to:
  119. *
  120. * #if defined(CONFIG_FLAG) && (CONFIG_FLAG == 1)
  121. * #define MAYBE_DECLARE(x) uint32_t x
  122. * #else
  123. * #define MAYBE_DECLARE(x) there_is_no_flag()
  124. * #endif
  125. *
  126. * MAYBE_DECLARE(x);
  127. *
  128. * However, the advantage of COND_CODE_1() is that code is resolved in
  129. * place where it is used, while the @p \#if method defines @p
  130. * MAYBE_DECLARE on two lines and requires it to be invoked again on a
  131. * separate line. This makes COND_CODE_1() more concise and also
  132. * sometimes more useful when used within another macro's expansion.
  133. *
  134. * @note @p _flag can be the result of preprocessor expansion, e.g.
  135. * an expression involving <tt>NUM_VA_ARGS_LESS_1(...)</tt>.
  136. * However, @p _if_1_code is only expanded if @p _flag expands
  137. * to the integer literal 1. Integer expressions that evaluate
  138. * to 1, e.g. after doing some arithmetic, will not work.
  139. *
  140. * @param _flag evaluated flag
  141. * @param _if_1_code result if @p _flag expands to 1; must be in parentheses
  142. * @param _else_code result otherwise; must be in parentheses
  143. */
  144. #define COND_CODE_1(_flag, _if_1_code, _else_code) \
  145. Z_COND_CODE_1(_flag, _if_1_code, _else_code)
  146. /**
  147. * @brief Like COND_CODE_1() except tests if @p _flag is 0.
  148. *
  149. * This is like COND_CODE_1(), except that it tests whether @p _flag
  150. * expands to the integer literal 0. It expands to @p _if_0_code if
  151. * so, and @p _else_code otherwise; both of these must be enclosed in
  152. * parentheses.
  153. *
  154. * @param _flag evaluated flag
  155. * @param _if_0_code result if @p _flag expands to 0; must be in parentheses
  156. * @param _else_code result otherwise; must be in parentheses
  157. * @see COND_CODE_1()
  158. */
  159. #define COND_CODE_0(_flag, _if_0_code, _else_code) \
  160. Z_COND_CODE_0(_flag, _if_0_code, _else_code)
  161. /**
  162. * @brief Insert code if @p _flag is defined and equals 1.
  163. *
  164. * Like COND_CODE_1(), this expands to @p _code if @p _flag is defined to 1;
  165. * it expands to nothing otherwise.
  166. *
  167. * Example:
  168. *
  169. * IF_ENABLED(CONFIG_FLAG, (uint32_t foo;))
  170. *
  171. * If @p CONFIG_FLAG is defined to 1, this expands to:
  172. *
  173. * uint32_t foo;
  174. *
  175. * and to nothing otherwise.
  176. *
  177. * It can be considered as a more compact alternative to:
  178. *
  179. * #if defined(CONFIG_FLAG) && (CONFIG_FLAG == 1)
  180. * uint32_t foo;
  181. * #endif
  182. *
  183. * @param _flag evaluated flag
  184. * @param _code result if @p _flag expands to 1; must be in parentheses
  185. */
  186. #define IF_ENABLED(_flag, _code) \
  187. COND_CODE_1(_flag, _code, ())
  188. /**
  189. * @brief Check if a macro has a replacement expression
  190. *
  191. * If @p a is a macro defined to a nonempty value, this will return
  192. * true, otherwise it will return false. It only works with defined
  193. * macros, so an additional @p \#ifdef test may be needed in some cases.
  194. *
  195. * This macro may be used with COND_CODE_1() and COND_CODE_0() while
  196. * processing <tt>__VA_ARGS__</tt> to avoid processing empty arguments.
  197. *
  198. * Note that this macro is intended to check macro names that evaluate
  199. * to replacement lists being empty or containing numbers or macro name
  200. * like tokens.
  201. *
  202. * @note Not all arguments are accepted by this macro and compilation will fail
  203. * if argument cannot be concatenated with literal constant. That will
  204. * happen if argument does not start with letter or number. Example
  205. * arguments that will fail during compilation: .arg, (arg), "arg", {arg}.
  206. *
  207. * Example:
  208. *
  209. * #define EMPTY
  210. * #define NON_EMPTY 1
  211. * #undef UNDEFINED
  212. * IS_EMPTY(EMPTY)
  213. * IS_EMPTY(NON_EMPTY)
  214. * IS_EMPTY(UNDEFINED)
  215. * #if defined(EMPTY) && IS_EMPTY(EMPTY) == true
  216. * some_conditional_code
  217. * #endif
  218. *
  219. * In above examples, the invocations of IS_EMPTY(...) return @p true,
  220. * @p false, and @p true; @p some_conditional_code is included.
  221. *
  222. * @param a macro to check for emptiness
  223. */
  224. #define IS_EMPTY(a) Z_IS_EMPTY_(a, 1, 0,)
  225. /**
  226. * @brief Remove empty arguments from list.
  227. *
  228. * During macro expansion, <tt>__VA_ARGS__</tt> and other preprocessor
  229. * generated lists may contain empty elements, e.g.:
  230. *
  231. * #define LIST ,a,b,,d,
  232. *
  233. * Using EMPTY to show each empty element, LIST contains:
  234. *
  235. * EMPTY, a, b, EMPTY, d
  236. *
  237. * When processing such lists, e.g. using FOR_EACH(), all empty elements
  238. * will be processed, and may require filtering out.
  239. * To make that process easier, it is enough to invoke LIST_DROP_EMPTY
  240. * which will remove all empty elements.
  241. *
  242. * Example:
  243. *
  244. * LIST_DROP_EMPTY(LIST)
  245. *
  246. * expands to:
  247. *
  248. * a, b, d
  249. *
  250. * @param ... list to be processed
  251. */
  252. #define LIST_DROP_EMPTY(...) \
  253. Z_LIST_DROP_FIRST(FOR_EACH(Z_LIST_NO_EMPTIES, (), __VA_ARGS__))
  254. /**
  255. * @brief Macro with an empty expansion
  256. *
  257. * This trivial definition is provided for readability when a macro
  258. * should expand to an empty result, which e.g. is sometimes needed to
  259. * silence checkpatch.
  260. *
  261. * Example:
  262. *
  263. * #define LIST_ITEM(n) , item##n
  264. *
  265. * The above would cause checkpatch to complain, but:
  266. *
  267. * #define LIST_ITEM(n) EMPTY, item##n
  268. *
  269. * would not.
  270. */
  271. #define EMPTY
  272. /**
  273. * @brief Macro that expands to its argument
  274. *
  275. * This is useful in macros like @c FOR_EACH() when there is no
  276. * transformation required on the list elements.
  277. *
  278. * @param V any value
  279. */
  280. #define IDENTITY(V) V
  281. /**
  282. * @brief Get nth argument from argument list.
  283. *
  284. * @param N Argument index to fetch. Counter from 1.
  285. * @param ... Variable list of argments from which one argument is returned.
  286. *
  287. * @return Nth argument.
  288. */
  289. #define GET_ARG_N(N, ...) Z_GET_ARG_##N(__VA_ARGS__)
  290. /**
  291. * @brief Strips n first arguments from the argument list.
  292. *
  293. * @param N Number of arguments to discard.
  294. * @param ... Variable list of argments.
  295. *
  296. * @return argument list without N first arguments.
  297. */
  298. #define GET_ARGS_LESS_N(N, ...) Z_GET_ARGS_LESS_##N(__VA_ARGS__)
  299. /**
  300. * @brief Like <tt>a || b</tt>, but does evaluation and
  301. * short-circuiting at C preprocessor time.
  302. *
  303. * This is not the same as the binary @p || operator; in particular,
  304. * @p a should expand to an integer literal 0 or 1. However, @p b
  305. * can be any value.
  306. *
  307. * This can be useful when @p b is an expression that would cause a
  308. * build error when @p a is 1.
  309. */
  310. #define UTIL_OR(a, b) COND_CODE_1(UTIL_BOOL(a), (a), (b))
  311. /**
  312. * @brief Like <tt>a && b</tt>, but does evaluation and
  313. * short-circuiting at C preprocessor time.
  314. *
  315. * This is not the same as the binary @p &&, however; in particular,
  316. * @p a should expand to an integer literal 0 or 1. However, @p b
  317. * can be any value.
  318. *
  319. * This can be useful when @p b is an expression that would cause a
  320. * build error when @p a is 0.
  321. */
  322. #define UTIL_AND(a, b) COND_CODE_1(UTIL_BOOL(a), (b), (0))
  323. /**
  324. * @brief Generates a sequence of code.
  325. *
  326. * Example:
  327. *
  328. * #define FOO(i, _) MY_PWM ## i ,
  329. * { UTIL_LISTIFY(PWM_COUNT, FOO) }
  330. *
  331. * The above two lines expand to:
  332. *
  333. * { MY_PWM0 , MY_PWM1 , }
  334. *
  335. * @param LEN The length of the sequence. Must be an integer literal less
  336. * than 255.
  337. * @param F A macro function that accepts at least two arguments:
  338. * <tt>F(i, ...)</tt>. @p F is called repeatedly in the expansion.
  339. * Its first argument @p i is the index in the sequence, and
  340. * the variable list of arguments passed to UTIL_LISTIFY are passed
  341. * through to @p F.
  342. *
  343. * @note Calling UTIL_LISTIFY with undefined arguments has undefined
  344. * behavior.
  345. */
  346. #define UTIL_LISTIFY(LEN, F, ...) UTIL_CAT(Z_UTIL_LISTIFY_, LEN)(F, __VA_ARGS__)
  347. /**
  348. * @brief Call a macro @p F on each provided argument with a given
  349. * separator between each call.
  350. *
  351. * Example:
  352. *
  353. * #define F(x) int a##x
  354. * FOR_EACH(F, (;), 4, 5, 6);
  355. *
  356. * This expands to:
  357. *
  358. * int a4;
  359. * int a5;
  360. * int a6;
  361. *
  362. * @param F Macro to invoke
  363. * @param sep Separator (e.g. comma or semicolon). Must be in parentheses;
  364. * this is required to enable providing a comma as separator.
  365. * @param ... Variable argument list. The macro @p F is invoked as
  366. * <tt>F(element)</tt> for each element in the list.
  367. */
  368. #define FOR_EACH(F, sep, ...) \
  369. Z_FOR_EACH(F, sep, REVERSE_ARGS(__VA_ARGS__))
  370. /**
  371. * @brief Like FOR_EACH(), but with a terminator instead of a separator,
  372. * and drops empty elements from the argument list
  373. *
  374. * The @p sep argument to <tt>FOR_EACH(F, (sep), a, b)</tt> is a
  375. * separator which is placed between calls to @p F, like this:
  376. *
  377. * FOR_EACH(F, (sep), a, b) // F(a) sep F(b)
  378. * // ^^^ no sep here!
  379. *
  380. * By contrast, the @p term argument to <tt>FOR_EACH_NONEMPTY_TERM(F, (term),
  381. * a, b)</tt> is added after each time @p F appears in the expansion:
  382. *
  383. * FOR_EACH_NONEMPTY_TERM(F, (term), a, b) // F(a) term F(b) term
  384. * // ^^^^
  385. *
  386. * Further, any empty elements are dropped:
  387. *
  388. * FOR_EACH_NONEMPTY_TERM(F, (term), a, EMPTY, b) // F(a) term F(b) term
  389. *
  390. * This is more convenient in some cases, because FOR_EACH_NONEMPTY_TERM()
  391. * expands to nothing when given an empty argument list, and it's
  392. * often cumbersome to write a macro @p F that does the right thing
  393. * even when given an empty argument.
  394. *
  395. * One example is when <tt>__VA_ARGS__</tt> may or may not be empty,
  396. * and the results are embedded in a larger initializer:
  397. *
  398. * #define SQUARE(x) ((x)*(x))
  399. *
  400. * int my_array[] = {
  401. * FOR_EACH_NONEMPTY_TERM(SQUARE, (,), FOO(...))
  402. * FOR_EACH_NONEMPTY_TERM(SQUARE, (,), BAR(...))
  403. * FOR_EACH_NONEMPTY_TERM(SQUARE, (,), BAZ(...))
  404. * };
  405. *
  406. * This is more convenient than:
  407. *
  408. * 1. figuring out whether the @p FOO, @p BAR, and @p BAZ expansions
  409. * are empty and adding a comma manually (or not) between FOR_EACH()
  410. * calls
  411. * 2. rewriting SQUARE so it reacts appropriately when "x" is empty
  412. * (which would be necessary if e.g. @p FOO expands to nothing)
  413. *
  414. * @param F Macro to invoke on each nonempty element of the variable
  415. * arguments
  416. * @param term Terminator (e.g. comma or semicolon) placed after each
  417. * invocation of F. Must be in parentheses; this is required
  418. * to enable providing a comma as separator.
  419. * @param ... Variable argument list. The macro @p F is invoked as
  420. * <tt>F(element)</tt> for each nonempty element in the list.
  421. */
  422. #define FOR_EACH_NONEMPTY_TERM(F, term, ...) \
  423. COND_CODE_0( \
  424. /* are there zero non-empty arguments ? */ \
  425. NUM_VA_ARGS_LESS_1(LIST_DROP_EMPTY(__VA_ARGS__, _)), \
  426. /* if so, expand to nothing */ \
  427. (), \
  428. /* otherwise, expand to: */ \
  429. (/* FOR_EACH() on nonempty elements, */ \
  430. FOR_EACH(F, term, LIST_DROP_EMPTY(__VA_ARGS__)) \
  431. /* plus a final terminator */ \
  432. __DEBRACKET term \
  433. ))
  434. /**
  435. * @brief Call macro @p F on each provided argument, with the argument's index
  436. * as an additional parameter.
  437. *
  438. * This is like FOR_EACH(), except @p F should be a macro which takes two
  439. * arguments: <tt>F(index, variable_arg)</tt>.
  440. *
  441. * Example:
  442. *
  443. * #define F(idx, x) int a##idx = x
  444. * FOR_EACH_IDX(F, (;), 4, 5, 6);
  445. *
  446. * This expands to:
  447. *
  448. * int a0 = 4;
  449. * int a1 = 5;
  450. * int a2 = 6;
  451. *
  452. * @param F Macro to invoke
  453. * @param sep Separator (e.g. comma or semicolon). Must be in parentheses;
  454. * this is required to enable providing a comma as separator.
  455. * @param ... Variable argument list. The macro @p F is invoked as
  456. * <tt>F(index, element)</tt> for each element in the list.
  457. */
  458. #define FOR_EACH_IDX(F, sep, ...) \
  459. Z_FOR_EACH_IDX(F, sep, REVERSE_ARGS(__VA_ARGS__))
  460. /**
  461. * @brief Call macro @p F on each provided argument, with an additional fixed
  462. * argument as a parameter.
  463. *
  464. * This is like FOR_EACH(), except @p F should be a macro which takes two
  465. * arguments: <tt>F(variable_arg, fixed_arg)</tt>.
  466. *
  467. * Example:
  468. *
  469. * static void func(int val, void *dev);
  470. * FOR_EACH_FIXED_ARG(func, (;), dev, 4, 5, 6);
  471. *
  472. * This expands to:
  473. *
  474. * func(4, dev);
  475. * func(5, dev);
  476. * func(6, dev);
  477. *
  478. * @param F Macro to invoke
  479. * @param sep Separator (e.g. comma or semicolon). Must be in parentheses;
  480. * this is required to enable providing a comma as separator.
  481. * @param fixed_arg Fixed argument passed to @p F as the second macro parameter.
  482. * @param ... Variable argument list. The macro @p F is invoked as
  483. * <tt>F(element, fixed_arg)</tt> for each element in the list.
  484. */
  485. #define FOR_EACH_FIXED_ARG(F, sep, fixed_arg, ...) \
  486. Z_FOR_EACH_FIXED_ARG(F, sep, fixed_arg, REVERSE_ARGS(__VA_ARGS__))
  487. /**
  488. * @brief Calls macro @p F for each variable argument with an index and fixed
  489. * argument
  490. *
  491. * This is like the combination of FOR_EACH_IDX() with FOR_EACH_FIXED_ARG().
  492. *
  493. * Example:
  494. *
  495. * #define F(idx, x, fixed_arg) int fixed_arg##idx = x
  496. * FOR_EACH_IDX_FIXED_ARG(F, (;), a, 4, 5, 6);
  497. *
  498. * This expands to:
  499. *
  500. * int a0 = 4;
  501. * int a1 = 5;
  502. * int a2 = 6;
  503. *
  504. * @param F Macro to invoke
  505. * @param sep Separator (e.g. comma or semicolon). Must be in parentheses;
  506. * This is required to enable providing a comma as separator.
  507. * @param fixed_arg Fixed argument passed to @p F as the third macro parameter.
  508. * @param ... Variable list of arguments. The macro @p F is invoked as
  509. * <tt>F(index, element, fixed_arg)</tt> for each element in
  510. * the list.
  511. */
  512. #define FOR_EACH_IDX_FIXED_ARG(F, sep, fixed_arg, ...) \
  513. Z_FOR_EACH_IDX_FIXED_ARG(F, sep, fixed_arg, REVERSE_ARGS(__VA_ARGS__))
  514. /** @brief Reverse arguments order.
  515. *
  516. * @param ... Variable argument list.
  517. */
  518. #define REVERSE_ARGS(...) \
  519. Z_FOR_EACH_ENGINE(Z_FOR_EACH_EXEC, (,), Z_BYPASS, _, __VA_ARGS__)
  520. /**
  521. * @brief Number of arguments in the variable arguments list minus one.
  522. *
  523. * @param ... List of arguments
  524. * @return Number of variadic arguments in the argument list, minus one
  525. */
  526. #define NUM_VA_ARGS_LESS_1(...) \
  527. NUM_VA_ARGS_LESS_1_IMPL(__VA_ARGS__, 63, 62, 61, \
  528. 60, 59, 58, 57, 56, 55, 54, 53, 52, 51, \
  529. 50, 49, 48, 47, 46, 45, 44, 43, 42, 41, \
  530. 40, 39, 38, 37, 36, 35, 34, 33, 32, 31, \
  531. 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, \
  532. 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, \
  533. 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, ~)
  534. /**
  535. * @brief Mapping macro that pastes results together
  536. *
  537. * This is similar to FOR_EACH() in that it invokes a macro repeatedly
  538. * on each element of <tt>__VA_ARGS__</tt>. However, unlike FOR_EACH(),
  539. * MACRO_MAP_CAT() pastes the results together into a single token.
  540. *
  541. * For example, with this macro FOO:
  542. *
  543. * #define FOO(x) item_##x##_
  544. *
  545. * <tt>MACRO_MAP_CAT(FOO, a, b, c),</tt> expands to the token:
  546. *
  547. * item_a_item_b_item_c_
  548. *
  549. * @param ... Macro to expand on each argument, followed by its
  550. * arguments. (The macro should take exactly one argument.)
  551. * @return The results of expanding the macro on each argument, all pasted
  552. * together
  553. */
  554. #define MACRO_MAP_CAT(...) MACRO_MAP_CAT_(__VA_ARGS__)
  555. /**
  556. * @brief Mapping macro that pastes a fixed number of results together
  557. *
  558. * Similar to @ref MACRO_MAP_CAT(), but expects a fixed number of
  559. * arguments. If more arguments are given than are expected, the rest
  560. * are ignored.
  561. *
  562. * @param N Number of arguments to map
  563. * @param ... Macro to expand on each argument, followed by its
  564. * arguments. (The macro should take exactly one argument.)
  565. * @return The results of expanding the macro on each argument, all pasted
  566. * together
  567. */
  568. #define MACRO_MAP_CAT_N(N, ...) MACRO_MAP_CAT_N_(N, __VA_ARGS__)
  569. /**
  570. * @}
  571. */
  572. #ifdef __cplusplus
  573. }
  574. #endif
  575. #endif /* ZEPHYR_INCLUDE_SYS_UTIL_MACROS_H_ */