2003-06-15 23:46:57 +04: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 00:47:01 +04:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2003-06-15 23:46:57 +04:00
|
|
|
*/
|
2003-11-23 20:05:30 +03:00
|
|
|
#if !defined(__DYNGEN_EXEC_H__)
|
|
|
|
#define __DYNGEN_EXEC_H__
|
|
|
|
|
2007-05-09 03:30:44 +04:00
|
|
|
#if defined(__i386__)
|
2003-06-15 23:46:57 +04:00
|
|
|
#define AREG0 "ebp"
|
2007-05-09 03:30:44 +04:00
|
|
|
#elif defined(__x86_64__)
|
2007-02-10 21:21:04 +03:00
|
|
|
#define AREG0 "r14"
|
2009-01-14 21:39:49 +03:00
|
|
|
#elif defined(_ARCH_PPC)
|
2003-06-15 23:46:57 +04:00
|
|
|
#define AREG0 "r27"
|
2007-05-09 03:30:44 +04:00
|
|
|
#elif defined(__arm__)
|
2003-06-15 23:46:57 +04:00
|
|
|
#define AREG0 "r7"
|
2008-04-13 00:14:54 +04:00
|
|
|
#elif defined(__hppa__)
|
|
|
|
#define AREG0 "r17"
|
2007-05-09 03:30:44 +04:00
|
|
|
#elif defined(__mips__)
|
2010-04-09 19:28:40 +04:00
|
|
|
#define AREG0 "s0"
|
2007-05-09 03:30:44 +04:00
|
|
|
#elif defined(__sparc__)
|
2009-07-27 18:12:40 +04:00
|
|
|
#ifdef CONFIG_SOLARIS
|
2006-06-14 21:32:25 +04:00
|
|
|
#define AREG0 "g2"
|
|
|
|
#else
|
2006-07-19 01:23:34 +04:00
|
|
|
#ifdef __sparc_v9__
|
2008-07-26 21:19:35 +04:00
|
|
|
#define AREG0 "g5"
|
2006-07-19 01:23:34 +04:00
|
|
|
#else
|
2003-06-15 23:46:57 +04:00
|
|
|
#define AREG0 "g6"
|
2006-06-14 21:32:25 +04:00
|
|
|
#endif
|
2006-07-19 01:23:34 +04:00
|
|
|
#endif
|
2007-05-09 03:30:44 +04:00
|
|
|
#elif defined(__s390__)
|
2003-06-15 23:46:57 +04:00
|
|
|
#define AREG0 "r10"
|
2007-05-09 03:30:44 +04:00
|
|
|
#elif defined(__alpha__)
|
2003-06-15 23:46:57 +04: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 03:30:44 +04:00
|
|
|
#elif defined(__mc68000)
|
2003-08-11 02:14:22 +04:00
|
|
|
#define AREG0 "%a5"
|
2007-05-09 03:30:44 +04:00
|
|
|
#elif defined(__ia64__)
|
2005-04-08 02:20:31 +04:00
|
|
|
#define AREG0 "r7"
|
2007-05-09 03:30:44 +04:00
|
|
|
#else
|
|
|
|
#error unsupported CPU
|
2003-06-15 23:46:57 +04:00
|
|
|
#endif
|
|
|
|
|
2011-07-13 16:44:15 +04:00
|
|
|
register CPUState *env asm(AREG0);
|
|
|
|
|
2003-11-23 20:05:30 +03:00
|
|
|
#endif /* !defined(__DYNGEN_EXEC_H__) */
|