diff options
Diffstat (limited to 'ARMeilleure/Instructions/InstEmitException32.cs')
-rw-r--r-- | ARMeilleure/Instructions/InstEmitException32.cs | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/ARMeilleure/Instructions/InstEmitException32.cs b/ARMeilleure/Instructions/InstEmitException32.cs index 0b3d28d9..a2a3869f 100644 --- a/ARMeilleure/Instructions/InstEmitException32.cs +++ b/ARMeilleure/Instructions/InstEmitException32.cs @@ -10,25 +10,32 @@ namespace ARMeilleure.Instructions { public static void Svc(ArmEmitterContext context) { - EmitExceptionCall(context, nameof(NativeInterface.SupervisorCall)); - } + IOpCode32Exception op = (IOpCode32Exception)context.CurrOp; - public static void Trap(ArmEmitterContext context) - { - EmitExceptionCall(context, nameof(NativeInterface.Break)); + string name = nameof(NativeInterface.SupervisorCall); + + context.StoreToContext(); + + context.Call(typeof(NativeInterface).GetMethod(name), Const(((IOpCode)op).Address), Const(op.Id)); + + context.LoadFromContext(); + + Translator.EmitSynchronization(context); } - private static void EmitExceptionCall(ArmEmitterContext context, string name) + public static void Trap(ArmEmitterContext context) { IOpCode32Exception op = (IOpCode32Exception)context.CurrOp; + string name = nameof(NativeInterface.Break); + context.StoreToContext(); context.Call(typeof(NativeInterface).GetMethod(name), Const(((IOpCode)op).Address), Const(op.Id)); context.LoadFromContext(); - Translator.EmitSynchronization(context); + context.Return(Const(context.CurrOp.Address)); } } } |