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, see <http://www.gnu.org/licenses/>.
19 #if !defined(__DYNGEN_EXEC_H__)
20 #define __DYNGEN_EXEC_H__
22 /* prevent Solaris from trying to typedef FILE in gcc's
23 include/floatingpoint.h which will conflict with the
24 definition down below */
29 /* NOTE: standard headers should be used with special care at this
30 point because host CPU registers are used as global variables. Some
31 host headers do not allow that. */
36 #include <sys/types.h>
39 /* XXX: This may be wrong for 64-bit ILP32 hosts. */
40 typedef void * host_reg_t
;
43 typedef struct __sFILE
FILE;
45 typedef struct FILE FILE;
47 extern int fprintf(FILE *, const char *, ...);
48 extern int fputs(const char *, FILE *);
49 extern int printf(const char *, ...);
57 #elif defined(__x86_64__)
61 #elif defined(_ARCH_PPC)
65 #elif defined(__arm__)
69 #elif defined(__hppa__)
73 #elif defined(__mips__)
77 #elif defined(__sparc__)
93 #elif defined(__s390__)
97 #elif defined(__alpha__)
98 /* Note $15 is the frame pointer, so anything in op-i386.c that would
99 require a frame pointer, like alloca, would probably loose. */
103 #elif defined(__mc68000)
107 #elif defined(__ia64__)
112 #error unsupported CPU
115 #define xglue(x, y) x ## y
116 #define glue(x, y) xglue(x, y)
117 #define stringify(s) tostring(s)
118 #define tostring(s) #s
120 /* The return address may point to the start of the next instruction.
121 Subtracting one gets us the call instruction itself. */
122 #if defined(__s390__)
123 # define GETPC() ((void*)(((unsigned long)__builtin_return_address(0) & 0x7fffffffUL) - 1))
124 #elif defined(__arm__)
125 /* Thumb return addresses have the low bit set, so we need to subtract two.
126 This is still safe in ARM mode because instructions are 4 bytes. */
127 # define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 2))
129 # define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 1))
132 #endif /* !defined(__DYNGEN_EXEC_H__) */