X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=libpcsxcore%2Fnew_dynarec%2Femu_if.c;h=69e75f9ea9f5c75d177e2bac6c8c4f0cf1731cae;hb=a7ce1fc5856aa569f831dc3f41d4d812374e95b5;hp=7f7d8f873b7a819d782080823521baf508ab1318;hpb=7e605697028dd22dbf2d6ee4701add1e31814b1a;p=pcsx_rearmed.git diff --git a/libpcsxcore/new_dynarec/emu_if.c b/libpcsxcore/new_dynarec/emu_if.c index 7f7d8f87..69e75f9e 100644 --- a/libpcsxcore/new_dynarec/emu_if.c +++ b/libpcsxcore/new_dynarec/emu_if.c @@ -5,13 +5,15 @@ * See the COPYING file in the top-level directory. */ -// pending_exception? -// swi 0 in do_unalignedwritestub? #include #include "emu_if.h" #include "pcsxmem.h" #include "../psxhle.h" +#include "../r3000a.h" +#include "../cdrom.h" +#include "../psxdma.h" +#include "../mdec.h" #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) @@ -19,7 +21,7 @@ #define evprintf(...) char invalid_code[0x100000]; -u32 event_cycles[7]; +u32 event_cycles[PSXINT_COUNT]; static void schedule_timeslice(void) { @@ -48,6 +50,48 @@ static void schedule_timeslice(void) #endif } +typedef void (irq_func)(); + +static irq_func * const irq_funcs[] = { + [PSXINT_SIO] = sioInterrupt, + [PSXINT_CDR] = cdrInterrupt, + [PSXINT_CDREAD] = cdrReadInterrupt, + [PSXINT_GPUDMA] = gpuInterrupt, + [PSXINT_MDECOUTDMA] = mdec1Interrupt, + [PSXINT_SPUDMA] = spuInterrupt, + [PSXINT_MDECINDMA] = mdec0Interrupt, + [PSXINT_GPUOTCDMA] = gpuotcInterrupt, +}; + +/* local dupe of psxBranchTest, using event_cycles */ +static void irq_test(void) +{ + u32 irqs = psxRegs.interrupt; + u32 cycle = psxRegs.cycle; + u32 irq, irq_bits; + + if ((psxRegs.cycle - psxNextsCounter) >= psxNextCounter) + psxRcntUpdate(); + + // irq_funcs() may queue more irqs + psxRegs.interrupt = 0; + + for (irq = 0, irq_bits = irqs; irq_bits != 0; irq++, irq_bits >>= 1) { + if (!(irq_bits & 1)) + continue; + if ((s32)(cycle - event_cycles[irq]) >= 0) { + irqs &= ~(1 << irq); + irq_funcs[irq](); + } + } + psxRegs.interrupt |= irqs; + + if ((psxHu32(0x1070) & psxHu32(0x1074)) && (Status & 0x401) == 0x401) { + psxException(0x400, 0); + pending_exception = 1; + } +} + void gen_interupt() { evprintf(" +ge %08x, %u->%u\n", psxRegs.pc, psxRegs.cycle, next_interupt); @@ -55,14 +99,14 @@ void gen_interupt() psxRegs.cycle += 2; #endif - psxBranchTest(); + irq_test(); + //psxBranchTest(); + //pending_exception = 1; schedule_timeslice(); evprintf(" -ge %08x, %u->%u (%d)\n", psxRegs.pc, psxRegs.cycle, next_interupt, next_interupt - psxRegs.cycle); - - pending_exception = 1; /* FIXME */ } void MTC0_() @@ -76,9 +120,22 @@ void MTC0_() void check_interupt() { + /* FIXME (also asm) */ printf("ari64_check_interupt\n"); } +void new_dyna_save(void) +{ + // psxRegs.intCycle is always maintained, no need to convert +} + +void new_dyna_restore(void) +{ + int i; + for (i = 0; i < PSXINT_NEWDRC_CHECK; i++) + event_cycles[i] = psxRegs.intCycle[i].sCycle + psxRegs.intCycle[i].cycle; +} + void *gte_handlers[64]; /* from gte.txt.. not sure if this is any good. */