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, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 typedef unsigned char uint8_t;
21 typedef unsigned short uint16_t;
22 typedef unsigned int uint32_t;
23 typedef unsigned long long uint64_t;
25 typedef signed char int8_t;
26 typedef signed short int16_t;
27 typedef signed int int32_t;
28 typedef signed long long int64_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) )); \
40 typedef struct FILE FILE;
41 extern int fprintf(FILE *, const char *, ...);
42 extern int printf(const char *, ...);
57 /* XXX: suppress this hack */
58 #if defined(CONFIG_USER_ONLY)
68 #define USE_INT_TO_FLOAT_HELPERS
69 #define BUGGY_GCC_DIV64
96 #define USE_FP_CONVERT
105 /* Note $15 is the frame pointer, so anything in op-i386.c that would
106 require a frame pointer, like alloca, would probably loose. */
129 /* force GCC to generate only one epilog at the end of the function */
130 #define FORCE_RET() asm volatile ("");
136 #define xglue(x, y) x ## y
137 #define glue(x, y) xglue(x, y)
138 #define stringify(s) tostring(s)
139 #define tostring(s) #s
142 /* the symbols are considered non exported so a br immediate is generated */
143 #define __hidden __attribute__((visibility("hidden")))
149 /* Suggested by Richard Henderson. This will result in code like
150 ldah $0,__op_param1($29) !gprelhigh
151 lda $0,__op_param1($0) !gprellow
152 We can then conveniently change $29 to $31 and adapt the offsets to
153 emit the appropriate constant. */
154 extern int __op_param1 __hidden
;
155 extern int __op_param2 __hidden
;
156 extern int __op_param3 __hidden
;
157 #define PARAM1 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param1)); _r; })
158 #define PARAM2 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param2)); _r; })
159 #define PARAM3 ({ int _r; asm("" : "=r"(_r) : "0" (&__op_param3)); _r; })
161 extern int __op_param1
, __op_param2
, __op_param3
;
162 #define PARAM1 ((long)(&__op_param1))
163 #define PARAM2 ((long)(&__op_param2))
164 #define PARAM3 ((long)(&__op_param3))
167 extern int __op_jmp0
, __op_jmp1
, __op_jmp2
, __op_jmp3
;
170 #define EXIT_TB() asm volatile ("ret")
173 #define EXIT_TB() asm volatile ("blr")
176 #define EXIT_TB() asm volatile ("br %r14")
179 #define EXIT_TB() asm volatile ("ret")
182 #define EXIT_TB() asm volatile ("br.ret.sptk.many b0;;")
185 #define EXIT_TB() asm volatile ("jmpl %i0 + 8, %g0\n" \
189 #define EXIT_TB() asm volatile ("b exec_loop")
192 #define EXIT_TB() asm volatile ("rts")