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
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2009-01-04 23:05:52 +01:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
|
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>
|
|
|
|
|
2008-08-15 20:33:42 +02:00
|
|
|
#ifdef __OpenBSD__
|
|
|
|
#include <sys/types.h>
|
|
|
|
#else
|
2003-06-15 21:46:57 +02:00
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
typedef unsigned int uint32_t;
|
2006-07-18 23:23:34 +02:00
|
|
|
// Linux/Sparc64 defines uint64_t
|
2008-06-06 01:06:46 +02:00
|
|
|
#if !(defined (__sparc_v9__) && defined(__linux__)) && !(defined(__APPLE__) && defined(__x86_64__))
|
2004-04-26 21:44:02 +02:00
|
|
|
/* XXX may be done for all 64 bits targets ? */
|
2009-01-14 19:39:49 +01:00
|
|
|
#if defined (__x86_64__) || defined(__ia64) || defined(__s390x__) || defined(__alpha__) || defined(_ARCH_PPC64)
|
2004-04-26 21:44:02 +02:00
|
|
|
typedef unsigned long uint64_t;
|
|
|
|
#else
|
2003-06-15 21:46:57 +02:00
|
|
|
typedef unsigned long long uint64_t;
|
2004-04-26 21:44:02 +02:00
|
|
|
#endif
|
2006-07-18 23:23:34 +02:00
|
|
|
#endif
|
2003-06-15 21:46:57 +02:00
|
|
|
|
2006-04-26 00:36:06 +02:00
|
|
|
/* if Solaris/__sun__, don't typedef int8_t, as it will be typedef'd
|
|
|
|
prior to this and will cause an error in compliation, conflicting
|
|
|
|
with /usr/include/sys/int_types.h, line 75 */
|
|
|
|
#ifndef __sun__
|
2003-06-15 21:46:57 +02:00
|
|
|
typedef signed char int8_t;
|
2006-04-26 00:36:06 +02:00
|
|
|
#endif
|
2003-06-15 21:46:57 +02:00
|
|
|
typedef signed short int16_t;
|
|
|
|
typedef signed int int32_t;
|
2006-07-18 23:23:34 +02:00
|
|
|
// Linux/Sparc64 defines int64_t
|
2008-06-06 01:06:46 +02:00
|
|
|
#if !(defined (__sparc_v9__) && defined(__linux__)) && !(defined(__APPLE__) && defined(__x86_64__))
|
2009-01-14 19:39:49 +01:00
|
|
|
#if defined (__x86_64__) || defined(__ia64) || defined(__s390x__) || defined(__alpha__) || defined(_ARCH_PPC64)
|
2004-04-26 21:44:02 +02:00
|
|
|
typedef signed long int64_t;
|
|
|
|
#else
|
2003-06-15 21:46:57 +02:00
|
|
|
typedef signed long long int64_t;
|
2004-04-26 21:44:02 +02:00
|
|
|
#endif
|
2006-07-18 23:23:34 +02:00
|
|
|
#endif
|
2008-08-15 20:33:42 +02:00
|
|
|
#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. */
|
|
|
|
typedef void * host_reg_t;
|
|
|
|
|
2003-11-23 18:05:30 +01:00
|
|
|
#define INT8_MIN (-128)
|
|
|
|
#define INT16_MIN (-32767-1)
|
|
|
|
#define INT32_MIN (-2147483647-1)
|
|
|
|
#define INT64_MIN (-(int64_t)(9223372036854775807)-1)
|
|
|
|
#define INT8_MAX (127)
|
|
|
|
#define INT16_MAX (32767)
|
|
|
|
#define INT32_MAX (2147483647)
|
|
|
|
#define INT64_MAX ((int64_t)(9223372036854775807))
|
|
|
|
#define UINT8_MAX (255)
|
|
|
|
#define UINT16_MAX (65535)
|
|
|
|
#define UINT32_MAX (4294967295U)
|
|
|
|
#define UINT64_MAX ((uint64_t)(18446744073709551615))
|
|
|
|
|
2009-03-08 09:23:32 +01:00
|
|
|
#ifdef HOST_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 *, ...);
|
2004-01-04 18:44:08 +01:00
|
|
|
#undef NULL
|
2003-06-15 21:46:57 +02:00
|
|
|
#define NULL 0
|
|
|
|
|
2007-05-09 01:30:44 +02:00
|
|
|
#if defined(__i386__)
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "ebp"
|
|
|
|
#define AREG1 "ebx"
|
|
|
|
#define AREG2 "esi"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__x86_64__)
|
2007-02-10 19:21:04 +01:00
|
|
|
#define AREG0 "r14"
|
|
|
|
#define AREG1 "r15"
|
2004-03-18 00:46:04 +01:00
|
|
|
#define AREG2 "r12"
|
2009-01-14 19:39:49 +01:00
|
|
|
#elif defined(_ARCH_PPC)
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "r27"
|
|
|
|
#define AREG1 "r24"
|
|
|
|
#define AREG2 "r25"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__arm__)
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "r7"
|
|
|
|
#define AREG1 "r4"
|
|
|
|
#define AREG2 "r5"
|
2008-04-12 22:14:54 +02:00
|
|
|
#elif defined(__hppa__)
|
|
|
|
#define AREG0 "r17"
|
|
|
|
#define AREG1 "r14"
|
|
|
|
#define AREG2 "r15"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__mips__)
|
2007-05-05 21:23:11 +02:00
|
|
|
#define AREG0 "fp"
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG1 "s0"
|
|
|
|
#define AREG2 "s1"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__sparc__)
|
2006-06-14 19:32:25 +02:00
|
|
|
#ifdef HOST_SOLARIS
|
|
|
|
#define AREG0 "g2"
|
|
|
|
#define AREG1 "g3"
|
|
|
|
#define AREG2 "g4"
|
|
|
|
#else
|
2006-07-18 23:23:34 +02:00
|
|
|
#ifdef __sparc_v9__
|
2008-07-26 19:19:35 +02:00
|
|
|
#define AREG0 "g5"
|
|
|
|
#define AREG1 "g6"
|
|
|
|
#define AREG2 "g7"
|
2006-07-18 23:23:34 +02:00
|
|
|
#else
|
2003-06-15 21:46:57 +02:00
|
|
|
#define AREG0 "g6"
|
|
|
|
#define AREG1 "g1"
|
|
|
|
#define AREG2 "g2"
|
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"
|
|
|
|
#define AREG1 "r7"
|
|
|
|
#define AREG2 "r8"
|
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"
|
|
|
|
#define AREG1 "$9"
|
|
|
|
#define AREG2 "$10"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__mc68000)
|
2003-08-11 00:14:22 +02:00
|
|
|
#define AREG0 "%a5"
|
|
|
|
#define AREG1 "%a4"
|
|
|
|
#define AREG2 "%d7"
|
2007-05-09 01:30:44 +02:00
|
|
|
#elif defined(__ia64__)
|
2005-04-08 00:20:31 +02:00
|
|
|
#define AREG0 "r7"
|
|
|
|
#define AREG1 "r4"
|
|
|
|
#define AREG2 "r5"
|
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. */
|
|
|
|
#if defined(__s390__)
|
|
|
|
# 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__) */
|