mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
cpu: Introduce CPUClass::set_pc() for gdb_set_cpu_pc()
This moves setting the Program Counter from gdbstub into target code. Use vaddr type as upper-bound replacement for target_ulong. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
2be8d45098
commit
f45748f10e
15 changed files with 119 additions and 33 deletions
|
@ -24,6 +24,13 @@
|
|||
#include "migration/vmstate.h"
|
||||
|
||||
|
||||
static void superh_cpu_set_pc(CPUState *cs, vaddr value)
|
||||
{
|
||||
SuperHCPU *cpu = SUPERH_CPU(cs);
|
||||
|
||||
cpu->env.pc = value;
|
||||
}
|
||||
|
||||
/* CPUClass::reset() */
|
||||
static void superh_cpu_reset(CPUState *s)
|
||||
{
|
||||
|
@ -269,6 +276,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;
|
||||
cc->set_pc = superh_cpu_set_pc;
|
||||
dc->vmsd = &vmstate_sh_cpu;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue