[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 13/31] target/loongarch: Use generic cpu_list()
From: |
Gavin Shan |
Subject: |
[PATCH v5 13/31] target/loongarch: Use generic cpu_list() |
Date: |
Wed, 15 Nov 2023 09:56:10 +1000 |
Before it's applied:
[gshan@gshan q]$ ./build/qemu-system-loongarch64 -cpu ?
la132-loongarch-cpu
la464-loongarch-cpu
max-loongarch-cpu
After it's applied:
[gshan@gshan q]$ ./build/qemu-system-loongarch64 -cpu ?
Available CPUs:
la132
la464
max
Signed-off-by: Gavin Shan <gshan@redhat.com>
---
target/loongarch/cpu.c | 15 ---------------
target/loongarch/cpu.h | 4 ----
2 files changed, 19 deletions(-)
diff --git a/target/loongarch/cpu.c b/target/loongarch/cpu.c
index 6fdf5e60f5..a69ab595fb 100644
--- a/target/loongarch/cpu.c
+++ b/target/loongarch/cpu.c
@@ -481,21 +481,6 @@ static void loongarch_max_initfn(Object *obj)
loongarch_la464_initfn(obj);
}
-static void loongarch_cpu_list_entry(gpointer data, gpointer user_data)
-{
- const char *typename = object_class_get_name(OBJECT_CLASS(data));
-
- qemu_printf("%s\n", typename);
-}
-
-void loongarch_cpu_list(void)
-{
- GSList *list;
- list = object_class_get_list_sorted(TYPE_LOONGARCH_CPU, false);
- g_slist_foreach(list, loongarch_cpu_list_entry, NULL);
- g_slist_free(list);
-}
-
static void loongarch_cpu_reset_hold(Object *obj)
{
CPUState *cs = CPU(obj);
diff --git a/target/loongarch/cpu.h b/target/loongarch/cpu.h
index 00d1fba597..0c15a174e4 100644
--- a/target/loongarch/cpu.h
+++ b/target/loongarch/cpu.h
@@ -466,10 +466,6 @@ static inline void cpu_get_tb_cpu_state(CPULoongArchState
*env, vaddr *pc,
*flags |= is_va32(env) * HW_FLAGS_VA32;
}
-void loongarch_cpu_list(void);
-
-#define cpu_list loongarch_cpu_list
-
#include "exec/cpu-all.h"
#define CPU_RESOLVING_TYPE TYPE_LOONGARCH_CPU
--
2.41.0
- [PATCH v5 08/31] target/arm: Use generic cpu_list(), (continued)
- [PATCH v5 08/31] target/arm: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 09/31] target/avr: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 10/31] target/cris: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 11/31] target/hexagon: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 12/31] target/hppa: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 13/31] target/loongarch: Use generic cpu_list(),
Gavin Shan <=
- [PATCH v5 14/31] target/m68k: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 15/31] target/mips: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 16/31] target/openrisc: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 17/31] target/riscv: Use generic cpu_list(), Gavin Shan, 2023/11/14
- [PATCH v5 19/31] target/sh4: Use generic cpu_list(), Gavin Shan, 2023/11/14