should be used to create these, but in some cases it is useful to pass a
``struct memtype *`` pointer to some helper function.
- The ``MTYPE_name`` created by the macros is declared as an array, i.e.
+ The ``MTYPE_name`` created by the macros is declared as a pointer, i.e.
a function taking a ``struct memtype *`` argument can be called with an
``MTYPE_name`` argument (as opposed to ``&MTYPE_name``.)
*_mg_##mname.ref = _mg_##mname.next; \
}
-
-/* the array is a trick to make the "MTYPE_FOO" name work as a pointer without
- * putting a & in front of it, so we can do "XMALLOC(MTYPE_FOO, ...)" instead
- * of "XMALLOC(&MTYPE_FOO, ...)".
- */
#define DECLARE_MTYPE(name) \
extern struct memtype _mt_##name; \
- extern struct memtype MTYPE_##name[1]; \
+ extern struct memtype *const MTYPE_##name; \
/* end */
#define DEFINE_MTYPE_ATTR(group, mname, attr, desc) \
} \
/* end */
-/* can't quite get gcc to emit the alias correctly, so asm-alias it is :/ */
#define DEFINE_MTYPE(group, name, desc) \
DEFINE_MTYPE_ATTR(group, name, , desc) \
- __asm__(".equiv MTYPE_" #name ", _mt_" #name "\n\t" \
- ".global MTYPE_" #name "\n"); \
+ struct memtype *const MTYPE_##name = &_mt_##name; \
/* end */
-/* and this one's borked on clang, it drops static on aliases :/, so... asm */
+
#define DEFINE_MTYPE_STATIC(group, name, desc) \
DEFINE_MTYPE_ATTR(group, name, static, desc) \
- extern struct memtype MTYPE_##name[1]; \
- __asm__(".equiv MTYPE_" #name ", _mt_" #name "\n"); \
+ static struct memtype *const MTYPE_##name = &_mt_##name; \
/* end */
DECLARE_MGROUP(LIB)