]> git.proxmox.com Git - qemu.git/blame - dyngen-exec.h
comments
[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
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 */
20typedef unsigned char uint8_t;
21typedef unsigned short uint16_t;
22typedef unsigned int uint32_t;
23typedef unsigned long long uint64_t;
24
25typedef signed char int8_t;
26typedef signed short int16_t;
27typedef signed int int32_t;
28typedef signed long long int64_t;
29
30#define bswap32(x) \
31({ \
32 uint32_t __x = (x); \
33 ((uint32_t)( \
34 (((uint32_t)(__x) & (uint32_t)0x000000ffUL) << 24) | \
35 (((uint32_t)(__x) & (uint32_t)0x0000ff00UL) << 8) | \
36 (((uint32_t)(__x) & (uint32_t)0x00ff0000UL) >> 8) | \
37 (((uint32_t)(__x) & (uint32_t)0xff000000UL) >> 24) )); \
38})
39
40typedef struct FILE FILE;
41extern int fprintf(FILE *, const char *, ...);
42extern int printf(const char *, ...);
43#define NULL 0
44#include <fenv.h>
45
46#ifdef __i386__
47#define AREG0 "ebp"
48#define AREG1 "ebx"
49#define AREG2 "esi"
50#define AREG3 "edi"
51#endif
52#ifdef __powerpc__
53#define AREG0 "r27"
54#define AREG1 "r24"
55#define AREG2 "r25"
56#define AREG3 "r26"
57#define AREG4 "r16"
58#define AREG5 "r17"
59#define AREG6 "r18"
60#define AREG7 "r19"
61#define AREG8 "r20"
62#define AREG9 "r21"
63#define AREG10 "r22"
64#define AREG11 "r23"
65#define USE_INT_TO_FLOAT_HELPERS
66#define BUGGY_GCC_DIV64
67#endif
68#ifdef __arm__
69#define AREG0 "r7"
70#define AREG1 "r4"
71#define AREG2 "r5"
72#define AREG3 "r6"
73#endif
74#ifdef __mips__
75#define AREG0 "s3"
76#define AREG1 "s0"
77#define AREG2 "s1"
78#define AREG3 "s2"
79#endif
80#ifdef __sparc__
81#define AREG0 "g6"
82#define AREG1 "g1"
83#define AREG2 "g2"
84#define AREG3 "g3"
85#define AREG4 "l0"
86#define AREG5 "l1"
87#define AREG6 "l2"
88#define AREG7 "l3"
89#define AREG8 "l4"
90#define AREG9 "l5"
91#define AREG10 "l6"
92#define AREG11 "l7"
93#define USE_FP_CONVERT
94#endif
95#ifdef __s390__
96#define AREG0 "r10"
97#define AREG1 "r7"
98#define AREG2 "r8"
99#define AREG3 "r9"
100#endif
101#ifdef __alpha__
102/* Note $15 is the frame pointer, so anything in op-i386.c that would
103 require a frame pointer, like alloca, would probably loose. */
104#define AREG0 "$15"
105#define AREG1 "$9"
106#define AREG2 "$10"
107#define AREG3 "$11"
108#define AREG4 "$12"
109#define AREG5 "$13"
110#define AREG6 "$14"
111#endif
38e584a0
FB
112#ifdef __mc68000
113#define AREG0 "%a5"
114#define AREG1 "%a4"
115#define AREG2 "%d7"
116#define AREG3 "%d6"
117#define AREG4 "%d5"
118#endif
79638566
FB
119#ifdef __ia64__
120#define AREG0 "r27"
121#define AREG1 "r24"
122#define AREG2 "r25"
123#define AREG3 "r26"
124#endif
125
126/* force GCC to generate only one epilog at the end of the function */
127#define FORCE_RET() asm volatile ("");
128
129#ifndef OPPROTO
130#define OPPROTO
131#endif
132
133#define xglue(x, y) x ## y
134#define glue(x, y) xglue(x, y)
9621339d
FB
135#define stringify(s) tostring(s)
136#define tostring(s) #s
79638566
FB
137
138#ifdef __alpha__
139/* the symbols are considered non exported so a br immediate is generated */
140#define __hidden __attribute__((visibility("hidden")))
141#else
142#define __hidden
143#endif
144
145#ifdef __alpha__
146/* Suggested by Richard Henderson. This will result in code like
147 ldah $0,__op_param1($29) !gprelhigh
148 lda $0,__op_param1($0) !gprellow
149 We can then conveniently change $29 to $31 and adapt the offsets to
150 emit the appropriate constant. */
151extern int __op_param1 __hidden;
152extern int __op_param2 __hidden;
153extern int __op_param3 __hidden;
154#define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; })
155#define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; })
156#define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; })
157#else
158extern int __op_param1, __op_param2, __op_param3;
159#define PARAM1 ((long)(&__op_param1))
160#define PARAM2 ((long)(&__op_param2))
161#define PARAM3 ((long)(&__op_param3))
162#endif
163
c106152d 164extern int __op_jmp0, __op_jmp1, __op_jmp2, __op_jmp3;
9621339d
FB
165
166#ifdef __i386__
167#define EXIT_TB() asm volatile ("ret")
168#endif
169#ifdef __powerpc__
170#define EXIT_TB() asm volatile ("blr")
171#endif
172#ifdef __s390__
173#define EXIT_TB() asm volatile ("br %r14")
174#endif
175#ifdef __alpha__
176#define EXIT_TB() asm volatile ("ret")
177#endif
178#ifdef __ia64__
179#define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;")
180#endif
181#ifdef __sparc__
a96fc003 182#define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0\n" \
9621339d
FB
183 "nop")
184#endif
185#ifdef __arm__
186#define EXIT_TB() asm volatile ("b exec_loop")
187#endif
38e584a0
FB
188#ifdef __mc68000
189#define EXIT_TB() asm volatile ("rts")
190#endif