2003-10-01 04:34:21 +08:00
|
|
|
/*
|
|
|
|
* ARM execution defines
|
2007-09-17 05:08:06 +08:00
|
|
|
*
|
2003-10-01 04:34:21 +08:00
|
|
|
* 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-10-01 04:34:21 +08:00
|
|
|
*/
|
2007-03-19 22:47:40 +08:00
|
|
|
#include "config.h"
|
2003-10-01 04:34:21 +08:00
|
|
|
#include "dyngen-exec.h"
|
|
|
|
|
|
|
|
register struct CPUARMState *env asm(AREG0);
|
|
|
|
|
2007-04-30 10:02:17 +08:00
|
|
|
#define M0 env->iwmmxt.val
|
|
|
|
|
2003-10-01 04:34:21 +08:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
|
|
|
|
2009-04-25 02:03:20 +08:00
|
|
|
static inline int cpu_has_work(CPUState *env)
|
|
|
|
{
|
|
|
|
return (env->interrupt_request &
|
|
|
|
(CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB));
|
|
|
|
}
|
|
|
|
|
2005-11-26 18:38:39 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
#include "softmmu_exec.h"
|
|
|
|
#endif
|
|
|
|
|
2005-02-23 03:27:29 +08:00
|
|
|
void raise_exception(int);
|
2010-06-29 15:58:50 +08:00
|
|
|
|
|
|
|
static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)
|
|
|
|
{
|
|
|
|
env->regs[15] = tb->pc;
|
|
|
|
}
|
|
|
|
|