2 * dyngen defines for micro operation code
4 * Copyright (c) 2003 Fabrice Bellard
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.
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.
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
20 #if !defined(__DYNGEN_EXEC_H__)
21 #define __DYNGEN_EXEC_H__
23 /* prevent Solaris from trying to typedef FILE in gcc's
24 include/floatingpoint.h which will conflict with the
25 definition down below */
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. */
35 typedef unsigned char uint8_t;
36 typedef unsigned short uint16_t;
37 typedef unsigned int uint32_t;
38 // Linux/Sparc64 defines uint64_t
39 #if !(defined (__sparc_v9__) && defined(__linux__))
40 /* XXX may be done for all 64 bits targets ? */
41 #if defined (__x86_64__) || defined(__ia64)
42 typedef unsigned long uint64_t;
44 typedef unsigned long long uint64_t;
48 /* if Solaris/__sun__, don't typedef int8_t, as it will be typedef'd
49 prior to this and will cause an error in compliation, conflicting
50 with /usr/include/sys/int_types.h, line 75 */
52 typedef signed char int8_t;
54 typedef signed short int16_t;
55 typedef signed int int32_t;
56 // Linux/Sparc64 defines int64_t
57 #if !(defined (__sparc_v9__) && defined(__linux__))
58 #if defined (__x86_64__) || defined(__ia64)
59 typedef signed long int64_t;
61 typedef signed long long int64_t;
65 #define INT8_MIN (-128)
66 #define INT16_MIN (-32767-1)
67 #define INT32_MIN (-2147483647-1)
68 #define INT64_MIN (-(int64_t)(9223372036854775807)-1)
69 #define INT8_MAX (127)
70 #define INT16_MAX (32767)
71 #define INT32_MAX (2147483647)
72 #define INT64_MAX ((int64_t)(9223372036854775807))
73 #define UINT8_MAX (255)
74 #define UINT16_MAX (65535)
75 #define UINT32_MAX (4294967295U)
76 #define UINT64_MAX ((uint64_t)(18446744073709551615))
78 typedef struct FILE FILE;
79 extern int fprintf(FILE *, const char *, ...);
80 extern int printf(const char *, ...);
103 /* XXX: suppress this hack */
104 #if defined(CONFIG_USER_ONLY)
114 #define USE_INT_TO_FLOAT_HELPERS
115 #define BUGGY_GCC_DIV64
157 #define USE_FP_CONVERT
166 /* Note $15 is the frame pointer, so anything in op-i386.c that would
167 require a frame pointer, like alloca, would probably loose. */
190 /* force GCC to generate only one epilog at the end of the function */
191 #define FORCE_RET() asm volatile ("");
197 #define xglue(x, y) x ## y
198 #define glue(x, y) xglue(x, y)
199 #define stringify(s) tostring(s)
200 #define tostring(s) #s
203 /* the symbols are considered non exported so a br immediate is generated */
204 #define __hidden __attribute__((visibility("hidden")))
209 #if defined(__alpha__)
210 /* Suggested by Richard Henderson. This will result in code like
211 ldah $0,__op_param1($29) !gprelhigh
212 lda $0,__op_param1($0) !gprellow
213 We can then conveniently change $29 to $31 and adapt the offsets to
214 emit the appropriate constant. */
215 extern int __op_param1 __hidden
;
216 extern int __op_param2 __hidden
;
217 extern int __op_param3 __hidden
;
218 #define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; })
219 #define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; })
220 #define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; })
222 #if defined(__APPLE__)
223 static int __op_param1
, __op_param2
, __op_param3
;
225 extern int __op_param1
, __op_param2
, __op_param3
;
227 #define PARAM1 ((long)(&__op_param1))
228 #define PARAM2 ((long)(&__op_param2))
229 #define PARAM3 ((long)(&__op_param3))
230 #endif /* !defined(__alpha__) */
232 extern int __op_jmp0
, __op_jmp1
, __op_jmp2
, __op_jmp3
;
234 #if defined(_WIN32) || defined(__APPLE__)
235 #define ASM_NAME(x) "_" #x
237 #define ASM_NAME(x) #x
241 #define EXIT_TB() asm volatile ("ret")
242 #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
245 #define EXIT_TB() asm volatile ("ret")
246 #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
249 #define EXIT_TB() asm volatile ("blr")
250 #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
253 #define EXIT_TB() asm volatile ("br %r14")
254 #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
257 #define EXIT_TB() asm volatile ("ret")
260 #define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;")
261 #define GOTO_LABEL_PARAM(n) asm volatile ("br.sptk.many " \
262 ASM_NAME(__op_gen_label) #n)
265 #define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0; nop")
266 #define GOTO_LABEL_PARAM(n) asm volatile ("ba " ASM_NAME(__op_gen_label) #n ";nop")
269 #define EXIT_TB() asm volatile ("b exec_loop")
270 #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
273 #define EXIT_TB() asm volatile ("rts")
276 #endif /* !defined(__DYNGEN_EXEC_H__) */