[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 10/33] target/i386: Use generic helper to show CPU model names
From: |
Gavin Shan |
Subject: |
[PATCH v4 10/33] target/i386: Use generic helper to show CPU model names |
Date: |
Thu, 2 Nov 2023 10:24:37 +1000 |
For target/i386, the registered CPU type name is always the
combination of the CPU model name and suffix. Use cpu_model_from_type()
to convert the CPU type name to the CPU model name.
Signed-off-by: Gavin Shan <gshan@redhat.com>
---
target/i386/cpu.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index fc8484cb5e..f77149ed25 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -1744,8 +1744,7 @@ static char *x86_cpu_class_get_model_name(X86CPUClass *cc)
{
const char *class_name = object_class_get_name(OBJECT_CLASS(cc));
assert(g_str_has_suffix(class_name, X86_CPU_TYPE_SUFFIX));
- return g_strndup(class_name,
- strlen(class_name) - strlen(X86_CPU_TYPE_SUFFIX));
+ return cpu_model_from_type(class_name);
}
typedef struct X86CPUVersionDefinition {
@@ -5547,7 +5546,7 @@ static void x86_cpu_list_entry(gpointer data, gpointer
user_data)
{
ObjectClass *oc = data;
X86CPUClass *cc = X86_CPU_CLASS(oc);
- g_autofree char *name = x86_cpu_class_get_model_name(cc);
+ g_autofree char *model = x86_cpu_class_get_model_name(cc);
g_autofree char *desc = g_strdup(cc->model_description);
g_autofree char *alias_of = x86_cpu_class_get_alias_of(cc);
g_autofree char *model_id = x86_cpu_class_get_model_id(cc);
@@ -5571,7 +5570,7 @@ static void x86_cpu_list_entry(gpointer data, gpointer
user_data)
desc = g_strdup_printf("%s (deprecated)", olddesc);
}
- qemu_printf("x86 %-20s %s\n", name, desc);
+ qemu_printf("x86 %-20s %s\n", model, desc);
}
/* list available CPU models and flags */
--
2.41.0
- [PATCH v4 05/33] target/alpha: Use generic helper to show CPU model names, (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 <=
- [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
- [PATCH v4 20/33] target/tricore: Use generic helper to show CPU model names, Gavin Shan, 2023/11/01