ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/uae_cpu/newcpu.h
Revision: 1.10
Committed: 2002-09-17T16:05:39Z (21 years, 8 months ago) by gbeauche
Content type: text/plain
Branch: MAIN
Changes since 1.9: +24 -1 lines
Log Message:
- Changes to support 68040 -> x86 dynamic translator
- Globalize FLIGHT_RECORDER, possibly used in compiler/ sources as well

File Contents

# Content
1 /*
2 * UAE - The Un*x Amiga Emulator
3 *
4 * MC68000 emulation
5 *
6 * Copyright 1995 Bernd Schmidt
7 */
8
9 #ifndef NEWCPU_H
10 #define NEWCPU_H
11
12 #ifndef FLIGHT_RECORDER
13 #define FLIGHT_RECORDER 0
14 #endif
15
16 #include "m68k.h"
17 #include "readcpu.h"
18 #include "spcflags.h"
19
20 extern int areg_byteinc[];
21 extern int imm8_table[];
22
23 extern int movem_index1[256];
24 extern int movem_index2[256];
25 extern int movem_next[256];
26
27 extern int broken_in;
28
29 /* Control flow information */
30 #define CFLOW_NORMAL 0
31 #define CFLOW_BRANCH 1
32 #define CFLOW_JUMP 2
33 #define CFLOW_RETURN 3
34 #define CFLOW_TRAP 4
35 #define CFLOW_SPCFLAGS 32 /* some spcflags are set */
36 #define CFLOW_EXEC_RETURN 64 /* must exit from the execution loop */
37
38 #define cpuop_rettype void
39 #define cpuop_return(v) do { (v); return; } while (0)
40
41 #ifdef X86_ASSEMBLY
42 /* This hack seems to force all register saves (pushl %reg) to be moved to the
43 begining of the function, thus making it possible to cpuopti to remove them
44 since m68k_run_1 will save those registers before calling the instruction
45 handler */
46 # define cpuop_tag(tag) __asm__ __volatile__ ( "#cpuop_" tag )
47 #else
48 # define cpuop_tag(tag) ;
49 #endif
50
51 #define cpuop_begin() do { cpuop_tag("begin"); } while (0)
52 #define cpuop_end(cflow) do { cpuop_tag("end"); cpuop_return(cflow); } while (0)
53
54 typedef cpuop_rettype REGPARAM2 cpuop_func (uae_u32) REGPARAM;
55
56 struct cputbl {
57 cpuop_func *handler;
58 uae_u16 specific;
59 uae_u16 opcode;
60 };
61
62 extern cpuop_func *cpufunctbl[65536] ASM_SYM_FOR_FUNC ("cpufunctbl");
63
64 #if USE_JIT
65 typedef void compop_func (uae_u32) REGPARAM;
66
67 struct comptbl {
68 compop_func *handler;
69 uae_u32 specific;
70 uae_u32 opcode;
71 };
72 #endif
73
74 extern cpuop_rettype REGPARAM2 op_illg (uae_u32) REGPARAM;
75
76 typedef char flagtype;
77
78 struct regstruct {
79 uae_u32 regs[16];
80
81 uae_u32 pc;
82 uae_u8 * pc_p;
83 uae_u8 * pc_oldp;
84
85 spcflags_t spcflags;
86 int intmask;
87
88 uae_u32 vbr, sfc, dfc;
89 uaecptr usp, isp, msp;
90 uae_u16 sr;
91 flagtype t1;
92 flagtype t0;
93 flagtype s;
94 flagtype m;
95 flagtype x;
96 flagtype stopped;
97
98 #if USE_PREFETCH_BUFFER
99 /* Fellow sources say this is 4 longwords. That's impossible. It needs
100 * to be at least a longword. The HRM has some cryptic comment about two
101 * instructions being on the same longword boundary.
102 * The way this is implemented now seems like a good compromise.
103 */
104 uae_u32 prefetch;
105 #endif
106 };
107
108 extern regstruct regs, lastint_regs;
109
110 #define m68k_dreg(r,num) ((r).regs[(num)])
111 #define m68k_areg(r,num) (((r).regs + 8)[(num)])
112
113 #define get_ibyte(o) do_get_mem_byte((uae_u8 *)(regs.pc_p + (o) + 1))
114 #define get_iword(o) do_get_mem_word((uae_u16 *)(regs.pc_p + (o)))
115 #define get_ilong(o) do_get_mem_long((uae_u32 *)(regs.pc_p + (o)))
116
117 #ifdef HAVE_GET_WORD_UNSWAPPED
118 #define GET_OPCODE (do_get_mem_word_unswapped (regs.pc_p))
119 #else
120 #define GET_OPCODE (get_iword (0))
121 #endif
122
123 #if USE_PREFETCH_BUFFER
124 static __inline__ uae_u32 get_ibyte_prefetch (uae_s32 o)
125 {
126 if (o > 3 || o < 0)
127 return do_get_mem_byte((uae_u8 *)(regs.pc_p + o + 1));
128
129 return do_get_mem_byte((uae_u8 *)(((uae_u8 *)&regs.prefetch) + o + 1));
130 }
131 static __inline__ uae_u32 get_iword_prefetch (uae_s32 o)
132 {
133 if (o > 3 || o < 0)
134 return do_get_mem_word((uae_u16 *)(regs.pc_p + o));
135
136 return do_get_mem_word((uae_u16 *)(((uae_u8 *)&regs.prefetch) + o));
137 }
138 static __inline__ uae_u32 get_ilong_prefetch (uae_s32 o)
139 {
140 if (o > 3 || o < 0)
141 return do_get_mem_long((uae_u32 *)(regs.pc_p + o));
142 if (o == 0)
143 return do_get_mem_long(&regs.prefetch);
144 return (do_get_mem_word (((uae_u16 *)&regs.prefetch) + 1) << 16) | do_get_mem_word ((uae_u16 *)(regs.pc_p + 4));
145 }
146 #endif
147
148 #define m68k_incpc(o) (regs.pc_p += (o))
149
150 static __inline__ void fill_prefetch_0 (void)
151 {
152 #if USE_PREFETCH_BUFFER
153 uae_u32 r;
154 #ifdef UNALIGNED_PROFITABLE
155 r = *(uae_u32 *)regs.pc_p;
156 regs.prefetch = r;
157 #else
158 r = do_get_mem_long ((uae_u32 *)regs.pc_p);
159 do_put_mem_long (&regs.prefetch, r);
160 #endif
161 #endif
162 }
163
164 #if 0
165 static __inline__ void fill_prefetch_2 (void)
166 {
167 uae_u32 r = do_get_mem_long (&regs.prefetch) << 16;
168 uae_u32 r2 = do_get_mem_word (((uae_u16 *)regs.pc_p) + 1);
169 r |= r2;
170 do_put_mem_long (&regs.prefetch, r);
171 }
172 #else
173 #define fill_prefetch_2 fill_prefetch_0
174 #endif
175
176 /* These are only used by the 68020/68881 code, and therefore don't
177 * need to handle prefetch. */
178 static __inline__ uae_u32 next_ibyte (void)
179 {
180 uae_u32 r = get_ibyte (0);
181 m68k_incpc (2);
182 return r;
183 }
184
185 static __inline__ uae_u32 next_iword (void)
186 {
187 uae_u32 r = get_iword (0);
188 m68k_incpc (2);
189 return r;
190 }
191
192 static __inline__ uae_u32 next_ilong (void)
193 {
194 uae_u32 r = get_ilong (0);
195 m68k_incpc (4);
196 return r;
197 }
198
199 static __inline__ void m68k_setpc (uaecptr newpc)
200 {
201 #if REAL_ADDRESSING || DIRECT_ADDRESSING
202 regs.pc_p = get_real_address(newpc);
203 #else
204 regs.pc_p = regs.pc_oldp = get_real_address(newpc);
205 regs.pc = newpc;
206 #endif
207 }
208
209 static __inline__ uaecptr m68k_getpc (void)
210 {
211 #if REAL_ADDRESSING || DIRECT_ADDRESSING
212 return get_virtual_address(regs.pc_p);
213 #else
214 return regs.pc + ((char *)regs.pc_p - (char *)regs.pc_oldp);
215 #endif
216 }
217
218 #define m68k_setpc_fast m68k_setpc
219 #define m68k_setpc_bcc m68k_setpc
220 #define m68k_setpc_rte m68k_setpc
221
222 static __inline__ void m68k_do_rts(void)
223 {
224 m68k_setpc(get_long(m68k_areg(regs, 7)));
225 m68k_areg(regs, 7) += 4;
226 }
227
228 static __inline__ void m68k_do_bsr(uaecptr oldpc, uae_s32 offset)
229 {
230 m68k_areg(regs, 7) -= 4;
231 put_long(m68k_areg(regs, 7), oldpc);
232 m68k_incpc(offset);
233 }
234
235 static __inline__ void m68k_do_jsr(uaecptr oldpc, uaecptr dest)
236 {
237 m68k_areg(regs, 7) -= 4;
238 put_long(m68k_areg(regs, 7), oldpc);
239 m68k_setpc(dest);
240 }
241
242 static __inline__ void m68k_setstopped (int stop)
243 {
244 regs.stopped = stop;
245 /* A traced STOP instruction drops through immediately without
246 actually stopping. */
247 if (stop && (regs.spcflags & SPCFLAG_DOTRACE) == 0)
248 SPCFLAGS_SET( SPCFLAG_STOP );
249 }
250
251 extern uae_u32 get_disp_ea_020 (uae_u32 base, uae_u32 dp);
252 extern uae_u32 get_disp_ea_000 (uae_u32 base, uae_u32 dp);
253
254 extern uae_s32 ShowEA (int reg, amodes mode, wordsizes size, char *buf);
255
256 extern void MakeSR (void);
257 extern void MakeFromSR (void);
258 extern void Exception (int, uaecptr);
259 extern void dump_counts (void);
260 extern int m68k_move2c (int, uae_u32 *);
261 extern int m68k_movec2 (int, uae_u32 *);
262 extern void m68k_divl (uae_u32, uae_u32, uae_u16, uaecptr);
263 extern void m68k_mull (uae_u32, uae_u32, uae_u16);
264 extern void m68k_emulop (uae_u32);
265 extern void m68k_emulop_return (void);
266 extern void init_m68k (void);
267 extern void exit_m68k (void);
268 extern void m68k_dumpstate (uaecptr *);
269 extern void m68k_disasm (uaecptr, uaecptr *, int);
270 extern void m68k_reset (void);
271 extern void m68k_enter_debugger(void);
272 extern int m68k_do_specialties(void);
273
274 extern void mmu_op (uae_u32, uae_u16);
275
276 /* Opcode of faulting instruction */
277 extern uae_u16 last_op_for_exception_3;
278 /* PC at fault time */
279 extern uaecptr last_addr_for_exception_3;
280 /* Address that generated the exception */
281 extern uaecptr last_fault_for_exception_3;
282
283 #define CPU_OP_NAME(a) op ## a
284
285 /* 68020 + 68881 */
286 extern struct cputbl op_smalltbl_0_ff[];
287 /* 68020 */
288 extern struct cputbl op_smalltbl_1_ff[];
289 /* 68010 */
290 extern struct cputbl op_smalltbl_2_ff[];
291 /* 68000 */
292 extern struct cputbl op_smalltbl_3_ff[];
293 /* 68000 slow but compatible. */
294 extern struct cputbl op_smalltbl_4_ff[];
295
296 #if FLIGHT_RECORDER
297 extern void m68k_record_step(uaecptr);
298 #endif
299 extern void m68k_do_execute(void);
300 extern void m68k_execute(void);
301 #if USE_JIT
302 extern void m68k_do_compile_execute(void);
303 extern void m68k_compile_execute(void);
304 #endif
305
306 #endif /* NEWCPU_H */