clean up switching between dynarec and interpreter
[pcsx_rearmed.git] / libpcsxcore / r3000a.h
CommitLineData
ef79bbde
P
1/***************************************************************************
2 * Copyright (C) 2007 Ryan Schultz, PCSX-df Team, PCSX team *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA. *
18 ***************************************************************************/
19
20#ifndef __R3000A_H__
21#define __R3000A_H__
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27#include "psxcommon.h"
28#include "psxmem.h"
29#include "psxcounters.h"
30#include "psxbios.h"
31
980f7a58 32enum R3000Anote {
943a507a 33 R3000ACPU_NOTIFY_CACHE_ISOLATED = 0,
34 R3000ACPU_NOTIFY_CACHE_UNISOLATED = 1,
980f7a58 35 R3000ACPU_NOTIFY_BEFORE_SAVE,
36 R3000ACPU_NOTIFY_AFTER_LOAD,
943a507a 37};
943a507a 38
ef79bbde
P
39typedef struct {
40 int (*Init)();
41 void (*Reset)();
42 void (*Execute)(); /* executes up to a break */
43 void (*ExecuteBlock)(); /* executes up to a jump */
44 void (*Clear)(u32 Addr, u32 Size);
980f7a58 45 void (*Notify)(enum R3000Anote note, void *data);
32631e6a 46 void (*ApplyConfig)();
ef79bbde
P
47 void (*Shutdown)();
48} R3000Acpu;
49
50extern R3000Acpu *psxCpu;
51extern R3000Acpu psxInt;
ef79bbde 52extern R3000Acpu psxRec;
ef79bbde
P
53
54typedef union {
04bd10b1 55#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
ef79bbde
P
56 struct { u8 h3, h2, h, l; } b;
57 struct { s8 h3, h2, h, l; } sb;
58 struct { u16 h, l; } w;
59 struct { s16 h, l; } sw;
60#else
61 struct { u8 l, h, h2, h3; } b;
62 struct { u16 l, h; } w;
63 struct { s8 l, h, h2, h3; } sb;
64 struct { s16 l, h; } sw;
65#endif
66} PAIR;
67
68typedef union {
69 struct {
70 u32 r0, at, v0, v1, a0, a1, a2, a3,
71 t0, t1, t2, t3, t4, t5, t6, t7,
72 s0, s1, s2, s3, s4, s5, s6, s7,
73 t8, t9, k0, k1, gp, sp, s8, ra, lo, hi;
74 } n;
75 u32 r[34]; /* Lo, Hi in r[32] and r[33] */
76 PAIR p[34];
77} psxGPRRegs;
78
79typedef union {
80 struct {
81 u32 Index, Random, EntryLo0, EntryLo1,
82 Context, PageMask, Wired, Reserved0,
83 BadVAddr, Count, EntryHi, Compare,
84 Status, Cause, EPC, PRid,
85 Config, LLAddr, WatchLO, WatchHI,
86 XContext, Reserved1, Reserved2, Reserved3,
87 Reserved4, Reserved5, ECC, CacheErr,
88 TagLo, TagHi, ErrorEPC, Reserved6;
89 } n;
90 u32 r[32];
91 PAIR p[32];
92} psxCP0Regs;
93
94typedef struct {
95 short x, y;
96} SVector2D;
97
98typedef struct {
99 short z, pad;
100} SVector2Dz;
101
102typedef struct {
103 short x, y, z, pad;
104} SVector3D;
105
106typedef struct {
107 short x, y, z, pad;
108} LVector3D;
109
110typedef struct {
111 unsigned char r, g, b, c;
112} CBGR;
113
114typedef struct {
115 short m11, m12, m13, m21, m22, m23, m31, m32, m33, pad;
116} SMatrix3D;
117
118typedef union {
119 struct {
120 SVector3D v0, v1, v2;
121 CBGR rgb;
122 s32 otz;
123 s32 ir0, ir1, ir2, ir3;
124 SVector2D sxy0, sxy1, sxy2, sxyp;
125 SVector2Dz sz0, sz1, sz2, sz3;
126 CBGR rgb0, rgb1, rgb2;
127 s32 reserved;
128 s32 mac0, mac1, mac2, mac3;
129 u32 irgb, orgb;
130 s32 lzcs, lzcr;
131 } n;
132 u32 r[32];
133 PAIR p[32];
134} psxCP2Data;
135
136typedef union {
137 struct {
138 SMatrix3D rMatrix;
139 s32 trX, trY, trZ;
140 SMatrix3D lMatrix;
141 s32 rbk, gbk, bbk;
142 SMatrix3D cMatrix;
143 s32 rfc, gfc, bfc;
144 s32 ofx, ofy;
145 s32 h;
146 s32 dqa, dqb;
147 s32 zsf3, zsf4;
148 s32 flag;
149 } n;
150 u32 r[32];
151 PAIR p[32];
152} psxCP2Ctrl;
153
d28b54b1 154enum {
155 PSXINT_SIO = 0,
156 PSXINT_CDR,
157 PSXINT_CDREAD,
158 PSXINT_GPUDMA,
159 PSXINT_MDECOUTDMA,
160 PSXINT_SPUDMA,
528ad661 161 PSXINT_GPUBUSY,
162 PSXINT_MDECINDMA,
57a757ce 163 PSXINT_GPUOTCDMA,
9f8b032d 164 PSXINT_CDRDMA,
d28b54b1 165 PSXINT_NEWDRC_CHECK,
5b8c000f 166 PSXINT_RCNT,
9f8b032d 167 PSXINT_CDRLID,
d9a02493 168 PSXINT_CDRPLAY_OLD, /* unused */
2b30c129 169 PSXINT_SPU_UPDATE,
d28b54b1 170 PSXINT_COUNT
171};
172
eac38522 173typedef struct psxCP2Regs {
174 psxCP2Data CP2D; /* Cop2 data registers */
175 psxCP2Ctrl CP2C; /* Cop2 control registers */
176} psxCP2Regs;
177
ef79bbde
P
178typedef struct {
179 psxGPRRegs GPR; /* General Purpose Registers */
180 psxCP0Regs CP0; /* Coprocessor0 Registers */
eac38522 181 union {
182 struct {
183 psxCP2Data CP2D; /* Cop2 data registers */
184 psxCP2Ctrl CP2C; /* Cop2 control registers */
185 };
186 psxCP2Regs CP2;
187 };
ef79bbde
P
188 u32 pc; /* Program counter */
189 u32 code; /* The instruction */
190 u32 cycle;
191 u32 interrupt;
d28b54b1 192 struct { u32 sCycle, cycle; } intCycle[32];
81dbbf4c 193 u32 gteBusyCycle;
32631e6a 194 u32 muldivBusyCycle;
d5aeda23 195 u32 subCycle; /* interpreter cycle counting */
196 u32 subCycleStep;
679d5ee3 197 u32 biuReg;
198 u32 reserved[3];
81dbbf4c 199 // warning: changing anything in psxRegisters requires update of all
d5aeda23 200 // asm in libpcsxcore/new_dynarec/
ef79bbde
P
201} psxRegisters;
202
203extern psxRegisters psxRegs;
204
d28b54b1 205/* new_dynarec stuff */
206extern u32 event_cycles[PSXINT_COUNT];
207extern u32 next_interupt;
208
03f55e6b 209void new_dyna_freeze(void *f, int mode);
52082bc1 210
df717ca9 211#define new_dyna_set_event_abs(e, abs) { \
212 u32 abs_ = abs; \
213 s32 di_ = next_interupt - abs_; \
d28b54b1 214 event_cycles[e] = abs_; \
df717ca9 215 if (di_ > 0) { \
216 /*printf("%u: next_interupt %u -> %u\n", psxRegs.cycle, next_interupt, abs_);*/ \
d28b54b1 217 next_interupt = abs_; \
218 } \
219}
220
df717ca9 221#define new_dyna_set_event(e, c) \
222 new_dyna_set_event_abs(e, psxRegs.cycle + (c))
223
ef79bbde
P
224int psxInit();
225void psxReset();
226void psxShutdown();
227void psxException(u32 code, u32 bd);
228void psxBranchTest();
229void psxExecuteBios();
ef79bbde
P
230void psxJumpTest();
231
232#ifdef __cplusplus
233}
234#endif
235#endif