2003-11-23 22:55:54 +08:00
|
|
|
/*
|
2005-07-03 04:59:34 +08:00
|
|
|
* PowerPC emulation definitions for qemu.
|
2007-09-17 05:08:06 +08:00
|
|
|
*
|
2007-03-07 16:32:30 +08:00
|
|
|
* Copyright (c) 2003-2007 Jocelyn Mayer
|
2003-11-23 22:55:54 +08:00
|
|
|
*
|
|
|
|
* 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-05 06:05:52 +08:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
|
2003-11-23 22:55:54 +08:00
|
|
|
*/
|
|
|
|
#if !defined (__PPC_H__)
|
|
|
|
#define __PPC_H__
|
|
|
|
|
2005-07-05 06:17:05 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2003-11-23 22:55:54 +08:00
|
|
|
#include "dyngen-exec.h"
|
|
|
|
|
2007-03-07 16:32:30 +08:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
2005-07-05 06:17:05 +08:00
|
|
|
|
2008-12-19 06:43:07 +08:00
|
|
|
/* Precise emulation is needed to correctly emulate exception flags */
|
2008-12-16 01:14:50 +08:00
|
|
|
#define USE_PRECISE_EMULATION 1
|
2008-04-08 05:24:25 +08:00
|
|
|
|
2003-11-23 22:55:54 +08:00
|
|
|
register struct CPUPPCState *env asm(AREG0);
|
|
|
|
|
2004-01-05 06:58:38 +08:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-10-31 02:16:26 +08:00
|
|
|
#include "softmmu_exec.h"
|
2004-01-05 06:58:38 +08:00
|
|
|
#endif /* !defined(CONFIG_USER_ONLY) */
|
2003-11-23 22:55:54 +08:00
|
|
|
|
2007-10-08 01:13:44 +08:00
|
|
|
static always_inline void env_to_regs (void)
|
2004-10-13 06:01:28 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-10-08 01:13:44 +08:00
|
|
|
static always_inline void regs_to_env (void)
|
2004-10-13 06:01:28 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-10-08 01:13:44 +08:00
|
|
|
static always_inline int cpu_halted (CPUState *env)
|
2007-09-17 16:21:54 +08:00
|
|
|
{
|
2007-06-04 01:44:37 +08:00
|
|
|
if (!env->halted)
|
|
|
|
return 0;
|
2007-10-26 05:35:50 +08:00
|
|
|
if (msr_ee && (env->interrupt_request & CPU_INTERRUPT_HARD)) {
|
2007-06-04 01:44:37 +08:00
|
|
|
env->halted = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return EXCP_HALTED;
|
|
|
|
}
|
|
|
|
|
2003-11-23 22:55:54 +08:00
|
|
|
#endif /* !defined (__PPC_H__) */
|