qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v2 23/23] RISC-V: Convert cpu definition towards


From: Philippe Mathieu-Daudé
Subject: Re: [Qemu-devel] [PATCH v2 23/23] RISC-V: Convert cpu definition towards future model
Date: Sat, 10 Mar 2018 21:30:04 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0

Hi Michael,

On 03/09/2018 05:12 AM, Michael Clark wrote:
> - Model borrowed from target/sh4/cpu.c

> - Rewrote riscv_cpu_list to use object_class_get_list
> - Dropped 'struct RISCVCPUInfo' and used TypeInfo array
> - Replaced riscv_cpu_register_types with DEFINE_TYPES
> - Marked base class as abstract

Those could be 4 patches (easier to bisect bug, cherry-pick or rebase),
I'll let that choice to the maintainer, you :)

> 
> Cc: Igor Mammedov <address@hidden>
> Cc: Palmer Dabbelt <address@hidden>
> Cc: Sagar Karandikar <address@hidden>
> Cc: Bastian Koppelmann <address@hidden>
> Signed-off-by Michael Clark <address@hidden>

Reviewed-by: Philippe Mathieu-Daudé <address@hidden>

> ---
>  target/riscv/cpu.c | 123 
> ++++++++++++++++++++++++++++++-----------------------
>  1 file changed, 69 insertions(+), 54 deletions(-)
> 
> diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c
> index d2ae56a..1f25968 100644
> --- a/target/riscv/cpu.c
> +++ b/target/riscv/cpu.c
> @@ -115,6 +115,8 @@ static void riscv_any_cpu_init(Object *obj)
>      set_resetvec(env, DEFAULT_RSTVEC);
>  }
>  
> +#if defined(TARGET_RISCV32)
> +
>  static void rv32gcsu_priv1_09_1_cpu_init(Object *obj)
>  {
>      CPURISCVState *env = &RISCV_CPU(obj)->env;
> @@ -141,6 +143,8 @@ static void rv32imacu_nommu_cpu_init(Object *obj)
>      set_resetvec(env, DEFAULT_RSTVEC);
>  }
>  
> +#elif defined(TARGET_RISCV64)
> +
>  static void rv64gcsu_priv1_09_1_cpu_init(Object *obj)
>  {
>      CPURISCVState *env = &RISCV_CPU(obj)->env;
> @@ -167,20 +171,7 @@ static void rv64imacu_nommu_cpu_init(Object *obj)
>      set_resetvec(env, DEFAULT_RSTVEC);
>  }
>  
> -static const RISCVCPUInfo riscv_cpus[] = {
> -    { 96, TYPE_RISCV_CPU_ANY,              riscv_any_cpu_init },
> -    { 32, TYPE_RISCV_CPU_RV32GCSU_V1_09_1, rv32gcsu_priv1_09_1_cpu_init },
> -    { 32, TYPE_RISCV_CPU_RV32GCSU_V1_10_0, rv32gcsu_priv1_10_0_cpu_init },
> -    { 32, TYPE_RISCV_CPU_RV32IMACU_NOMMU,  rv32imacu_nommu_cpu_init },
> -    { 32, TYPE_RISCV_CPU_SIFIVE_E31,       rv32imacu_nommu_cpu_init },
> -    { 32, TYPE_RISCV_CPU_SIFIVE_U34,       rv32gcsu_priv1_10_0_cpu_init },
> -    { 64, TYPE_RISCV_CPU_RV64GCSU_V1_09_1, rv64gcsu_priv1_09_1_cpu_init },
> -    { 64, TYPE_RISCV_CPU_RV64GCSU_V1_10_0, rv64gcsu_priv1_10_0_cpu_init },
> -    { 64, TYPE_RISCV_CPU_RV64IMACU_NOMMU,  rv64imacu_nommu_cpu_init },
> -    { 64, TYPE_RISCV_CPU_SIFIVE_E51,       rv64imacu_nommu_cpu_init },
> -    { 64, TYPE_RISCV_CPU_SIFIVE_U54,       rv64gcsu_priv1_10_0_cpu_init },
> -    { 0, NULL, NULL }
> -};
> +#endif
>  
>  static ObjectClass *riscv_cpu_class_by_name(const char *cpu_model)
>  {
> @@ -366,28 +357,6 @@ static void riscv_cpu_class_init(ObjectClass *c, void 
> *data)
>      cc->vmsd = &vmstate_riscv_cpu;
>  }
>  
> -static void cpu_register(const RISCVCPUInfo *info)
> -{
> -    TypeInfo type_info = {
> -        .name = info->name,
> -        .parent = TYPE_RISCV_CPU,
> -        .instance_size = sizeof(RISCVCPU),
> -        .instance_init = info->initfn,
> -    };
> -
> -    type_register(&type_info);
> -}
> -
> -static const TypeInfo riscv_cpu_type_info = {
> -    .name = TYPE_RISCV_CPU,
> -    .parent = TYPE_CPU,
> -    .instance_size = sizeof(RISCVCPU),
> -    .instance_init = riscv_cpu_init,
> -    .abstract = false,
> -    .class_size = sizeof(RISCVCPUClass),
> -    .class_init = riscv_cpu_class_init,
> -};
> -
>  char *riscv_isa_string(RISCVCPU *cpu)
>  {
>      int i;
> @@ -403,30 +372,76 @@ char *riscv_isa_string(RISCVCPU *cpu)
>      return isa_string;
>  }
>  
> -void riscv_cpu_list(FILE *f, fprintf_function cpu_fprintf)
> +typedef struct RISCVCPUListState {
> +    fprintf_function cpu_fprintf;
> +    FILE *file;
> +} RISCVCPUListState;
> +
> +static gint riscv_cpu_list_compare(gconstpointer a, gconstpointer b)
>  {
> -    const RISCVCPUInfo *info = riscv_cpus;
> +    ObjectClass *class_a = (ObjectClass *)a;
> +    ObjectClass *class_b = (ObjectClass *)b;
> +    const char *name_a, *name_b;
>  
> -    while (info->name) {
> -        if (info->bit_widths & TARGET_LONG_BITS) {
> -            (*cpu_fprintf)(f, "%s\n", info->name);
> -        }
> -        info++;
> -    }
> +    name_a = object_class_get_name(class_a);
> +    name_b = object_class_get_name(class_b);
> +    return strcmp(name_a, name_b);
>  }
>  
> -static void riscv_cpu_register_types(void)
> +static void riscv_cpu_list_entry(gpointer data, gpointer user_data)
>  {
> -    const RISCVCPUInfo *info = riscv_cpus;
> +    RISCVCPUListState *s = user_data;
> +    const char *typename = object_class_get_name(OBJECT_CLASS(data));
> +    int len = strlen(typename) - strlen(RISCV_CPU_TYPE_SUFFIX);
>  
> -    type_register_static(&riscv_cpu_type_info);
> +    (*s->cpu_fprintf)(s->file, "%.*s\n", len, typename);
> +}
>  
> -    while (info->name) {
> -        if (info->bit_widths & TARGET_LONG_BITS) {
> -            cpu_register(info);
> -        }
> -        info++;
> -    }
> +void riscv_cpu_list(FILE *f, fprintf_function cpu_fprintf)
> +{
> +    RISCVCPUListState s = {
> +        .cpu_fprintf = cpu_fprintf,
> +        .file = f,
> +    };
> +    GSList *list;
> +
> +    list = object_class_get_list(TYPE_RISCV_CPU, false);
> +    list = g_slist_sort(list, riscv_cpu_list_compare);
> +    g_slist_foreach(list, riscv_cpu_list_entry, &s);
> +    g_slist_free(list);
>  }
>  
> -type_init(riscv_cpu_register_types)
> +#define DEFINE_CPU(type_name, initfn)      \
> +    {                                      \
> +        .name = type_name,                 \
> +        .parent = TYPE_RISCV_CPU,          \
> +        .instance_init = initfn            \
> +    }
> +
> +static const TypeInfo riscv_cpu_type_infos[] = {
> +    {
> +        .name = TYPE_RISCV_CPU,
> +        .parent = TYPE_CPU,
> +        .instance_size = sizeof(RISCVCPU),
> +        .instance_init = riscv_cpu_init,
> +        .abstract = true,
> +        .class_size = sizeof(RISCVCPUClass),
> +        .class_init = riscv_cpu_class_init,
> +    },
> +    DEFINE_CPU(TYPE_RISCV_CPU_ANY,              riscv_any_cpu_init),
> +#if defined(TARGET_RISCV32)
> +    DEFINE_CPU(TYPE_RISCV_CPU_RV32GCSU_V1_09_1, 
> rv32gcsu_priv1_09_1_cpu_init),
> +    DEFINE_CPU(TYPE_RISCV_CPU_RV32GCSU_V1_10_0, 
> rv32gcsu_priv1_10_0_cpu_init),
> +    DEFINE_CPU(TYPE_RISCV_CPU_RV32IMACU_NOMMU,  rv32imacu_nommu_cpu_init),
> +    DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E31,       rv32imacu_nommu_cpu_init),
> +    DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U34,       rv32gcsu_priv1_10_0_cpu_init)
> +#elif defined(TARGET_RISCV64)
> +    DEFINE_CPU(TYPE_RISCV_CPU_RV64GCSU_V1_09_1, 
> rv64gcsu_priv1_09_1_cpu_init),
> +    DEFINE_CPU(TYPE_RISCV_CPU_RV64GCSU_V1_10_0, 
> rv64gcsu_priv1_10_0_cpu_init),
> +    DEFINE_CPU(TYPE_RISCV_CPU_RV64IMACU_NOMMU,  rv64imacu_nommu_cpu_init),
> +    DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_E51,       rv64imacu_nommu_cpu_init),
> +    DEFINE_CPU(TYPE_RISCV_CPU_SIFIVE_U54,       rv64gcsu_priv1_10_0_cpu_init)
> +#endif
> +};
> +
> +DEFINE_TYPES(riscv_cpu_type_infos)
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]