removed unused code
[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 /* 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
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. */
33 #include <stddef.h>
34
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) || defined(__s390x__) || defined(__alpha__) 
42 typedef unsigned long uint64_t;
43 #else
44 typedef unsigned long long uint64_t;
45 #endif
46 #endif
47
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 */
51 #ifndef __sun__
52 typedef signed char int8_t;
53 #endif
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) || defined(__s390x__) || defined(__alpha__)
59 typedef signed long int64_t;
60 #else
61 typedef signed long long int64_t;
62 #endif
63 #endif
64
65 /* XXX: This may be wrong for 64-bit ILP32 hosts.  */
66 typedef void * host_reg_t;
67
68 #define INT8_MIN                (-128)
69 #define INT16_MIN               (-32767-1)
70 #define INT32_MIN               (-2147483647-1)
71 #define INT64_MIN               (-(int64_t)(9223372036854775807)-1)
72 #define INT8_MAX                (127)
73 #define INT16_MAX               (32767)
74 #define INT32_MAX               (2147483647)
75 #define INT64_MAX               ((int64_t)(9223372036854775807))
76 #define UINT8_MAX               (255)
77 #define UINT16_MAX              (65535)
78 #define UINT32_MAX              (4294967295U)
79 #define UINT64_MAX              ((uint64_t)(18446744073709551615))
80
81 #ifdef _BSD
82 typedef struct __sFILE FILE;
83 #else
84 typedef struct FILE FILE;
85 #endif
86 extern int fprintf(FILE *, const char *, ...);
87 extern int fputs(const char *, FILE *);
88 extern int printf(const char *, ...);
89 #undef NULL
90 #define NULL 0
91
92 #if defined(__i386__)
93 #define AREG0 "ebp"
94 #define AREG1 "ebx"
95 #define AREG2 "esi"
96 #define AREG3 "edi"
97 #elif defined(__x86_64__)
98 #define AREG0 "r14"
99 #define AREG1 "r15"
100 #define AREG2 "r12"
101 #define AREG3 "r13"
102 //#define AREG4 "rbp"
103 //#define AREG5 "rbx"
104 #elif defined(__powerpc__)
105 #define AREG0 "r27"
106 #define AREG1 "r24"
107 #define AREG2 "r25"
108 #define AREG3 "r26"
109 /* XXX: suppress this hack */
110 #if defined(CONFIG_USER_ONLY)
111 #define AREG4 "r16"
112 #define AREG5 "r17"
113 #define AREG6 "r18"
114 #define AREG7 "r19"
115 #define AREG8 "r20"
116 #define AREG9 "r21"
117 #define AREG10 "r22"
118 #define AREG11 "r23"
119 #endif
120 #define USE_INT_TO_FLOAT_HELPERS
121 #define BUGGY_GCC_DIV64
122 #elif defined(__arm__)
123 #define AREG0 "r7"
124 #define AREG1 "r4"
125 #define AREG2 "r5"
126 #define AREG3 "r6"
127 #elif defined(__hppa__)
128 #define AREG0 "r17"
129 #define AREG1 "r14"
130 #define AREG2 "r15"
131 #define AREG3 "r16"
132 #elif defined(__mips__)
133 #define AREG0 "fp"
134 #define AREG1 "s0"
135 #define AREG2 "s1"
136 #define AREG3 "s2"
137 #define AREG4 "s3"
138 #define AREG5 "s4"
139 #define AREG6 "s5"
140 #define AREG7 "s6"
141 #define AREG8 "s7"
142 #elif defined(__sparc__)
143 #ifdef HOST_SOLARIS
144 #define AREG0 "g2"
145 #define AREG1 "g3"
146 #define AREG2 "g4"
147 #define AREG3 "g5"
148 #define AREG4 "g6"
149 #else
150 #ifdef __sparc_v9__
151 #define AREG0 "g1"
152 #define AREG1 "g4"
153 #define AREG2 "g5"
154 #define AREG3 "g7"
155 #else
156 #define AREG0 "g6"
157 #define AREG1 "g1"
158 #define AREG2 "g2"
159 #define AREG3 "g3"
160 #define AREG4 "l0"
161 #define AREG5 "l1"
162 #define AREG6 "l2"
163 #define AREG7 "l3"
164 #define AREG8 "l4"
165 #define AREG9 "l5"
166 #define AREG10 "l6"
167 #define AREG11 "l7"
168 #endif
169 #endif
170 #elif defined(__s390__)
171 #define AREG0 "r10"
172 #define AREG1 "r7"
173 #define AREG2 "r8"
174 #define AREG3 "r9"
175 #elif defined(__alpha__)
176 /* Note $15 is the frame pointer, so anything in op-i386.c that would
177    require a frame pointer, like alloca, would probably loose.  */
178 #define AREG0 "$15"
179 #define AREG1 "$9"
180 #define AREG2 "$10"
181 #define AREG3 "$11"
182 #define AREG4 "$12"
183 #define AREG5 "$13"
184 #define AREG6 "$14"
185 #elif defined(__mc68000)
186 #define AREG0 "%a5"
187 #define AREG1 "%a4"
188 #define AREG2 "%d7"
189 #define AREG3 "%d6"
190 #define AREG4 "%d5"
191 #elif defined(__ia64__)
192 #define AREG0 "r7"
193 #define AREG1 "r4"
194 #define AREG2 "r5"
195 #define AREG3 "r6"
196 #else
197 #error unsupported CPU
198 #endif
199
200 /* force GCC to generate only one epilog at the end of the function */
201 #define FORCE_RET() __asm__ __volatile__("" : : : "memory");
202
203 #ifndef OPPROTO
204 #define OPPROTO
205 #endif
206
207 #define xglue(x, y) x ## y
208 #define glue(x, y) xglue(x, y)
209 #define stringify(s)    tostring(s)
210 #define tostring(s)     #s
211
212 #if defined(__alpha__) || defined(__s390__)
213 /* the symbols are considered non exported so a br immediate is generated */
214 #define __hidden __attribute__((visibility("hidden")))
215 #else
216 #define __hidden
217 #endif
218
219 #if defined(__alpha__)
220 /* Suggested by Richard Henderson. This will result in code like
221         ldah $0,__op_param1($29)        !gprelhigh
222         lda $0,__op_param1($0)          !gprellow
223    We can then conveniently change $29 to $31 and adapt the offsets to
224    emit the appropriate constant.  */
225 extern int __op_param1 __hidden;
226 extern int __op_param2 __hidden;
227 extern int __op_param3 __hidden;
228 #define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; })
229 #define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; })
230 #define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; })
231 #elif defined(__s390__)
232 extern int __op_param1 __hidden;
233 extern int __op_param2 __hidden;
234 extern int __op_param3 __hidden;
235 #define PARAM1 ({ int _r; asm("bras %0,8; .long " ASM_NAME(__op_param1) "; l %0,0(%0)" : "=r"(_r) : ); _r; })
236 #define PARAM2 ({ int _r; asm("bras %0,8; .long " ASM_NAME(__op_param2) "; l %0,0(%0)" : "=r"(_r) : ); _r; })
237 #define PARAM3 ({ int _r; asm("bras %0,8; .long " ASM_NAME(__op_param3) "; l %0,0(%0)" : "=r"(_r) : ); _r; })
238 #else
239 #if defined(__APPLE__)
240 static int __op_param1, __op_param2, __op_param3;
241 #else
242 extern int __op_param1, __op_param2, __op_param3;
243 #endif
244 #define PARAM1 ((long)(&__op_param1))
245 #define PARAM2 ((long)(&__op_param2))
246 #define PARAM3 ((long)(&__op_param3))
247 #endif /* !defined(__alpha__) */
248
249 extern int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3;
250
251 #if defined(_WIN32) || defined(__APPLE__)
252 #define ASM_NAME(x) "_" #x
253 #else
254 #define ASM_NAME(x) #x
255 #endif
256
257 #if defined(__i386__)
258 #define EXIT_TB() asm volatile ("ret")
259 #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
260 #elif defined(__x86_64__)
261 #define EXIT_TB() asm volatile ("ret")
262 #define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
263 #elif defined(__powerpc__)
264 #define EXIT_TB() asm volatile ("blr")
265 #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
266 #elif defined(__s390__)
267 #define EXIT_TB() asm volatile ("br %r14")
268 #define GOTO_LABEL_PARAM(n) asm volatile ("larl %r7,12; l %r7,0(%r7); br %r7; .long " ASM_NAME(__op_gen_label) #n)
269 #elif defined(__alpha__)
270 #define EXIT_TB() asm volatile ("ret")
271 #elif defined(__ia64__)
272 #define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;")
273 #define GOTO_LABEL_PARAM(n) asm volatile ("br.sptk.many " \
274                                           ASM_NAME(__op_gen_label) #n)
275 #elif defined(__sparc__)
276 #define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0; nop")
277 #define GOTO_LABEL_PARAM(n) asm volatile ("ba " ASM_NAME(__op_gen_label) #n ";nop")
278 #elif defined(__arm__)
279 #define EXIT_TB() asm volatile ("b exec_loop")
280 #define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
281 #elif defined(__mc68000)
282 #define EXIT_TB() asm volatile ("rts")
283 #elif defined(__mips__)
284 #define EXIT_TB() asm volatile ("jr $ra")
285 #define GOTO_LABEL_PARAM(n) asm volatile (".set noat; la $1, " ASM_NAME(__op_gen_label) #n "; jr $1; .set at")
286 #elif defined(__hppa__)
287 #define GOTO_LABEL_PARAM(n) asm volatile ("b,n " ASM_NAME(__op_gen_label) #n)
288 #else
289 #error unsupported CPU
290 #endif
291
292 #endif /* !defined(__DYNGEN_EXEC_H__) */