From 64f7b2961a18574528bb32dec33bc26de1e773c7 Mon Sep 17 00:00:00 2001 From: Matteo Croce Date: Thu, 18 Apr 2024 14:24:03 +0200 Subject: [PATCH] introduce FOREACH_ELEMENT Add a FOREACH_ELEMENT() macro which just passes ELEMENTSOF(v) as third argument to FOREACH_ARRAY(). --- coccinelle/parsing_hacks.h | 1 + src/basic/macro.h | 3 +++ 2 files changed, 4 insertions(+) diff --git a/coccinelle/parsing_hacks.h b/coccinelle/parsing_hacks.h index 9e77e514dd0..f88dae0c86b 100644 --- a/coccinelle/parsing_hacks.h +++ b/coccinelle/parsing_hacks.h @@ -68,6 +68,7 @@ /* Mark a couple of iterator explicitly as iterators, otherwise Coccinelle gets a bit confused. Coccinelle * can usually infer this information automagically, but in these specific cases it needs a bit of help. */ #define FOREACH_ARRAY(i, array, num) YACFE_ITERATOR +#define FOREACH_ELEMENT(i, array) YACFE_ITERATOR #define FOREACH_DIRENT_ALL(de, d, on_error) YACFE_ITERATOR #define FOREACH_STRING(x, y, ...) YACFE_ITERATOR #define HASHMAP_FOREACH(e, h) YACFE_ITERATOR diff --git a/src/basic/macro.h b/src/basic/macro.h index d43c3cdd5dd..19d5039fd3b 100644 --- a/src/basic/macro.h +++ b/src/basic/macro.h @@ -275,6 +275,9 @@ static inline int __coverity_check_and_return__(int condition) { #define FOREACH_ARRAY(i, array, num) \ _FOREACH_ARRAY(i, array, num, UNIQ_T(m, UNIQ), UNIQ_T(end, UNIQ)) +#define FOREACH_ELEMENT(i, array) \ + FOREACH_ARRAY(i, array, ELEMENTSOF(array)) + #define _DEFINE_TRIVIAL_REF_FUNC(type, name, scope) \ scope type *name##_ref(type *p) { \ if (!p) \