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__
|
|
|
|
|
2011-10-05 20:03:02 +02: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-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__)
|
2011-12-26 01:02:18 +01:00
|
|
|
#define AREG0 "r6"
|
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
|
|
|
|
|
2011-10-05 20:03:02 +02:00
|
|
|
#if defined(AREG0)
|
2012-03-14 01:38:32 +01:00
|
|
|
register CPUArchState *env asm(AREG0);
|
2011-10-05 20:03:02 +02:00
|
|
|
#else
|
|
|
|
/* TODO: Try env = cpu_single_env. */
|
2012-03-14 01:38:32 +01:00
|
|
|
extern CPUArchState *env;
|
2011-10-05 20:03:02 +02:00
|
|
|
#endif
|
2011-07-13 14:44:15 +02:00
|
|
|
|
2003-11-23 18:05:30 +01:00
|
|
|
#endif /* !defined(__DYNGEN_EXEC_H__) */
|