summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Färber <afaerber@suse.de>2013-06-28 20:43:26 +0200
committerAndreas Färber <afaerber@suse.de>2013-07-23 02:41:32 +0200
commita10b978c4246bf9af0e34505aba500d3e7f6c6c4 (patch)
treefb3cb534f54b22d89fe9c023afefd7942877b5e1
parente700604df024ec5028f476b133ca337c4d7ee518 (diff)
downloadfocaccia-qemu-a10b978c4246bf9af0e34505aba500d3e7f6c6c4.tar.gz
focaccia-qemu-a10b978c4246bf9af0e34505aba500d3e7f6c6c4.zip
target-moxie: Implement CPUClass::set_pc()
This adds support for GDB's c addr (Continue) and s addr (Single Step).

Prepares for dropping cpu_pc_from_tb().

Signed-off-by: Andreas Färber <afaerber@suse.de>
-rw-r--r--target-moxie/cpu.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/target-moxie/cpu.c b/target-moxie/cpu.c
index 92ca5946bf..91f61973ab 100644
--- a/target-moxie/cpu.c
+++ b/target-moxie/cpu.c
@@ -22,6 +22,13 @@
 #include "migration/vmstate.h"
 #include "machine.h"
 
+static void moxie_cpu_set_pc(CPUState *cs, vaddr value)
+{
+    MoxieCPU *cpu = MOXIE_CPU(cs);
+
+    cpu->env.pc = value;
+}
+
 static void moxie_cpu_reset(CPUState *s)
 {
     MoxieCPU *cpu = MOXIE_CPU(s);
@@ -93,6 +100,7 @@ static void moxie_cpu_class_init(ObjectClass *oc, void *data)
 
     cc->do_interrupt = moxie_cpu_do_interrupt;
     cc->dump_state = moxie_cpu_dump_state;
+    cc->set_pc = moxie_cpu_set_pc;
     cpu_class_set_vmsd(cc, &vmstate_moxie_cpu);
 }