mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
cpu: Turn cpu_dump_{state,statistics}() into CPUState hooks
Make cpustats monitor command available unconditionally. Prepares for changing kvm_handle_internal_error() and kvm_cpu_exec() arguments to CPUState. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
13618e058c
commit
878096eeb2
63 changed files with 242 additions and 86 deletions
|
@ -84,5 +84,7 @@ static inline SuperHCPU *sh_env_get_cpu(CPUSH4State *env)
|
|||
#define ENV_OFFSET offsetof(SuperHCPU, env)
|
||||
|
||||
void superh_cpu_do_interrupt(CPUState *cpu);
|
||||
void superh_cpu_dump_state(CPUState *cpu, FILE *f,
|
||||
fprintf_function cpu_fprintf, int flags);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -274,6 +274,7 @@ static void superh_cpu_class_init(ObjectClass *oc, void *data)
|
|||
|
||||
cc->class_by_name = superh_cpu_class_by_name;
|
||||
cc->do_interrupt = superh_cpu_do_interrupt;
|
||||
cc->dump_state = superh_cpu_dump_state;
|
||||
dc->vmsd = &vmstate_sh_cpu;
|
||||
}
|
||||
|
||||
|
|
|
@ -150,10 +150,11 @@ void sh4_translate_init(void)
|
|||
done_init = 1;
|
||||
}
|
||||
|
||||
void cpu_dump_state(CPUSH4State * env, FILE * f,
|
||||
int (*cpu_fprintf) (FILE * f, const char *fmt, ...),
|
||||
int flags)
|
||||
void superh_cpu_dump_state(CPUState *cs, FILE *f,
|
||||
fprintf_function cpu_fprintf, int flags)
|
||||
{
|
||||
SuperHCPU *cpu = SUPERH_CPU(cs);
|
||||
CPUSH4State *env = &cpu->env;
|
||||
int i;
|
||||
cpu_fprintf(f, "pc=0x%08x sr=0x%08x pr=0x%08x fpscr=0x%08x\n",
|
||||
env->pc, env->sr, env->pr, env->fpscr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue