2016-09-23 17:02:51 +02:00
|
|
|
/* compiler.h: macros to abstract away compiler specifics
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
2011-07-11 19:24:44 +02:00
|
|
|
|
|
|
|
#ifndef COMPILER_H
|
|
|
|
#define COMPILER_H
|
|
|
|
|
2016-07-15 18:27:40 +02:00
|
|
|
#if defined __clang_analyzer__ || defined __COVERITY__
|
|
|
|
#define QEMU_STATIC_ANALYSIS 1
|
|
|
|
#endif
|
2011-07-11 19:24:44 +02:00
|
|
|
|
2011-09-16 22:03:07 +02:00
|
|
|
/*----------------------------------------------------------------------------
|
|
|
|
| The macro QEMU_GNUC_PREREQ tests for minimum version of the GNU C compiler.
|
|
|
|
| The code is a copy of SOFTFLOAT_GNUC_PREREQ, see softfloat-macros.h.
|
|
|
|
*----------------------------------------------------------------------------*/
|
|
|
|
#if defined(__GNUC__) && defined(__GNUC_MINOR__)
|
|
|
|
# define QEMU_GNUC_PREREQ(maj, min) \
|
|
|
|
((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
|
|
|
|
#else
|
|
|
|
# define QEMU_GNUC_PREREQ(maj, min) 0
|
|
|
|
#endif
|
|
|
|
|
2011-07-11 19:24:44 +02:00
|
|
|
#define QEMU_NORETURN __attribute__ ((__noreturn__))
|
2011-09-16 22:03:07 +02:00
|
|
|
|
2011-07-11 19:24:44 +02:00
|
|
|
#define QEMU_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
|
|
|
|
qom: Add object_new_with_props() / object_new_withpropv() helpers
It is reasonably common to want to create an object, set a
number of properties, register it in the hierarchy and then
mark it as complete (if a user creatable type). This requires
quite a lot of error prone, verbose, boilerplate code to achieve.
First a pair of functions object_set_props() / object_set_propv()
are added which allow for a list of objects to be set in
one single API call.
Then object_new_with_props() / object_new_with_propv() constructors
are added which simplify the sequence of calls to create an
object, populate properties, register in the object composition
tree and mark the object complete, into a single method call.
Usage would be:
Error *err = NULL;
Object *obj;
obj = object_new_with_propv(TYPE_MEMORY_BACKEND_FILE,
object_get_objects_root(),
"hostmem0",
&err,
"share", "yes",
"mem-path", "/dev/shm/somefile",
"prealloc", "yes",
"size", "1048576",
NULL);
Note all property values are passed in string form and will
be parsed into their required data types, using normal QOM
semantics for parsing from string format.
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
2015-05-13 18:14:06 +02:00
|
|
|
#define QEMU_SENTINEL __attribute__((sentinel))
|
|
|
|
|
2019-05-07 13:55:02 +02:00
|
|
|
#if defined(_WIN32) && (defined(__x86_64__) || defined(__i386__))
|
2011-08-31 12:38:00 +02:00
|
|
|
# define QEMU_PACKED __attribute__((gcc_struct, packed))
|
|
|
|
#else
|
|
|
|
# define QEMU_PACKED __attribute__((packed))
|
|
|
|
#endif
|
|
|
|
|
2016-06-08 20:55:19 +02:00
|
|
|
#define QEMU_ALIGNED(X) __attribute__((aligned(X)))
|
|
|
|
|
2015-08-19 17:20:19 +02:00
|
|
|
#ifndef glue
|
|
|
|
#define xglue(x, y) x ## y
|
|
|
|
#define glue(x, y) xglue(x, y)
|
|
|
|
#define stringify(s) tostring(s)
|
|
|
|
#define tostring(s) #s
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef likely
|
|
|
|
#if __GNUC__ < 3
|
|
|
|
#define __builtin_expect(x, n) (x)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define likely(x) __builtin_expect(!!(x), 1)
|
|
|
|
#define unlikely(x) __builtin_expect(!!(x), 0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef container_of
|
|
|
|
#define container_of(ptr, type, member) ({ \
|
|
|
|
const typeof(((type *) 0)->member) *__mptr = (ptr); \
|
|
|
|
(type *) ((char *) __mptr - offsetof(type, member));})
|
|
|
|
#endif
|
|
|
|
|
2018-06-14 18:44:31 +02:00
|
|
|
#define sizeof_field(type, field) sizeof(((type *)0)->field)
|
|
|
|
|
2019-10-11 17:27:59 +02:00
|
|
|
/*
|
|
|
|
* Calculate the number of bytes up to and including the given 'field' of
|
|
|
|
* 'container'.
|
|
|
|
*/
|
|
|
|
#define endof(container, field) \
|
|
|
|
(offsetof(container, field) + sizeof_field(container, field))
|
|
|
|
|
2015-08-19 17:20:19 +02:00
|
|
|
/* Convert from a base type to a parent type, with compile time checking. */
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define DO_UPCAST(type, field, dev) ( __extension__ ( { \
|
|
|
|
char __attribute__((unused)) offset_must_be_zero[ \
|
|
|
|
-offsetof(type, field)]; \
|
|
|
|
container_of(dev, type, field);}))
|
|
|
|
#else
|
|
|
|
#define DO_UPCAST(type, field, dev) container_of(dev, type, field)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define typeof_field(type, field) typeof(((type *)0)->field)
|
|
|
|
#define type_check(t1,t2) ((t1*)0 - (t2*)0)
|
|
|
|
|
2017-01-19 21:56:14 +01:00
|
|
|
#define QEMU_BUILD_BUG_ON_STRUCT(x) \
|
|
|
|
struct { \
|
|
|
|
int:(x) ? -1 : 1; \
|
|
|
|
}
|
|
|
|
|
2018-02-24 16:40:27 +01:00
|
|
|
/* QEMU_BUILD_BUG_MSG() emits the message given if _Static_assert is
|
|
|
|
* supported; otherwise, it will be omitted from the compiler error
|
|
|
|
* message (but as it remains present in the source code, it can still
|
|
|
|
* be useful when debugging). */
|
2017-03-14 17:59:53 +01:00
|
|
|
#if defined(CONFIG_STATIC_ASSERT)
|
2018-02-24 16:40:27 +01:00
|
|
|
#define QEMU_BUILD_BUG_MSG(x, msg) _Static_assert(!(x), msg)
|
2017-03-14 17:59:53 +01:00
|
|
|
#elif defined(__COUNTER__)
|
2018-02-24 16:40:27 +01:00
|
|
|
#define QEMU_BUILD_BUG_MSG(x, msg) typedef QEMU_BUILD_BUG_ON_STRUCT(x) \
|
2017-01-19 21:56:14 +01:00
|
|
|
glue(qemu_build_bug_on__, __COUNTER__) __attribute__((unused))
|
2017-01-31 15:29:51 +01:00
|
|
|
#else
|
2018-02-24 16:40:27 +01:00
|
|
|
#define QEMU_BUILD_BUG_MSG(x, msg)
|
2017-01-31 15:29:51 +01:00
|
|
|
#endif
|
2011-07-11 19:24:44 +02:00
|
|
|
|
2018-02-24 16:40:27 +01:00
|
|
|
#define QEMU_BUILD_BUG_ON(x) QEMU_BUILD_BUG_MSG(x, "not expecting: " #x)
|
|
|
|
|
2017-01-18 21:05:15 +01:00
|
|
|
#define QEMU_BUILD_BUG_ON_ZERO(x) (sizeof(QEMU_BUILD_BUG_ON_STRUCT(x)) - \
|
|
|
|
sizeof(QEMU_BUILD_BUG_ON_STRUCT(x)))
|
|
|
|
|
2011-07-11 19:24:44 +02:00
|
|
|
#if defined __GNUC__
|
2011-09-16 22:03:07 +02:00
|
|
|
# if !QEMU_GNUC_PREREQ(4, 4)
|
2011-07-11 19:24:44 +02:00
|
|
|
/* gcc versions before 4.4.x don't support gnu_printf, so use printf. */
|
|
|
|
# define GCC_FMT_ATTR(n, m) __attribute__((format(printf, n, m)))
|
|
|
|
# else
|
|
|
|
/* Use gnu_printf when supported (qemu uses standard format strings). */
|
|
|
|
# define GCC_FMT_ATTR(n, m) __attribute__((format(gnu_printf, n, m)))
|
2012-08-22 21:42:32 +02:00
|
|
|
# if defined(_WIN32)
|
|
|
|
/* Map __printf__ to __gnu_printf__ because we want standard format strings
|
|
|
|
* even when MinGW or GLib include files use __printf__. */
|
|
|
|
# define __printf__ __gnu_printf__
|
|
|
|
# endif
|
2011-07-11 19:24:44 +02:00
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
#define GCC_FMT_ATTR(n, m)
|
|
|
|
#endif
|
|
|
|
|
2018-11-30 09:23:16 +01:00
|
|
|
#ifndef __has_warning
|
|
|
|
#define __has_warning(x) 0 /* compatibility with non-clang compilers */
|
|
|
|
#endif
|
|
|
|
|
2018-01-16 16:11:52 +01:00
|
|
|
#ifndef __has_feature
|
|
|
|
#define __has_feature(x) 0 /* compatibility with non-clang compilers */
|
|
|
|
#endif
|
2018-09-27 17:55:38 +02:00
|
|
|
|
|
|
|
#ifndef __has_builtin
|
|
|
|
#define __has_builtin(x) 0 /* compatibility with non-clang compilers */
|
|
|
|
#endif
|
|
|
|
|
2018-12-03 14:33:12 +01:00
|
|
|
#if __has_builtin(__builtin_assume_aligned) || !defined(__clang__)
|
2018-09-27 17:55:38 +02:00
|
|
|
#define HAS_ASSUME_ALIGNED
|
|
|
|
#endif
|
2018-09-26 17:48:50 +02:00
|
|
|
|
|
|
|
#ifndef __has_attribute
|
|
|
|
#define __has_attribute(x) 0 /* compatibility with older GCC */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* GCC doesn't provide __has_attribute() until GCC 5, but we know all the GCC
|
|
|
|
* versions we support have the "flatten" attribute. Clang may not have the
|
|
|
|
* "flatten" attribute but always has __has_attribute() to check for it.
|
|
|
|
*/
|
|
|
|
#if __has_attribute(flatten) || !defined(__clang__)
|
|
|
|
# define QEMU_FLATTEN __attribute__((flatten))
|
|
|
|
#else
|
|
|
|
# define QEMU_FLATTEN
|
|
|
|
#endif
|
2018-08-16 01:31:47 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If __attribute__((error)) is present, use it to produce an error at
|
|
|
|
* compile time. Otherwise, one must wait for the linker to diagnose
|
|
|
|
* the missing symbol.
|
|
|
|
*/
|
|
|
|
#if __has_attribute(error)
|
|
|
|
# define QEMU_ERROR(X) __attribute__((error(X)))
|
|
|
|
#else
|
|
|
|
# define QEMU_ERROR(X)
|
|
|
|
#endif
|
2019-01-03 09:56:34 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The nonstring variable attribute specifies that an object or member
|
|
|
|
* declaration with type array of char or pointer to char is intended
|
|
|
|
* to store character arrays that do not necessarily contain a terminating
|
|
|
|
* NUL character. This is useful in detecting uses of such arrays or pointers
|
|
|
|
* with functions that expect NUL-terminated strings, and to avoid warnings
|
|
|
|
* when such an array or pointer is used as an argument to a bounded string
|
|
|
|
* manipulation function such as strncpy.
|
|
|
|
*/
|
|
|
|
#if __has_attribute(nonstring)
|
|
|
|
# define QEMU_NONSTRING __attribute__((nonstring))
|
|
|
|
#else
|
|
|
|
# define QEMU_NONSTRING
|
|
|
|
#endif
|
2019-09-10 18:02:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Forced inlining may be desired to encourage constant propagation
|
|
|
|
* of function parameters. However, it can also make debugging harder,
|
|
|
|
* so disable it for a non-optimizing build.
|
|
|
|
*/
|
|
|
|
#if defined(__OPTIMIZE__)
|
|
|
|
#define QEMU_ALWAYS_INLINE __attribute__((always_inline))
|
|
|
|
#else
|
|
|
|
#define QEMU_ALWAYS_INLINE
|
|
|
|
#endif
|
2018-09-27 17:55:38 +02:00
|
|
|
|
2018-02-03 16:39:32 +01:00
|
|
|
/* Implement C11 _Generic via GCC builtins. Example:
|
|
|
|
*
|
|
|
|
* QEMU_GENERIC(x, (float, sinf), (long double, sinl), sin) (x)
|
|
|
|
*
|
|
|
|
* The first argument is the discriminator. The last is the default value.
|
|
|
|
* The middle ones are tuples in "(type, expansion)" format.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* First, find out the number of generic cases. */
|
|
|
|
#define QEMU_GENERIC(x, ...) \
|
|
|
|
QEMU_GENERIC_(typeof(x), __VA_ARGS__, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0)
|
|
|
|
|
|
|
|
/* There will be extra arguments, but they are not used. */
|
|
|
|
#define QEMU_GENERIC_(x, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, count, ...) \
|
|
|
|
QEMU_GENERIC##count(x, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9)
|
|
|
|
|
|
|
|
/* Two more helper macros, this time to extract items from a parenthesized
|
|
|
|
* list.
|
|
|
|
*/
|
|
|
|
#define QEMU_FIRST_(a, b) a
|
|
|
|
#define QEMU_SECOND_(a, b) b
|
|
|
|
|
|
|
|
/* ... and a final one for the common part of the "recursion". */
|
|
|
|
#define QEMU_GENERIC_IF(x, type_then, else_) \
|
|
|
|
__builtin_choose_expr(__builtin_types_compatible_p(x, \
|
|
|
|
QEMU_FIRST_ type_then), \
|
|
|
|
QEMU_SECOND_ type_then, else_)
|
|
|
|
|
|
|
|
/* CPP poor man's "recursion". */
|
|
|
|
#define QEMU_GENERIC1(x, a0, ...) (a0)
|
|
|
|
#define QEMU_GENERIC2(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC1(x, __VA_ARGS__))
|
|
|
|
#define QEMU_GENERIC3(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC2(x, __VA_ARGS__))
|
|
|
|
#define QEMU_GENERIC4(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC3(x, __VA_ARGS__))
|
|
|
|
#define QEMU_GENERIC5(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC4(x, __VA_ARGS__))
|
|
|
|
#define QEMU_GENERIC6(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC5(x, __VA_ARGS__))
|
|
|
|
#define QEMU_GENERIC7(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC6(x, __VA_ARGS__))
|
|
|
|
#define QEMU_GENERIC8(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC7(x, __VA_ARGS__))
|
|
|
|
#define QEMU_GENERIC9(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC8(x, __VA_ARGS__))
|
|
|
|
#define QEMU_GENERIC10(x, a0, ...) QEMU_GENERIC_IF(x, a0, QEMU_GENERIC9(x, __VA_ARGS__))
|
2018-01-16 16:11:52 +01:00
|
|
|
|
2019-09-23 20:24:12 +02:00
|
|
|
/**
|
|
|
|
* qemu_build_not_reached()
|
|
|
|
*
|
|
|
|
* The compiler, during optimization, is expected to prove that a call
|
|
|
|
* to this function cannot be reached and remove it. If the compiler
|
|
|
|
* supports QEMU_ERROR, this will be reported at compile time; otherwise
|
|
|
|
* this will be reported at link time due to the missing symbol.
|
|
|
|
*/
|
2020-02-05 15:15:45 +01:00
|
|
|
#if defined(__OPTIMIZE__) && !defined(__NO_INLINE__)
|
2019-09-23 20:24:12 +02:00
|
|
|
extern void QEMU_NORETURN QEMU_ERROR("code path is reachable")
|
|
|
|
qemu_build_not_reached(void);
|
|
|
|
#else
|
|
|
|
#define qemu_build_not_reached() g_assert_not_reached()
|
|
|
|
#endif
|
|
|
|
|
2011-07-11 19:24:44 +02:00
|
|
|
#endif /* COMPILER_H */
|