mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07: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
|
|
@ -76,5 +76,7 @@ extern const struct VMStateDescription vmstate_lm32_cpu;
|
|||
#endif
|
||||
|
||||
void lm32_cpu_do_interrupt(CPUState *cpu);
|
||||
void lm32_cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
|
||||
int flags);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -85,6 +85,7 @@ static void lm32_cpu_class_init(ObjectClass *oc, void *data)
|
|||
cc->reset = lm32_cpu_reset;
|
||||
|
||||
cc->do_interrupt = lm32_cpu_do_interrupt;
|
||||
cc->dump_state = lm32_cpu_dump_state;
|
||||
cpu_class_set_vmsd(cc, &vmstate_lm32_cpu);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1141,9 +1141,11 @@ void gen_intermediate_code_pc(CPULM32State *env, struct TranslationBlock *tb)
|
|||
gen_intermediate_code_internal(env, tb, 1);
|
||||
}
|
||||
|
||||
void cpu_dump_state(CPULM32State *env, FILE *f, fprintf_function cpu_fprintf,
|
||||
int flags)
|
||||
void lm32_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
|
||||
int flags)
|
||||
{
|
||||
LM32CPU *cpu = LM32_CPU(cs);
|
||||
CPULM32State *env = &cpu->env;
|
||||
int i;
|
||||
|
||||
if (!env || !f) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue