2003-06-16 03:46:57 +08: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-17 04:47:01 +08:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2003-06-16 03:46:57 +08:00
|
|
|
*/
|
2003-11-24 01:05:30 +08:00
|
|
|
#if !defined(__DYNGEN_EXEC_H__)
|
|
|
|
#define __DYNGEN_EXEC_H__
|
|
|
|
|
2011-10-06 02:03:02 +08:00
|
|
|
#if defined(CONFIG_TCG_INTERPRETER)
|
|
|
|
/* The TCG interpreter does not need a special register AREG0,
|
|
|
|
* but it is possible to use one by defining AREG0.
|
|
|
|
* On i386, register edi seems to work. */
|
|
|
|
/* Run without special register AREG0 or use a value defined elsewhere. */
|
|
|
|
#elif defined(__i386__)
|
2003-06-16 03:46:57 +08:00
|
|
|
#define AREG0 "ebp"
|
2007-05-09 07:30:44 +08:00
|
|
|
#elif defined(__x86_64__)
|
2007-02-11 02:21:04 +08:00
|
|
|
#define AREG0 "r14"
|
2009-01-15 02:39:49 +08:00
|
|
|
#elif defined(_ARCH_PPC)
|
2003-06-16 03:46:57 +08:00
|
|
|
#define AREG0 "r27"
|
2007-05-09 07:30:44 +08:00
|
|
|
#elif defined(__arm__)
|
2011-12-26 08:02:18 +08:00
|
|
|
#define AREG0 "r6"
|
2008-04-13 04:14:54 +08:00
|
|
|
#elif defined(__hppa__)
|
|
|
|
#define AREG0 "r17"
|
2007-05-09 07:30:44 +08:00
|
|
|
#elif defined(__mips__)
|
2010-04-09 23:28:40 +08:00
|
|
|
#define AREG0 "s0"
|
2007-05-09 07:30:44 +08:00
|
|
|
#elif defined(__sparc__)
|
2009-07-27 22:12:40 +08:00
|
|
|
#ifdef CONFIG_SOLARIS
|
2006-06-15 01:32:25 +08:00
|
|
|
#define AREG0 "g2"
|
|
|
|
#else
|
2006-07-19 05:23:34 +08:00
|
|
|
#ifdef __sparc_v9__
|
2008-07-27 01:19:35 +08:00
|
|
|
#define AREG0 "g5"
|
2006-07-19 05:23:34 +08:00
|
|
|
#else
|
2003-06-16 03:46:57 +08:00
|
|
|
#define AREG0 "g6"
|
2006-06-15 01:32:25 +08:00
|
|
|
#endif
|
2006-07-19 05:23:34 +08:00
|
|
|
#endif
|
2007-05-09 07:30:44 +08:00
|
|
|
#elif defined(__s390__)
|
2003-06-16 03:46:57 +08:00
|
|
|
#define AREG0 "r10"
|
2007-05-09 07:30:44 +08:00
|
|
|
#elif defined(__alpha__)
|
2003-06-16 03:46:57 +08: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 07:30:44 +08:00
|
|
|
#elif defined(__mc68000)
|
2003-08-11 06:14:22 +08:00
|
|
|
#define AREG0 "%a5"
|
2007-05-09 07:30:44 +08:00
|
|
|
#elif defined(__ia64__)
|
2005-04-08 06:20:31 +08:00
|
|
|
#define AREG0 "r7"
|
2007-05-09 07:30:44 +08:00
|
|
|
#else
|
|
|
|
#error unsupported CPU
|
2003-06-16 03:46:57 +08:00
|
|
|
#endif
|
|
|
|
|
2011-10-06 02:03:02 +08:00
|
|
|
#if defined(AREG0)
|
2011-07-13 20:44:15 +08:00
|
|
|
register CPUState *env asm(AREG0);
|
2011-10-06 02:03:02 +08:00
|
|
|
#else
|
|
|
|
/* TODO: Try env = cpu_single_env. */
|
|
|
|
extern CPUState *env;
|
|
|
|
#endif
|
2011-07-13 20:44:15 +08:00
|
|
|
|
2003-11-24 01:05:30 +08:00
|
|
|
#endif /* !defined(__DYNGEN_EXEC_H__) */
|