]> git.proxmox.com Git - qemu.git/blame - dyngen-exec.h
Sanitize mips exception handling.
[qemu.git] / dyngen-exec.h
CommitLineData
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
79638566
FB
35typedef unsigned char uint8_t;
36typedef unsigned short uint16_t;
37typedef unsigned int uint32_t;
74ccb34e
FB
38// Linux/Sparc64 defines uint64_t
39#if !(defined (__sparc_v9__) && defined(__linux__))
4f2ac237 40/* XXX may be done for all 64 bits targets ? */
b8076a74 41#if defined (__x86_64__) || defined(__ia64)
4f2ac237
FB
42typedef unsigned long uint64_t;
43#else
79638566 44typedef unsigned long long uint64_t;
4f2ac237 45#endif
74ccb34e 46#endif
79638566 47
ec530c81
FB
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__
79638566 52typedef signed char int8_t;
ec530c81 53#endif
79638566
FB
54typedef signed short int16_t;
55typedef signed int int32_t;
74ccb34e
FB
56// Linux/Sparc64 defines int64_t
57#if !(defined (__sparc_v9__) && defined(__linux__))
b8076a74 58#if defined (__x86_64__) || defined(__ia64)
4f2ac237
FB
59typedef signed long int64_t;
60#else
79638566 61typedef signed long long int64_t;
4f2ac237 62#endif
74ccb34e 63#endif
79638566 64
1057eaa7
PB
65/* XXX: This may be wrong for 64-bit ILP32 hosts. */
66typedef void * host_reg_t;
67
67867308
FB
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
79638566
FB
81typedef struct FILE FILE;
82extern int fprintf(FILE *, const char *, ...);
24c7b0e3 83extern int fputs(const char *, FILE *);
79638566 84extern int printf(const char *, ...);
513b500f 85#undef NULL
79638566 86#define NULL 0
79638566
FB
87
88#ifdef __i386__
89#define AREG0 "ebp"
90#define AREG1 "ebx"
91#define AREG2 "esi"
92#define AREG3 "edi"
93#endif
bc51c5c9 94#ifdef __x86_64__
43024c6a
TS
95#define AREG0 "r14"
96#define AREG1 "r15"
bc51c5c9
FB
97#define AREG2 "r12"
98#define AREG3 "r13"
43024c6a
TS
99//#define AREG4 "rbp"
100//#define AREG5 "rbx"
bc51c5c9 101#endif
79638566
FB
102#ifdef __powerpc__
103#define AREG0 "r27"
104#define AREG1 "r24"
105#define AREG2 "r25"
106#define AREG3 "r26"
bf71c9d9
FB
107/* XXX: suppress this hack */
108#if defined(CONFIG_USER_ONLY)
79638566
FB
109#define AREG4 "r16"
110#define AREG5 "r17"
111#define AREG6 "r18"
112#define AREG7 "r19"
113#define AREG8 "r20"
114#define AREG9 "r21"
115#define AREG10 "r22"
116#define AREG11 "r23"
bf71c9d9 117#endif
79638566
FB
118#define USE_INT_TO_FLOAT_HELPERS
119#define BUGGY_GCC_DIV64
120#endif
121#ifdef __arm__
122#define AREG0 "r7"
123#define AREG1 "r4"
124#define AREG2 "r5"
125#define AREG3 "r6"
126#endif
127#ifdef __mips__
128#define AREG0 "s3"
129#define AREG1 "s0"
130#define AREG2 "s1"
131#define AREG3 "s2"
132#endif
133#ifdef __sparc__
fdbb4691
FB
134#ifdef HOST_SOLARIS
135#define AREG0 "g2"
136#define AREG1 "g3"
137#define AREG2 "g4"
138#define AREG3 "g5"
139#define AREG4 "g6"
140#else
74ccb34e
FB
141#ifdef __sparc_v9__
142#define AREG0 "g1"
143#define AREG1 "g4"
144#define AREG2 "g5"
145#define AREG3 "g7"
146#else
79638566
FB
147#define AREG0 "g6"
148#define AREG1 "g1"
149#define AREG2 "g2"
150#define AREG3 "g3"
151#define AREG4 "l0"
152#define AREG5 "l1"
153#define AREG6 "l2"
154#define AREG7 "l3"
155#define AREG8 "l4"
156#define AREG9 "l5"
157#define AREG10 "l6"
158#define AREG11 "l7"
fdbb4691 159#endif
74ccb34e 160#endif
79638566
FB
161#define USE_FP_CONVERT
162#endif
163#ifdef __s390__
164#define AREG0 "r10"
165#define AREG1 "r7"
166#define AREG2 "r8"
167#define AREG3 "r9"
168#endif
169#ifdef __alpha__
170/* Note $15 is the frame pointer, so anything in op-i386.c that would
171 require a frame pointer, like alloca, would probably loose. */
172#define AREG0 "$15"
173#define AREG1 "$9"
174#define AREG2 "$10"
175#define AREG3 "$11"
176#define AREG4 "$12"
177#define AREG5 "$13"
178#define AREG6 "$14"
179#endif
38e584a0
FB
180#ifdef __mc68000
181#define AREG0 "%a5"
182#define AREG1 "%a4"
183#define AREG2 "%d7"
184#define AREG3 "%d6"
185#define AREG4 "%d5"
186#endif
79638566 187#ifdef __ia64__
b8076a74
FB
188#define AREG0 "r7"
189#define AREG1 "r4"
190#define AREG2 "r5"
191#define AREG3 "r6"
79638566
FB
192#endif
193
194/* force GCC to generate only one epilog at the end of the function */
70ead434 195#define FORCE_RET() __asm__ __volatile__("" : : : "memory");
79638566
FB
196
197#ifndef OPPROTO
198#define OPPROTO
199#endif
200
201#define xglue(x, y) x ## y
202#define glue(x, y) xglue(x, y)
9621339d
FB
203#define stringify(s) tostring(s)
204#define tostring(s) #s
79638566
FB
205
206#ifdef __alpha__
207/* the symbols are considered non exported so a br immediate is generated */
208#define __hidden __attribute__((visibility("hidden")))
209#else
210#define __hidden
211#endif
212
cab84d98 213#if defined(__alpha__)
79638566
FB
214/* Suggested by Richard Henderson. This will result in code like
215 ldah $0,__op_param1($29) !gprelhigh
216 lda $0,__op_param1($0) !gprellow
217 We can then conveniently change $29 to $31 and adapt the offsets to
218 emit the appropriate constant. */
219extern int __op_param1 __hidden;
220extern int __op_param2 __hidden;
221extern int __op_param3 __hidden;
222#define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; })
223#define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; })
224#define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; })
225#else
cab84d98
FB
226#if defined(__APPLE__)
227static int __op_param1, __op_param2, __op_param3;
228#else
79638566 229extern int __op_param1, __op_param2, __op_param3;
cab84d98 230#endif
79638566
FB
231#define PARAM1 ((long)(&__op_param1))
232#define PARAM2 ((long)(&__op_param2))
233#define PARAM3 ((long)(&__op_param3))
cab84d98 234#endif /* !defined(__alpha__) */
79638566 235
c106152d 236extern int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3;
9621339d 237
9191d4d1 238#if defined(_WIN32) || defined(__APPLE__)
9df8aa4a
FB
239#define ASM_NAME(x) "_" #x
240#else
241#define ASM_NAME(x) #x
242#endif
243
9621339d
FB
244#ifdef __i386__
245#define EXIT_TB() asm volatile ("ret")
9df8aa4a 246#define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
9621339d 247#endif
bc51c5c9
FB
248#ifdef __x86_64__
249#define EXIT_TB() asm volatile ("ret")
d785e6be 250#define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
bc51c5c9 251#endif
9621339d
FB
252#ifdef __powerpc__
253#define EXIT_TB() asm volatile ("blr")
9df8aa4a 254#define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
9621339d
FB
255#endif
256#ifdef __s390__
257#define EXIT_TB() asm volatile ("br %r14")
90cb9493 258#define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
9621339d
FB
259#endif
260#ifdef __alpha__
261#define EXIT_TB() asm volatile ("ret")
262#endif
263#ifdef __ia64__
264#define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;")
b8076a74
FB
265#define GOTO_LABEL_PARAM(n) asm volatile ("br.sptk.many " \
266 ASM_NAME(__op_gen_label) #n)
9621339d
FB
267#endif
268#ifdef __sparc__
fdbb4691
FB
269#define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0; nop")
270#define GOTO_LABEL_PARAM(n) asm volatile ("ba " ASM_NAME(__op_gen_label) #n ";nop")
9621339d
FB
271#endif
272#ifdef __arm__
273#define EXIT_TB() asm volatile ("b exec_loop")
ae200d10 274#define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
9621339d 275#endif
38e584a0
FB
276#ifdef __mc68000
277#define EXIT_TB() asm volatile ("rts")
278#endif
67867308
FB
279
280#endif /* !defined(__DYNGEN_EXEC_H__) */