32x: new SH2 memory handling, hopefully faster
[picodrive.git] / cpu / sh2 / mame / sh2pico.c
1 #include "../sh2.h"
2
3 // MAME types
4 typedef signed char  INT8;
5 typedef signed short INT16;
6 typedef signed int   INT32;
7 typedef unsigned int   UINT32;
8 typedef unsigned short UINT16;
9 typedef unsigned char  UINT8;
10
11 #define RB(a) p32x_sh2_read8(a,sh2)
12 #define RW(a) p32x_sh2_read16(a,sh2)
13 #define RL(a) p32x_sh2_read32(a,sh2)
14 #define WB(a,d) p32x_sh2_write8(a,d,sh2)
15 #define WW(a,d) p32x_sh2_write16(a,d,sh2)
16 #define WL(a,d) p32x_sh2_write32(a,d,sh2)
17
18 // some stuff from sh2comn.h
19 #define T       0x00000001
20 #define S       0x00000002
21 #define I       0x000000f0
22 #define Q       0x00000100
23 #define M       0x00000200
24
25 #define AM      0xc7ffffff
26
27 #define FLAGS   (M|Q|I|S|T)
28
29 #define Rn      ((opcode>>8)&15)
30 #define Rm      ((opcode>>4)&15)
31
32 #define sh2_icount sh2->icount
33
34 #include "sh2.c"
35
36 #ifndef DRC_TMP
37
38 void sh2_execute(SH2 *sh2_, int cycles)
39 {
40         sh2 = sh2_;
41         sh2->cycles_aim += cycles;
42         sh2->icount = cycles = sh2->cycles_aim - sh2->cycles_done;
43
44         if (sh2->icount <= 0)
45                 return;
46
47         do
48         {
49                 UINT32 opcode;
50
51                 if (sh2->test_irq && !sh2->delay && sh2->pending_level > ((sh2->sr >> 4) & 0x0f))
52                 {
53                         if (sh2->pending_irl > sh2->pending_int_irq)
54                                 sh2_do_irq(sh2, sh2->pending_irl, 64 + sh2->pending_irl/2);
55                         else {
56                                 sh2_do_irq(sh2, sh2->pending_int_irq, sh2->pending_int_vector);
57                                 sh2->pending_int_irq = 0; // auto-clear
58                                 sh2->pending_level = sh2->pending_irl;
59                         }
60                         sh2->test_irq = 0;
61                 }
62
63                 if (sh2->delay)
64                 {
65                         sh2->ppc = sh2->delay;
66                         opcode = RW(sh2->delay);
67                         sh2->pc -= 2;
68                 }
69                 else
70                 {
71                         sh2->ppc = sh2->pc;
72                         opcode = RW(sh2->pc);
73                 }
74
75                 sh2->delay = 0;
76                 sh2->pc += 2;
77
78                 switch (opcode & ( 15 << 12))
79                 {
80                 case  0<<12: op0000(opcode); break;
81                 case  1<<12: op0001(opcode); break;
82                 case  2<<12: op0010(opcode); break;
83                 case  3<<12: op0011(opcode); break;
84                 case  4<<12: op0100(opcode); break;
85                 case  5<<12: op0101(opcode); break;
86                 case  6<<12: op0110(opcode); break;
87                 case  7<<12: op0111(opcode); break;
88                 case  8<<12: op1000(opcode); break;
89                 case  9<<12: op1001(opcode); break;
90                 case 10<<12: op1010(opcode); break;
91                 case 11<<12: op1011(opcode); break;
92                 case 12<<12: op1100(opcode); break;
93                 case 13<<12: op1101(opcode); break;
94                 case 14<<12: op1110(opcode); break;
95                 default: op1111(opcode); break;
96                 }
97
98                 sh2->icount--;
99         }
100         while (sh2->icount > 0 || sh2->delay);  /* can't interrupt before delay */
101
102         sh2->cycles_done += cycles - sh2->icount;
103 }
104
105 #else // DRC_TMP
106
107 // tmp
108 void __attribute__((regparm(2))) sh2_do_op(SH2 *sh2_, int opcode)
109 {
110         sh2 = sh2_;
111         sh2->pc += 2;
112
113         switch (opcode & ( 15 << 12))
114         {
115                 case  0<<12: op0000(opcode); break;
116                 case  1<<12: op0001(opcode); break;
117                 case  2<<12: op0010(opcode); break;
118                 case  3<<12: op0011(opcode); break;
119                 case  4<<12: op0100(opcode); break;
120                 case  5<<12: op0101(opcode); break;
121                 case  6<<12: op0110(opcode); break;
122                 case  7<<12: op0111(opcode); break;
123                 case  8<<12: op1000(opcode); break;
124                 case  9<<12: op1001(opcode); break;
125                 case 10<<12: op1010(opcode); break;
126                 case 11<<12: op1011(opcode); break;
127                 case 12<<12: op1100(opcode); break;
128                 case 13<<12: op1101(opcode); break;
129                 case 14<<12: op1110(opcode); break;
130                 default: op1111(opcode); break;
131         }
132 }
133
134 #endif
135