Before it's applied:
[gshan@gshan q]$ ./build/qemu-system-sh4 -cpu ?
sh7750r
sh7751r
sh7785
After it's applied:
[gshan@gshan q]$ ./build/qemu-system-sh4 -cpu ?
Available CPUs:
sh7750r
sh7751r
sh7785
Signed-off-by: Gavin Shan <gshan@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <
20231114235628.534334-20-gshan@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
info->print_insn = print_insn_sh;
}
-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);
-
- qemu_printf("%.*s\n", len, typename);
-}
-
-void sh4_cpu_list(void)
-{
- GSList *list;
-
- list = object_class_get_list_sorted(TYPE_SUPERH_CPU, false);
- g_slist_foreach(list, superh_cpu_list_entry, NULL);
- g_slist_free(list);
-}
-
static ObjectClass *superh_cpu_class_by_name(const char *cpu_model)
{
ObjectClass *oc;
uintptr_t retaddr);
void sh4_translate_init(void);
-void sh4_cpu_list(void);
#if !defined(CONFIG_USER_ONLY)
hwaddr superh_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
#define CPU_RESOLVING_TYPE TYPE_SUPERH_CPU
-#define cpu_list sh4_cpu_list
-
/* MMU modes definitions */
#define MMU_USER_IDX 1
static inline int cpu_mmu_index (CPUSH4State *env, bool ifetch)