[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 16/32] target/sh4: Use generic helper to show CPU model names
From: |
Gavin Shan |
Subject: |
[PATCH v3 16/32] target/sh4: Use generic helper to show CPU model names |
Date: |
Thu, 7 Sep 2023 10:35:37 +1000 |
For target/sh4, the CPU type name can be: (1) the combination of the
CPU model name and suffix; (2) TYPE_SH7750R_CPU when the CPU model
name is "any". The CPU model names have been correctly shown in
superh_cpu_list_entry().
Use generic helper cpu_model_from_type() to show the CPU model name
in the above function. Besides, superh_cpu_class_by_name() is improved
by avoiding "goto out" and validating the CPU class.
Signed-off-by: Gavin Shan <gshan@redhat.com>
---
target/sh4/cpu.c | 24 +++++++++++++-----------
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/target/sh4/cpu.c b/target/sh4/cpu.c
index 61769ffdfa..ca06e2ce99 100644
--- a/target/sh4/cpu.c
+++ b/target/sh4/cpu.c
@@ -125,9 +125,10 @@ static void superh_cpu_disas_set_info(CPUState *cpu,
disassemble_info *info)
static void superh_cpu_list_entry(gpointer data, gpointer user_data)
{
const char *typename = object_class_get_name(OBJECT_CLASS(data));
- int len = strlen(typename) - strlen(SUPERH_CPU_TYPE_SUFFIX);
+ char *model = cpu_model_from_type(typename);
- qemu_printf("%.*s\n", len, typename);
+ qemu_printf(" %s\n", model);
+ g_free(model);
}
void sh4_cpu_list(void)
@@ -135,6 +136,7 @@ void sh4_cpu_list(void)
GSList *list;
list = object_class_get_list_sorted(TYPE_SUPERH_CPU, false);
+ qemu_printf("Available CPUs:\n");
g_slist_foreach(list, superh_cpu_list_entry, NULL);
g_slist_free(list);
}
@@ -146,20 +148,20 @@ static ObjectClass *superh_cpu_class_by_name(const char
*cpu_model)
s = g_ascii_strdown(cpu_model, -1);
if (strcmp(s, "any") == 0) {
- oc = object_class_by_name(TYPE_SH7750R_CPU);
- goto out;
+ typename = g_strdup(TYPE_SH7750R_CPU);
+ } else {
+ typename = g_strdup_printf(SUPERH_CPU_TYPE_NAME("%s"), s);
}
- typename = g_strdup_printf(SUPERH_CPU_TYPE_NAME("%s"), s);
oc = object_class_by_name(typename);
- if (oc != NULL && object_class_is_abstract(oc)) {
- oc = NULL;
- }
-
-out:
g_free(s);
g_free(typename);
- return oc;
+ if (object_class_dynamic_cast(oc, TYPE_SUPERH_CPU) &&
+ !object_class_is_abstract(oc)) {
+ return oc;
+ }
+
+ return NULL;
}
static void sh7750r_cpu_initfn(Object *obj)
--
2.41.0
- Re: [PATCH v3 13/32] target/riscv: Use generic helper to show CPU model names, (continued)
Re: [PATCH v3 15/32] target/s390x: Use generic helper to show CPU model names, Thomas Huth, 2023/09/07
[PATCH v3 16/32] target/sh4: Use generic helper to show CPU model names,
Gavin Shan <=
[PATCH v3 17/32] target/tricore: Use generic helper to show CPU model names, Gavin Shan, 2023/09/06
[PATCH v3 18/32] target/sparc: Improve sparc_cpu_class_by_name(), Gavin Shan, 2023/09/06
[PATCH v3 19/32] target/xtensa: Improve xtensa_cpu_class_by_name(), Gavin Shan, 2023/09/06
[PATCH v3 20/32] target/hppa: Implement hppa_cpu_list(), Gavin Shan, 2023/09/06
[PATCH v3 21/32] target/microblaze: Implement microblaze_cpu_list(), Gavin Shan, 2023/09/06
[PATCH v3 22/32] target/nios2: Implement nios2_cpu_list(), Gavin Shan, 2023/09/06
[PATCH v3 23/32] Mark cpu_list() supported on all targets, Gavin Shan, 2023/09/06
[PATCH v3 24/32] machine: Constify MachineClass::valid_cpu_types[i], Gavin Shan, 2023/09/06