Darwin patch (initial patch by Pierre d'Herbemont)
[qemu] / dyngen-exec.h
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  */
20 #if !defined(__DYNGEN_EXEC_H__)
21 #define __DYNGEN_EXEC_H__
22
23 #include <stddef.h>
24
25 typedef unsigned char uint8_t;
26 typedef unsigned short uint16_t;
27 typedef unsigned int uint32_t;
28 /* XXX may be done for all 64 bits targets ? */
29 #if defined (__x86_64__)
30 typedef unsigned long uint64_t;
31 #else
32 typedef unsigned long long uint64_t;
33 #endif
34
35 typedef signed char int8_t;
36 typedef signed short int16_t;
37 typedef signed int int32_t;
38 #if defined (__x86_64__)
39 typedef signed long int64_t;
40 #else
41 typedef signed long long int64_t;
42 #endif
43
44 #define INT8_MIN                (-128)
45 #define INT16_MIN               (-32767-1)
46 #define INT32_MIN               (-2147483647-1)
47 #define INT64_MIN               (-(int64_t)(9223372036854775807)-1)
48 #define INT8_MAX                (127)
49 #define INT16_MAX               (32767)
50 #define INT32_MAX               (2147483647)
51 #define INT64_MAX               ((int64_t)(9223372036854775807))
52 #define UINT8_MAX               (255)
53 #define UINT16_MAX              (65535)
54 #define UINT32_MAX              (4294967295U)
55 #define UINT64_MAX              ((uint64_t)(18446744073709551615))
56
57 typedef struct FILE FILE;
58 extern int fprintf(FILE *, const char *, ...);
59 extern int printf(const char *, ...);
60 #undef NULL
61 #define NULL 0
62 #if defined(_BSD) && !defined(__APPLE__)
63 #include <ieeefp.h>
64
65 #define FE_TONEAREST   FP_RN
66 #define FE_DOWNWARD    FP_RM
67 #define FE_UPWARD      FP_RP
68 #define FE_TOWARDZERO  FP_RZ
69 #define fesetround(x)  fpsetround(x)
70 #else
71 #include <fenv.h>
72 #endif
73
74 #ifdef __i386__
75 #define AREG0 "ebp"
76 #define AREG1 "ebx"
77 #define AREG2 "esi"
78 #define AREG3 "edi"
79 #endif
80 #ifdef __x86_64__
81 #define AREG0 "rbp"
82 #define AREG1 "rbx"
83 #define AREG2 "r12"
84 #define AREG3 "r13"
85 #define AREG4 "r14"
86 #define AREG5 "r15"
87 #endif
88 #ifdef __powerpc__
89 #define AREG0 "r27"
90 #define AREG1 "r24"
91 #define AREG2 "r25"
92 #define AREG3 "r26"
93 /* XXX: suppress this hack */
94 #if defined(CONFIG_USER_ONLY)
95 #define AREG4 "r16"
96 #define AREG5 "r17"
97 #define AREG6 "r18"
98 #define AREG7 "r19"
99 #define AREG8 "r20"
100 #define AREG9 "r21"
101 #define AREG10 "r22"
102 #define AREG11 "r23"
103 #endif
104 #define USE_INT_TO_FLOAT_HELPERS
105 #define BUGGY_GCC_DIV64
106 #endif
107 #ifdef __arm__
108 #define AREG0 "r7"
109 #define AREG1 "r4"
110 #define AREG2 "r5"
111 #define AREG3 "r6"
112 #endif
113 #ifdef __mips__
114 #define AREG0 "s3"
115 #define AREG1 "s0"
116 #define AREG2 "s1"
117 #define AREG3 "s2"
118 #endif
119 #ifdef __sparc__
120 #define AREG0 "g6"
121 #define AREG1 "g1"
122 #define AREG2 "g2"
123 #define AREG3 "g3"
124 #define AREG4 "l0"
125 #define AREG5 "l1"
126 #define AREG6 "l2"
127 #define AREG7 "l3"
128 #define AREG8 "l4"
129 #define AREG9 "l5"
130 #define AREG10 "l6"
131 #define AREG11 "l7"
132 #define USE_FP_CONVERT
133 #endif
134 #ifdef __s390__
135 #define AREG0 "r10"
136 #define AREG1 "r7"
137 #define AREG2 "r8"
138 #define AREG3 "r9"
139 #endif
140 #ifdef __alpha__
141 /* Note $15 is the frame pointer, so anything in op-i386.c that would
142    require a frame pointer, like alloca, would probably loose.  */
143 #define AREG0 "$15"
144 #define AREG1 "$9"
145 #define AREG2 "$10"
146 #define AREG3 "$11"
147 #define AREG4 "$12"
148 #define AREG5 "$13"
149 #define AREG6 "$14"
150 #endif
151 #ifdef __mc68000
152 #define AREG0 "%a5"
153 #define AREG1 "%a4"
154 #define AREG2 "%d7"
155 #define AREG3 "%d6"
156 #define AREG4 "%d5"
157 #endif
158 #ifdef __ia64__
159 #define AREG0 "r27"
160 #define AREG1 "r24"
161 #define AREG2 "r25"
162 #define AREG3 "r26"
163 #endif
164
165 /* force GCC to generate only one epilog at the end of the function */
166 #define FORCE_RET() asm volatile ("");
167
168 #ifndef OPPROTO
169 #define OPPROTO
170 #endif
171
172 #define xglue(x, y) x ## y
173 #define glue(x, y) xglue(x, y)
174 #define stringify(s)    tostring(s)
175 #define tostring(s)     #s
176
177 #ifdef __alpha__
178 /* the symbols are considered non exported so a br immediate is generated */
179 #define __hidden __attribute__((visibility("hidden")))
180 #else
181 #define __hidden 
182 #endif
183
184 #ifdef __alpha__
185 /* Suggested by Richard Henderson. This will result in code like
186         ldah $0,__op_param1($29)        !gprelhigh
187         lda $0,__op_param1($0)          !gprellow
188    We can then conveniently change $29 to $31 and adapt the offsets to
189    emit the appropriate constant.  */
190 extern int __op_param1 __hidden;
191 extern int __op_param2 __hidden;
192 extern int __op_param3 __hidden;
193 #define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; })
194 #define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; })
195 #define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; })
196 #else
197 extern int __op_param1, __op_param2, __op_param3;
198 #define PARAM1 ((long)(&__op_param1))
199 #define PARAM2 ((long)(&__op_param2))
200 #define PARAM3 ((long)(&__op_param3))
201 #endif
202
203 extern int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3;
204
205 #ifdef __i386__
206 #define EXIT_TB() asm volatile ("ret")
207 #endif
208 #ifdef __x86_64__
209 #define EXIT_TB() asm volatile ("ret")
210 #endif
211 #ifdef __powerpc__
212 #define EXIT_TB() asm volatile ("blr")
213 #endif
214 #ifdef __s390__
215 #define EXIT_TB() asm volatile ("br %r14")
216 #endif
217 #ifdef __alpha__
218 #define EXIT_TB() asm volatile ("ret")
219 #endif
220 #ifdef __ia64__
221 #define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;")
222 #endif
223 #ifdef __sparc__
224 #define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0\n" \
225                                 "nop")
226 #endif
227 #ifdef __arm__
228 #define EXIT_TB() asm volatile ("b exec_loop")
229 #endif
230 #ifdef __mc68000
231 #define EXIT_TB() asm volatile ("rts")
232 #endif
233
234 #endif /* !defined(__DYNGEN_EXEC_H__) */