[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v2 01/16] target: Unify QOM style
From: |
Zhao Liu |
Subject: |
Re: [PATCH v2 01/16] target: Unify QOM style |
Date: |
Fri, 20 Oct 2023 13:56:57 +0800 |
On Fri, Oct 13, 2023 at 04:01:00PM +0200, Philippe Mathieu-Daudé wrote:
> Date: Fri, 13 Oct 2023 16:01:00 +0200
> From: Philippe Mathieu-Daudé <philmd@linaro.org>
> Subject: [PATCH v2 01/16] target: Unify QOM style
> X-Mailer: git-send-email 2.41.0
>
> Enforce the style described by commit 067109a11c ("docs/devel:
> mention the spacing requirement for QOM"):
>
> The first declaration of a storage or class structure should
> always be the parent and leave a visual space between that
> declaration and the new code. It is also useful to separate
> backing for properties (options driven by the user) and internal
> state to make navigation easier.
>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> target/alpha/cpu-qom.h | 2 --
> target/alpha/cpu.h | 2 --
> target/arm/cpu-qom.h | 4 ----
> target/arm/cpu.h | 2 --
> target/avr/cpu-qom.h | 3 +--
> target/avr/cpu.h | 2 --
> target/cris/cpu-qom.h | 2 --
> target/cris/cpu.h | 2 --
> target/hexagon/cpu.h | 5 +----
> target/hppa/cpu-qom.h | 2 --
> target/hppa/cpu.h | 2 --
> target/i386/cpu-qom.h | 2 --
> target/i386/cpu.h | 2 --
> target/loongarch/cpu.h | 4 ----
> target/m68k/cpu-qom.h | 2 --
> target/m68k/cpu.h | 2 --
> target/microblaze/cpu-qom.h | 2 --
> target/microblaze/cpu.h | 2 --
> target/mips/cpu-qom.h | 2 --
> target/mips/cpu.h | 2 --
> target/nios2/cpu.h | 4 ----
> target/openrisc/cpu.h | 4 ----
> target/ppc/cpu.h | 2 --
> target/riscv/cpu-qom.h | 3 +--
> target/riscv/cpu.h | 2 --
> target/rx/cpu-qom.h | 2 --
> target/rx/cpu.h | 2 --
> target/s390x/cpu-qom.h | 3 +--
> target/s390x/cpu.h | 2 --
> target/sh4/cpu-qom.h | 2 --
> target/sh4/cpu.h | 2 --
> target/sparc/cpu-qom.h | 2 --
> target/sparc/cpu.h | 2 --
> target/tricore/cpu-qom.h | 2 --
> target/tricore/cpu.h | 2 --
> target/xtensa/cpu-qom.h | 2 --
> target/xtensa/cpu.h | 2 --
> 37 files changed, 4 insertions(+), 84 deletions(-)
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
>
> diff --git a/target/alpha/cpu-qom.h b/target/alpha/cpu-qom.h
> index 1f200724b6..c5fbd8f11a 100644
> --- a/target/alpha/cpu-qom.h
> +++ b/target/alpha/cpu-qom.h
> @@ -35,9 +35,7 @@ OBJECT_DECLARE_CPU_TYPE(AlphaCPU, AlphaCPUClass, ALPHA_CPU)
> * An Alpha CPU model.
> */
> struct AlphaCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> DeviceReset parent_reset;
> diff --git a/target/alpha/cpu.h b/target/alpha/cpu.h
> index e2a467ec17..c8d97ac27a 100644
> --- a/target/alpha/cpu.h
> +++ b/target/alpha/cpu.h
> @@ -259,9 +259,7 @@ typedef struct CPUArchState {
> * An Alpha CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUAlphaState env;
>
> diff --git a/target/arm/cpu-qom.h b/target/arm/cpu-qom.h
> index d06c08a734..153865d1bb 100644
> --- a/target/arm/cpu-qom.h
> +++ b/target/arm/cpu-qom.h
> @@ -46,9 +46,7 @@ void aarch64_cpu_register(const ARMCPUInfo *info);
> * An ARM CPU model.
> */
> struct ARMCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> const ARMCPUInfo *info;
> DeviceRealize parent_realize;
> @@ -62,9 +60,7 @@ DECLARE_CLASS_CHECKERS(AArch64CPUClass, AARCH64_CPU,
> TYPE_AARCH64_CPU)
>
> struct AArch64CPUClass {
> - /*< private >*/
> ARMCPUClass parent_class;
> - /*< public >*/
> };
>
> void register_cp_regs_for_features(ARMCPU *cpu);
> diff --git a/target/arm/cpu.h b/target/arm/cpu.h
> index a9edfb8353..fb1b08371c 100644
> --- a/target/arm/cpu.h
> +++ b/target/arm/cpu.h
> @@ -852,9 +852,7 @@ typedef struct {
> * An ARM CPU core.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUARMState env;
>
> diff --git a/target/avr/cpu-qom.h b/target/avr/cpu-qom.h
> index 01ea5f160b..d89be01e0f 100644
> --- a/target/avr/cpu-qom.h
> +++ b/target/avr/cpu-qom.h
> @@ -36,9 +36,8 @@ OBJECT_DECLARE_CPU_TYPE(AVRCPU, AVRCPUClass, AVR_CPU)
> * A AVR CPU model.
> */
> struct AVRCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
> +
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> };
> diff --git a/target/avr/cpu.h b/target/avr/cpu.h
> index 4ce22d8e4f..f8b065ed79 100644
> --- a/target/avr/cpu.h
> +++ b/target/avr/cpu.h
> @@ -144,9 +144,7 @@ typedef struct CPUArchState {
> * A AVR CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUAVRState env;
> };
> diff --git a/target/cris/cpu-qom.h b/target/cris/cpu-qom.h
> index 431a1d536a..c2fee242f4 100644
> --- a/target/cris/cpu-qom.h
> +++ b/target/cris/cpu-qom.h
> @@ -36,9 +36,7 @@ OBJECT_DECLARE_CPU_TYPE(CRISCPU, CRISCPUClass, CRIS_CPU)
> * A CRIS CPU model.
> */
> struct CRISCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/cris/cpu.h b/target/cris/cpu.h
> index 676b8e93ca..6aa445348f 100644
> --- a/target/cris/cpu.h
> +++ b/target/cris/cpu.h
> @@ -174,9 +174,7 @@ typedef struct CPUArchState {
> * A CRIS CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUCRISState env;
> };
> diff --git a/target/hexagon/cpu.h b/target/hexagon/cpu.h
> index 10cd1efd57..035ac4fb6d 100644
> --- a/target/hexagon/cpu.h
> +++ b/target/hexagon/cpu.h
> @@ -130,17 +130,14 @@ typedef struct CPUArchState {
> OBJECT_DECLARE_CPU_TYPE(HexagonCPU, HexagonCPUClass, HEXAGON_CPU)
>
> typedef struct HexagonCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
> +
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> } HexagonCPUClass;
>
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUHexagonState env;
>
> diff --git a/target/hppa/cpu-qom.h b/target/hppa/cpu-qom.h
> index b96e0318c7..67f12422c4 100644
> --- a/target/hppa/cpu-qom.h
> +++ b/target/hppa/cpu-qom.h
> @@ -35,9 +35,7 @@ OBJECT_DECLARE_CPU_TYPE(HPPACPU, HPPACPUClass, HPPA_CPU)
> * An HPPA CPU model.
> */
> struct HPPACPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> DeviceReset parent_reset;
> diff --git a/target/hppa/cpu.h b/target/hppa/cpu.h
> index 798d0c26d7..518ea94f4f 100644
> --- a/target/hppa/cpu.h
> +++ b/target/hppa/cpu.h
> @@ -233,9 +233,7 @@ typedef struct CPUArchState {
> * An HPPA CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUHPPAState env;
> QEMUTimer *alarm_timer;
> diff --git a/target/i386/cpu-qom.h b/target/i386/cpu-qom.h
> index 2350f4ae60..58145717ef 100644
> --- a/target/i386/cpu-qom.h
> +++ b/target/i386/cpu-qom.h
> @@ -47,9 +47,7 @@ typedef struct X86CPUModel X86CPUModel;
> * An x86 CPU model or family.
> */
> struct X86CPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> /* CPU definition, automatically loaded by instance_init if not NULL.
> * Should be eventually replaced by subclass-specific property defaults.
> diff --git a/target/i386/cpu.h b/target/i386/cpu.h
> index e1875466b9..a600468698 100644
> --- a/target/i386/cpu.h
> +++ b/target/i386/cpu.h
> @@ -1897,9 +1897,7 @@ struct kvm_msrs;
> * An x86 CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUX86State env;
> VMChangeStateEntry *vmsentry;
> diff --git a/target/loongarch/cpu.h b/target/loongarch/cpu.h
> index 40e70a8119..2b8b828114 100644
> --- a/target/loongarch/cpu.h
> +++ b/target/loongarch/cpu.h
> @@ -371,9 +371,7 @@ typedef struct CPUArchState {
> * A LoongArch CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPULoongArchState env;
> QEMUTimer timer;
> @@ -398,9 +396,7 @@ OBJECT_DECLARE_CPU_TYPE(LoongArchCPU, LoongArchCPUClass,
> * A LoongArch CPU model.
> */
> struct LoongArchCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/m68k/cpu-qom.h b/target/m68k/cpu-qom.h
> index 0ec7750a92..13d94c9fe3 100644
> --- a/target/m68k/cpu-qom.h
> +++ b/target/m68k/cpu-qom.h
> @@ -35,9 +35,7 @@ OBJECT_DECLARE_CPU_TYPE(M68kCPU, M68kCPUClass, M68K_CPU)
> * A Motorola 68k CPU model.
> */
> struct M68kCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/m68k/cpu.h b/target/m68k/cpu.h
> index 20afb0c94d..9ea18028ad 100644
> --- a/target/m68k/cpu.h
> +++ b/target/m68k/cpu.h
> @@ -164,9 +164,7 @@ typedef struct CPUArchState {
> * A Motorola 68k CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUM68KState env;
> };
> diff --git a/target/microblaze/cpu-qom.h b/target/microblaze/cpu-qom.h
> index cda9220fa9..2a734e644d 100644
> --- a/target/microblaze/cpu-qom.h
> +++ b/target/microblaze/cpu-qom.h
> @@ -35,9 +35,7 @@ OBJECT_DECLARE_CPU_TYPE(MicroBlazeCPU, MicroBlazeCPUClass,
> MICROBLAZE_CPU)
> * A MicroBlaze CPU model.
> */
> struct MicroBlazeCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/microblaze/cpu.h b/target/microblaze/cpu.h
> index e43c49d4af..e8000237d8 100644
> --- a/target/microblaze/cpu.h
> +++ b/target/microblaze/cpu.h
> @@ -343,9 +343,7 @@ typedef struct {
> * A MicroBlaze CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUMBState env;
>
> diff --git a/target/mips/cpu-qom.h b/target/mips/cpu-qom.h
> index 0dffab453b..c70b4a34be 100644
> --- a/target/mips/cpu-qom.h
> +++ b/target/mips/cpu-qom.h
> @@ -39,9 +39,7 @@ OBJECT_DECLARE_CPU_TYPE(MIPSCPU, MIPSCPUClass, MIPS_CPU)
> * A MIPS CPU model.
> */
> struct MIPSCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/mips/cpu.h b/target/mips/cpu.h
> index 5fddceff3a..617c373797 100644
> --- a/target/mips/cpu.h
> +++ b/target/mips/cpu.h
> @@ -1209,9 +1209,7 @@ typedef struct CPUArchState {
> * A MIPS CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUMIPSState env;
>
> diff --git a/target/nios2/cpu.h b/target/nios2/cpu.h
> index 70b6377a4f..ede1ba2140 100644
> --- a/target/nios2/cpu.h
> +++ b/target/nios2/cpu.h
> @@ -42,9 +42,7 @@ OBJECT_DECLARE_CPU_TYPE(Nios2CPU, Nios2CPUClass, NIOS2_CPU)
> * A Nios2 CPU model.
> */
> struct Nios2CPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> @@ -214,9 +212,7 @@ typedef struct {
> * A Nios2 CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUNios2State env;
>
> diff --git a/target/openrisc/cpu.h b/target/openrisc/cpu.h
> index 334997e9a1..29cda7279c 100644
> --- a/target/openrisc/cpu.h
> +++ b/target/openrisc/cpu.h
> @@ -39,9 +39,7 @@ OBJECT_DECLARE_CPU_TYPE(OpenRISCCPU, OpenRISCCPUClass,
> OPENRISC_CPU)
> * A OpenRISC CPU model.
> */
> struct OpenRISCCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> @@ -301,9 +299,7 @@ typedef struct CPUArchState {
> * A OpenRISC CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUOpenRISCState env;
> };
> diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h
> index 4b8b5d3d3e..cf4629036d 100644
> --- a/target/ppc/cpu.h
> +++ b/target/ppc/cpu.h
> @@ -1407,9 +1407,7 @@ typedef struct PPCVirtualHypervisorClass
> PPCVirtualHypervisorClass;
> * A PowerPC CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUPPCState env;
>
> diff --git a/target/riscv/cpu-qom.h b/target/riscv/cpu-qom.h
> index f3fbe37a2c..b9164a8e5b 100644
> --- a/target/riscv/cpu-qom.h
> +++ b/target/riscv/cpu-qom.h
> @@ -63,9 +63,8 @@ OBJECT_DECLARE_CPU_TYPE(RISCVCPU, RISCVCPUClass, RISCV_CPU)
> * A RISCV CPU model.
> */
> struct RISCVCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
> +
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> };
> diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h
> index f8ffa5ee38..f0dc257a75 100644
> --- a/target/riscv/cpu.h
> +++ b/target/riscv/cpu.h
> @@ -389,9 +389,7 @@ struct CPUArchState {
> * A RISCV CPU.
> */
> struct ArchCPU {
> - /* < private > */
> CPUState parent_obj;
> - /* < public > */
>
> CPURISCVState env;
>
> diff --git a/target/rx/cpu-qom.h b/target/rx/cpu-qom.h
> index 1c8466a187..f4cd5664e5 100644
> --- a/target/rx/cpu-qom.h
> +++ b/target/rx/cpu-qom.h
> @@ -36,9 +36,7 @@ OBJECT_DECLARE_CPU_TYPE(RXCPU, RXCPUClass, RX_CPU)
> * A RX CPU model.
> */
> struct RXCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/rx/cpu.h b/target/rx/cpu.h
> index f66754eb8a..8379f4a150 100644
> --- a/target/rx/cpu.h
> +++ b/target/rx/cpu.h
> @@ -107,9 +107,7 @@ typedef struct CPUArchState {
> * A RX CPU
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPURXState env;
> };
> diff --git a/target/s390x/cpu-qom.h b/target/s390x/cpu-qom.h
> index 00cae2b131..1088965fd5 100644
> --- a/target/s390x/cpu-qom.h
> +++ b/target/s390x/cpu-qom.h
> @@ -49,9 +49,8 @@ typedef enum cpu_reset_type {
> * An S/390 CPU model.
> */
> struct S390CPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
> +
> const S390CPUDef *cpu_def;
> bool kvm_required;
> bool is_static;
> diff --git a/target/s390x/cpu.h b/target/s390x/cpu.h
> index 7bea7075e1..e56982dd69 100644
> --- a/target/s390x/cpu.h
> +++ b/target/s390x/cpu.h
> @@ -166,9 +166,7 @@ static inline uint64_t *get_freg(CPUS390XState *cs, int
> nr)
> * An S/390 CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUS390XState env;
> S390CPUModel *model;
> diff --git a/target/sh4/cpu-qom.h b/target/sh4/cpu-qom.h
> index 89785a90f0..08fbebc996 100644
> --- a/target/sh4/cpu-qom.h
> +++ b/target/sh4/cpu-qom.h
> @@ -42,9 +42,7 @@ OBJECT_DECLARE_CPU_TYPE(SuperHCPU, SuperHCPUClass,
> SUPERH_CPU)
> * A SuperH CPU model.
> */
> struct SuperHCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/sh4/cpu.h b/target/sh4/cpu.h
> index f75a235973..dc0561b73b 100644
> --- a/target/sh4/cpu.h
> +++ b/target/sh4/cpu.h
> @@ -204,9 +204,7 @@ typedef struct CPUArchState {
> * A SuperH CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUSH4State env;
> };
> diff --git a/target/sparc/cpu-qom.h b/target/sparc/cpu-qom.h
> index 78bf00b9a2..b4a0db84ce 100644
> --- a/target/sparc/cpu-qom.h
> +++ b/target/sparc/cpu-qom.h
> @@ -40,9 +40,7 @@ typedef struct sparc_def_t sparc_def_t;
> * A SPARC CPU model.
> */
> struct SPARCCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h
> index b3a98f1d74..691287f134 100644
> --- a/target/sparc/cpu.h
> +++ b/target/sparc/cpu.h
> @@ -557,9 +557,7 @@ struct CPUArchState {
> * A SPARC CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUSPARCState env;
> };
> diff --git a/target/tricore/cpu-qom.h b/target/tricore/cpu-qom.h
> index 612731daa0..b3b6c75a3a 100644
> --- a/target/tricore/cpu-qom.h
> +++ b/target/tricore/cpu-qom.h
> @@ -27,9 +27,7 @@
> OBJECT_DECLARE_CPU_TYPE(TriCoreCPU, TriCoreCPUClass, TRICORE_CPU)
>
> struct TriCoreCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/tricore/cpu.h b/target/tricore/cpu.h
> index a357b573f2..b4a6ab141d 100644
> --- a/target/tricore/cpu.h
> +++ b/target/tricore/cpu.h
> @@ -63,9 +63,7 @@ typedef struct CPUArchState {
> * A TriCore CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUTriCoreState env;
> };
> diff --git a/target/xtensa/cpu-qom.h b/target/xtensa/cpu-qom.h
> index 419c7d8e4a..424bcbd8dd 100644
> --- a/target/xtensa/cpu-qom.h
> +++ b/target/xtensa/cpu-qom.h
> @@ -47,9 +47,7 @@ typedef struct XtensaConfig XtensaConfig;
> * An Xtensa CPU model.
> */
> struct XtensaCPUClass {
> - /*< private >*/
> CPUClass parent_class;
> - /*< public >*/
>
> DeviceRealize parent_realize;
> ResettablePhases parent_phases;
> diff --git a/target/xtensa/cpu.h b/target/xtensa/cpu.h
> index c6bbef1e5d..85aab1bdf8 100644
> --- a/target/xtensa/cpu.h
> +++ b/target/xtensa/cpu.h
> @@ -556,9 +556,7 @@ struct CPUArchState {
> * An Xtensa CPU.
> */
> struct ArchCPU {
> - /*< private >*/
> CPUState parent_obj;
> - /*< public >*/
>
> CPUXtensaState env;
> Clock *clock;
> --
> 2.41.0
>
>
>
- [PATCH v2 00/16] target: Make 'cpu-qom.h' really target agnostic, Philippe Mathieu-Daudé, 2023/10/13
- [PATCH v2 01/16] target: Unify QOM style, Philippe Mathieu-Daudé, 2023/10/13
- Re: [PATCH v2 01/16] target: Unify QOM style,
Zhao Liu <=
- [PATCH v2 02/16] target: Mention 'cpu-qom.h' is target agnostic, Philippe Mathieu-Daudé, 2023/10/13
- [PATCH v2 03/16] target/arm: Move internal declarations from 'cpu-qom.h' to 'cpu.h', Philippe Mathieu-Daudé, 2023/10/13
- [PATCH v2 04/16] target/ppc: Remove CPU_RESOLVING_TYPE from 'cpu-qom.h', Philippe Mathieu-Daudé, 2023/10/13
- [PATCH v2 05/16] target/riscv: Remove CPU_RESOLVING_TYPE from 'cpu-qom.h', Philippe Mathieu-Daudé, 2023/10/13
- [PATCH v2 06/16] target: Declare FOO_CPU_TYPE_NAME/SUFFIX in 'cpu-qom.h', Philippe Mathieu-Daudé, 2023/10/13
- [PATCH v2 07/16] target/hexagon: Declare QOM definitions in 'cpu-qom.h', Philippe Mathieu-Daudé, 2023/10/13
- [PATCH v2 08/16] target/loongarch: Declare QOM definitions in 'cpu-qom.h', Philippe Mathieu-Daudé, 2023/10/13
- [PATCH v2 09/16] target/nios2: Declare QOM definitions in 'cpu-qom.h', Philippe Mathieu-Daudé, 2023/10/13