drc: don't leave until we really need to
[pcsx_rearmed.git] / libpcsxcore / new_dynarec / emu_if.c
index 572c482..a37f7a2 100644 (file)
@@ -175,7 +175,9 @@ static void ari64_reset()
        pending_exception = 1;
 }
 
-static void ari64_execute()
+// execute until predefined leave points
+// (HLE softcall exit and BIOS fastboot end)
+static void ari64_execute_until()
 {
        schedule_timeslice();
 
@@ -188,6 +190,14 @@ static void ari64_execute()
                psxRegs.cycle, next_interupt, next_interupt - psxRegs.cycle);
 }
 
+static void ari64_execute()
+{
+       while (!stop) {
+               ari64_execute_until();
+               evprintf("drc left @%08x\n", psxRegs.pc);
+       }
+}
+
 static void ari64_clear(u32 addr, u32 size)
 {
        u32 start, end;
@@ -229,7 +239,7 @@ R3000Acpu psxRec = {
        ari64_reset,
 #if defined(__arm__)
        ari64_execute,
-       ari64_execute,
+       ari64_execute_until,
 #else
        intExecuteT,
        intExecuteBlockT,