mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -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
|
@ -1814,15 +1814,17 @@ void gen_intermediate_code_pc(CPUOpenRISCState *env,
|
|||
gen_intermediate_code_internal(openrisc_env_get_cpu(env), tb, 1);
|
||||
}
|
||||
|
||||
void cpu_dump_state(CPUOpenRISCState *env, FILE *f,
|
||||
fprintf_function cpu_fprintf,
|
||||
int flags)
|
||||
void openrisc_cpu_dump_state(CPUState *cs, FILE *f,
|
||||
fprintf_function cpu_fprintf,
|
||||
int flags)
|
||||
{
|
||||
OpenRISCCPU *cpu = OPENRISC_CPU(cs);
|
||||
CPUOpenRISCState *env = &cpu->env;
|
||||
int i;
|
||||
uint32_t *regs = env->gpr;
|
||||
|
||||
cpu_fprintf(f, "PC=%08x\n", env->pc);
|
||||
for (i = 0; i < 32; ++i) {
|
||||
cpu_fprintf(f, "R%02d=%08x%c", i, regs[i],
|
||||
cpu_fprintf(f, "R%02d=%08x%c", i, env->gpr[i],
|
||||
(i % 4) == 3 ? '\n' : ' ');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue