]> git.proxmox.com Git - qemu.git/blame - dyngen-exec.h
Enable USE_DIRECT_JUMP on Win32.
[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
8167ee88 17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
79638566 18 */
67867308
FB
19#if !defined(__DYNGEN_EXEC_H__)
20#define __DYNGEN_EXEC_H__
21
ec530c81
FB
22/* prevent Solaris from trying to typedef FILE in gcc's
23 include/floatingpoint.h which will conflict with the
24 definition down below */
25#ifdef __sun__
26#define _FILEDEFED
27#endif
28
1e6cae95
FB
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. */
513b500f 32#include <stddef.h>
b7df4bcc 33#include <stdint.h>
513b500f 34
128ab2ff
BS
35#ifdef __OpenBSD__
36#include <sys/types.h>
128ab2ff 37#endif
79638566 38
1057eaa7
PB
39/* XXX: This may be wrong for 64-bit ILP32 hosts. */
40typedef void * host_reg_t;
41
179a2c19 42#ifdef HOST_BSD
cce1075c
TS
43typedef struct __sFILE FILE;
44#else
79638566 45typedef struct FILE FILE;
cce1075c 46#endif
79638566 47extern int fprintf(FILE *, const char *, ...);
24c7b0e3 48extern int fputs(const char *, FILE *);
79638566 49extern int printf(const char *, ...);
513b500f 50#undef NULL
79638566 51#define NULL 0
79638566 52
522777bb 53#if defined(__i386__)
79638566
FB
54#define AREG0 "ebp"
55#define AREG1 "ebx"
56#define AREG2 "esi"
522777bb 57#elif defined(__x86_64__)
43024c6a
TS
58#define AREG0 "r14"
59#define AREG1 "r15"
bc51c5c9 60#define AREG2 "r12"
e58ffeb3 61#elif defined(_ARCH_PPC)
79638566
FB
62#define AREG0 "r27"
63#define AREG1 "r24"
64#define AREG2 "r25"
522777bb 65#elif defined(__arm__)
79638566
FB
66#define AREG0 "r7"
67#define AREG1 "r4"
68#define AREG2 "r5"
f54b3f92
AJ
69#elif defined(__hppa__)
70#define AREG0 "r17"
71#define AREG1 "r14"
72#define AREG2 "r15"
522777bb 73#elif defined(__mips__)
c4b89d18 74#define AREG0 "fp"
79638566
FB
75#define AREG1 "s0"
76#define AREG2 "s1"
522777bb 77#elif defined(__sparc__)
fdbb4691
FB
78#ifdef HOST_SOLARIS
79#define AREG0 "g2"
80#define AREG1 "g3"
81#define AREG2 "g4"
fdbb4691 82#else
74ccb34e 83#ifdef __sparc_v9__
e97b640d
BS
84#define AREG0 "g5"
85#define AREG1 "g6"
86#define AREG2 "g7"
74ccb34e 87#else
79638566
FB
88#define AREG0 "g6"
89#define AREG1 "g1"
90#define AREG2 "g2"
fdbb4691 91#endif
74ccb34e 92#endif
522777bb 93#elif defined(__s390__)
79638566
FB
94#define AREG0 "r10"
95#define AREG1 "r7"
96#define AREG2 "r8"
522777bb 97#elif defined(__alpha__)
79638566
FB
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. */
100#define AREG0 "$15"
101#define AREG1 "$9"
102#define AREG2 "$10"
522777bb 103#elif defined(__mc68000)
38e584a0
FB
104#define AREG0 "%a5"
105#define AREG1 "%a4"
106#define AREG2 "%d7"
522777bb 107#elif defined(__ia64__)
b8076a74
FB
108#define AREG0 "r7"
109#define AREG1 "r4"
110#define AREG2 "r5"
522777bb
TS
111#else
112#error unsupported CPU
79638566
FB
113#endif
114
79638566
FB
115#define xglue(x, y) x ## y
116#define glue(x, y) xglue(x, y)
9621339d
FB
117#define stringify(s) tostring(s)
118#define tostring(s) #s
79638566 119
9b7b85d2
PB
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))
128#else
129# define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 1))
130#endif
131
67867308 132#endif /* !defined(__DYNGEN_EXEC_H__) */