[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 06/33] target/arm: Use generic helper to show CPU model names
From: |
Gavin Shan |
Subject: |
[PATCH v4 06/33] target/arm: Use generic helper to show CPU model names |
Date: |
Thu, 2 Nov 2023 10:24:33 +1000 |
For target/arm, the registered CPU type name is always the combination
of the CPU model name and suffix. Use cpu_model_from_type() to show the
CPU model names. In arm_cpu_list_entry(), @name is renamed to @model
since it points to CPU model name instead of CPU type name.
Signed-off-by: Gavin Shan <gshan@redhat.com>
---
target/arm/arm-qmp-cmds.c | 6 ++----
target/arm/helper.c | 12 +++++-------
2 files changed, 7 insertions(+), 11 deletions(-)
diff --git a/target/arm/arm-qmp-cmds.c b/target/arm/arm-qmp-cmds.c
index b53d5efe13..c8c712a2c6 100644
--- a/target/arm/arm-qmp-cmds.c
+++ b/target/arm/arm-qmp-cmds.c
@@ -233,12 +233,10 @@ static void arm_cpu_add_definition(gpointer data,
gpointer user_data)
ObjectClass *oc = data;
CpuDefinitionInfoList **cpu_list = user_data;
CpuDefinitionInfo *info;
- const char *typename;
+ const char *typename = object_class_get_name(oc);
- typename = object_class_get_name(oc);
info = g_malloc0(sizeof(*info));
- info->name = g_strndup(typename,
- strlen(typename) - strlen("-" TYPE_ARM_CPU));
+ info->name = cpu_model_from_type(typename);
info->q_typename = g_strdup(typename);
QAPI_LIST_PREPEND(*cpu_list, info);
diff --git a/target/arm/helper.c b/target/arm/helper.c
index 5dc0d20a84..baf4b104ef 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -9436,17 +9436,15 @@ static void arm_cpu_list_entry(gpointer data, gpointer
user_data)
{
ObjectClass *oc = data;
CPUClass *cc = CPU_CLASS(oc);
- const char *typename;
- char *name;
+ const char *typename = object_class_get_name(oc);
+ char *model = cpu_model_from_type(typename);
- typename = object_class_get_name(oc);
- name = g_strndup(typename, strlen(typename) - strlen("-" TYPE_ARM_CPU));
if (cc->deprecation_note) {
- qemu_printf(" %s (deprecated)\n", name);
+ qemu_printf(" %s (deprecated)\n", model);
} else {
- qemu_printf(" %s\n", name);
+ qemu_printf(" %s\n", model);
}
- g_free(name);
+ g_free(model);
}
void arm_cpu_list(void)
--
2.41.0
- Re: [PATCH v4 02/33] hw/cpu: Call object_class_is_abstract() once in cpu_class_by_name(), (continued)
- [PATCH v4 07/33] target/avr: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 08/33] target/cris: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 09/33] target/hexagon: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 10/33] target/i386: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 11/33] target/loongarch: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 12/33] target/m68k: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01