drop some unnecessary inlines
[picodrive.git] / cpu / sh2 / mame / sh2pico.c
index d788316..636ebc6 100644 (file)
@@ -1,19 +1,62 @@
 #include "../sh2.h"
 
+#ifdef DRC_CMP
+#include "../compiler.c"
+#define BUSY_LOOP_HACKS 0
+#else
+#define BUSY_LOOP_HACKS 1
+#endif
+
 // MAME types
+#ifndef INT8
 typedef signed char  INT8;
 typedef signed short INT16;
 typedef signed int   INT32;
 typedef unsigned int   UINT32;
 typedef unsigned short UINT16;
 typedef unsigned char  UINT8;
+#endif
+
+#ifdef DRC_SH2
+
+// this nasty conversion is needed for drc-expecting memhandlers
+#define MAKE_READFUNC(name, cname) \
+static __inline unsigned int name(SH2 *sh2, unsigned int a) \
+{ \
+       unsigned int ret; \
+       sh2->sr |= sh2->icount << 12; \
+       ret = cname(a, sh2); \
+       sh2->icount = (signed int)sh2->sr >> 12; \
+       sh2->sr &= 0x3f3; \
+       return ret; \
+}
+
+#define MAKE_WRITEFUNC(name, cname) \
+static __inline void name(SH2 *sh2, unsigned int a, unsigned int d) \
+{ \
+       sh2->sr |= sh2->icount << 12; \
+       cname(a, d, sh2); \
+       sh2->icount = (signed int)sh2->sr >> 12; \
+       sh2->sr &= 0x3f3; \
+}
 
-#define RB(a) p32x_sh2_read8(a,sh2)
-#define RW(a) p32x_sh2_read16(a,sh2)
-#define RL(a) p32x_sh2_read32(a,sh2)
-#define WB(a,d) p32x_sh2_write8(a,d,sh2)
-#define WW(a,d) p32x_sh2_write16(a,d,sh2)
-#define WL(a,d) p32x_sh2_write32(a,d,sh2)
+MAKE_READFUNC(RB, p32x_sh2_read8)
+MAKE_READFUNC(RW, p32x_sh2_read16)
+MAKE_READFUNC(RL, p32x_sh2_read32)
+MAKE_WRITEFUNC(WB, p32x_sh2_write8)
+MAKE_WRITEFUNC(WW, p32x_sh2_write16)
+MAKE_WRITEFUNC(WL, p32x_sh2_write32)
+
+#else
+
+#define RB(sh2, a) p32x_sh2_read8(a, sh2)
+#define RW(sh2, a) p32x_sh2_read16(a, sh2)
+#define RL(sh2, a) p32x_sh2_read32(a, sh2)
+#define WB(sh2, a, d) p32x_sh2_write8(a, d, sh2)
+#define WW(sh2, a, d) p32x_sh2_write16(a, d, sh2)
+#define WL(sh2, a, d) p32x_sh2_write32(a, d, sh2)
+
+#endif
 
 // some stuff from sh2comn.h
 #define T      0x00000001
@@ -29,7 +72,10 @@ typedef unsigned char  UINT8;
 #define Rn     ((opcode>>8)&15)
 #define Rm     ((opcode>>4)&15)
 
-#define sh2_icount sh2->icount
+#define sh2_state SH2
+
+extern void lprintf(const char *fmt, ...);
+#define logerror lprintf
 
 #ifdef SH2_STATS
 static SH2 sh2_stats;
@@ -59,32 +105,41 @@ static unsigned int op_refs[0x10000];
 
 #include "sh2.c"
 
-#ifndef DRC_SH2
+#ifndef DRC_CMP
 
-int sh2_execute(SH2 *sh2_, int cycles)
+int sh2_execute_interpreter(SH2 *sh2, int cycles)
 {
-       sh2 = sh2_;
+       UINT32 opcode;
+
        sh2->icount = cycles;
 
        if (sh2->icount <= 0)
-               return cycles;
-
-       sh2->cycles_timeslice = cycles;
+               goto out;
 
        do
        {
-               UINT32 opcode;
-
                if (sh2->delay)
                {
                        sh2->ppc = sh2->delay;
-                       opcode = RW(sh2->delay);
+                       opcode = RW(sh2, sh2->delay);
+
+                       // TODO: more branch types
+                       if ((opcode >> 13) == 5) { // BRA/BSR
+                               sh2->r[15] -= 4;
+                               WL(sh2, sh2->r[15], sh2->sr);
+                               sh2->r[15] -= 4;
+                               WL(sh2, sh2->r[15], sh2->pc);
+                               sh2->pc = RL(sh2, sh2->vbr + 6 * 4);
+                               sh2->icount -= 5;
+                               opcode = 9; // NOP
+                       }
+
                        sh2->pc -= 2;
                }
                else
                {
                        sh2->ppc = sh2->pc;
-                       opcode = RW(sh2->pc);
+                       opcode = RW(sh2, sh2->pc);
                }
 
                sh2->delay = 0;
@@ -92,22 +147,22 @@ int sh2_execute(SH2 *sh2_, int cycles)
 
                switch (opcode & ( 15 << 12))
                {
-               case  0<<12: op0000(opcode); break;
-               case  1<<12: op0001(opcode); break;
-               case  2<<12: op0010(opcode); break;
-               case  3<<12: op0011(opcode); break;
-               case  4<<12: op0100(opcode); break;
-               case  5<<12: op0101(opcode); break;
-               case  6<<12: op0110(opcode); break;
-               case  7<<12: op0111(opcode); break;
-               case  8<<12: op1000(opcode); break;
-               case  9<<12: op1001(opcode); break;
-               case 10<<12: op1010(opcode); break;
-               case 11<<12: op1011(opcode); break;
-               case 12<<12: op1100(opcode); break;
-               case 13<<12: op1101(opcode); break;
-               case 14<<12: op1110(opcode); break;
-               default: op1111(opcode); break;
+               case  0<<12: op0000(sh2, opcode); break;
+               case  1<<12: op0001(sh2, opcode); break;
+               case  2<<12: op0010(sh2, opcode); break;
+               case  3<<12: op0011(sh2, opcode); break;
+               case  4<<12: op0100(sh2, opcode); break;
+               case  5<<12: op0101(sh2, opcode); break;
+               case  6<<12: op0110(sh2, opcode); break;
+               case  7<<12: op0111(sh2, opcode); break;
+               case  8<<12: op1000(sh2, opcode); break;
+               case  9<<12: op1001(sh2, opcode); break;
+               case 10<<12: op1010(sh2, opcode); break;
+               case 11<<12: op1011(sh2, opcode); break;
+               case 12<<12: op1100(sh2, opcode); break;
+               case 13<<12: op1101(sh2, opcode); break;
+               case 14<<12: op1110(sh2, opcode); break;
+               default: op1111(sh2, opcode); break;
                }
 
                sh2->icount--;
@@ -123,45 +178,110 @@ int sh2_execute(SH2 *sh2_, int cycles)
        }
        while (sh2->icount > 0 || sh2->delay);  /* can't interrupt before delay */
 
-       return sh2->cycles_timeslice - sh2->icount;
+out:
+       return sh2->icount;
 }
 
-#else // DRC_SH2
-
-#ifdef __i386__
-#define REGPARM(x) __attribute__((regparm(x)))
-#else
-#define REGPARM(x)
-#endif
+#else // if DRC_CMP
 
-// drc debug
-void REGPARM(2) sh2_do_op(SH2 *sh2_, int opcode)
+int sh2_execute_interpreter(SH2 *sh2, int cycles)
 {
-       sh2 = sh2_;
-       sh2->pc += 2;
+       static unsigned int base_pc_[2] = { 0, 0 };
+       static unsigned int end_pc_[2] = { 0, 0 };
+       static unsigned char op_flags_[2][BLOCK_INSN_LIMIT];
+       unsigned int *base_pc = &base_pc_[sh2->is_slave];
+       unsigned int *end_pc = &end_pc_[sh2->is_slave];
+       unsigned char *op_flags = op_flags_[sh2->is_slave];
+       unsigned int pc_expect;
+       UINT32 opcode;
+
+       sh2->icount = sh2->cycles_timeslice = cycles;
+
+       if (sh2->pending_level > ((sh2->sr >> 4) & 0x0f))
+       {
+               int level = sh2->pending_level;
+               int vector = sh2->irq_callback(sh2, level);
+               sh2_do_irq(sh2, level, vector);
+       }
+       pc_expect = sh2->pc;
 
-       switch (opcode & ( 15 << 12))
+       if (sh2->icount <= 0)
+               goto out;
+
+       do
        {
-               case  0<<12: op0000(opcode); break;
-               case  1<<12: op0001(opcode); break;
-               case  2<<12: op0010(opcode); break;
-               case  3<<12: op0011(opcode); break;
-               case  4<<12: op0100(opcode); break;
-               case  5<<12: op0101(opcode); break;
-               case  6<<12: op0110(opcode); break;
-               case  7<<12: op0111(opcode); break;
-               case  8<<12: op1000(opcode); break;
-               case  9<<12: op1001(opcode); break;
-               case 10<<12: op1010(opcode); break;
-               case 11<<12: op1011(opcode); break;
-               case 12<<12: op1100(opcode); break;
-               case 13<<12: op1101(opcode); break;
-               case 14<<12: op1110(opcode); break;
-               default: op1111(opcode); break;
+               if (!sh2->delay) {
+                       if (sh2->pc < *base_pc || sh2->pc >= *end_pc) {
+                               *base_pc = sh2->pc;
+                               scan_block(*base_pc, sh2->is_slave,
+                                       op_flags, end_pc, NULL);
+                       }
+                       if ((op_flags[(sh2->pc - *base_pc) / 2]
+                               & OF_BTARGET) || sh2->pc == *base_pc
+                               || pc_expect != sh2->pc) // branched
+                       {
+                               pc_expect = sh2->pc;
+                               if (sh2->icount < 0)
+                                       break;
+                       }
+
+                       do_sh2_trace(sh2, sh2->icount);
+               }
+               pc_expect += 2;
+
+               if (sh2->delay)
+               {
+                       sh2->ppc = sh2->delay;
+                       opcode = RW(sh2, sh2->delay);
+                       sh2->pc -= 2;
+               }
+               else
+               {
+                       sh2->ppc = sh2->pc;
+                       opcode = RW(sh2, sh2->pc);
+               }
+
+               sh2->delay = 0;
+               sh2->pc += 2;
+
+               switch (opcode & ( 15 << 12))
+               {
+               case  0<<12: op0000(sh2, opcode); break;
+               case  1<<12: op0001(sh2, opcode); break;
+               case  2<<12: op0010(sh2, opcode); break;
+               case  3<<12: op0011(sh2, opcode); break;
+               case  4<<12: op0100(sh2, opcode); break;
+               case  5<<12: op0101(sh2, opcode); break;
+               case  6<<12: op0110(sh2, opcode); break;
+               case  7<<12: op0111(sh2, opcode); break;
+               case  8<<12: op1000(sh2, opcode); break;
+               case  9<<12: op1001(sh2, opcode); break;
+               case 10<<12: op1010(sh2, opcode); break;
+               case 11<<12: op1011(sh2, opcode); break;
+               case 12<<12: op1100(sh2, opcode); break;
+               case 13<<12: op1101(sh2, opcode); break;
+               case 14<<12: op1110(sh2, opcode); break;
+               default: op1111(sh2, opcode); break;
+               }
+
+               sh2->icount--;
+
+               if (sh2->test_irq && !sh2->delay && sh2->pending_level > ((sh2->sr >> 4) & 0x0f))
+               {
+                       int level = sh2->pending_level;
+                       int vector = sh2->irq_callback(sh2, level);
+                       sh2_do_irq(sh2, level, vector);
+                       sh2->test_irq = 0;
+               }
+
        }
+       while (1);
+
+out:
+       return sh2->icount;
 }
 
-#endif
+#endif // DRC_CMP
 
 #ifdef SH2_STATS
 #include <stdio.h>