VirtualBox

source: vbox/trunk/src/recompiler_new/dyngen-exec.h@ 13607

最後變更 在這個檔案從13607是 13504,由 vboxsync 提交於 16 年 前

amd64 TCG stated breathing (not much code executed yet)

  • 屬性 svn:eol-style 設為 native
檔案大小: 9.1 KB
 
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
21/*
22 * Sun LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
23 * other than GPL or LGPL is available it will apply instead, Sun elects to use only
24 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
25 * a choice of LGPL license versions is made available with the language indicating
26 * that LGPLv2 or any later version may be used, or where a choice of which version
27 * of the LGPL is applied is otherwise unspecified.
28 */
29#if !defined(__DYNGEN_EXEC_H__)
30#define __DYNGEN_EXEC_H__
31
32/* prevent Solaris from trying to typedef FILE in gcc's
33 include/floatingpoint.h which will conflict with the
34 definition down below */
35#ifdef __sun__
36#define _FILEDEFED
37#endif
38
39/* NOTE: standard headers should be used with special care at this
40 point because host CPU registers are used as global variables. Some
41 host headers do not allow that. */
42#include <stddef.h>
43
44#ifndef VBOX
45
46typedef unsigned char uint8_t;
47typedef unsigned short uint16_t;
48typedef unsigned int uint32_t;
49/* Linux/Sparc64 defines uint64_t */
50#if !(defined (__sparc_v9__) && defined(__linux__))
51/* XXX may be done for all 64 bits targets ? */
52#if defined (__x86_64__) || defined(__ia64)
53typedef unsigned long uint64_t;
54#else
55typedef unsigned long long uint64_t;
56#endif
57#endif
58
59/* if Solaris/__sun__, don't typedef int8_t, as it will be typedef'd
60 prior to this and will cause an error in compliation, conflicting
61 with /usr/include/sys/int_types.h, line 75 */
62#ifndef __sun__
63typedef signed char int8_t;
64#endif
65typedef signed short int16_t;
66typedef signed int int32_t;
67// Linux/Sparc64 defines int64_t
68#if !(defined (__sparc_v9__) && defined(__linux__))
69#if defined (__x86_64__) || defined(__ia64)
70typedef signed long int64_t;
71#else
72typedef signed long long int64_t;
73#endif
74#endif
75
76/* XXX: This may be wrong for 64-bit ILP32 hosts. */
77typedef void * host_reg_t;
78
79#define INT8_MIN (-128)
80#define INT16_MIN (-32767-1)
81#define INT32_MIN (-2147483647-1)
82#define INT64_MIN (-(int64_t)(9223372036854775807)-1)
83#define INT8_MAX (127)
84#define INT16_MAX (32767)
85#define INT32_MAX (2147483647)
86#define INT64_MAX ((int64_t)(9223372036854775807))
87#define UINT8_MAX (255)
88#define UINT16_MAX (65535)
89#define UINT32_MAX (4294967295U)
90#define UINT64_MAX ((uint64_t)(18446744073709551615))
91
92#ifdef _BSD
93typedef struct __sFILE FILE;
94#else
95typedef struct FILE FILE;
96#endif
97extern int fprintf(FILE *, const char *, ...);
98extern int fputs(const char *, FILE *);
99extern int printf(const char *, ...);
100#undef NULL
101#define NULL 0
102
103#else /* VBOX */
104
105/* XXX: This may be wrong for 64-bit ILP32 hosts. */
106typedef void * host_reg_t;
107
108#include <iprt/stdint.h>
109#include <stdio.h>
110
111#endif /* VBOX */
112
113#ifdef __i386__
114#define AREG0 "ebp"
115#define AREG1 "ebx"
116#define AREG2 "esi"
117#define AREG3 "edi"
118#endif
119#ifdef __x86_64__
120#if defined(VBOX)
121/* gcc 3.4.3 on 64-bit Solaris screws up when using rbp, it
122 seems so at least. (Setting AREG4 to "r15" causes compiler
123 error btw, so don't try it.) */
124/* Must be in sync with TCG register notion, see tcg-target.h */
125#define AREG0 "r14"
126#define AREG1 "r15"
127#define AREG2 "r12"
128#define AREG3 "r13"
129#else
130#define AREG0 "r14"
131#define AREG1 "r15"
132#define AREG2 "r12"
133#define AREG3 "r13"
134#endif
135//#define AREG4 "r14"
136//#define AREG5 "r15"
137#endif
138#ifdef __powerpc__
139#define AREG0 "r27"
140#define AREG1 "r24"
141#define AREG2 "r25"
142#define AREG3 "r26"
143/* XXX: suppress this hack */
144#if defined(CONFIG_USER_ONLY)
145#define AREG4 "r16"
146#define AREG5 "r17"
147#define AREG6 "r18"
148#define AREG7 "r19"
149#define AREG8 "r20"
150#define AREG9 "r21"
151#define AREG10 "r22"
152#define AREG11 "r23"
153#endif
154#define USE_INT_TO_FLOAT_HELPERS
155#define BUGGY_GCC_DIV64
156#endif
157#ifdef __arm__
158#define AREG0 "r7"
159#define AREG1 "r4"
160#define AREG2 "r5"
161#define AREG3 "r6"
162#endif
163#ifdef __mips__
164#define AREG0 "s3"
165#define AREG1 "s0"
166#define AREG2 "s1"
167#define AREG3 "s2"
168#endif
169#ifdef __sparc__
170#ifdef HOST_SOLARIS
171#define AREG0 "g2"
172#define AREG1 "g3"
173#define AREG2 "g4"
174#define AREG3 "g5"
175#define AREG4 "g6"
176#else
177#ifdef __sparc_v9__
178#define AREG0 "g1"
179#define AREG1 "g4"
180#define AREG2 "g5"
181#define AREG3 "g7"
182#else
183#define AREG0 "g6"
184#define AREG1 "g1"
185#define AREG2 "g2"
186#define AREG3 "g3"
187#define AREG4 "l0"
188#define AREG5 "l1"
189#define AREG6 "l2"
190#define AREG7 "l3"
191#define AREG8 "l4"
192#define AREG9 "l5"
193#define AREG10 "l6"
194#define AREG11 "l7"
195#endif
196#endif
197#define USE_FP_CONVERT
198#endif
199#ifdef __s390__
200#define AREG0 "r10"
201#define AREG1 "r7"
202#define AREG2 "r8"
203#define AREG3 "r9"
204#endif
205#ifdef __alpha__
206/* Note $15 is the frame pointer, so anything in op-i386.c that would
207 require a frame pointer, like alloca, would probably loose. */
208#define AREG0 "$15"
209#define AREG1 "$9"
210#define AREG2 "$10"
211#define AREG3 "$11"
212#define AREG4 "$12"
213#define AREG5 "$13"
214#define AREG6 "$14"
215#endif
216#ifdef __mc68000
217#define AREG0 "%a5"
218#define AREG1 "%a4"
219#define AREG2 "%d7"
220#define AREG3 "%d6"
221#define AREG4 "%d5"
222#endif
223#ifdef __ia64__
224#define AREG0 "r7"
225#define AREG1 "r4"
226#define AREG2 "r5"
227#define AREG3 "r6"
228#endif
229
230#ifndef VBOX
231/* force GCC to generate only one epilog at the end of the function */
232#define FORCE_RET() __asm__ __volatile__("" : : : "memory");
233#endif
234
235#ifndef OPPROTO
236#define OPPROTO
237#endif
238
239#define xglue(x, y) x ## y
240#define glue(x, y) xglue(x, y)
241#define stringify(s) tostring(s)
242#define tostring(s) #s
243
244#if defined(__alpha__) || defined(__s390__)
245/* the symbols are considered non exported so a br immediate is generated */
246#define __hidden __attribute__((visibility("hidden")))
247#else
248#define __hidden
249#endif
250
251#if defined(__alpha__)
252/* Suggested by Richard Henderson. This will result in code like
253 ldah $0,__op_param1($29) !gprelhigh
254 lda $0,__op_param1($0) !gprellow
255 We can then conveniently change $29 to $31 and adapt the offsets to
256 emit the appropriate constant. */
257extern int __op_param1 __hidden;
258extern int __op_param2 __hidden;
259extern int __op_param3 __hidden;
260#define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; })
261#define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; })
262#define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; })
263#else
264#if defined(__APPLE__)
265static int __op_param1, __op_param2, __op_param3;
266#else
267extern int __op_param1, __op_param2, __op_param3;
268#endif
269#define PARAM1 ((long)(&__op_param1))
270#define PARAM2 ((long)(&__op_param2))
271#define PARAM3 ((long)(&__op_param3))
272#endif /* !defined(__alpha__) */
273
274extern int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3;
275
276#if defined(_WIN32) || defined(__APPLE__) || defined(__OS2__)
277#define ASM_NAME(x) "_" #x
278#else
279#define ASM_NAME(x) #x
280#endif
281
282#ifdef __i386__
283#define EXIT_TB() asm volatile ("ret")
284#define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
285#endif
286#ifdef __x86_64__
287#define EXIT_TB() asm volatile ("ret")
288#define GOTO_LABEL_PARAM(n) asm volatile ("jmp " ASM_NAME(__op_gen_label) #n)
289#endif
290#ifdef __powerpc__
291#define EXIT_TB() asm volatile ("blr")
292#define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
293#endif
294#ifdef __s390__
295#define EXIT_TB() asm volatile ("br %r14")
296#define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
297#endif
298#ifdef __alpha__
299#define EXIT_TB() asm volatile ("ret")
300#endif
301#ifdef __ia64__
302#define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;")
303#define GOTO_LABEL_PARAM(n) asm volatile ("br.sptk.many " \
304 ASM_NAME(__op_gen_label) #n)
305#endif
306#ifdef __sparc__
307#define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0; nop")
308#define GOTO_LABEL_PARAM(n) asm volatile ("ba " ASM_NAME(__op_gen_label) #n ";nop")
309#endif
310#ifdef __arm__
311#define EXIT_TB() asm volatile ("b exec_loop")
312#define GOTO_LABEL_PARAM(n) asm volatile ("b " ASM_NAME(__op_gen_label) #n)
313#endif
314#ifdef __mc68000
315#define EXIT_TB() asm volatile ("rts")
316#endif
317
318
319#ifdef VBOX
320#define GETPC() ASMReturnAddress()
321#elif defined(__s390__)
322/* The return address may point to the start of the next instruction.
323 Subtracting one gets us the call instruction itself. */
324# define GETPC() ((void*)(((unsigned long)__builtin_return_address(0) & 0x7fffffffUL) - 1))
325#elif defined(__arm__)
326/* Thumb return addresses have the low bit set, so we need to subtract two.
327 This is still safe in ARM mode because instructions are 4 bytes. */
328# define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 2))
329#else
330# define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 1))
331#endif
332#endif /* !defined(__DYNGEN_EXEC_H__) */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette