]>
Commit | Line | Data |
---|---|---|
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 | 39 | /* XXX: This may be wrong for 64-bit ILP32 hosts. */ |
c227f099 | 40 | typedef void * host_reg_t; |
1057eaa7 | 41 | |
71e72a19 | 42 | #ifdef CONFIG_BSD |
cce1075c TS |
43 | typedef struct __sFILE FILE; |
44 | #else | |
79638566 | 45 | typedef struct FILE FILE; |
cce1075c | 46 | #endif |
79638566 | 47 | extern int fprintf(FILE *, const char *, ...); |
24c7b0e3 | 48 | extern int fputs(const char *, FILE *); |
79638566 | 49 | extern int printf(const char *, ...); |
79638566 | 50 | |
522777bb | 51 | #if defined(__i386__) |
79638566 | 52 | #define AREG0 "ebp" |
522777bb | 53 | #elif defined(__x86_64__) |
43024c6a | 54 | #define AREG0 "r14" |
e58ffeb3 | 55 | #elif defined(_ARCH_PPC) |
79638566 | 56 | #define AREG0 "r27" |
522777bb | 57 | #elif defined(__arm__) |
79638566 | 58 | #define AREG0 "r7" |
f54b3f92 AJ |
59 | #elif defined(__hppa__) |
60 | #define AREG0 "r17" | |
522777bb | 61 | #elif defined(__mips__) |
60bf84cf | 62 | #define AREG0 "s0" |
522777bb | 63 | #elif defined(__sparc__) |
dfe5fff3 | 64 | #ifdef CONFIG_SOLARIS |
fdbb4691 | 65 | #define AREG0 "g2" |
fdbb4691 | 66 | #else |
74ccb34e | 67 | #ifdef __sparc_v9__ |
e97b640d | 68 | #define AREG0 "g5" |
74ccb34e | 69 | #else |
79638566 | 70 | #define AREG0 "g6" |
fdbb4691 | 71 | #endif |
74ccb34e | 72 | #endif |
522777bb | 73 | #elif defined(__s390__) |
79638566 | 74 | #define AREG0 "r10" |
522777bb | 75 | #elif defined(__alpha__) |
79638566 FB |
76 | /* Note $15 is the frame pointer, so anything in op-i386.c that would |
77 | require a frame pointer, like alloca, would probably loose. */ | |
78 | #define AREG0 "$15" | |
522777bb | 79 | #elif defined(__mc68000) |
38e584a0 | 80 | #define AREG0 "%a5" |
522777bb | 81 | #elif defined(__ia64__) |
b8076a74 | 82 | #define AREG0 "r7" |
522777bb TS |
83 | #else |
84 | #error unsupported CPU | |
79638566 FB |
85 | #endif |
86 | ||
79638566 FB |
87 | #define xglue(x, y) x ## y |
88 | #define glue(x, y) xglue(x, y) | |
9621339d FB |
89 | #define stringify(s) tostring(s) |
90 | #define tostring(s) #s | |
79638566 | 91 | |
9b7b85d2 PB |
92 | /* The return address may point to the start of the next instruction. |
93 | Subtracting one gets us the call instruction itself. */ | |
2827822e | 94 | #if defined(__s390__) && !defined(__s390x__) |
9b7b85d2 PB |
95 | # define GETPC() ((void*)(((unsigned long)__builtin_return_address(0) & 0x7fffffffUL) - 1)) |
96 | #elif defined(__arm__) | |
97 | /* Thumb return addresses have the low bit set, so we need to subtract two. | |
98 | This is still safe in ARM mode because instructions are 4 bytes. */ | |
99 | # define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 2)) | |
100 | #else | |
101 | # define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 1)) | |
102 | #endif | |
103 | ||
67867308 | 104 | #endif /* !defined(__DYNGEN_EXEC_H__) */ |