1 |
+ |
/* |
2 |
+ |
* compiler/compemu.h - Public interface and definitions |
3 |
+ |
* |
4 |
+ |
* Original 68040 JIT compiler for UAE, copyright 2000-2002 Bernd Meyer |
5 |
+ |
* |
6 |
+ |
* Adaptation for Basilisk II and improvements, copyright 2000-2005 |
7 |
+ |
* Gwenole Beauchesne |
8 |
+ |
* |
9 |
+ |
* Basilisk II (C) 1997-2005 Christian Bauer |
10 |
+ |
* |
11 |
+ |
* This program is free software; you can redistribute it and/or modify |
12 |
+ |
* it under the terms of the GNU General Public License as published by |
13 |
+ |
* the Free Software Foundation; either version 2 of the License, or |
14 |
+ |
* (at your option) any later version. |
15 |
+ |
* |
16 |
+ |
* This program is distributed in the hope that it will be useful, |
17 |
+ |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 |
+ |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
19 |
+ |
* GNU General Public License for more details. |
20 |
+ |
* |
21 |
+ |
* You should have received a copy of the GNU General Public License |
22 |
+ |
* along with this program; if not, write to the Free Software |
23 |
+ |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
24 |
+ |
*/ |
25 |
+ |
|
26 |
|
#ifndef COMPEMU_H |
27 |
|
#define COMPEMU_H |
28 |
|
|
41 |
|
#define TAGMASK 0x0000ffff |
42 |
|
#define TAGSIZE (TAGMASK+1) |
43 |
|
#define MAXRUN 1024 |
44 |
< |
#define cacheline(x) (((uae_u32)x)&TAGMASK) |
44 |
> |
#define cacheline(x) (((uintptr)x)&TAGMASK) |
45 |
|
|
46 |
|
extern uae_u8* start_pc_p; |
47 |
|
extern uae_u32 start_pc; |
57 |
|
blockinfo_t * bi; |
58 |
|
}; |
59 |
|
|
60 |
+ |
/* Use new spill/reload strategy when calling external functions */ |
61 |
+ |
#define USE_OPTIMIZED_CALLS 0 |
62 |
+ |
#if USE_OPTIMIZED_CALLS |
63 |
+ |
#error implementation in progress |
64 |
+ |
#endif |
65 |
+ |
|
66 |
|
/* (gb) When on, this option can save save up to 30% compilation time |
67 |
|
* when many lazy flushes occur (e.g. apps in MacOS 8.x). |
68 |
|
*/ |
69 |
|
#define USE_SEPARATE_BIA 1 |
70 |
|
|
71 |
+ |
/* Use chain of checksum_info_t to compute the block checksum */ |
72 |
+ |
#define USE_CHECKSUM_INFO 1 |
73 |
+ |
|
74 |
+ |
/* Use code inlining, aka follow-up of constant jumps */ |
75 |
+ |
#define USE_INLINING 1 |
76 |
+ |
|
77 |
+ |
/* Inlining requires the chained checksuming information */ |
78 |
+ |
#if USE_INLINING |
79 |
+ |
#undef USE_CHECKSUM_INFO |
80 |
+ |
#define USE_CHECKSUM_INFO 1 |
81 |
+ |
#endif |
82 |
+ |
|
83 |
+ |
/* Does flush_icache_range() only check for blocks falling in the requested range? */ |
84 |
+ |
#define LAZY_FLUSH_ICACHE_RANGE 0 |
85 |
+ |
|
86 |
|
#define USE_F_ALIAS 1 |
87 |
|
#define USE_OFFSET 1 |
88 |
|
#define COMP_DEBUG 1 |
124 |
|
|
125 |
|
#define KILLTHERAT 1 /* Set to 1 to avoid some partial_rat_stalls */ |
126 |
|
|
127 |
< |
/* Whether to preserve registers across calls to JIT compiled routines */ |
128 |
< |
#ifdef X86_ASSEMBLY |
83 |
< |
#define USE_PUSH_POP 0 |
127 |
> |
#if defined(__x86_64__) |
128 |
> |
#define N_REGS 16 /* really only 15, but they are numbered 0-3,5-15 */ |
129 |
|
#else |
85 |
– |
#define USE_PUSH_POP 1 |
86 |
– |
#endif |
87 |
– |
|
130 |
|
#define N_REGS 8 /* really only 7, but they are numbered 0,1,2,3,5,6,7 */ |
131 |
+ |
#endif |
132 |
|
#define N_FREGS 6 /* That leaves us two positions on the stack to play with */ |
133 |
|
|
134 |
|
/* Functions exposed to newcpu, or to what was moved from newcpu.c to |
339 |
|
DECLARE_MIDFUNC(shra_b_ri(RW1 r, IMM i)); |
340 |
|
DECLARE_MIDFUNC(setcc(W1 d, IMM cc)); |
341 |
|
DECLARE_MIDFUNC(setcc_m(IMM d, IMM cc)); |
342 |
+ |
DECLARE_MIDFUNC(cmov_b_rr(RW1 d, R1 s, IMM cc)); |
343 |
+ |
DECLARE_MIDFUNC(cmov_w_rr(RW2 d, R2 s, IMM cc)); |
344 |
|
DECLARE_MIDFUNC(cmov_l_rr(RW4 d, R4 s, IMM cc)); |
345 |
|
DECLARE_MIDFUNC(cmov_l_rm(RW4 d, IMM s, IMM cc)); |
346 |
|
DECLARE_MIDFUNC(bsf_l_rr(W4 d, R4 s)); |
510 |
|
extern void get_n_addr(int address, int dest, int tmp); |
511 |
|
extern void get_n_addr_jmp(int address, int dest, int tmp); |
512 |
|
extern void calc_disp_ea_020(int base, uae_u32 dp, int target, int tmp); |
513 |
+ |
/* Set native Z flag only if register is zero */ |
514 |
+ |
extern void set_zero(int r, int tmp); |
515 |
|
extern int kill_rodent(int r); |
516 |
|
extern void sync_m68k_pc(void); |
517 |
|
extern uae_u32 get_const(int r); |
525 |
|
struct blockinfo_t; |
526 |
|
|
527 |
|
typedef struct dep_t { |
528 |
< |
uintptr* jmp_off; |
528 |
> |
uae_u32* jmp_off; |
529 |
|
struct blockinfo_t* target; |
530 |
|
struct blockinfo_t* source; |
531 |
|
struct dep_t** prev_p; |
532 |
|
struct dep_t* next; |
533 |
|
} dependency; |
534 |
|
|
535 |
+ |
typedef struct checksum_info_t { |
536 |
+ |
uae_u8 *start_p; |
537 |
+ |
uae_u32 length; |
538 |
+ |
struct checksum_info_t *next; |
539 |
+ |
} checksum_info; |
540 |
+ |
|
541 |
|
typedef struct blockinfo_t { |
542 |
|
uae_s32 count; |
543 |
|
cpuop_func* direct_handler_to_use; |
550 |
|
cpuop_func* direct_pen; |
551 |
|
cpuop_func* direct_pcc; |
552 |
|
|
500 |
– |
uae_u8* nexthandler; |
553 |
|
uae_u8* pc_p; |
554 |
|
|
555 |
|
uae_u32 c1; |
556 |
|
uae_u32 c2; |
557 |
+ |
#if USE_CHECKSUM_INFO |
558 |
+ |
checksum_info *csi; |
559 |
+ |
#else |
560 |
|
uae_u32 len; |
561 |
+ |
uae_u32 min_pcp; |
562 |
+ |
#endif |
563 |
|
|
564 |
|
struct blockinfo_t* next_same_cl; |
565 |
|
struct blockinfo_t** prev_same_cl_p; |
566 |
|
struct blockinfo_t* next; |
567 |
|
struct blockinfo_t** prev_p; |
568 |
|
|
512 |
– |
uae_u32 min_pcp; |
569 |
|
uae_u8 optlevel; |
570 |
|
uae_u8 needed_flags; |
571 |
|
uae_u8 status; |