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 /* NOTE: standard headers should be used with special care at this
24 point because host CPU registers are used as global variables. Some
25 host headers do not allow that. */
28 typedef unsigned char uint8_t;
29 typedef unsigned short uint16_t;
30 typedef unsigned int uint32_t;
31 /* XXX may be done for all 64 bits targets ? */
32 #if defined (__x86_64__) || defined(__ia64)
33 typedef unsigned long uint64_t;
35 typedef unsigned long long uint64_t;
38 typedef signed char int8_t;
39 typedef signed short int16_t;
40 typedef signed int int32_t;
41 #if defined (__x86_64__) || defined(__ia64)
42 typedef signed long int64_t;
44 typedef signed long long int64_t;
47 #define INT8_MIN (-128)
48 #define INT16_MIN (-32767-1)
49 #define INT32_MIN (-2147483647-1)
50 #define INT64_MIN (-(int64_t)(9223372036854775807)-1)
51 #define INT8_MAX (127)
52 #define INT16_MAX (32767)
53 #define INT32_MAX (2147483647)
54 #define INT64_MAX ((int64_t)(9223372036854775807))
55 #define UINT8_MAX (255)
56 #define UINT16_MAX (65535)
57 #define UINT32_MAX (4294967295U)
58 #define UINT64_MAX ((uint64_t)(18446744073709551615))
60 typedef struct FILE FILE;
61 extern int fprintf(FILE *, const char *, ...);
62 extern int printf(const char *, ...);
85 /* XXX: suppress this hack */
86 #if defined(CONFIG_USER_ONLY)
96 #define USE_INT_TO_FLOAT_HELPERS
97 #define BUGGY_GCC_DIV64
124 #define USE_FP_CONVERT
133 /* Note $15 is the frame pointer, so anything in op-i386.c that would
134 require a frame pointer, like alloca, would probably loose. */
157 /* force GCC to generate only one epilog at the end of the function */
158 #define FORCE_RET() asm volatile ("");
164 #define xglue(x, y) x ## y
165 #define glue(x, y) xglue(x, y)
166 #define stringify(s) tostring(s)
167 #define tostring(s) #s
170 /* the symbols are considered non exported so a br immediate is generated */
171 #define __hidden __attribute__((visibility("hidden")))
176 #if defined(__alpha__)
177 /* Suggested by Richard Henderson. This will result in code like
178 ldah $0,__op_param1($29) !gprelhigh
179 lda $0,__op_param1($0) !gprellow
180 We can then conveniently change $29 to $31 and adapt the offsets to
181 emit the appropriate constant. */
182 extern int __op_param1 __hidden
;
183 extern int __op_param2 __hidden
;
184 extern int __op_param3 __hidden
;
185 #define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; })
186 #define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; })
187 #define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; })
189 #if defined(__APPLE__)
190 static int __op_param1
, __op_param2
, __op_param3
;
192 extern int __op_param1
, __op_param2
, __op_param3
;
194 #define PARAM1 ((long)(&__op_param1))
195 #define PARAM2 ((long)(&__op_param2))
196 #define PARAM3 ((long)(&__op_param3))
197 #endif /* !defined(__alpha__) */
199 extern int __op_jmp0
, __op_jmp1
, __op_jmp2
, __op_jmp3
;
201 #if defined(_WIN32) || defined(__APPLE__)
202 #define ASM_NAME(x) "_" #x
204 #define ASM_NAME(x) #x
208 #define EXIT_TB() asm volatile ("ret")
209 #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
212 #define EXIT_TB() asm volatile ("ret")
213 #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
216 #define EXIT_TB() asm volatile ("blr")
217 #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
220 #define EXIT_TB() asm volatile ("br %r14")
221 #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
224 #define EXIT_TB() asm volatile ("ret")
227 #define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;")
228 #define GOTO_LABEL_PARAM(n) asm volatile ("br.sptk.many " \
229 ASM_NAME(__op_gen_label) #n)
232 #define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0\n" \
236 #define EXIT_TB() asm volatile ("b exec_loop")
237 #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
240 #define EXIT_TB() asm volatile ("rts")
243 #endif /* !defined(__DYNGEN_EXEC_H__) */