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 #include "qemu-common.h"
25 #include <sys/types.h>
28 /* XXX: This may be wrong for 64-bit ILP32 hosts. */
29 typedef void * host_reg_t
;
33 #elif defined(__x86_64__)
35 #elif defined(_ARCH_PPC)
37 #elif defined(__arm__)
39 #elif defined(__hppa__)
41 #elif defined(__mips__)
43 #elif defined(__sparc__)
53 #elif defined(__s390__)
55 #elif defined(__alpha__)
56 /* Note $15 is the frame pointer, so anything in op-i386.c that would
57 require a frame pointer, like alloca, would probably loose. */
59 #elif defined(__mc68000)
61 #elif defined(__ia64__)
64 #error unsupported CPU
67 #define xglue(x, y) x ## y
68 #define glue(x, y) xglue(x, y)
69 #define stringify(s) tostring(s)
70 #define tostring(s) #s
72 /* The return address may point to the start of the next instruction.
73 Subtracting one gets us the call instruction itself. */
74 #if defined(__s390__) && !defined(__s390x__)
75 # define GETPC() ((void*)(((unsigned long)__builtin_return_address(0) & 0x7fffffffUL) - 1))
76 #elif defined(__arm__)
77 /* Thumb return addresses have the low bit set, so we need to subtract two.
78 This is still safe in ARM mode because instructions are 4 bytes. */
79 # define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 2))
81 # define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 1))
84 #endif /* !defined(__DYNGEN_EXEC_H__) */