2ae16a6aa4
Some of the generated qapi-types-MODULE.h are included all over the place. Changing a QAPI type can trigger massive recompiling. Top scorers recompile more than 1000 out of some 6600 objects (not counting tests and objects that don't depend on qemu/osdep.h): 6300 qapi/qapi-builtin-types.h 5700 qapi/qapi-types-run-state.h 3900 qapi/qapi-types-common.h 3300 qapi/qapi-types-sockets.h 3000 qapi/qapi-types-misc.h 3000 qapi/qapi-types-crypto.h 3000 qapi/qapi-types-job.h 3000 qapi/qapi-types-block-core.h 2800 qapi/qapi-types-block.h 1300 qapi/qapi-types-net.h Clean up headers to include generated QAPI headers only where needed. Impact is negligible except for hw/qdev-properties.h. This header includes qapi/qapi-types-block.h and qapi/qapi-types-misc.h. They are used only in expansions of property definition macros such as DEFINE_PROP_BLOCKDEV_ON_ERROR() and DEFINE_PROP_OFF_AUTO(). Moving their inclusion from hw/qdev-properties.h to the users of these macros avoids pointless recompiles. This is how other property definition macros, such as DEFINE_PROP_NETDEV(), already work. Improves things for some of the top scorers: 3600 qapi/qapi-types-common.h 2800 qapi/qapi-types-sockets.h 900 qapi/qapi-types-misc.h 2200 qapi/qapi-types-crypto.h 2100 qapi/qapi-types-job.h 2100 qapi/qapi-types-block-core.h 270 qapi/qapi-types-block.h Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190812052359.30071-3-armbru@redhat.com>
35 lines
832 B
C
35 lines
832 B
C
#ifndef QEMU_ARCH_INIT_H
|
|
#define QEMU_ARCH_INIT_H
|
|
|
|
|
|
enum {
|
|
QEMU_ARCH_ALL = -1,
|
|
QEMU_ARCH_ALPHA = (1 << 0),
|
|
QEMU_ARCH_ARM = (1 << 1),
|
|
QEMU_ARCH_CRIS = (1 << 2),
|
|
QEMU_ARCH_I386 = (1 << 3),
|
|
QEMU_ARCH_M68K = (1 << 4),
|
|
QEMU_ARCH_LM32 = (1 << 5),
|
|
QEMU_ARCH_MICROBLAZE = (1 << 6),
|
|
QEMU_ARCH_MIPS = (1 << 7),
|
|
QEMU_ARCH_PPC = (1 << 8),
|
|
QEMU_ARCH_S390X = (1 << 9),
|
|
QEMU_ARCH_SH4 = (1 << 10),
|
|
QEMU_ARCH_SPARC = (1 << 11),
|
|
QEMU_ARCH_XTENSA = (1 << 12),
|
|
QEMU_ARCH_OPENRISC = (1 << 13),
|
|
QEMU_ARCH_UNICORE32 = (1 << 14),
|
|
QEMU_ARCH_MOXIE = (1 << 15),
|
|
QEMU_ARCH_TRICORE = (1 << 16),
|
|
QEMU_ARCH_NIOS2 = (1 << 17),
|
|
QEMU_ARCH_HPPA = (1 << 18),
|
|
QEMU_ARCH_RISCV = (1 << 19),
|
|
};
|
|
|
|
extern const uint32_t arch_type;
|
|
|
|
int kvm_available(void);
|
|
int xen_available(void);
|
|
|
|
#endif
|