2003-06-15 21:46:57 +02:00
|
|
|
/*
|
|
|
|
* dyngen defines for micro operation code
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2003-06-15 21:46:57 +02:00
|
|
|
*/
|
2003-11-23 18:05:30 +01:00
|
|
|
#if !defined(__DYNGEN_EXEC_H__)
|
|
|
|
#define __DYNGEN_EXEC_H__
|
|
|
|
|
2006-04-26 00:36:06 +02:00
|
|
|
/* prevent Solaris from trying to typedef FILE in gcc's
|
|
|
|
include/floatingpoint.h which will conflict with the
|
|
|
|
definition down below */
|
|
|
|
#ifdef __sun__
|
|
|
|
#define _FILEDEFED
|
|
|
|
#endif
|
|
|
|
|
2004-07-10 17:31:19 +02:00
|
|
|
/* NOTE: standard headers should be used with special care at this
|
|
|
|
point because host CPU registers are used as global variables. Some
|
|
|
|
host headers do not allow that. */
|
2004-01-04 18:44:08 +01:00
|
|
|
#include <stddef.h>
|
2009-04-09 00:56:19 +02:00
|
|
|
#include <stdint.h>
|
2010-06-13 20:00:50 +02:00
|
|
|
#include <stdbool.h>
|
2004-01-04 18:44:08 +01:00
|
|
|
|
2008-08-15 20:33:42 +02:00
|
|
|
#ifdef __OpenBSD__
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
2003-06-15 21:46:57 +02:00
|
|
|
|
2007-02-04 14:37:44 +01:00
|
|
|
/* XXX: This may be wrong for 64-bit ILP32 hosts. */
|
2009-10-01 23:12:16 +02:00
|
|
|
typedef void * host_reg_t;
|
2007-02-04 14:37:44 +01:00
|
|
|
|
2009-07-27 16:12:56 +02:00
|
|
|
#ifdef CONFIG_BSD
|
2007-04-02 14:39:43 +02:00
|
|
|
typedef struct __sFILE FILE;
|
|
|
|
#else
|
2003-06-15 21:46:57 +02:00
|
|
|
typedef struct FILE FILE;
|
2007-04-02 14:39:43 +02:00
|
|
|
#endif
|
2003-06-15 21:46:57 +02:00
|
|
|
extern int fprintf(FILE *, const char *, ...);
|
2007-03-30 18:44:54 +02:00
|
|
|
extern int fputs(const char *, FILE *);
|
2003-06-15 21:46:57 +02:00
|
|
|
extern int printf(const char *, ...);
|
|
|
|
|
2007-05-09 01:30:44 +02:00
|
|
|
#if defined(__i386__)
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "ebp"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__x86_64__)
|
2007-02-10 19:21:04 +01:00
|
|
|
#define AREG0 "r14"
|
2009-01-14 19:39:49 +01:00
|
|
|
#elif defined(_ARCH_PPC)
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "r27"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__arm__)
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "r7"
|
2008-04-12 22:14:54 +02:00
|
|
|
#elif defined(__hppa__)
|
|
|
|
#define AREG0 "r17"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__mips__)
|
2010-04-09 17:28:40 +02:00
|
|
|
#define AREG0 "s0"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__sparc__)
|
2009-07-27 16:12:40 +02:00
|
|
|
#ifdef CONFIG_SOLARIS
|
2006-06-14 19:32:25 +02:00
|
|
|
#define AREG0 "g2"
|
|
|
|
#else
|
2006-07-18 23:23:34 +02:00
|
|
|
#ifdef __sparc_v9__
|
2008-07-26 19:19:35 +02:00
|
|
|
#define AREG0 "g5"
|
2006-07-18 23:23:34 +02:00
|
|
|
#else
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "g6"
|
2006-06-14 19:32:25 +02:00
|
|
|
#endif
|
2006-07-18 23:23:34 +02:00
|
|
|
#endif
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__s390__)
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "r10"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__alpha__)
|
2003-06-15 21:46:57 +02:00
|
|
|
/* Note $15 is the frame pointer, so anything in op-i386.c that would
|
|
|
|
require a frame pointer, like alloca, would probably loose. */
|
|
|
|
#define AREG0 "$15"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__mc68000)
|
2003-08-11 00:14:22 +02:00
|
|
|
#define AREG0 "%a5"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__ia64__)
|
2005-04-08 00:20:31 +02:00
|
|
|
#define AREG0 "r7"
|
2007-05-09 01:30:44 +02:00
|
|
|
#else
|
|
|
|
#error unsupported CPU
|
2003-06-15 21:46:57 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define xglue(x, y) x ## y
|
|
|
|
#define glue(x, y) xglue(x, y)
|
2003-07-11 17:17:41 +02:00
|
|
|
#define stringify(s) tostring(s)
|
|
|
|
#define tostring(s) #s
|
2003-06-15 21:46:57 +02:00
|
|
|
|
2008-05-25 02:36:06 +02:00
|
|
|
/* The return address may point to the start of the next instruction.
|
|
|
|
Subtracting one gets us the call instruction itself. */
|
2009-12-05 12:44:23 +01:00
|
|
|
#if defined(__s390__) && !defined(__s390x__)
|
2008-05-25 02:36:06 +02:00
|
|
|
# define GETPC() ((void*)(((unsigned long)__builtin_return_address(0) & 0x7fffffffUL) - 1))
|
|
|
|
#elif defined(__arm__)
|
|
|
|
/* Thumb return addresses have the low bit set, so we need to subtract two.
|
|
|
|
This is still safe in ARM mode because instructions are 4 bytes. */
|
|
|
|
# define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 2))
|
|
|
|
#else
|
|
|
|
# define GETPC() ((void *)((unsigned long)__builtin_return_address(0) - 1))
|
|
|
|
#endif
|
|
|
|
|
2003-11-23 18:05:30 +01:00
|
|
|
#endif /* !defined(__DYNGEN_EXEC_H__) */
|