mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target/i386: Convert to disas_set_info hook
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
3d7196d43b
commit
f50f3dd5d6
4 changed files with 15 additions and 48 deletions
22
disas.c
22
disas.c
|
@ -204,16 +204,7 @@ void target_disas(FILE *out, CPUState *cpu, target_ulong code,
|
|||
cc->disas_set_info(cpu, &s.info);
|
||||
}
|
||||
|
||||
#if defined(TARGET_I386)
|
||||
if (flags == 2) {
|
||||
s.info.mach = bfd_mach_x86_64;
|
||||
} else if (flags == 1) {
|
||||
s.info.mach = bfd_mach_i386_i8086;
|
||||
} else {
|
||||
s.info.mach = bfd_mach_i386_i386;
|
||||
}
|
||||
s.info.print_insn = print_insn_i386;
|
||||
#elif defined(TARGET_PPC)
|
||||
#if defined(TARGET_PPC)
|
||||
if ((flags >> 16) & 1) {
|
||||
s.info.endian = BFD_ENDIAN_LITTLE;
|
||||
}
|
||||
|
@ -389,16 +380,7 @@ void monitor_disas(Monitor *mon, CPUState *cpu,
|
|||
cc->disas_set_info(cpu, &s.info);
|
||||
}
|
||||
|
||||
#if defined(TARGET_I386)
|
||||
if (flags == 2) {
|
||||
s.info.mach = bfd_mach_x86_64;
|
||||
} else if (flags == 1) {
|
||||
s.info.mach = bfd_mach_i386_i8086;
|
||||
} else {
|
||||
s.info.mach = bfd_mach_i386_i386;
|
||||
}
|
||||
s.info.print_insn = print_insn_i386;
|
||||
#elif defined(TARGET_PPC)
|
||||
#if defined(TARGET_PPC)
|
||||
if (flags & 0xFFFF) {
|
||||
/* If we have a precise definition of the instruction set, use it. */
|
||||
s.info.mach = flags & 0xFFFF;
|
||||
|
|
21
monitor.c
21
monitor.c
|
@ -1310,27 +1310,6 @@ static void memory_dump(Monitor *mon, int count, int format, int wsize,
|
|||
|
||||
if (format == 'i') {
|
||||
int flags = 0;
|
||||
#ifdef TARGET_I386
|
||||
CPUArchState *env = mon_get_cpu_env();
|
||||
if (wsize == 2) {
|
||||
flags = 1;
|
||||
} else if (wsize == 4) {
|
||||
flags = 0;
|
||||
} else {
|
||||
/* as default we use the current CS size */
|
||||
flags = 0;
|
||||
if (env) {
|
||||
#ifdef TARGET_X86_64
|
||||
if ((env->efer & MSR_EFER_LMA) &&
|
||||
(env->segs[R_CS].flags & DESC_L_MASK))
|
||||
flags = 2;
|
||||
else
|
||||
#endif
|
||||
if (!(env->segs[R_CS].flags & DESC_B_MASK))
|
||||
flags = 1;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#ifdef TARGET_PPC
|
||||
CPUArchState *env = mon_get_cpu_env();
|
||||
flags = msr_le << 16;
|
||||
|
|
|
@ -4097,6 +4097,17 @@ static bool x86_cpu_has_work(CPUState *cs)
|
|||
!(env->hflags & HF_SMM_MASK));
|
||||
}
|
||||
|
||||
static void x86_disas_set_info(CPUState *cs, disassemble_info *info)
|
||||
{
|
||||
X86CPU *cpu = X86_CPU(cs);
|
||||
CPUX86State *env = &cpu->env;
|
||||
|
||||
info->mach = (env->hflags & HF_CS64_MASK ? bfd_mach_x86_64
|
||||
: env->hflags & HF_CS32_MASK ? bfd_mach_i386_i386
|
||||
: bfd_mach_i386_i8086);
|
||||
info->print_insn = print_insn_i386;
|
||||
}
|
||||
|
||||
static Property x86_cpu_properties[] = {
|
||||
#ifdef CONFIG_USER_ONLY
|
||||
/* apic_id = 0 by default for *-user, see commit 9886e834 */
|
||||
|
@ -4216,6 +4227,7 @@ static void x86_cpu_common_class_init(ObjectClass *oc, void *data)
|
|||
#endif
|
||||
cc->cpu_exec_enter = x86_cpu_exec_enter;
|
||||
cc->cpu_exec_exit = x86_cpu_exec_exit;
|
||||
cc->disas_set_info = x86_disas_set_info;
|
||||
|
||||
dc->user_creatable = true;
|
||||
}
|
||||
|
|
|
@ -8557,15 +8557,9 @@ static void i386_tr_disas_log(const DisasContextBase *dcbase,
|
|||
CPUState *cpu)
|
||||
{
|
||||
DisasContext *dc = container_of(dcbase, DisasContext, base);
|
||||
int disas_flags = !dc->code32;
|
||||
|
||||
qemu_log("IN: %s\n", lookup_symbol(dc->base.pc_first));
|
||||
#ifdef TARGET_X86_64
|
||||
if (dc->code64) {
|
||||
disas_flags = 2;
|
||||
}
|
||||
#endif
|
||||
log_target_disas(cpu, dc->base.pc_first, dc->base.tb->size, disas_flags);
|
||||
log_target_disas(cpu, dc->base.pc_first, dc->base.tb->size, 0);
|
||||
}
|
||||
|
||||
static const TranslatorOps i386_tr_ops = {
|
||||
|
|
Loading…
Reference in a new issue