[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 09/33] target/hexagon: Use generic helper to show CPU model na
From: |
Gavin Shan |
Subject: |
[PATCH v4 09/33] target/hexagon: Use generic helper to show CPU model names |
Date: |
Thu, 2 Nov 2023 10:24:36 +1000 |
For target/hexagon, 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.
Signed-off-by: Gavin Shan <gshan@redhat.com>
---
target/hexagon/cpu.c | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/target/hexagon/cpu.c b/target/hexagon/cpu.c
index aa48f5fe89..cfff005a1a 100644
--- a/target/hexagon/cpu.c
+++ b/target/hexagon/cpu.c
@@ -34,13 +34,11 @@ static void hexagon_v73_cpu_init(Object *obj) { }
static void hexagon_cpu_list_entry(gpointer data, gpointer user_data)
{
- ObjectClass *oc = data;
- char *name = g_strdup(object_class_get_name(oc));
- if (g_str_has_suffix(name, HEXAGON_CPU_TYPE_SUFFIX)) {
- name[strlen(name) - strlen(HEXAGON_CPU_TYPE_SUFFIX)] = '\0';
- }
- qemu_printf(" %s\n", name);
- g_free(name);
+ const char *typename = object_class_get_name(OBJECT_CLASS(data));
+ char *model = cpu_model_from_type(typename);
+
+ qemu_printf(" %s\n", model);
+ g_free(model);
}
void hexagon_cpu_list(void)
--
2.41.0
- [PATCH v4 02/33] hw/cpu: Call object_class_is_abstract() once in cpu_class_by_name(), (continued)
- [PATCH v4 02/33] hw/cpu: Call object_class_is_abstract() once in cpu_class_by_name(), Gavin Shan, 2023/11/01
- [PATCH v4 03/33] cpu: Call object_class_dynamic_cast() once in cpu_class_by_name(), Gavin Shan, 2023/11/01
- [PATCH v4 04/33] cpu: Add helper cpu_model_from_type(), Gavin Shan, 2023/11/01
- [PATCH v4 05/33] target/alpha: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 06/33] target/arm: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [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 <=
- [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
- [PATCH v4 13/33] target/mips: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 14/33] target/openrisc: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 15/33] target/ppc: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 16/33] target/riscv: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 17/33] target/rx: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 18/33] target/s390x: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01
- [PATCH v4 19/33] target/sh4: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01