2003-11-23 17:55:54 +03:00
|
|
|
/*
|
2005-07-03 00:59:34 +04:00
|
|
|
* PowerPC emulation definitions for qemu.
|
2007-09-17 01:08:06 +04:00
|
|
|
*
|
2007-03-07 11:32:30 +03:00
|
|
|
* Copyright (c) 2003-2007 Jocelyn Mayer
|
2003-11-23 17:55:54 +03: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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
#if !defined (__PPC_H__)
|
|
|
|
#define __PPC_H__
|
|
|
|
|
2005-07-05 02:17:05 +04:00
|
|
|
#include "config.h"
|
|
|
|
|
2003-11-23 17:55:54 +03:00
|
|
|
#include "dyngen-exec.h"
|
|
|
|
|
2007-03-07 11:32:30 +03:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec-all.h"
|
2005-07-05 02:17:05 +04:00
|
|
|
|
2008-04-08 01:24:25 +04:00
|
|
|
/* For normal operations, precise emulation should not be needed */
|
|
|
|
//#define USE_PRECISE_EMULATION 1
|
|
|
|
#define USE_PRECISE_EMULATION 0
|
|
|
|
|
2003-11-23 17:55:54 +03:00
|
|
|
register struct CPUPPCState *env asm(AREG0);
|
2007-03-07 11:32:30 +03:00
|
|
|
#if TARGET_LONG_BITS > HOST_LONG_BITS
|
|
|
|
/* no registers can be used */
|
|
|
|
#define T0 (env->t0)
|
|
|
|
#define T1 (env->t1)
|
|
|
|
#define T2 (env->t2)
|
2007-11-24 05:03:55 +03:00
|
|
|
#define TDX "%016" PRIx64
|
2007-03-07 11:32:30 +03:00
|
|
|
#else
|
|
|
|
register unsigned long T0 asm(AREG1);
|
|
|
|
register unsigned long T1 asm(AREG2);
|
|
|
|
register unsigned long T2 asm(AREG3);
|
2007-11-24 05:03:55 +03:00
|
|
|
#define TDX "%016lx"
|
2007-03-07 11:32:30 +03:00
|
|
|
#endif
|
2007-11-14 21:45:52 +03:00
|
|
|
/* We may, sometime, need 64 bits registers on 32 bits targets */
|
|
|
|
#if (HOST_LONG_BITS == 32)
|
2007-03-17 17:02:15 +03:00
|
|
|
/* no registers can be used */
|
|
|
|
#define T0_64 (env->t0)
|
|
|
|
#define T1_64 (env->t1)
|
|
|
|
#define T2_64 (env->t2)
|
2007-07-11 14:36:47 +04:00
|
|
|
#else
|
|
|
|
#define T0_64 T0
|
|
|
|
#define T1_64 T1
|
|
|
|
#define T2_64 T2
|
2007-03-07 11:32:30 +03:00
|
|
|
#endif
|
2007-03-17 17:02:15 +03:00
|
|
|
/* Provision for Altivec */
|
2007-10-07 22:19:26 +04:00
|
|
|
#define AVR0 (env->avr0)
|
|
|
|
#define AVR1 (env->avr1)
|
|
|
|
#define AVR2 (env->avr2)
|
2003-11-23 17:55:54 +03:00
|
|
|
|
2004-01-04 17:57:11 +03:00
|
|
|
#define FT0 (env->ft0)
|
|
|
|
#define FT1 (env->ft1)
|
|
|
|
#define FT2 (env->ft2)
|
2003-11-23 17:55:54 +03:00
|
|
|
|
2004-04-13 00:39:29 +04:00
|
|
|
#if defined (DEBUG_OP)
|
2006-12-23 03:49:32 +03:00
|
|
|
# define RETURN() __asm__ __volatile__("nop" : : : "memory");
|
2004-04-13 00:39:29 +04:00
|
|
|
#else
|
2006-12-23 03:49:32 +03:00
|
|
|
# define RETURN() __asm__ __volatile__("" : : : "memory");
|
2004-04-13 00:39:29 +04:00
|
|
|
#endif
|
2003-11-23 17:55:54 +03:00
|
|
|
|
2007-10-07 21:13:44 +04:00
|
|
|
static always_inline target_ulong rotl8 (target_ulong i, int n)
|
2007-03-07 11:32:30 +03:00
|
|
|
{
|
|
|
|
return (((uint8_t)i << n) | ((uint8_t)i >> (8 - n)));
|
|
|
|
}
|
|
|
|
|
2007-10-07 21:13:44 +04:00
|
|
|
static always_inline target_ulong rotl16 (target_ulong i, int n)
|
2007-03-07 11:32:30 +03:00
|
|
|
{
|
|
|
|
return (((uint16_t)i << n) | ((uint16_t)i >> (16 - n)));
|
|
|
|
}
|
2003-11-23 17:55:54 +03:00
|
|
|
|
2007-10-07 21:13:44 +04:00
|
|
|
static always_inline target_ulong rotl32 (target_ulong i, int n)
|
2003-11-23 17:55:54 +03:00
|
|
|
{
|
2007-03-07 11:32:30 +03:00
|
|
|
return (((uint32_t)i << n) | ((uint32_t)i >> (32 - n)));
|
2003-11-23 17:55:54 +03:00
|
|
|
}
|
|
|
|
|
2007-03-07 11:32:30 +03:00
|
|
|
#if defined(TARGET_PPC64)
|
2007-10-07 21:13:44 +04:00
|
|
|
static always_inline target_ulong rotl64 (target_ulong i, int n)
|
2007-03-07 11:32:30 +03:00
|
|
|
{
|
|
|
|
return (((uint64_t)i << n) | ((uint64_t)i >> (64 - n)));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-01-05 01:58:38 +03:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2005-10-30 21:16:26 +03:00
|
|
|
#include "softmmu_exec.h"
|
2004-01-05 01:58:38 +03:00
|
|
|
#endif /* !defined(CONFIG_USER_ONLY) */
|
2003-11-23 17:55:54 +03:00
|
|
|
|
2004-05-21 16:59:32 +04:00
|
|
|
void do_raise_exception_err (uint32_t exception, int error_code);
|
|
|
|
void do_raise_exception (uint32_t exception);
|
2003-11-23 17:55:54 +03:00
|
|
|
|
2007-03-07 11:32:30 +03:00
|
|
|
int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong vaddr,
|
2007-11-03 16:37:12 +03:00
|
|
|
int rw, int access_type);
|
2003-11-23 17:55:54 +03:00
|
|
|
|
2007-03-07 11:32:30 +03:00
|
|
|
void ppc6xx_tlb_store (CPUState *env, target_ulong EPN, int way, int is_code,
|
|
|
|
target_ulong pte0, target_ulong pte1);
|
2004-01-05 01:58:38 +03:00
|
|
|
|
2007-10-07 21:13:44 +04:00
|
|
|
static always_inline void env_to_regs (void)
|
2004-10-13 02:01:28 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-10-07 21:13:44 +04:00
|
|
|
static always_inline void regs_to_env (void)
|
2004-10-13 02:01:28 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-03-07 11:32:30 +03:00
|
|
|
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
|
2007-10-14 11:07:08 +04:00
|
|
|
int mmu_idx, int is_softmmu);
|
2005-01-04 02:43:32 +03:00
|
|
|
|
2007-10-07 21:13:44 +04:00
|
|
|
static always_inline int cpu_halted (CPUState *env)
|
2007-09-17 12:21:54 +04:00
|
|
|
{
|
2007-06-03 21:44:37 +04:00
|
|
|
if (!env->halted)
|
|
|
|
return 0;
|
2007-10-26 01:35:50 +04:00
|
|
|
if (msr_ee && (env->interrupt_request & CPU_INTERRUPT_HARD)) {
|
2007-06-03 21:44:37 +04:00
|
|
|
env->halted = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return EXCP_HALTED;
|
|
|
|
}
|
|
|
|
|
2003-11-23 17:55:54 +03:00
|
|
|
#endif /* !defined (__PPC_H__) */
|