mirror of https://github.com/xemu-project/xemu.git
Use DECLARE_*CHECKER* when possible (--force mode)
Separate run of the TypeCheckMacro converter using the --force flag, for the cases where typedefs weren't found in the same header nor in typedefs.h. Generated initially using: $ ./scripts/codeconverter/converter.py --force -i \ --pattern=TypeCheckMacro $(git grep -l '' -- '*.[ch]') Then each case was manually reviewed, and a comment was added indicating what's unusual about those type checking macros/functions. Despite not following the usual pattern, the changes in this patch were found to be safe. Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Message-Id: <20200831210740.126168-15-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
8110fa1d94
commit
fa34a3c58a
|
@ -40,8 +40,9 @@
|
|||
static APICCommonState *local_apics[MAX_APICS + 1];
|
||||
|
||||
#define TYPE_APIC "apic"
|
||||
#define APIC(obj) \
|
||||
OBJECT_CHECK(APICCommonState, (obj), TYPE_APIC)
|
||||
/*This is reusing the APICCommonState typedef from APIC_COMMON */
|
||||
DECLARE_INSTANCE_CHECKER(APICCommonState, APIC,
|
||||
TYPE_APIC)
|
||||
|
||||
static void apic_set_irq(APICCommonState *s, int vector_num, int trigger_mode);
|
||||
static void apic_update_irq(APICCommonState *s);
|
||||
|
|
|
@ -33,12 +33,9 @@
|
|||
|
||||
#define TYPE_KVM_ARM_GIC "kvm-arm-gic"
|
||||
typedef struct KVMARMGICClass KVMARMGICClass;
|
||||
#define KVM_ARM_GIC(obj) \
|
||||
OBJECT_CHECK(GICState, (obj), TYPE_KVM_ARM_GIC)
|
||||
#define KVM_ARM_GIC_CLASS(klass) \
|
||||
OBJECT_CLASS_CHECK(KVMARMGICClass, (klass), TYPE_KVM_ARM_GIC)
|
||||
#define KVM_ARM_GIC_GET_CLASS(obj) \
|
||||
OBJECT_GET_CLASS(KVMARMGICClass, (obj), TYPE_KVM_ARM_GIC)
|
||||
/* This is reusing the GICState typedef from ARM_GIC_COMMON */
|
||||
DECLARE_OBJ_CHECKERS(GICState, KVMARMGICClass,
|
||||
KVM_ARM_GIC, TYPE_KVM_ARM_GIC)
|
||||
|
||||
struct KVMARMGICClass {
|
||||
ARMGICCommonClass parent_class;
|
||||
|
|
|
@ -31,11 +31,9 @@
|
|||
|
||||
#define TYPE_KVM_ARM_ITS "arm-its-kvm"
|
||||
typedef struct KVMARMITSClass KVMARMITSClass;
|
||||
#define KVM_ARM_ITS(obj) OBJECT_CHECK(GICv3ITSState, (obj), TYPE_KVM_ARM_ITS)
|
||||
#define KVM_ARM_ITS_CLASS(klass) \
|
||||
OBJECT_CLASS_CHECK(KVMARMITSClass, (klass), TYPE_KVM_ARM_ITS)
|
||||
#define KVM_ARM_ITS_GET_CLASS(obj) \
|
||||
OBJECT_GET_CLASS(KVMARMITSClass, (obj), TYPE_KVM_ARM_ITS)
|
||||
/* This is reusing the GICv3ITSState typedef from ARM_GICV3_ITS_COMMON */
|
||||
DECLARE_OBJ_CHECKERS(GICv3ITSState, KVMARMITSClass,
|
||||
KVM_ARM_ITS, TYPE_KVM_ARM_ITS)
|
||||
|
||||
struct KVMARMITSClass {
|
||||
GICv3ITSCommonClass parent_class;
|
||||
|
|
|
@ -43,12 +43,9 @@
|
|||
|
||||
#define TYPE_KVM_ARM_GICV3 "kvm-arm-gicv3"
|
||||
typedef struct KVMARMGICv3Class KVMARMGICv3Class;
|
||||
#define KVM_ARM_GICV3(obj) \
|
||||
OBJECT_CHECK(GICv3State, (obj), TYPE_KVM_ARM_GICV3)
|
||||
#define KVM_ARM_GICV3_CLASS(klass) \
|
||||
OBJECT_CLASS_CHECK(KVMARMGICv3Class, (klass), TYPE_KVM_ARM_GICV3)
|
||||
#define KVM_ARM_GICV3_GET_CLASS(obj) \
|
||||
OBJECT_GET_CLASS(KVMARMGICv3Class, (obj), TYPE_KVM_ARM_GICV3)
|
||||
/* This is reusing the GICv3State typedef from ARM_GICV3_ITS_COMMON */
|
||||
DECLARE_OBJ_CHECKERS(GICv3State, KVMARMGICv3Class,
|
||||
KVM_ARM_GICV3, TYPE_KVM_ARM_GICV3)
|
||||
|
||||
#define KVM_DEV_ARM_VGIC_SYSREG(op0, op1, crn, crm, op2) \
|
||||
(ARM64_SYS_REG_SHIFT_MASK(op0, OP0) | \
|
||||
|
|
|
@ -32,8 +32,9 @@
|
|||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_AW_SDHOST_BUS "allwinner-sdhost-bus"
|
||||
#define AW_SDHOST_BUS(obj) \
|
||||
OBJECT_CHECK(SDBus, (obj), TYPE_AW_SDHOST_BUS)
|
||||
/* This is reusing the SDBus typedef from SD_BUS */
|
||||
DECLARE_INSTANCE_CHECKER(SDBus, AW_SDHOST_BUS,
|
||||
TYPE_AW_SDHOST_BUS)
|
||||
|
||||
/* SD Host register offsets */
|
||||
enum {
|
||||
|
|
|
@ -22,8 +22,9 @@
|
|||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_BCM2835_SDHOST_BUS "bcm2835-sdhost-bus"
|
||||
#define BCM2835_SDHOST_BUS(obj) \
|
||||
OBJECT_CHECK(SDBus, (obj), TYPE_BCM2835_SDHOST_BUS)
|
||||
/* This is reusing the SDBus typedef from SD_BUS */
|
||||
DECLARE_INSTANCE_CHECKER(SDBus, BCM2835_SDHOST_BUS,
|
||||
TYPE_BCM2835_SDHOST_BUS)
|
||||
|
||||
#define SDCMD 0x00 /* Command to SD card - 16 R/W */
|
||||
#define SDARG 0x04 /* Argument to SD card - 32 R/W */
|
||||
|
|
|
@ -24,7 +24,9 @@
|
|||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_PXA2XX_MMCI_BUS "pxa2xx-mmci-bus"
|
||||
#define PXA2XX_MMCI_BUS(obj) OBJECT_CHECK(SDBus, (obj), TYPE_PXA2XX_MMCI_BUS)
|
||||
/* This is reusing the SDBus typedef from SD_BUS */
|
||||
DECLARE_INSTANCE_CHECKER(SDBus, PXA2XX_MMCI_BUS,
|
||||
TYPE_PXA2XX_MMCI_BUS)
|
||||
|
||||
struct PXA2xxMMCIState {
|
||||
SysBusDevice parent_obj;
|
||||
|
|
|
@ -40,7 +40,9 @@
|
|||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_SDHCI_BUS "sdhci-bus"
|
||||
#define SDHCI_BUS(obj) OBJECT_CHECK(SDBus, (obj), TYPE_SDHCI_BUS)
|
||||
/* This is reusing the SDBus typedef from SD_BUS */
|
||||
DECLARE_INSTANCE_CHECKER(SDBus, SDHCI_BUS,
|
||||
TYPE_SDHCI_BUS)
|
||||
|
||||
#define MASKED_WRITE(reg, mask, val) (reg = (reg & (mask)) | (val))
|
||||
|
||||
|
|
|
@ -74,12 +74,9 @@
|
|||
|
||||
#define TYPE_ARM_GIC "arm_gic"
|
||||
typedef struct ARMGICClass ARMGICClass;
|
||||
#define ARM_GIC(obj) \
|
||||
OBJECT_CHECK(GICState, (obj), TYPE_ARM_GIC)
|
||||
#define ARM_GIC_CLASS(klass) \
|
||||
OBJECT_CLASS_CHECK(ARMGICClass, (klass), TYPE_ARM_GIC)
|
||||
#define ARM_GIC_GET_CLASS(obj) \
|
||||
OBJECT_GET_CLASS(ARMGICClass, (obj), TYPE_ARM_GIC)
|
||||
/* This is reusing the GICState typedef from TYPE_ARM_GIC_COMMON */
|
||||
DECLARE_OBJ_CHECKERS(GICState, ARMGICClass,
|
||||
ARM_GIC, TYPE_ARM_GIC)
|
||||
|
||||
struct ARMGICClass {
|
||||
/*< private >*/
|
||||
|
|
|
@ -17,11 +17,9 @@
|
|||
|
||||
#define TYPE_ARM_GICV3 "arm-gicv3"
|
||||
typedef struct ARMGICv3Class ARMGICv3Class;
|
||||
#define ARM_GICV3(obj) OBJECT_CHECK(GICv3State, (obj), TYPE_ARM_GICV3)
|
||||
#define ARM_GICV3_CLASS(klass) \
|
||||
OBJECT_CLASS_CHECK(ARMGICv3Class, (klass), TYPE_ARM_GICV3)
|
||||
#define ARM_GICV3_GET_CLASS(obj) \
|
||||
OBJECT_GET_CLASS(ARMGICv3Class, (obj), TYPE_ARM_GICV3)
|
||||
/* This is reusing the GICState typedef from TYPE_ARM_GICV3_COMMON */
|
||||
DECLARE_OBJ_CHECKERS(GICv3State, ARMGICv3Class,
|
||||
ARM_GICV3, TYPE_ARM_GICV3)
|
||||
|
||||
struct ARMGICv3Class {
|
||||
/*< private >*/
|
||||
|
|
|
@ -31,7 +31,9 @@
|
|||
#include "qom/object.h"
|
||||
|
||||
#define TYPE_ICS_SPAPR "ics-spapr"
|
||||
#define ICS_SPAPR(obj) OBJECT_CHECK(ICSState, (obj), TYPE_ICS_SPAPR)
|
||||
/* This is reusing the ICSState typedef from TYPE_ICS */
|
||||
DECLARE_INSTANCE_CHECKER(ICSState, ICS_SPAPR,
|
||||
TYPE_ICS_SPAPR)
|
||||
|
||||
int xics_kvm_connect(SpaprInterruptController *intc, uint32_t nr_servers,
|
||||
Error **errp);
|
||||
|
|
|
@ -28,12 +28,9 @@
|
|||
/* QOM macros */
|
||||
/* virtio-mmio-bus */
|
||||
#define TYPE_VIRTIO_MMIO_BUS "virtio-mmio-bus"
|
||||
#define VIRTIO_MMIO_BUS(obj) \
|
||||
OBJECT_CHECK(VirtioBusState, (obj), TYPE_VIRTIO_MMIO_BUS)
|
||||
#define VIRTIO_MMIO_BUS_GET_CLASS(obj) \
|
||||
OBJECT_GET_CLASS(VirtioBusClass, (obj), TYPE_VIRTIO_MMIO_BUS)
|
||||
#define VIRTIO_MMIO_BUS_CLASS(klass) \
|
||||
OBJECT_CLASS_CHECK(VirtioBusClass, (klass), TYPE_VIRTIO_MMIO_BUS)
|
||||
/* This is reusing the VirtioBusState typedef from TYPE_VIRTIO_BUS */
|
||||
DECLARE_OBJ_CHECKERS(VirtioBusState, VirtioBusClass,
|
||||
VIRTIO_MMIO_BUS, TYPE_VIRTIO_MMIO_BUS)
|
||||
|
||||
/* virtio-mmio */
|
||||
#define TYPE_VIRTIO_MMIO "virtio-mmio"
|
||||
|
|
Loading…
Reference in New Issue