summaryrefslogtreecommitdiff
path: root/src/core/arm
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-05 00:20:11 -0400
committerbunnei <ericbunnie@gmail.com>2014-06-05 00:20:11 -0400
commit9ece9da50d7c7827b9eb3bb9cfb007fb4af07061 (patch)
treee4f644a5ca93dcf18bc5c81259a4db69ff139419 /src/core/arm
parent870c6146e727e3537536f162e76ee8e20d56622f (diff)
arm: fixed bug in how thread context switch occurs with SkyEye
Diffstat (limited to 'src/core/arm')
-rw-r--r--src/core/arm/interpreter/arm_interpreter.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/arm/interpreter/arm_interpreter.cpp b/src/core/arm/interpreter/arm_interpreter.cpp
index 2aa100e86..8030ec56a 100644
--- a/src/core/arm/interpreter/arm_interpreter.cpp
+++ b/src/core/arm/interpreter/arm_interpreter.cpp
@@ -118,6 +118,9 @@ void ARM_Interpreter::SaveContext(ThreadContext& ctx) {
ctx.fpscr = state->VFP[1];
ctx.fpexc = state->VFP[2];
+
+ ctx.reg_15 = state->Reg[15];
+ ctx.mode = state->NextInstr;
}
/**
@@ -137,8 +140,8 @@ void ARM_Interpreter::LoadContext(const ThreadContext& ctx) {
state->VFP[1] = ctx.fpscr;
state->VFP[2] = ctx.fpexc;
- state->Reg[15] = ctx.pc;
- state->NextInstr = RESUME;
+ state->Reg[15] = ctx.reg_15;
+ state->NextInstr = ctx.mode;
}
/// Prepare core for thread reschedule (if needed to correctly handle state)