]>
Commit | Line | Data |
---|---|---|
79638566 FB |
1 | /* |
2 | * dyngen defines for micro operation code | |
3 | * | |
4 | * Copyright (c) 2003 Fabrice Bellard | |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, write to the Free Software | |
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
19 | */ | |
67867308 FB |
20 | #if !defined(__DYNGEN_EXEC_H__) |
21 | #define __DYNGEN_EXEC_H__ | |
22 | ||
ec530c81 FB |
23 | /* prevent Solaris from trying to typedef FILE in gcc's |
24 | include/floatingpoint.h which will conflict with the | |
25 | definition down below */ | |
26 | #ifdef __sun__ | |
27 | #define _FILEDEFED | |
28 | #endif | |
29 | ||
1e6cae95 FB |
30 | /* NOTE: standard headers should be used with special care at this |
31 | point because host CPU registers are used as global variables. Some | |
32 | host headers do not allow that. */ | |
513b500f FB |
33 | #include <stddef.h> |
34 | ||
79638566 FB |
35 | typedef unsigned char uint8_t; |
36 | typedef unsigned short uint16_t; | |
37 | typedef unsigned int uint32_t; | |
4f2ac237 | 38 | /* XXX may be done for all 64 bits targets ? */ |
b8076a74 | 39 | #if defined (__x86_64__) || defined(__ia64) |
4f2ac237 FB |
40 | typedef unsigned long uint64_t; |
41 | #else | |
79638566 | 42 | typedef unsigned long long uint64_t; |
4f2ac237 | 43 | #endif |
79638566 | 44 | |
ec530c81 FB |
45 | /* if Solaris/__sun__, don't typedef int8_t, as it will be typedef'd |
46 | prior to this and will cause an error in compliation, conflicting | |
47 | with /usr/include/sys/int_types.h, line 75 */ | |
48 | #ifndef __sun__ | |
79638566 | 49 | typedef signed char int8_t; |
ec530c81 | 50 | #endif |
79638566 FB |
51 | typedef signed short int16_t; |
52 | typedef signed int int32_t; | |
b8076a74 | 53 | #if defined (__x86_64__) || defined(__ia64) |
4f2ac237 FB |
54 | typedef signed long int64_t; |
55 | #else | |
79638566 | 56 | typedef signed long long int64_t; |
4f2ac237 | 57 | #endif |
79638566 | 58 | |
67867308 FB |
59 | #define INT8_MIN (-128) |
60 | #define INT16_MIN (-32767-1) | |
61 | #define INT32_MIN (-2147483647-1) | |
62 | #define INT64_MIN (-(int64_t)(9223372036854775807)-1) | |
63 | #define INT8_MAX (127) | |
64 | #define INT16_MAX (32767) | |
65 | #define INT32_MAX (2147483647) | |
66 | #define INT64_MAX ((int64_t)(9223372036854775807)) | |
67 | #define UINT8_MAX (255) | |
68 | #define UINT16_MAX (65535) | |
69 | #define UINT32_MAX (4294967295U) | |
70 | #define UINT64_MAX ((uint64_t)(18446744073709551615)) | |
71 | ||
79638566 FB |
72 | typedef struct FILE FILE; |
73 | extern int fprintf(FILE *, const char *, ...); | |
74 | extern int printf(const char *, ...); | |
513b500f | 75 | #undef NULL |
79638566 | 76 | #define NULL 0 |
79638566 FB |
77 | |
78 | #ifdef __i386__ | |
79 | #define AREG0 "ebp" | |
80 | #define AREG1 "ebx" | |
81 | #define AREG2 "esi" | |
82 | #define AREG3 "edi" | |
83 | #endif | |
bc51c5c9 FB |
84 | #ifdef __x86_64__ |
85 | #define AREG0 "rbp" | |
86 | #define AREG1 "rbx" | |
87 | #define AREG2 "r12" | |
88 | #define AREG3 "r13" | |
dff293e7 FB |
89 | //#define AREG4 "r14" |
90 | //#define AREG5 "r15" | |
bc51c5c9 | 91 | #endif |
79638566 FB |
92 | #ifdef __powerpc__ |
93 | #define AREG0 "r27" | |
94 | #define AREG1 "r24" | |
95 | #define AREG2 "r25" | |
96 | #define AREG3 "r26" | |
bf71c9d9 FB |
97 | /* XXX: suppress this hack */ |
98 | #if defined(CONFIG_USER_ONLY) | |
79638566 FB |
99 | #define AREG4 "r16" |
100 | #define AREG5 "r17" | |
101 | #define AREG6 "r18" | |
102 | #define AREG7 "r19" | |
103 | #define AREG8 "r20" | |
104 | #define AREG9 "r21" | |
105 | #define AREG10 "r22" | |
106 | #define AREG11 "r23" | |
bf71c9d9 | 107 | #endif |
79638566 FB |
108 | #define USE_INT_TO_FLOAT_HELPERS |
109 | #define BUGGY_GCC_DIV64 | |
110 | #endif | |
111 | #ifdef __arm__ | |
112 | #define AREG0 "r7" | |
113 | #define AREG1 "r4" | |
114 | #define AREG2 "r5" | |
115 | #define AREG3 "r6" | |
116 | #endif | |
117 | #ifdef __mips__ | |
118 | #define AREG0 "s3" | |
119 | #define AREG1 "s0" | |
120 | #define AREG2 "s1" | |
121 | #define AREG3 "s2" | |
122 | #endif | |
123 | #ifdef __sparc__ | |
fdbb4691 FB |
124 | #ifdef HOST_SOLARIS |
125 | #define AREG0 "g2" | |
126 | #define AREG1 "g3" | |
127 | #define AREG2 "g4" | |
128 | #define AREG3 "g5" | |
129 | #define AREG4 "g6" | |
130 | #else | |
79638566 FB |
131 | #define AREG0 "g6" |
132 | #define AREG1 "g1" | |
133 | #define AREG2 "g2" | |
134 | #define AREG3 "g3" | |
135 | #define AREG4 "l0" | |
136 | #define AREG5 "l1" | |
137 | #define AREG6 "l2" | |
138 | #define AREG7 "l3" | |
139 | #define AREG8 "l4" | |
140 | #define AREG9 "l5" | |
141 | #define AREG10 "l6" | |
142 | #define AREG11 "l7" | |
fdbb4691 | 143 | #endif |
79638566 FB |
144 | #define USE_FP_CONVERT |
145 | #endif | |
146 | #ifdef __s390__ | |
147 | #define AREG0 "r10" | |
148 | #define AREG1 "r7" | |
149 | #define AREG2 "r8" | |
150 | #define AREG3 "r9" | |
151 | #endif | |
152 | #ifdef __alpha__ | |
153 | /* Note $15 is the frame pointer, so anything in op-i386.c that would | |
154 | require a frame pointer, like alloca, would probably loose. */ | |
155 | #define AREG0 "$15" | |
156 | #define AREG1 "$9" | |
157 | #define AREG2 "$10" | |
158 | #define AREG3 "$11" | |
159 | #define AREG4 "$12" | |
160 | #define AREG5 "$13" | |
161 | #define AREG6 "$14" | |
162 | #endif | |
38e584a0 FB |
163 | #ifdef __mc68000 |
164 | #define AREG0 "%a5" | |
165 | #define AREG1 "%a4" | |
166 | #define AREG2 "%d7" | |
167 | #define AREG3 "%d6" | |
168 | #define AREG4 "%d5" | |
169 | #endif | |
79638566 | 170 | #ifdef __ia64__ |
b8076a74 FB |
171 | #define AREG0 "r7" |
172 | #define AREG1 "r4" | |
173 | #define AREG2 "r5" | |
174 | #define AREG3 "r6" | |
79638566 FB |
175 | #endif |
176 | ||
177 | /* force GCC to generate only one epilog at the end of the function */ | |
178 | #define FORCE_RET() asm volatile (""); | |
179 | ||
180 | #ifndef OPPROTO | |
181 | #define OPPROTO | |
182 | #endif | |
183 | ||
184 | #define xglue(x, y) x ## y | |
185 | #define glue(x, y) xglue(x, y) | |
9621339d FB |
186 | #define stringify(s) tostring(s) |
187 | #define tostring(s) #s | |
79638566 FB |
188 | |
189 | #ifdef __alpha__ | |
190 | /* the symbols are considered non exported so a br immediate is generated */ | |
191 | #define __hidden __attribute__((visibility("hidden"))) | |
192 | #else | |
193 | #define __hidden | |
194 | #endif | |
195 | ||
cab84d98 | 196 | #if defined(__alpha__) |
79638566 FB |
197 | /* Suggested by Richard Henderson. This will result in code like |
198 | ldah $0,__op_param1($29) !gprelhigh | |
199 | lda $0,__op_param1($0) !gprellow | |
200 | We can then conveniently change $29 to $31 and adapt the offsets to | |
201 | emit the appropriate constant. */ | |
202 | extern int __op_param1 __hidden; | |
203 | extern int __op_param2 __hidden; | |
204 | extern int __op_param3 __hidden; | |
205 | #define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; }) | |
206 | #define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; }) | |
207 | #define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; }) | |
208 | #else | |
cab84d98 FB |
209 | #if defined(__APPLE__) |
210 | static int __op_param1, __op_param2, __op_param3; | |
211 | #else | |
79638566 | 212 | extern int __op_param1, __op_param2, __op_param3; |
cab84d98 | 213 | #endif |
79638566 FB |
214 | #define PARAM1 ((long)(&__op_param1)) |
215 | #define PARAM2 ((long)(&__op_param2)) | |
216 | #define PARAM3 ((long)(&__op_param3)) | |
cab84d98 | 217 | #endif /* !defined(__alpha__) */ |
79638566 | 218 | |
c106152d | 219 | extern int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3; |
9621339d | 220 | |
9191d4d1 | 221 | #if defined(_WIN32) || defined(__APPLE__) |
9df8aa4a FB |
222 | #define ASM_NAME(x) "_" #x |
223 | #else | |
224 | #define ASM_NAME(x) #x | |
225 | #endif | |
226 | ||
9621339d FB |
227 | #ifdef __i386__ |
228 | #define EXIT_TB() asm volatile ("ret") | |
9df8aa4a | 229 | #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n) |
9621339d | 230 | #endif |
bc51c5c9 FB |
231 | #ifdef __x86_64__ |
232 | #define EXIT_TB() asm volatile ("ret") | |
d785e6be | 233 | #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n) |
bc51c5c9 | 234 | #endif |
9621339d FB |
235 | #ifdef __powerpc__ |
236 | #define EXIT_TB() asm volatile ("blr") | |
9df8aa4a | 237 | #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n) |
9621339d FB |
238 | #endif |
239 | #ifdef __s390__ | |
240 | #define EXIT_TB() asm volatile ("br %r14") | |
90cb9493 | 241 | #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n) |
9621339d FB |
242 | #endif |
243 | #ifdef __alpha__ | |
244 | #define EXIT_TB() asm volatile ("ret") | |
245 | #endif | |
246 | #ifdef __ia64__ | |
247 | #define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;") | |
b8076a74 FB |
248 | #define GOTO_LABEL_PARAM(n) asm volatile ("br.sptk.many " \ |
249 | ASM_NAME(__op_gen_label) #n) | |
9621339d FB |
250 | #endif |
251 | #ifdef __sparc__ | |
fdbb4691 FB |
252 | #define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0; nop") |
253 | #define GOTO_LABEL_PARAM(n) asm volatile ("ba " ASM_NAME(__op_gen_label) #n ";nop") | |
9621339d FB |
254 | #endif |
255 | #ifdef __arm__ | |
256 | #define EXIT_TB() asm volatile ("b exec_loop") | |
ae200d10 | 257 | #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n) |
9621339d | 258 | #endif |
38e584a0 FB |
259 | #ifdef __mc68000 |
260 | #define EXIT_TB() asm volatile ("rts") | |
261 | #endif | |
67867308 FB |
262 | |
263 | #endif /* !defined(__DYNGEN_EXEC_H__) */ |