]>
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 | ||
128ab2ff BS |
35 | #ifdef __OpenBSD__ |
36 | #include <sys/types.h> | |
37 | #else | |
79638566 FB |
38 | typedef unsigned char uint8_t; |
39 | typedef unsigned short uint16_t; | |
40 | typedef unsigned int uint32_t; | |
74ccb34e | 41 | // Linux/Sparc64 defines uint64_t |
31a53c63 | 42 | #if !(defined (__sparc_v9__) && defined(__linux__)) && !(defined(__APPLE__) && defined(__x86_64__)) |
4f2ac237 | 43 | /* XXX may be done for all 64 bits targets ? */ |
810260a8 | 44 | #if defined (__x86_64__) || defined(__ia64) || defined(__s390x__) || defined(__alpha__) || defined(__powerpc64__) |
4f2ac237 FB |
45 | typedef unsigned long uint64_t; |
46 | #else | |
79638566 | 47 | typedef unsigned long long uint64_t; |
4f2ac237 | 48 | #endif |
74ccb34e | 49 | #endif |
79638566 | 50 | |
ec530c81 FB |
51 | /* if Solaris/__sun__, don't typedef int8_t, as it will be typedef'd |
52 | prior to this and will cause an error in compliation, conflicting | |
53 | with /usr/include/sys/int_types.h, line 75 */ | |
54 | #ifndef __sun__ | |
79638566 | 55 | typedef signed char int8_t; |
ec530c81 | 56 | #endif |
79638566 FB |
57 | typedef signed short int16_t; |
58 | typedef signed int int32_t; | |
74ccb34e | 59 | // Linux/Sparc64 defines int64_t |
31a53c63 | 60 | #if !(defined (__sparc_v9__) && defined(__linux__)) && !(defined(__APPLE__) && defined(__x86_64__)) |
810260a8 | 61 | #if defined (__x86_64__) || defined(__ia64) || defined(__s390x__) || defined(__alpha__) || defined(__powerpc64__) |
4f2ac237 FB |
62 | typedef signed long int64_t; |
63 | #else | |
79638566 | 64 | typedef signed long long int64_t; |
4f2ac237 | 65 | #endif |
74ccb34e | 66 | #endif |
128ab2ff | 67 | #endif |
79638566 | 68 | |
1057eaa7 PB |
69 | /* XXX: This may be wrong for 64-bit ILP32 hosts. */ |
70 | typedef void * host_reg_t; | |
71 | ||
67867308 FB |
72 | #define INT8_MIN (-128) |
73 | #define INT16_MIN (-32767-1) | |
74 | #define INT32_MIN (-2147483647-1) | |
75 | #define INT64_MIN (-(int64_t)(9223372036854775807)-1) | |
76 | #define INT8_MAX (127) | |
77 | #define INT16_MAX (32767) | |
78 | #define INT32_MAX (2147483647) | |
79 | #define INT64_MAX ((int64_t)(9223372036854775807)) | |
80 | #define UINT8_MAX (255) | |
81 | #define UINT16_MAX (65535) | |
82 | #define UINT32_MAX (4294967295U) | |
83 | #define UINT64_MAX ((uint64_t)(18446744073709551615)) | |
84 | ||
cce1075c TS |
85 | #ifdef _BSD |
86 | typedef struct __sFILE FILE; | |
87 | #else | |
79638566 | 88 | typedef struct FILE FILE; |
cce1075c | 89 | #endif |
79638566 | 90 | extern int fprintf(FILE *, const char *, ...); |
24c7b0e3 | 91 | extern int fputs(const char *, FILE *); |
79638566 | 92 | extern int printf(const char *, ...); |
513b500f | 93 | #undef NULL |
79638566 | 94 | #define NULL 0 |
79638566 | 95 | |
522777bb | 96 | #if defined(__i386__) |
79638566 FB |
97 | #define AREG0 "ebp" |
98 | #define AREG1 "ebx" | |
99 | #define AREG2 "esi" | |
100 | #define AREG3 "edi" | |
522777bb | 101 | #elif defined(__x86_64__) |
43024c6a TS |
102 | #define AREG0 "r14" |
103 | #define AREG1 "r15" | |
bc51c5c9 FB |
104 | #define AREG2 "r12" |
105 | #define AREG3 "r13" | |
43024c6a TS |
106 | //#define AREG4 "rbp" |
107 | //#define AREG5 "rbx" | |
522777bb | 108 | #elif defined(__powerpc__) |
79638566 FB |
109 | #define AREG0 "r27" |
110 | #define AREG1 "r24" | |
111 | #define AREG2 "r25" | |
112 | #define AREG3 "r26" | |
bf71c9d9 FB |
113 | /* XXX: suppress this hack */ |
114 | #if defined(CONFIG_USER_ONLY) | |
79638566 FB |
115 | #define AREG4 "r16" |
116 | #define AREG5 "r17" | |
117 | #define AREG6 "r18" | |
118 | #define AREG7 "r19" | |
119 | #define AREG8 "r20" | |
120 | #define AREG9 "r21" | |
121 | #define AREG10 "r22" | |
122 | #define AREG11 "r23" | |
bf71c9d9 | 123 | #endif |
522777bb | 124 | #elif defined(__arm__) |
79638566 FB |
125 | #define AREG0 "r7" |
126 | #define AREG1 "r4" | |
127 | #define AREG2 "r5" | |
128 | #define AREG3 "r6" | |
f54b3f92 AJ |
129 | #elif defined(__hppa__) |
130 | #define AREG0 "r17" | |
131 | #define AREG1 "r14" | |
132 | #define AREG2 "r15" | |
133 | #define AREG3 "r16" | |
522777bb | 134 | #elif defined(__mips__) |
c4b89d18 | 135 | #define AREG0 "fp" |
79638566 FB |
136 | #define AREG1 "s0" |
137 | #define AREG2 "s1" | |
138 | #define AREG3 "s2" | |
c4b89d18 TS |
139 | #define AREG4 "s3" |
140 | #define AREG5 "s4" | |
141 | #define AREG6 "s5" | |
142 | #define AREG7 "s6" | |
143 | #define AREG8 "s7" | |
522777bb | 144 | #elif defined(__sparc__) |
fdbb4691 FB |
145 | #ifdef HOST_SOLARIS |
146 | #define AREG0 "g2" | |
147 | #define AREG1 "g3" | |
148 | #define AREG2 "g4" | |
149 | #define AREG3 "g5" | |
150 | #define AREG4 "g6" | |
151 | #else | |
74ccb34e | 152 | #ifdef __sparc_v9__ |
e97b640d BS |
153 | #define AREG0 "g5" |
154 | #define AREG1 "g6" | |
155 | #define AREG2 "g7" | |
74ccb34e | 156 | #else |
79638566 FB |
157 | #define AREG0 "g6" |
158 | #define AREG1 "g1" | |
159 | #define AREG2 "g2" | |
160 | #define AREG3 "g3" | |
161 | #define AREG4 "l0" | |
162 | #define AREG5 "l1" | |
163 | #define AREG6 "l2" | |
164 | #define AREG7 "l3" | |
165 | #define AREG8 "l4" | |
166 | #define AREG9 "l5" | |
167 | #define AREG10 "l6" | |
168 | #define AREG11 "l7" | |
fdbb4691 | 169 | #endif |
74ccb34e | 170 | #endif |
522777bb | 171 | #elif defined(__s390__) |
79638566 FB |
172 | #define AREG0 "r10" |
173 | #define AREG1 "r7" | |
174 | #define AREG2 "r8" | |
175 | #define AREG3 "r9" | |
522777bb | 176 | #elif defined(__alpha__) |
79638566 FB |
177 | /* Note $15 is the frame pointer, so anything in op-i386.c that would |
178 | require a frame pointer, like alloca, would probably loose. */ | |
179 | #define AREG0 "$15" | |
180 | #define AREG1 "$9" | |
181 | #define AREG2 "$10" | |
182 | #define AREG3 "$11" | |
183 | #define AREG4 "$12" | |
184 | #define AREG5 "$13" | |
185 | #define AREG6 "$14" | |
522777bb | 186 | #elif defined(__mc68000) |
38e584a0 FB |
187 | #define AREG0 "%a5" |
188 | #define AREG1 "%a4" | |
189 | #define AREG2 "%d7" | |
190 | #define AREG3 "%d6" | |
191 | #define AREG4 "%d5" | |
522777bb | 192 | #elif defined(__ia64__) |
b8076a74 FB |
193 | #define AREG0 "r7" |
194 | #define AREG1 "r4" | |
195 | #define AREG2 "r5" | |
196 | #define AREG3 "r6" | |
522777bb TS |
197 | #else |
198 | #error unsupported CPU | |
79638566 FB |
199 | #endif |
200 | ||
201 | /* force GCC to generate only one epilog at the end of the function */ | |
70ead434 | 202 | #define FORCE_RET() __asm__ __volatile__("" : : : "memory"); |
79638566 FB |
203 | |
204 | #ifndef OPPROTO | |
205 | #define OPPROTO | |
206 | #endif | |
207 | ||
208 | #define xglue(x, y) x ## y | |
209 | #define glue(x, y) xglue(x, y) | |
9621339d FB |
210 | #define stringify(s) tostring(s) |
211 | #define tostring(s) #s | |
79638566 | 212 | |
76d83bde | 213 | #if defined(__alpha__) || defined(__s390__) |
79638566 FB |
214 | /* the symbols are considered non exported so a br immediate is generated */ |
215 | #define __hidden __attribute__((visibility("hidden"))) | |
216 | #else | |
5fafdf24 | 217 | #define __hidden |
79638566 FB |
218 | #endif |
219 | ||
cab84d98 | 220 | #if defined(__alpha__) |
79638566 FB |
221 | /* Suggested by Richard Henderson. This will result in code like |
222 | ldah $0,__op_param1($29) !gprelhigh | |
223 | lda $0,__op_param1($0) !gprellow | |
224 | We can then conveniently change $29 to $31 and adapt the offsets to | |
225 | emit the appropriate constant. */ | |
226 | extern int __op_param1 __hidden; | |
227 | extern int __op_param2 __hidden; | |
228 | extern int __op_param3 __hidden; | |
229 | #define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; }) | |
230 | #define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; }) | |
231 | #define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; }) | |
76d83bde TS |
232 | #elif defined(__s390__) |
233 | extern int __op_param1 __hidden; | |
234 | extern int __op_param2 __hidden; | |
235 | extern int __op_param3 __hidden; | |
236 | #define PARAM1 ({ int _r; asm("bras %0,8; .long " ASM_NAME(__op_param1) "; l %0,0(%0)" : "=r"(_r) : ); _r; }) | |
237 | #define PARAM2 ({ int _r; asm("bras %0,8; .long " ASM_NAME(__op_param2) "; l %0,0(%0)" : "=r"(_r) : ); _r; }) | |
238 | #define PARAM3 ({ int _r; asm("bras %0,8; .long " ASM_NAME(__op_param3) "; l %0,0(%0)" : "=r"(_r) : ); _r; }) | |
79638566 | 239 | #else |
cab84d98 FB |
240 | #if defined(__APPLE__) |
241 | static int __op_param1, __op_param2, __op_param3; | |
242 | #else | |
79638566 | 243 | extern int __op_param1, __op_param2, __op_param3; |
cab84d98 | 244 | #endif |
79638566 FB |
245 | #define PARAM1 ((long)(&__op_param1)) |
246 | #define PARAM2 ((long)(&__op_param2)) | |
247 | #define PARAM3 ((long)(&__op_param3)) | |
cab84d98 | 248 | #endif /* !defined(__alpha__) */ |
79638566 | 249 | |
c106152d | 250 | extern int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3; |
9621339d | 251 | |
9191d4d1 | 252 | #if defined(_WIN32) || defined(__APPLE__) |
9df8aa4a FB |
253 | #define ASM_NAME(x) "_" #x |
254 | #else | |
255 | #define ASM_NAME(x) #x | |
256 | #endif | |
257 | ||
522777bb | 258 | #if defined(__i386__) |
9621339d | 259 | #define EXIT_TB() asm volatile ("ret") |
9df8aa4a | 260 | #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n) |
522777bb | 261 | #elif defined(__x86_64__) |
bc51c5c9 | 262 | #define EXIT_TB() asm volatile ("ret") |
d785e6be | 263 | #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n) |
522777bb | 264 | #elif defined(__powerpc__) |
9621339d | 265 | #define EXIT_TB() asm volatile ("blr") |
9df8aa4a | 266 | #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n) |
522777bb | 267 | #elif defined(__s390__) |
9621339d | 268 | #define EXIT_TB() asm volatile ("br %r14") |
76d83bde | 269 | #define GOTO_LABEL_PARAM(n) asm volatile ("larl %r7,12; l %r7,0(%r7); br %r7; .long " ASM_NAME(__op_gen_label) #n) |
522777bb | 270 | #elif defined(__alpha__) |
9621339d | 271 | #define EXIT_TB() asm volatile ("ret") |
522777bb | 272 | #elif defined(__ia64__) |
9621339d | 273 | #define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;") |
b8076a74 FB |
274 | #define GOTO_LABEL_PARAM(n) asm volatile ("br.sptk.many " \ |
275 | ASM_NAME(__op_gen_label) #n) | |
522777bb | 276 | #elif defined(__sparc__) |
fdbb4691 FB |
277 | #define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0; nop") |
278 | #define GOTO_LABEL_PARAM(n) asm volatile ("ba " ASM_NAME(__op_gen_label) #n ";nop") | |
522777bb | 279 | #elif defined(__arm__) |
9621339d | 280 | #define EXIT_TB() asm volatile ("b exec_loop") |
ae200d10 | 281 | #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n) |
522777bb | 282 | #elif defined(__mc68000) |
38e584a0 | 283 | #define EXIT_TB() asm volatile ("rts") |
522777bb | 284 | #elif defined(__mips__) |
c4b89d18 TS |
285 | #define EXIT_TB() asm volatile ("jr $ra") |
286 | #define GOTO_LABEL_PARAM(n) asm volatile (".set noat; la $1, " ASM_NAME(__op_gen_label) #n "; jr $1; .set at") | |
f54b3f92 AJ |
287 | #elif defined(__hppa__) |
288 | #define GOTO_LABEL_PARAM(n) asm volatile ("b,n " ASM_NAME(__op_gen_label) #n) | |
522777bb TS |
289 | #else |
290 | #error unsupported CPU | |
c4b89d18 | 291 | #endif |
67867308 | 292 | |
9b7b85d2 PB |
293 | /* The return address may point to the start of the next instruction. |
294 | Subtracting one gets us the call instruction itself. */ | |
295 | #if defined(__s390__) | |
296 | # define GETPC() ((void*)(((unsigned long)__builtin_return_address(0) & 0x7fffffffUL) - 1)) | |
297 | #elif defined(__arm__) | |
298 | /* Thumb return addresses have the low bit set, so we need to subtract two. | |
299 | This is still safe in ARM mode because instructions are 4 bytes. */ | |
300 | # define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 2)) | |
301 | #else | |
302 | # define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 1)) | |
303 | #endif | |
304 | ||
67867308 | 305 | #endif /* !defined(__DYNGEN_EXEC_H__) */ |