mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13: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
|
@ -61,5 +61,7 @@ static inline UniCore32CPU *uc32_env_get_cpu(CPUUniCore32State *env)
|
|||
#define ENV_OFFSET offsetof(UniCore32CPU, env)
|
||||
|
||||
void uc32_cpu_do_interrupt(CPUState *cpu);
|
||||
void uc32_cpu_dump_state(CPUState *cpu, FILE *f,
|
||||
fprintf_function cpu_fprintf, int flags);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -133,6 +133,7 @@ static void uc32_cpu_class_init(ObjectClass *oc, void *data)
|
|||
|
||||
cc->class_by_name = uc32_cpu_class_by_name;
|
||||
cc->do_interrupt = uc32_cpu_do_interrupt;
|
||||
cc->dump_state = uc32_cpu_dump_state;
|
||||
dc->vmsd = &vmstate_uc32_cpu;
|
||||
}
|
||||
|
||||
|
|
|
@ -2113,9 +2113,11 @@ static void cpu_dump_state_ucf64(CPUUniCore32State *env, FILE *f,
|
|||
#define cpu_dump_state_ucf64(env, file, pr, flags) do { } while (0)
|
||||
#endif
|
||||
|
||||
void cpu_dump_state(CPUUniCore32State *env, FILE *f,
|
||||
fprintf_function cpu_fprintf, int flags)
|
||||
void uc32_cpu_dump_state(CPUState *cs, FILE *f,
|
||||
fprintf_function cpu_fprintf, int flags)
|
||||
{
|
||||
UniCore32CPU *cpu = UNICORE32_CPU(cs);
|
||||
CPUUniCore32State *env = &cpu->env;
|
||||
int i;
|
||||
uint32_t psr;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue