mirror of https://github.com/xemu-project/xemu.git
Great PowerPC emulation code resynchronisation and improvments:
- Add status file to make regression tracking easier - Move all micro-operations helpers definitions into a separate header: should never be seen outside of op.c - Update copyrights - Add new / missing PowerPC CPU definitions - Add definitions for PowerPC BookE - Add support for PowerPC 6xx/7xx software driven TLBs Allow use of PowerPC 603 as an example - Add preliminary code for POWER, POWER2, PowerPC 403, 405, 440, 601, 602 and BookE support - Avoid compiling priviledged only resources support for user-mode emulation - Remove unused helpers / micro-ops / dead code - Add instructions usage statistics dump: useful to figure which instructions need strong optimizations. - Micro-operation fixes: * add missing RETURN in some micro-ops * fix prototypes * use softfloat routines for all floating-point operations * fix tlbie instruction * move some huge micro-operations into helpers - emulation fixes: * fix inverted opcodes for fcmpo / fcmpu * condition register update is always to be done after the whole instruction has completed * add missing NIP updates when calling helpers that may generate an exception - optimizations and improvments: * optimize very often used instructions (li, mr, rlwixx...) * remove specific micro-ops for rarely used instructions * add routines for addresses computations to avoid bugs due to multiple different implementations * fix TB linking: do not reset T0 at the end of every TB. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2473 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
1c7b3754f6
commit
76a66253e5
|
@ -759,6 +759,9 @@ CPUState *cpu_copy(CPUState *env);
|
|||
void cpu_dump_state(CPUState *env, FILE *f,
|
||||
int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
|
||||
int flags);
|
||||
void cpu_dump_statistics (CPUState *env, FILE *f,
|
||||
int (*cpu_fprintf)(FILE *f, const char *fmt, ...),
|
||||
int flags);
|
||||
|
||||
void cpu_abort(CPUState *env, const char *fmt, ...);
|
||||
extern CPUState *first_cpu;
|
||||
|
|
|
@ -307,7 +307,7 @@ static int cpu_gdb_read_registers(CPUState *env, uint8_t *mem_buf)
|
|||
registers[98] = tswapl(tmp);
|
||||
registers[99] = tswapl(env->lr);
|
||||
registers[100] = tswapl(env->ctr);
|
||||
registers[101] = tswapl(do_load_xer(env));
|
||||
registers[101] = tswapl(ppc_load_xer(env));
|
||||
registers[102] = 0;
|
||||
|
||||
return 103 * 4;
|
||||
|
@ -335,7 +335,7 @@ static void cpu_gdb_write_registers(CPUState *env, uint8_t *mem_buf, int size)
|
|||
env->crf[i] = (registers[98] >> (32 - ((i + 1) * 4))) & 0xF;
|
||||
env->lr = tswapl(registers[99]);
|
||||
env->ctr = tswapl(registers[100]);
|
||||
do_store_xer(env, tswapl(registers[101]));
|
||||
ppc_store_xer(env, tswapl(registers[101]));
|
||||
}
|
||||
#elif defined (TARGET_SPARC)
|
||||
static int cpu_gdb_read_registers(CPUState *env, uint8_t *mem_buf)
|
||||
|
|
91
hw/ppc.c
91
hw/ppc.c
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* QEMU generic PPC hardware System Emulator
|
||||
*
|
||||
* Copyright (c) 2003-2004 Jocelyn Mayer
|
||||
* Copyright (c) 2003-2007 Jocelyn Mayer
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -41,7 +41,7 @@ static inline uint64_t cpu_ppc_get_tb (ppc_tb_t *tb_env)
|
|||
{
|
||||
/* TB time in tb periods */
|
||||
return muldiv64(qemu_get_clock(vm_clock) + tb_env->tb_offset,
|
||||
tb_env->tb_freq, ticks_per_sec);
|
||||
tb_env->tb_freq, ticks_per_sec);
|
||||
}
|
||||
|
||||
uint32_t cpu_ppc_load_tbl (CPUState *env)
|
||||
|
@ -52,14 +52,14 @@ uint32_t cpu_ppc_load_tbl (CPUState *env)
|
|||
tb = cpu_ppc_get_tb(tb_env);
|
||||
#ifdef DEBUG_TB
|
||||
{
|
||||
static int last_time;
|
||||
int now;
|
||||
now = time(NULL);
|
||||
if (last_time != now) {
|
||||
last_time = now;
|
||||
printf("%s: tb=0x%016lx %d %08lx\n",
|
||||
__func__, tb, now, tb_env->tb_offset);
|
||||
}
|
||||
static int last_time;
|
||||
int now;
|
||||
now = time(NULL);
|
||||
if (last_time != now) {
|
||||
last_time = now;
|
||||
printf("%s: tb=0x%016lx %d %08lx\n",
|
||||
__func__, tb, now, tb_env->tb_offset);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -75,6 +75,7 @@ uint32_t cpu_ppc_load_tbu (CPUState *env)
|
|||
#ifdef DEBUG_TB
|
||||
printf("%s: tb=0x%016lx\n", __func__, tb);
|
||||
#endif
|
||||
|
||||
return tb >> 32;
|
||||
}
|
||||
|
||||
|
@ -117,6 +118,7 @@ uint32_t cpu_ppc_load_decr (CPUState *env)
|
|||
#if defined(DEBUG_TB)
|
||||
printf("%s: 0x%08x\n", __func__, decr);
|
||||
#endif
|
||||
|
||||
return decr;
|
||||
}
|
||||
|
||||
|
@ -146,7 +148,7 @@ static void _cpu_ppc_store_decr (CPUState *env, uint32_t decr,
|
|||
if (is_excp)
|
||||
next += tb_env->decr_next - now;
|
||||
if (next == now)
|
||||
next++;
|
||||
next++;
|
||||
tb_env->decr_next = next;
|
||||
/* Adjust timer */
|
||||
qemu_mod_timer(tb_env->decr_timer, next);
|
||||
|
@ -154,7 +156,7 @@ static void _cpu_ppc_store_decr (CPUState *env, uint32_t decr,
|
|||
* raise an exception.
|
||||
*/
|
||||
if ((value & 0x80000000) && !(decr & 0x80000000))
|
||||
cpu_ppc_decr_excp(env);
|
||||
cpu_ppc_decr_excp(env);
|
||||
}
|
||||
|
||||
void cpu_ppc_store_decr (CPUState *env, uint32_t value)
|
||||
|
@ -177,20 +179,64 @@ ppc_tb_t *cpu_ppc_tb_init (CPUState *env, uint32_t freq)
|
|||
return NULL;
|
||||
env->tb_env = tb_env;
|
||||
if (tb_env->tb_freq == 0 || 1) {
|
||||
tb_env->tb_freq = freq;
|
||||
/* Create new timer */
|
||||
tb_env->decr_timer =
|
||||
tb_env->tb_freq = freq;
|
||||
/* Create new timer */
|
||||
tb_env->decr_timer =
|
||||
qemu_new_timer(vm_clock, &cpu_ppc_decr_cb, env);
|
||||
/* There is a bug in 2.4 kernels:
|
||||
* if a decrementer exception is pending when it enables msr_ee,
|
||||
* it's not ready to handle it...
|
||||
*/
|
||||
_cpu_ppc_store_decr(env, 0xFFFFFFFF, 0xFFFFFFFF, 0);
|
||||
/* There is a bug in Linux 2.4 kernels:
|
||||
* if a decrementer exception is pending when it enables msr_ee,
|
||||
* it's not ready to handle it...
|
||||
*/
|
||||
_cpu_ppc_store_decr(env, 0xFFFFFFFF, 0xFFFFFFFF, 0);
|
||||
}
|
||||
|
||||
return tb_env;
|
||||
}
|
||||
|
||||
/* Specific helpers for POWER & PowerPC 601 RTC */
|
||||
ppc_tb_t *cpu_ppc601_rtc_init (CPUState *env)
|
||||
{
|
||||
return cpu_ppc_tb_init(env, 7812500);
|
||||
}
|
||||
|
||||
void cpu_ppc601_store_rtcu (CPUState *env, uint32_t value)
|
||||
__attribute__ (( alias ("cpu_ppc_store_tbu") ));
|
||||
|
||||
uint32_t cpu_ppc601_load_rtcu (CPUState *env)
|
||||
__attribute__ (( alias ("cpu_ppc_load_tbu") ));
|
||||
|
||||
void cpu_ppc601_store_rtcl (CPUState *env, uint32_t value)
|
||||
{
|
||||
cpu_ppc_store_tbl(env, value & 0x3FFFFF80);
|
||||
}
|
||||
|
||||
uint32_t cpu_ppc601_load_rtcl (CPUState *env)
|
||||
{
|
||||
return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
|
||||
}
|
||||
|
||||
/* Embedded PowerPC timers */
|
||||
target_ulong load_40x_pit (CPUState *env)
|
||||
{
|
||||
/* XXX: TODO */
|
||||
return 0;
|
||||
}
|
||||
|
||||
void store_40x_pit (CPUState *env, target_ulong val)
|
||||
{
|
||||
/* XXX: TODO */
|
||||
}
|
||||
|
||||
void store_booke_tcr (CPUState *env, target_ulong val)
|
||||
{
|
||||
/* XXX: TODO */
|
||||
}
|
||||
|
||||
void store_booke_tsr (CPUState *env, target_ulong val)
|
||||
{
|
||||
/* XXX: TODO */
|
||||
}
|
||||
|
||||
#if 0
|
||||
/*****************************************************************************/
|
||||
/* Handle system reset (for now, just stop emulation) */
|
||||
|
@ -264,6 +310,7 @@ uint32_t NVRAM_get_lword (m48t59_t *nvram, uint32_t addr)
|
|||
tmp |= m48t59_read(nvram, addr + 1) << 16;
|
||||
tmp |= m48t59_read(nvram, addr + 2) << 8;
|
||||
tmp |= m48t59_read(nvram, addr + 3);
|
||||
|
||||
return tmp;
|
||||
}
|
||||
|
||||
|
@ -316,10 +363,10 @@ uint16_t NVRAM_compute_crc (m48t59_t *nvram, uint32_t start, uint32_t count)
|
|||
odd = count & 1;
|
||||
count &= ~1;
|
||||
for (i = 0; i != count; i++) {
|
||||
crc = NVRAM_crc_update(crc, NVRAM_get_word(nvram, start + i));
|
||||
crc = NVRAM_crc_update(crc, NVRAM_get_word(nvram, start + i));
|
||||
}
|
||||
if (odd) {
|
||||
crc = NVRAM_crc_update(crc, NVRAM_get_byte(nvram, start + i) << 8);
|
||||
crc = NVRAM_crc_update(crc, NVRAM_get_byte(nvram, start + i) << 8);
|
||||
}
|
||||
|
||||
return crc;
|
||||
|
|
|
@ -670,18 +670,23 @@ void cpu_ppc_store_tbl (CPUState *env, uint32_t value)
|
|||
{
|
||||
cpu_ppc_store_tb(env, ((uint64_t)cpu_ppc_load_tbl(env) << 32) | value);
|
||||
}
|
||||
|
||||
uint32_t cpu_ppc_load_decr (CPUState *env)
|
||||
|
||||
void cpu_ppc601_store_rtcu (CPUState *env, uint32_t value)
|
||||
__attribute__ (( alias ("cpu_ppc_store_tbu") ));
|
||||
|
||||
uint32_t cpu_ppc601_load_rtcu (CPUState *env)
|
||||
__attribute__ (( alias ("cpu_ppc_load_tbu") ));
|
||||
|
||||
void cpu_ppc601_store_rtcl (CPUState *env, uint32_t value)
|
||||
{
|
||||
/* TO FIX */
|
||||
return -1;
|
||||
cpu_ppc_store_tbl(env, value & 0x3FFFFF80);
|
||||
}
|
||||
|
||||
void cpu_ppc_store_decr (CPUState *env, uint32_t value)
|
||||
|
||||
uint32_t cpu_ppc601_load_rtcl (CPUState *env)
|
||||
{
|
||||
/* TO FIX */
|
||||
return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
|
||||
}
|
||||
|
||||
|
||||
void cpu_loop(CPUPPCState *env)
|
||||
{
|
||||
target_siginfo_t info;
|
||||
|
|
15
monitor.c
15
monitor.c
|
@ -331,6 +331,17 @@ static void do_info_history (void)
|
|||
}
|
||||
}
|
||||
|
||||
#if defined(TARGET_PPC)
|
||||
/* XXX: not implemented in other targets */
|
||||
static void do_info_cpu_stats (void)
|
||||
{
|
||||
CPUState *env;
|
||||
|
||||
env = mon_get_cpu();
|
||||
cpu_dump_statistics(env, NULL, &monitor_fprintf, 0);
|
||||
}
|
||||
#endif
|
||||
|
||||
static void do_quit(void)
|
||||
{
|
||||
exit(0);
|
||||
|
@ -1303,6 +1314,10 @@ static term_cmd_t info_cmds[] = {
|
|||
"", "show which guest mouse is receiving events" },
|
||||
{ "vnc", "", do_info_vnc,
|
||||
"", "show the vnc server status"},
|
||||
#if defined(TARGET_PPC)
|
||||
{ "cpustats", "", do_info_cpu_stats,
|
||||
"", "show CPU statistics", },
|
||||
#endif
|
||||
{ NULL, NULL, },
|
||||
};
|
||||
|
||||
|
|
|
@ -0,0 +1,91 @@
|
|||
PowerPC emulation status.
|
||||
The goal of this file is to provide a reference status to avoid regressions.
|
||||
|
||||
===============================================================================
|
||||
PowerPC core emulation status
|
||||
|
||||
PowerPC CPU known to work (ie booting at least Linux 2.4):
|
||||
* main stream PowerPC cores
|
||||
- PowerPC 603 & derivatives
|
||||
- PowerPC 604 & derivatives
|
||||
- PowerPC 740 & derivatives
|
||||
- PowerPC 750 & derivatives
|
||||
|
||||
PowerPC that should work but are not supported by standard Linux kernel
|
||||
(then remain mostly untested)
|
||||
- PowerPC 745
|
||||
- PowerPC 755
|
||||
|
||||
Work in progress:
|
||||
* embedded PowerPC cores
|
||||
- PowerPC 405
|
||||
- BookE PowerPC
|
||||
- e500 core (Freescale PowerQUICC)
|
||||
* main stream PowerPC cores
|
||||
- PowerPC 601
|
||||
- PowerPC 602
|
||||
|
||||
TODO:
|
||||
* embedded PowerPC cores
|
||||
- PowerPC 401
|
||||
- PowerPC 403
|
||||
- PowerPC 440
|
||||
- PowerPC 460
|
||||
* main stream PowerPC cores
|
||||
- PowerPC 7400 (aka G4)
|
||||
- PowerPC 7410
|
||||
- PowerPC 7450
|
||||
- PowerPC 7455
|
||||
- PowerPC 7457
|
||||
- PowerPC 7457A
|
||||
* original POWER
|
||||
- POWER
|
||||
- POWER2
|
||||
* 64 bits PowerPC cores
|
||||
- PowerPC 620
|
||||
- PowerPC 630 (aka POWER3)
|
||||
- PowerPC 631 (aka POWER3+)
|
||||
- POWER4
|
||||
- POWER4+
|
||||
- POWER5
|
||||
- POWER5+
|
||||
- PowerPC 970
|
||||
* RS64 series
|
||||
- RS64
|
||||
- RS64-II
|
||||
- RS64-III
|
||||
- RS64-IV
|
||||
|
||||
===============================================================================
|
||||
PowerPC microcontrollers emulation status
|
||||
|
||||
TODO:
|
||||
- PowerPC 40x microcontrollers emulation
|
||||
- PowerQUICC microcontrollers emulation
|
||||
|
||||
===============================================================================
|
||||
PowerPC based platforms emulation status
|
||||
|
||||
* PREP platform (RS/6000 7043...) - TO BE CHECKED (broken)
|
||||
- Gentoo Linux live CDROM 1.4
|
||||
- Debian Linux 3.0
|
||||
- Mandrake Linux 9
|
||||
|
||||
* heathrow PowerMac platform (beige PowerMac) - TO BE CHECKED (broken)
|
||||
- Gentoo Linux live CDROM 1.4
|
||||
- Debian Linux 3.0
|
||||
- Mandrake Linux 9
|
||||
|
||||
* mac99 platform (white and blue PowerMac, ...)
|
||||
- Gentoo Linux live CDROM 1.4 - boots, compiles linux kernel
|
||||
- Debian Linux woody - boots from CDROM and HDD
|
||||
- Mandrake Linux 9 - boots from CDROM, freezes during install
|
||||
|
||||
TODO:
|
||||
- MCA based RS/6000 emulation
|
||||
- CHRP emulation (not PowerMac)
|
||||
- PPAR emulation
|
||||
- misc PowerPC reference boards emulation
|
||||
|
||||
===============================================================================
|
||||
(to be completed)
|
926
target-ppc/cpu.h
926
target-ppc/cpu.h
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PowerPC emulation definitions for qemu.
|
||||
*
|
||||
* Copyright (c) 2003-2005 Jocelyn Mayer
|
||||
* Copyright (c) 2003-2007 Jocelyn Mayer
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -24,15 +24,34 @@
|
|||
|
||||
#include "dyngen-exec.h"
|
||||
|
||||
#define TARGET_LONG_BITS 32
|
||||
#include "cpu.h"
|
||||
#include "exec-all.h"
|
||||
|
||||
register struct CPUPPCState *env asm(AREG0);
|
||||
register uint32_t T0 asm(AREG1);
|
||||
register uint32_t T1 asm(AREG2);
|
||||
register uint32_t T2 asm(AREG3);
|
||||
#if TARGET_LONG_BITS > HOST_LONG_BITS
|
||||
/* no registers can be used */
|
||||
#define T0 (env->t0)
|
||||
#define T1 (env->t1)
|
||||
#define T2 (env->t2)
|
||||
#else
|
||||
/* This may be more efficient if HOST_LONG_BITS > TARGET_LONG_BITS
|
||||
* To be set to one when we'll be sure it does not cause bugs....
|
||||
*/
|
||||
#if 0
|
||||
register unsigned long T0 asm(AREG1);
|
||||
register unsigned long T1 asm(AREG2);
|
||||
register unsigned long T2 asm(AREG3);
|
||||
#else
|
||||
register target_ulong T0 asm(AREG1);
|
||||
register target_ulong T1 asm(AREG2);
|
||||
register target_ulong T2 asm(AREG3);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* XXX: to clean: remove this mess */
|
||||
#define PARAM(n) ((uint32_t)PARAM##n)
|
||||
#define SPARAM(n) ((int32_t)PARAM##n)
|
||||
|
||||
#define FT0 (env->ft0)
|
||||
#define FT1 (env->ft1)
|
||||
#define FT2 (env->ft2)
|
||||
|
@ -43,14 +62,28 @@ register uint32_t T2 asm(AREG3);
|
|||
# define RETURN() __asm__ __volatile__("" : : : "memory");
|
||||
#endif
|
||||
|
||||
#include "cpu.h"
|
||||
#include "exec-all.h"
|
||||
|
||||
static inline uint32_t rotl (uint32_t i, int n)
|
||||
static inline target_ulong rotl8 (target_ulong i, int n)
|
||||
{
|
||||
return ((i << n) | (i >> (32 - n)));
|
||||
return (((uint8_t)i << n) | ((uint8_t)i >> (8 - n)));
|
||||
}
|
||||
|
||||
static inline target_ulong rotl16 (target_ulong i, int n)
|
||||
{
|
||||
return (((uint16_t)i << n) | ((uint16_t)i >> (16 - n)));
|
||||
}
|
||||
|
||||
static inline target_ulong rotl32 (target_ulong i, int n)
|
||||
{
|
||||
return (((uint32_t)i << n) | ((uint32_t)i >> (32 - n)));
|
||||
}
|
||||
|
||||
#if defined(TARGET_PPC64)
|
||||
static inline target_ulong rotl64 (target_ulong i, int n)
|
||||
{
|
||||
return (((uint64_t)i << n) | ((uint64_t)i >> (64 - n)));
|
||||
}
|
||||
#endif
|
||||
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
#include "softmmu_exec.h"
|
||||
#endif /* !defined(CONFIG_USER_ONLY) */
|
||||
|
@ -58,23 +91,14 @@ static inline uint32_t rotl (uint32_t i, int n)
|
|||
void do_raise_exception_err (uint32_t exception, int error_code);
|
||||
void do_raise_exception (uint32_t exception);
|
||||
|
||||
void do_sraw(void);
|
||||
int get_physical_address (CPUState *env, mmu_ctx_t *ctx, target_ulong vaddr,
|
||||
int rw, int access_type, int check_BATs);
|
||||
|
||||
void do_fctiw (void);
|
||||
void do_fctiwz (void);
|
||||
void do_fnmadd (void);
|
||||
void do_fnmsub (void);
|
||||
void do_fsqrt (void);
|
||||
void do_fres (void);
|
||||
void do_frsqrte (void);
|
||||
void do_fsel (void);
|
||||
void do_fcmpu (void);
|
||||
void do_fcmpo (void);
|
||||
|
||||
void do_check_reservation (void);
|
||||
void do_icbi (void);
|
||||
void do_tlbia (void);
|
||||
void do_tlbie (void);
|
||||
void ppc6xx_tlb_invalidate_all (CPUState *env);
|
||||
void ppc6xx_tlb_invalidate_virt (CPUState *env, target_ulong eaddr,
|
||||
int is_code);
|
||||
void ppc6xx_tlb_store (CPUState *env, target_ulong EPN, int way, int is_code,
|
||||
target_ulong pte0, target_ulong pte1);
|
||||
|
||||
static inline void env_to_regs(void)
|
||||
{
|
||||
|
@ -84,7 +108,7 @@ static inline void regs_to_env(void)
|
|||
{
|
||||
}
|
||||
|
||||
int cpu_ppc_handle_mmu_fault (CPUState *env, uint32_t address, int rw,
|
||||
int cpu_ppc_handle_mmu_fault (CPUState *env, target_ulong address, int rw,
|
||||
int is_user, int is_softmmu);
|
||||
|
||||
#endif /* !defined (__PPC_H__) */
|
||||
|
|
1091
target-ppc/helper.c
1091
target-ppc/helper.c
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,79 @@
|
|||
static const uint8_t mfrom_ROM_table[602] =
|
||||
{
|
||||
77, 77, 76, 76, 75, 75, 74, 74,
|
||||
73, 73, 72, 72, 71, 71, 70, 70,
|
||||
69, 69, 68, 68, 68, 67, 67, 66,
|
||||
66, 65, 65, 64, 64, 64, 63, 63,
|
||||
62, 62, 61, 61, 61, 60, 60, 59,
|
||||
59, 58, 58, 58, 57, 57, 56, 56,
|
||||
56, 55, 55, 54, 54, 54, 53, 53,
|
||||
53, 52, 52, 51, 51, 51, 50, 50,
|
||||
50, 49, 49, 49, 48, 48, 47, 47,
|
||||
47, 46, 46, 46, 45, 45, 45, 44,
|
||||
44, 44, 43, 43, 43, 42, 42, 42,
|
||||
42, 41, 41, 41, 40, 40, 40, 39,
|
||||
39, 39, 39, 38, 38, 38, 37, 37,
|
||||
37, 37, 36, 36, 36, 35, 35, 35,
|
||||
35, 34, 34, 34, 34, 33, 33, 33,
|
||||
33, 32, 32, 32, 32, 31, 31, 31,
|
||||
31, 30, 30, 30, 30, 29, 29, 29,
|
||||
29, 28, 28, 28, 28, 28, 27, 27,
|
||||
27, 27, 26, 26, 26, 26, 26, 25,
|
||||
25, 25, 25, 25, 24, 24, 24, 24,
|
||||
24, 23, 23, 23, 23, 23, 23, 22,
|
||||
22, 22, 22, 22, 21, 21, 21, 21,
|
||||
21, 21, 20, 20, 20, 20, 20, 20,
|
||||
19, 19, 19, 19, 19, 19, 19, 18,
|
||||
18, 18, 18, 18, 18, 17, 17, 17,
|
||||
17, 17, 17, 17, 16, 16, 16, 16,
|
||||
16, 16, 16, 16, 15, 15, 15, 15,
|
||||
15, 15, 15, 15, 14, 14, 14, 14,
|
||||
14, 14, 14, 14, 13, 13, 13, 13,
|
||||
13, 13, 13, 13, 13, 12, 12, 12,
|
||||
12, 12, 12, 12, 12, 12, 12, 11,
|
||||
11, 11, 11, 11, 11, 11, 11, 11,
|
||||
11, 11, 10, 10, 10, 10, 10, 10,
|
||||
10, 10, 10, 10, 10, 9, 9, 9,
|
||||
9, 9, 9, 9, 9, 9, 9, 9,
|
||||
9, 9, 8, 8, 8, 8, 8, 8,
|
||||
8, 8, 8, 8, 8, 8, 8, 8,
|
||||
7, 7, 7, 7, 7, 7, 7, 7,
|
||||
7, 7, 7, 7, 7, 7, 7, 7,
|
||||
7, 6, 6, 6, 6, 6, 6, 6,
|
||||
6, 6, 6, 6, 6, 6, 6, 6,
|
||||
6, 6, 6, 6, 5, 5, 5, 5,
|
||||
5, 5, 5, 5, 5, 5, 5, 5,
|
||||
5, 5, 5, 5, 5, 5, 5, 5,
|
||||
5, 5, 5, 4, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 4,
|
||||
4, 4, 4, 4, 4, 4, 4, 3,
|
||||
3, 3, 3, 3, 3, 3, 3, 3,
|
||||
3, 3, 3, 3, 3, 3, 3, 3,
|
||||
3, 3, 3, 3, 3, 3, 3, 3,
|
||||
3, 3, 3, 3, 3, 3, 3, 3,
|
||||
3, 3, 3, 3, 3, 2, 2, 2,
|
||||
2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 2, 2, 2, 2,
|
||||
2, 2, 2, 2, 2, 2, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 1, 1, 1, 1, 1, 1, 1,
|
||||
1, 0,
|
||||
};
|
|
@ -0,0 +1,33 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <math.h>
|
||||
|
||||
int main (void)
|
||||
{
|
||||
double d;
|
||||
uint8_t n;
|
||||
int i;
|
||||
|
||||
printf("static const uint8_t mfrom_ROM_table[602] =\n{\n ");
|
||||
for (i = 0; i < 602; i++) {
|
||||
/* Extremly decomposed:
|
||||
* -T0 / 256
|
||||
* T0 = 256 * log10(10 + 1.0) + 0.5
|
||||
*/
|
||||
d = -i;
|
||||
d /= 256.0;
|
||||
d = exp10(d);
|
||||
d += 1.0;
|
||||
d = log10(d);
|
||||
d *= 256;
|
||||
d += 0.5;
|
||||
n = d;
|
||||
printf("%3d, ", n);
|
||||
if ((i & 7) == 7)
|
||||
printf("\n ");
|
||||
}
|
||||
printf("\n};\n");
|
||||
|
||||
return 0;
|
||||
}
|
904
target-ppc/op.c
904
target-ppc/op.c
File diff suppressed because it is too large
Load Diff
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PowerPC emulation helpers for qemu.
|
||||
*
|
||||
* Copyright (c) 2003-2005 Jocelyn Mayer
|
||||
* Copyright (c) 2003-2007 Jocelyn Mayer
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -30,6 +30,7 @@
|
|||
|
||||
//#define DEBUG_OP
|
||||
//#define DEBUG_EXCEPTIONS
|
||||
//#define DEBUG_SOFTWARE_TLB
|
||||
//#define FLUSH_ALL_TLBS
|
||||
|
||||
#define Ts0 (long)((target_long)T0)
|
||||
|
@ -38,7 +39,7 @@
|
|||
|
||||
/*****************************************************************************/
|
||||
/* Exceptions processing helpers */
|
||||
void cpu_loop_exit(void)
|
||||
void cpu_loop_exit (void)
|
||||
{
|
||||
longjmp(env->jmp_env, 1);
|
||||
}
|
||||
|
@ -50,22 +51,135 @@ void do_raise_exception_err (uint32_t exception, int error_code)
|
|||
#endif
|
||||
switch (exception) {
|
||||
case EXCP_PROGRAM:
|
||||
if (error_code == EXCP_FP && msr_fe0 == 0 && msr_fe1 == 0)
|
||||
return;
|
||||
break;
|
||||
if (error_code == EXCP_FP && msr_fe0 == 0 && msr_fe1 == 0)
|
||||
return;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
env->exception_index = exception;
|
||||
env->error_code = error_code;
|
||||
cpu_loop_exit();
|
||||
}
|
||||
cpu_loop_exit();
|
||||
}
|
||||
|
||||
void do_raise_exception (uint32_t exception)
|
||||
{
|
||||
do_raise_exception_err(exception, 0);
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Registers load and stores */
|
||||
void do_load_cr (void)
|
||||
{
|
||||
T0 = (env->crf[0] << 28) |
|
||||
(env->crf[1] << 24) |
|
||||
(env->crf[2] << 20) |
|
||||
(env->crf[3] << 16) |
|
||||
(env->crf[4] << 12) |
|
||||
(env->crf[5] << 8) |
|
||||
(env->crf[6] << 4) |
|
||||
(env->crf[7] << 0);
|
||||
}
|
||||
|
||||
void do_store_cr (uint32_t mask)
|
||||
{
|
||||
int i, sh;
|
||||
|
||||
for (i = 0, sh = 7; i < 8; i++, sh --) {
|
||||
if (mask & (1 << sh))
|
||||
env->crf[i] = (T0 >> (sh * 4)) & 0xFUL;
|
||||
}
|
||||
}
|
||||
|
||||
void do_load_xer (void)
|
||||
{
|
||||
T0 = (xer_so << XER_SO) |
|
||||
(xer_ov << XER_OV) |
|
||||
(xer_ca << XER_CA) |
|
||||
(xer_bc << XER_BC) |
|
||||
(xer_cmp << XER_CMP);
|
||||
}
|
||||
|
||||
void do_store_xer (void)
|
||||
{
|
||||
xer_so = (T0 >> XER_SO) & 0x01;
|
||||
xer_ov = (T0 >> XER_OV) & 0x01;
|
||||
xer_ca = (T0 >> XER_CA) & 0x01;
|
||||
xer_cmp = (T0 >> XER_CMP) & 0xFF;
|
||||
xer_bc = (T0 >> XER_BC) & 0x3F;
|
||||
}
|
||||
|
||||
void do_load_fpscr (void)
|
||||
{
|
||||
/* The 32 MSB of the target fpr are undefined.
|
||||
* They'll be zero...
|
||||
*/
|
||||
union {
|
||||
float64 d;
|
||||
struct {
|
||||
uint32_t u[2];
|
||||
} s;
|
||||
} u;
|
||||
int i;
|
||||
|
||||
#ifdef WORDS_BIGENDIAN
|
||||
#define WORD0 0
|
||||
#define WORD1 1
|
||||
#else
|
||||
#define WORD0 1
|
||||
#define WORD1 0
|
||||
#endif
|
||||
u.s.u[WORD0] = 0;
|
||||
u.s.u[WORD1] = 0;
|
||||
for (i = 0; i < 8; i++)
|
||||
u.s.u[WORD1] |= env->fpscr[i] << (4 * i);
|
||||
FT0 = u.d;
|
||||
}
|
||||
|
||||
void do_store_fpscr (uint32_t mask)
|
||||
{
|
||||
/*
|
||||
* We use only the 32 LSB of the incoming fpr
|
||||
*/
|
||||
union {
|
||||
double d;
|
||||
struct {
|
||||
uint32_t u[2];
|
||||
} s;
|
||||
} u;
|
||||
int i, rnd_type;
|
||||
|
||||
u.d = FT0;
|
||||
if (mask & 0x80)
|
||||
env->fpscr[0] = (env->fpscr[0] & 0x9) | ((u.s.u[WORD1] >> 28) & ~0x9);
|
||||
for (i = 1; i < 7; i++) {
|
||||
if (mask & (1 << (7 - i)))
|
||||
env->fpscr[i] = (u.s.u[WORD1] >> (4 * (7 - i))) & 0xF;
|
||||
}
|
||||
/* TODO: update FEX & VX */
|
||||
/* Set rounding mode */
|
||||
switch (env->fpscr[0] & 0x3) {
|
||||
case 0:
|
||||
/* Best approximation (round to nearest) */
|
||||
rnd_type = float_round_nearest_even;
|
||||
break;
|
||||
case 1:
|
||||
/* Smaller magnitude (round toward zero) */
|
||||
rnd_type = float_round_to_zero;
|
||||
break;
|
||||
case 2:
|
||||
/* Round toward +infinite */
|
||||
rnd_type = float_round_up;
|
||||
break;
|
||||
default:
|
||||
case 3:
|
||||
/* Round toward -infinite */
|
||||
rnd_type = float_round_down;
|
||||
break;
|
||||
}
|
||||
set_float_rounding_mode(rnd_type, &env->fp_status);
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Fixed point operations helpers */
|
||||
void do_addo (void)
|
||||
|
@ -301,21 +415,21 @@ void do_sraw (void)
|
|||
if (likely(T1 != 0)) {
|
||||
ret = (int32_t)T0 >> (T1 & 0x1fUL);
|
||||
if (likely(ret >= 0 || ((int32_t)T0 & ((1 << T1) - 1)) == 0)) {
|
||||
xer_ca = 0;
|
||||
xer_ca = 0;
|
||||
} else {
|
||||
xer_ca = 1;
|
||||
xer_ca = 1;
|
||||
}
|
||||
} else {
|
||||
ret = T0;
|
||||
ret = T0;
|
||||
xer_ca = 0;
|
||||
}
|
||||
} else {
|
||||
ret = (-1) * ((uint32_t)T0 >> 31);
|
||||
if (likely(ret >= 0 || ((uint32_t)T0 & ~0x80000000UL) == 0)) {
|
||||
xer_ca = 0;
|
||||
} else {
|
||||
} else {
|
||||
xer_ca = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
T0 = ret;
|
||||
}
|
||||
|
@ -330,7 +444,7 @@ void do_fctiw (void)
|
|||
} p;
|
||||
|
||||
/* XXX: higher bits are not supposed to be significant.
|
||||
* to make tests easier, return the same as a real PowerPC 750 (aka G3)
|
||||
* to make tests easier, return the same as a real PowerPC 750 (aka G3)
|
||||
*/
|
||||
p.i = float64_to_int32(FT0, &env->fp_status);
|
||||
p.i |= 0xFFF80000ULL << 32;
|
||||
|
@ -381,7 +495,7 @@ void do_fres (void)
|
|||
} p;
|
||||
|
||||
if (likely(isnormal(FT0))) {
|
||||
FT0 = (float)(1.0 / FT0);
|
||||
FT0 = float32_div(1.0, FT0, &env->fp_status);
|
||||
} else {
|
||||
p.d = FT0;
|
||||
if (p.i == 0x8000000000000000ULL) {
|
||||
|
@ -467,8 +581,8 @@ void do_fcmpo (void)
|
|||
} else {
|
||||
T0 = 0x01UL;
|
||||
env->fpscr[4] |= 0x1;
|
||||
/* I don't know how to test "quiet" nan... */
|
||||
if (0 /* || ! quiet_nan(...) */) {
|
||||
if (!float64_is_signaling_nan(FT0) || !float64_is_signaling_nan(FT1)) {
|
||||
/* Quiet NaN case */
|
||||
env->fpscr[6] |= 0x1;
|
||||
if (!(env->fpscr[1] & 0x8))
|
||||
env->fpscr[4] |= 0x8;
|
||||
|
@ -479,6 +593,7 @@ void do_fcmpo (void)
|
|||
env->fpscr[3] = T0;
|
||||
}
|
||||
|
||||
#if !defined (CONFIG_USER_ONLY)
|
||||
void do_rfi (void)
|
||||
{
|
||||
env->nip = env->spr[SPR_SRR0] & ~0x00000003;
|
||||
|
@ -489,14 +604,15 @@ void do_rfi (void)
|
|||
#endif
|
||||
env->interrupt_request |= CPU_INTERRUPT_EXITTB;
|
||||
}
|
||||
#endif
|
||||
|
||||
void do_tw (uint32_t cmp, int flags)
|
||||
void do_tw (int flags)
|
||||
{
|
||||
if (!likely(!((Ts0 < (int32_t)cmp && (flags & 0x10)) ||
|
||||
(Ts0 > (int32_t)cmp && (flags & 0x08)) ||
|
||||
(Ts0 == (int32_t)cmp && (flags & 0x04)) ||
|
||||
(T0 < cmp && (flags & 0x02)) ||
|
||||
(T0 > cmp && (flags & 0x01)))))
|
||||
if (!likely(!((Ts0 < Ts1 && (flags & 0x10)) ||
|
||||
(Ts0 > Ts1 && (flags & 0x08)) ||
|
||||
(Ts0 == Ts1 && (flags & 0x04)) ||
|
||||
(T0 < T1 && (flags & 0x02)) ||
|
||||
(T0 > T1 && (flags & 0x01)))))
|
||||
do_raise_exception_err(EXCP_PROGRAM, EXCP_TRAP);
|
||||
}
|
||||
|
||||
|
@ -519,22 +635,313 @@ void do_icbi (void)
|
|||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
/* MMU related helpers */
|
||||
/* TLB invalidation helpers */
|
||||
void do_tlbia (void)
|
||||
/* PowerPC 601 specific instructions (POWER bridge) */
|
||||
void do_POWER_abso (void)
|
||||
{
|
||||
tlb_flush(env, 1);
|
||||
if (T0 == INT32_MIN) {
|
||||
T0 = INT32_MAX;
|
||||
xer_ov = 1;
|
||||
xer_so = 1;
|
||||
} else {
|
||||
T0 = -T0;
|
||||
xer_ov = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void do_tlbie (void)
|
||||
void do_POWER_clcs (void)
|
||||
{
|
||||
#if !defined(FLUSH_ALL_TLBS)
|
||||
tlb_flush_page(env, T0);
|
||||
#else
|
||||
do_tlbia();
|
||||
switch (T0) {
|
||||
case 0x0CUL:
|
||||
/* Instruction cache line size */
|
||||
T0 = ICACHE_LINE_SIZE;
|
||||
break;
|
||||
case 0x0DUL:
|
||||
/* Data cache line size */
|
||||
T0 = DCACHE_LINE_SIZE;
|
||||
break;
|
||||
case 0x0EUL:
|
||||
/* Minimum cache line size */
|
||||
T0 = ICACHE_LINE_SIZE < DCACHE_LINE_SIZE ?
|
||||
ICACHE_LINE_SIZE : DCACHE_LINE_SIZE;
|
||||
break;
|
||||
case 0x0FUL:
|
||||
/* Maximum cache line size */
|
||||
T0 = ICACHE_LINE_SIZE > DCACHE_LINE_SIZE ?
|
||||
ICACHE_LINE_SIZE : DCACHE_LINE_SIZE;
|
||||
break;
|
||||
default:
|
||||
/* Undefined */
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void do_POWER_div (void)
|
||||
{
|
||||
uint64_t tmp;
|
||||
|
||||
if ((Ts0 == INT32_MIN && Ts1 == -1) || Ts1 == 0) {
|
||||
T0 = (long)((-1) * (T0 >> 31));
|
||||
env->spr[SPR_MQ] = 0;
|
||||
} else {
|
||||
tmp = ((uint64_t)T0 << 32) | env->spr[SPR_MQ];
|
||||
env->spr[SPR_MQ] = tmp % T1;
|
||||
T0 = tmp / Ts1;
|
||||
}
|
||||
}
|
||||
|
||||
void do_POWER_divo (void)
|
||||
{
|
||||
int64_t tmp;
|
||||
|
||||
if ((Ts0 == INT32_MIN && Ts1 == -1) || Ts1 == 0) {
|
||||
T0 = (long)((-1) * (T0 >> 31));
|
||||
env->spr[SPR_MQ] = 0;
|
||||
xer_ov = 1;
|
||||
xer_so = 1;
|
||||
} else {
|
||||
tmp = ((uint64_t)T0 << 32) | env->spr[SPR_MQ];
|
||||
env->spr[SPR_MQ] = tmp % T1;
|
||||
tmp /= Ts1;
|
||||
if (tmp > (int64_t)INT32_MAX || tmp < (int64_t)INT32_MIN) {
|
||||
xer_ov = 1;
|
||||
xer_so = 1;
|
||||
} else {
|
||||
xer_ov = 0;
|
||||
}
|
||||
T0 = tmp;
|
||||
}
|
||||
}
|
||||
|
||||
void do_POWER_divs (void)
|
||||
{
|
||||
if ((Ts0 == INT32_MIN && Ts1 == -1) || Ts1 == 0) {
|
||||
T0 = (long)((-1) * (T0 >> 31));
|
||||
env->spr[SPR_MQ] = 0;
|
||||
} else {
|
||||
env->spr[SPR_MQ] = T0 % T1;
|
||||
T0 = Ts0 / Ts1;
|
||||
}
|
||||
}
|
||||
|
||||
void do_POWER_divso (void)
|
||||
{
|
||||
if ((Ts0 == INT32_MIN && Ts1 == -1) || Ts1 == 0) {
|
||||
T0 = (long)((-1) * (T0 >> 31));
|
||||
env->spr[SPR_MQ] = 0;
|
||||
xer_ov = 1;
|
||||
xer_so = 1;
|
||||
} else {
|
||||
T0 = Ts0 / Ts1;
|
||||
env->spr[SPR_MQ] = Ts0 % Ts1;
|
||||
xer_ov = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void do_POWER_dozo (void)
|
||||
{
|
||||
if (Ts1 > Ts0) {
|
||||
T2 = T0;
|
||||
T0 = T1 - T0;
|
||||
if (((~T2) ^ T1 ^ (-1)) & ((~T2) ^ T0) & (1 << 31)) {
|
||||
xer_so = 1;
|
||||
xer_ov = 1;
|
||||
} else {
|
||||
xer_ov = 0;
|
||||
}
|
||||
} else {
|
||||
T0 = 0;
|
||||
xer_ov = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void do_POWER_maskg (void)
|
||||
{
|
||||
uint32_t ret;
|
||||
|
||||
if (T0 == T1 + 1) {
|
||||
ret = -1;
|
||||
} else {
|
||||
ret = (((uint32_t)(-1)) >> (T0)) ^
|
||||
(((uint32_t)(-1) >> (T1)) >> 1);
|
||||
if (T0 > T1)
|
||||
ret = ~ret;
|
||||
}
|
||||
T0 = ret;
|
||||
}
|
||||
|
||||
void do_POWER_mulo (void)
|
||||
{
|
||||
uint64_t tmp;
|
||||
|
||||
tmp = (uint64_t)T0 * (uint64_t)T1;
|
||||
env->spr[SPR_MQ] = tmp >> 32;
|
||||
T0 = tmp;
|
||||
if (tmp >> 32 != ((uint64_t)T0 >> 16) * ((uint64_t)T1 >> 16)) {
|
||||
xer_ov = 1;
|
||||
xer_so = 1;
|
||||
} else {
|
||||
xer_ov = 0;
|
||||
}
|
||||
}
|
||||
|
||||
#if !defined (CONFIG_USER_ONLY)
|
||||
void do_POWER_rac (void)
|
||||
{
|
||||
#if 0
|
||||
mmu_ctx_t ctx;
|
||||
|
||||
/* We don't have to generate many instances of this instruction,
|
||||
* as rac is supervisor only.
|
||||
*/
|
||||
if (get_physical_address(env, &ctx, T0, 0, ACCESS_INT, 1) == 0)
|
||||
T0 = ctx.raddr;
|
||||
#endif
|
||||
}
|
||||
|
||||
void do_POWER_rfsvc (void)
|
||||
{
|
||||
env->nip = env->lr & ~0x00000003UL;
|
||||
T0 = env->ctr & 0x0000FFFFUL;
|
||||
do_store_msr(env, T0);
|
||||
#if defined (DEBUG_OP)
|
||||
dump_rfi();
|
||||
#endif
|
||||
env->interrupt_request |= CPU_INTERRUPT_EXITTB;
|
||||
}
|
||||
|
||||
/* PowerPC 601 BAT management helper */
|
||||
void do_store_601_batu (int nr)
|
||||
{
|
||||
do_store_ibatu(env, nr, T0);
|
||||
env->DBAT[0][nr] = env->IBAT[0][nr];
|
||||
env->DBAT[1][nr] = env->IBAT[1][nr];
|
||||
}
|
||||
#endif
|
||||
|
||||
/*****************************************************************************/
|
||||
/* 602 specific instructions */
|
||||
/* mfrom is the most crazy instruction ever seen, imho ! */
|
||||
/* Real implementation uses a ROM table. Do the same */
|
||||
#define USE_MFROM_ROM_TABLE
|
||||
void do_op_602_mfrom (void)
|
||||
{
|
||||
if (likely(T0 < 602)) {
|
||||
#ifdef USE_MFROM_ROM_TABLE
|
||||
#include "mfrom_table.c"
|
||||
T0 = mfrom_ROM_table[T0];
|
||||
#else
|
||||
double d;
|
||||
/* Extremly decomposed:
|
||||
* -T0 / 256
|
||||
* T0 = 256 * log10(10 + 1.0) + 0.5
|
||||
*/
|
||||
d = T0;
|
||||
d = float64_div(d, 256, &env->fp_status);
|
||||
d = float64_chs(d);
|
||||
d = exp10(d); // XXX: use float emulation function
|
||||
d = float64_add(d, 1.0, &env->fp_status);
|
||||
d = log10(d); // XXX: use float emulation function
|
||||
d = float64_mul(d, 256, &env->fp_status);
|
||||
d = float64_add(d, 0.5, &env->fp_status);
|
||||
T0 = float64_round_to_int(d, &env->fp_status);
|
||||
#endif
|
||||
} else {
|
||||
T0 = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Embedded PowerPC specific helpers */
|
||||
void do_405_check_ov (void)
|
||||
{
|
||||
if (likely(((T1 ^ T2) >> 31) || !((T0 ^ T2) >> 31))) {
|
||||
xer_ov = 0;
|
||||
} else {
|
||||
xer_ov = 1;
|
||||
xer_so = 1;
|
||||
}
|
||||
}
|
||||
|
||||
void do_405_check_sat (void)
|
||||
{
|
||||
if (!likely(((T1 ^ T2) >> 31) || !((T0 ^ T2) >> 31))) {
|
||||
/* Saturate result */
|
||||
if (T2 >> 31) {
|
||||
T0 = INT32_MIN;
|
||||
} else {
|
||||
T0 = INT32_MAX;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
void do_4xx_rfci (void)
|
||||
{
|
||||
env->nip = env->spr[SPR_40x_SRR2];
|
||||
T0 = env->spr[SPR_40x_SRR3] & ~0xFFFF0000;
|
||||
do_store_msr(env, T0);
|
||||
#if defined (DEBUG_OP)
|
||||
dump_rfi();
|
||||
#endif
|
||||
env->interrupt_request = CPU_INTERRUPT_EXITTB;
|
||||
}
|
||||
|
||||
void do_4xx_load_dcr (int dcrn)
|
||||
{
|
||||
target_ulong val;
|
||||
|
||||
if (unlikely(env->dcr_read == NULL))
|
||||
do_raise_exception_err(EXCP_PROGRAM, EXCP_INVAL | EXCP_INVAL_INVAL);
|
||||
else if (unlikely((*env->dcr_read)(env->dcr_env, dcrn, &val) != 0))
|
||||
do_raise_exception_err(EXCP_PROGRAM, EXCP_INVAL | EXCP_PRIV_REG);
|
||||
else
|
||||
T0 = val;
|
||||
}
|
||||
|
||||
void do_4xx_store_dcr (int dcrn)
|
||||
{
|
||||
if (unlikely(env->dcr_write == NULL))
|
||||
do_raise_exception_err(EXCP_PROGRAM, EXCP_INVAL | EXCP_INVAL_INVAL);
|
||||
else if (unlikely((*env->dcr_write)(env->dcr_env, dcrn, T0) != 0))
|
||||
do_raise_exception_err(EXCP_PROGRAM, EXCP_INVAL | EXCP_PRIV_REG);
|
||||
}
|
||||
|
||||
void do_load_403_pb (int num)
|
||||
{
|
||||
T0 = env->pb[num];
|
||||
}
|
||||
|
||||
void do_store_403_pb (int num)
|
||||
{
|
||||
if (likely(env->pb[num] != T0)) {
|
||||
env->pb[num] = T0;
|
||||
/* Should be optimized */
|
||||
tlb_flush(env, 1);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
/* 440 specific */
|
||||
void do_440_dlmzb (void)
|
||||
{
|
||||
target_ulong mask;
|
||||
int i;
|
||||
|
||||
i = 1;
|
||||
for (mask = 0xFF000000; mask != 0; mask = mask >> 8) {
|
||||
if ((T0 & mask) == 0)
|
||||
goto done;
|
||||
i++;
|
||||
}
|
||||
for (mask = 0xFF000000; mask != 0; mask = mask >> 8) {
|
||||
if ((T1 & mask) == 0)
|
||||
break;
|
||||
i++;
|
||||
}
|
||||
done:
|
||||
T0 = i;
|
||||
}
|
||||
|
||||
/*****************************************************************************/
|
||||
/* Softmmu support */
|
||||
#if !defined (CONFIG_USER_ONLY)
|
||||
|
@ -570,7 +977,7 @@ void tlb_fill (target_ulong addr, int is_write, int is_user, void *retaddr)
|
|||
saved_env = env;
|
||||
env = cpu_single_env;
|
||||
ret = cpu_ppc_handle_mmu_fault(env, addr, is_write, is_user, 1);
|
||||
if (!likely(ret == 0)) {
|
||||
if (unlikely(ret != 0)) {
|
||||
if (likely(retaddr)) {
|
||||
/* now we have a real cpu fault */
|
||||
pc = (target_phys_addr_t)retaddr;
|
||||
|
@ -579,11 +986,230 @@ void tlb_fill (target_ulong addr, int is_write, int is_user, void *retaddr)
|
|||
/* the PC is inside the translated code. It means that we have
|
||||
a virtual CPU fault */
|
||||
cpu_restore_state(tb, env, pc, NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
do_raise_exception_err(env->exception_index, env->error_code);
|
||||
}
|
||||
env = saved_env;
|
||||
}
|
||||
#endif /* !CONFIG_USER_ONLY */
|
||||
|
||||
/* TLB invalidation helpers */
|
||||
void do_tlbia (void)
|
||||
{
|
||||
if (unlikely(PPC_MMU(env) == PPC_FLAGS_MMU_SOFT_6xx)) {
|
||||
ppc6xx_tlb_invalidate_all(env);
|
||||
} else if (unlikely(PPC_MMU(env) == PPC_FLAGS_MMU_SOFT_4xx)) {
|
||||
/* XXX: TODO */
|
||||
#if 0
|
||||
ppcbooke_tlb_invalidate_all(env);
|
||||
#endif
|
||||
} else {
|
||||
tlb_flush(env, 1);
|
||||
}
|
||||
}
|
||||
|
||||
void do_tlbie (void)
|
||||
{
|
||||
#if !defined(FLUSH_ALL_TLBS)
|
||||
if (unlikely(PPC_MMU(env) == PPC_FLAGS_MMU_SOFT_6xx)) {
|
||||
ppc6xx_tlb_invalidate_virt(env, T0 & TARGET_PAGE_MASK, 0);
|
||||
if (env->id_tlbs == 1)
|
||||
ppc6xx_tlb_invalidate_virt(env, T0 & TARGET_PAGE_MASK, 1);
|
||||
} else if (unlikely(PPC_MMU(env) == PPC_FLAGS_MMU_SOFT_4xx)) {
|
||||
/* XXX: TODO */
|
||||
#if 0
|
||||
ppcbooke_tlb_invalidate_virt(env, T0 & TARGET_PAGE_MASK,
|
||||
env->spr[SPR_BOOKE_PID]);
|
||||
#endif
|
||||
} else {
|
||||
/* tlbie invalidate TLBs for all segments */
|
||||
T0 &= TARGET_PAGE_MASK;
|
||||
T0 &= ~((target_ulong)-1 << 28);
|
||||
/* XXX: this case should be optimized,
|
||||
* giving a mask to tlb_flush_page
|
||||
*/
|
||||
tlb_flush_page(env, T0 | (0x0 << 28));
|
||||
tlb_flush_page(env, T0 | (0x1 << 28));
|
||||
tlb_flush_page(env, T0 | (0x2 << 28));
|
||||
tlb_flush_page(env, T0 | (0x3 << 28));
|
||||
tlb_flush_page(env, T0 | (0x4 << 28));
|
||||
tlb_flush_page(env, T0 | (0x5 << 28));
|
||||
tlb_flush_page(env, T0 | (0x6 << 28));
|
||||
tlb_flush_page(env, T0 | (0x7 << 28));
|
||||
tlb_flush_page(env, T0 | (0x8 << 28));
|
||||
tlb_flush_page(env, T0 | (0x9 << 28));
|
||||
tlb_flush_page(env, T0 | (0xA << 28));
|
||||
tlb_flush_page(env, T0 | (0xB << 28));
|
||||
tlb_flush_page(env, T0 | (0xC << 28));
|
||||
tlb_flush_page(env, T0 | (0xD << 28));
|
||||
tlb_flush_page(env, T0 | (0xE << 28));
|
||||
tlb_flush_page(env, T0 | (0xF << 28));
|
||||
}
|
||||
#else
|
||||
do_tlbia();
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Software driven TLBs management */
|
||||
/* PowerPC 602/603 software TLB load instructions helpers */
|
||||
void do_load_6xx_tlb (int is_code)
|
||||
{
|
||||
target_ulong RPN, CMP, EPN;
|
||||
int way;
|
||||
|
||||
RPN = env->spr[SPR_RPA];
|
||||
if (is_code) {
|
||||
CMP = env->spr[SPR_ICMP];
|
||||
EPN = env->spr[SPR_IMISS];
|
||||
} else {
|
||||
CMP = env->spr[SPR_DCMP];
|
||||
EPN = env->spr[SPR_DMISS];
|
||||
}
|
||||
way = (env->spr[SPR_SRR1] >> 17) & 1;
|
||||
#if defined (DEBUG_SOFTWARE_TLB)
|
||||
if (loglevel != 0) {
|
||||
fprintf(logfile, "%s: EPN %08lx %08lx PTE0 %08lx PTE1 %08lx way %d\n",
|
||||
__func__, (unsigned long)T0, (unsigned long)EPN,
|
||||
(unsigned long)CMP, (unsigned long)RPN, way);
|
||||
}
|
||||
#endif
|
||||
/* Store this TLB */
|
||||
ppc6xx_tlb_store(env, T0 & TARGET_PAGE_MASK, way, is_code, CMP, RPN);
|
||||
}
|
||||
|
||||
/* Helpers for 4xx TLB management */
|
||||
void do_4xx_tlbia (void)
|
||||
{
|
||||
#if 0
|
||||
ppc_tlb_t *tlb;
|
||||
target_ulong page, end;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < 64; i++) {
|
||||
tlb = &env->tlb[i];
|
||||
if (tlb->prot & PAGE_VALID) {
|
||||
end = tlb->EPN + tlb->size;
|
||||
for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE)
|
||||
tlb_flush_page(env, page);
|
||||
tlb->prot &= ~PAGE_VALID;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void do_4xx_tlbre_lo (void)
|
||||
{
|
||||
#if 0
|
||||
ppc_tlb_t *tlb;
|
||||
|
||||
T0 &= 0x3F;
|
||||
tlb = &env->tlb[T0];
|
||||
T0 = tlb->stor[0];
|
||||
env->spr[SPR_40x_PID] = tlb->pid;
|
||||
#endif
|
||||
}
|
||||
|
||||
void do_4xx_tlbre_hi (void)
|
||||
{
|
||||
#if 0
|
||||
ppc_tlb_t *tlb;
|
||||
|
||||
T0 &= 0x3F;
|
||||
tlb = &env->tlb[T0];
|
||||
T0 = tlb->stor[1];
|
||||
#endif
|
||||
}
|
||||
|
||||
static int tlb_4xx_search (target_ulong virtual)
|
||||
{
|
||||
#if 0
|
||||
ppc_tlb_t *tlb;
|
||||
target_ulong base, mask;
|
||||
int i, ret;
|
||||
|
||||
/* Default return value is no match */
|
||||
ret = -1;
|
||||
for (i = 0; i < 64; i++) {
|
||||
tlb = &env->tlb[i];
|
||||
/* Check TLB validity */
|
||||
if (!(tlb->prot & PAGE_VALID))
|
||||
continue;
|
||||
/* Check TLB PID vs current PID */
|
||||
if (tlb->pid != 0 && tlb->pid != env->spr[SPR_40x_PID])
|
||||
continue;
|
||||
/* Check TLB address vs virtual address */
|
||||
base = tlb->EPN;
|
||||
mask = ~(tlb->size - 1);
|
||||
if ((base & mask) != (virtual & mask))
|
||||
continue;
|
||||
ret = i;
|
||||
break;
|
||||
}
|
||||
|
||||
return ret;
|
||||
#else
|
||||
return -1;
|
||||
#endif
|
||||
}
|
||||
|
||||
void do_4xx_tlbsx (void)
|
||||
{
|
||||
T0 = tlb_4xx_search(T0);
|
||||
}
|
||||
|
||||
void do_4xx_tlbsx_ (void)
|
||||
{
|
||||
int tmp = xer_ov;
|
||||
|
||||
T0 = tlb_4xx_search(T0);
|
||||
if (T0 != -1)
|
||||
tmp |= 0x02;
|
||||
env->crf[0] = tmp;
|
||||
}
|
||||
|
||||
void do_4xx_tlbwe_lo (void)
|
||||
{
|
||||
#if 0
|
||||
ppc_tlb_t *tlb;
|
||||
target_ulong page, end;
|
||||
|
||||
T0 &= 0x3F;
|
||||
tlb = &env->tlb[T0];
|
||||
/* Invalidate previous TLB (if it's valid) */
|
||||
if (tlb->prot & PAGE_VALID) {
|
||||
end = tlb->EPN + tlb->size;
|
||||
for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE)
|
||||
tlb_flush_page(env, page);
|
||||
}
|
||||
tlb->size = 1024 << (2 * ((T1 >> 7) & 0x7));
|
||||
tlb->EPN = (T1 & 0xFFFFFC00) & ~(tlb->size - 1);
|
||||
if (T1 & 0x400)
|
||||
tlb->prot |= PAGE_VALID;
|
||||
else
|
||||
tlb->prot &= ~PAGE_VALID;
|
||||
tlb->pid = env->spr[SPR_BOOKE_PID]; /* PID */
|
||||
/* Invalidate new TLB (if valid) */
|
||||
if (tlb->prot & PAGE_VALID) {
|
||||
end = tlb->EPN + tlb->size;
|
||||
for (page = tlb->EPN; page < end; page += TARGET_PAGE_SIZE)
|
||||
tlb_flush_page(env, page);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
void do_4xx_tlbwe_hi (void)
|
||||
{
|
||||
#if 0
|
||||
ppc_tlb_t *tlb;
|
||||
|
||||
T0 &= 0x3F;
|
||||
tlb = &env->tlb[T0];
|
||||
tlb->RPN = T1 & 0xFFFFFC00;
|
||||
tlb->prot = PAGE_READ;
|
||||
if (T1 & 0x200)
|
||||
tlb->prot |= PAGE_EXEC;
|
||||
if (T1 & 0x100)
|
||||
tlb->prot |= PAGE_WRITE;
|
||||
#endif
|
||||
}
|
||||
#endif /* !CONFIG_USER_ONLY */
|
||||
|
|
|
@ -0,0 +1,132 @@
|
|||
/*
|
||||
* PowerPC emulation helpers header for qemu.
|
||||
*
|
||||
* Copyright (c) 2003-2007 Jocelyn Mayer
|
||||
*
|
||||
* 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(MEMSUFFIX)
|
||||
|
||||
/* Memory load/store helpers */
|
||||
void glue(do_lsw, MEMSUFFIX) (int dst);
|
||||
void glue(do_lsw_le, MEMSUFFIX) (int dst);
|
||||
void glue(do_stsw, MEMSUFFIX) (int src);
|
||||
void glue(do_stsw_le, MEMSUFFIX) (int src);
|
||||
void glue(do_lmw, MEMSUFFIX) (int dst);
|
||||
void glue(do_lmw_le, MEMSUFFIX) (int dst);
|
||||
void glue(do_stmw, MEMSUFFIX) (int src);
|
||||
void glue(do_stmw_le, MEMSUFFIX) (int src);
|
||||
void glue(do_POWER_lscbx, MEMSUFFIX) (int dest, int ra, int rb);
|
||||
void glue(do_POWER2_lfq, MEMSUFFIX) (void);
|
||||
void glue(do_POWER2_lfq_le, MEMSUFFIX) (void);
|
||||
void glue(do_POWER2_stfq, MEMSUFFIX) (void);
|
||||
void glue(do_POWER2_stfq_le, MEMSUFFIX) (void);
|
||||
|
||||
#else
|
||||
|
||||
/* Registers load and stores */
|
||||
void do_load_cr (void);
|
||||
void do_store_cr (uint32_t mask);
|
||||
void do_load_xer (void);
|
||||
void do_store_xer (void);
|
||||
void do_load_fpscr (void);
|
||||
void do_store_fpscr (uint32_t mask);
|
||||
|
||||
/* Integer arithmetic helpers */
|
||||
void do_addo (void);
|
||||
void do_addco (void);
|
||||
void do_adde (void);
|
||||
void do_addeo (void);
|
||||
void do_addmeo (void);
|
||||
void do_addzeo (void);
|
||||
void do_divwo (void);
|
||||
void do_divwuo (void);
|
||||
void do_mullwo (void);
|
||||
void do_nego (void);
|
||||
void do_subfo (void);
|
||||
void do_subfco (void);
|
||||
void do_subfe (void);
|
||||
void do_subfeo (void);
|
||||
void do_subfmeo (void);
|
||||
void do_subfzeo (void);
|
||||
void do_sraw(void);
|
||||
|
||||
/* Floating-point arithmetic helpers */
|
||||
void do_fsqrt (void);
|
||||
void do_fres (void);
|
||||
void do_frsqrte (void);
|
||||
void do_fsel (void);
|
||||
void do_fnmadd (void);
|
||||
void do_fnmsub (void);
|
||||
void do_fctiw (void);
|
||||
void do_fctiwz (void);
|
||||
void do_fcmpu (void);
|
||||
void do_fcmpo (void);
|
||||
|
||||
void do_tw (int flags);
|
||||
void do_icbi (void);
|
||||
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
void do_rfi (void);
|
||||
void do_tlbia (void);
|
||||
void do_tlbie (void);
|
||||
void do_load_6xx_tlb (int is_code);
|
||||
#endif
|
||||
|
||||
/* POWER / PowerPC 601 specific helpers */
|
||||
void do_store_601_batu (int nr);
|
||||
void do_POWER_abso (void);
|
||||
void do_POWER_clcs (void);
|
||||
void do_POWER_div (void);
|
||||
void do_POWER_divo (void);
|
||||
void do_POWER_divs (void);
|
||||
void do_POWER_divso (void);
|
||||
void do_POWER_dozo (void);
|
||||
void do_POWER_maskg (void);
|
||||
void do_POWER_mulo (void);
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
void do_POWER_rac (void);
|
||||
void do_POWER_rfsvc (void);
|
||||
#endif
|
||||
|
||||
/* PowerPC 602 specific helper */
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
void do_op_602_mfrom (void);
|
||||
#endif
|
||||
|
||||
/* PowerPC 4xx specific helpers */
|
||||
void do_405_check_ov (void);
|
||||
void do_405_check_sat (void);
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
void do_4xx_load_dcr (int dcrn);
|
||||
void do_4xx_store_dcr (int dcrn);
|
||||
void do_4xx_rfci (void);
|
||||
void do_4xx_tlbre_lo (void);
|
||||
void do_4xx_tlbre_hi (void);
|
||||
void do_4xx_tlbsx (void);
|
||||
void do_4xx_tlbsx_ (void);
|
||||
void do_4xx_tlbwe_lo (void);
|
||||
void do_4xx_tlbwe_hi (void);
|
||||
#endif
|
||||
|
||||
void do_440_dlmzb (void);
|
||||
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
void do_load_403_pb (int num);
|
||||
void do_store_403_pb (int num);
|
||||
#endif
|
||||
|
||||
#endif
|
|
@ -1,20 +1,78 @@
|
|||
/*
|
||||
* PowerPC emulation micro-operations helpers for qemu.
|
||||
*
|
||||
* Copyright (c) 2003-2007 Jocelyn Mayer
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
/* Multiple word / string load and store */
|
||||
static inline target_ulong glue(ld32r, MEMSUFFIX) (target_ulong EA)
|
||||
{
|
||||
uint32_t tmp = glue(ldl, MEMSUFFIX)(EA);
|
||||
return ((tmp & 0xFF000000UL) >> 24) | ((tmp & 0x00FF0000UL) >> 8) |
|
||||
((tmp & 0x0000FF00UL) << 8) | ((tmp & 0x000000FFUL) << 24);
|
||||
}
|
||||
|
||||
static inline void glue(st32r, MEMSUFFIX) (target_ulong EA, target_ulong data)
|
||||
{
|
||||
uint32_t tmp =
|
||||
((data & 0xFF000000UL) >> 24) | ((data & 0x00FF0000UL) >> 8) |
|
||||
((data & 0x0000FF00UL) << 8) | ((data & 0x000000FFUL) << 24);
|
||||
glue(stl, MEMSUFFIX)(EA, tmp);
|
||||
}
|
||||
|
||||
void glue(do_lmw, MEMSUFFIX) (int dst)
|
||||
{
|
||||
for (; dst < 32; dst++, T0 += 4) {
|
||||
ugpr(dst) = glue(ldl, MEMSUFFIX)(T0);
|
||||
}
|
||||
}
|
||||
|
||||
void glue(do_stmw, MEMSUFFIX) (int src)
|
||||
{
|
||||
for (; src < 32; src++, T0 += 4) {
|
||||
glue(stl, MEMSUFFIX)(T0, ugpr(src));
|
||||
}
|
||||
}
|
||||
|
||||
void glue(do_lmw_le, MEMSUFFIX) (int dst)
|
||||
{
|
||||
for (; dst < 32; dst++, T0 += 4) {
|
||||
ugpr(dst) = glue(ld32r, MEMSUFFIX)(T0);
|
||||
}
|
||||
}
|
||||
|
||||
void glue(do_stmw_le, MEMSUFFIX) (int src)
|
||||
{
|
||||
for (; src < 32; src++, T0 += 4) {
|
||||
glue(st32r, MEMSUFFIX)(T0, ugpr(src));
|
||||
}
|
||||
}
|
||||
|
||||
void glue(do_lsw, MEMSUFFIX) (int dst)
|
||||
{
|
||||
uint32_t tmp;
|
||||
int sh;
|
||||
|
||||
#if 0
|
||||
if (loglevel > 0) {
|
||||
fprintf(logfile, "%s: addr=0x%08x count=%d reg=%d\n",
|
||||
__func__, T0, T1, dst);
|
||||
}
|
||||
#endif
|
||||
for (; T1 > 3; T1 -= 4, T0 += 4) {
|
||||
ugpr(dst++) = glue(ldl, MEMSUFFIX)(T0);
|
||||
if (dst == 32)
|
||||
if (unlikely(dst == 32))
|
||||
dst = 0;
|
||||
}
|
||||
if (T1 > 0) {
|
||||
if (unlikely(T1 != 0)) {
|
||||
tmp = 0;
|
||||
for (sh = 24; T1 > 0; T1--, T0++, sh -= 8) {
|
||||
tmp |= glue(ldub, MEMSUFFIX)(T0) << sh;
|
||||
|
@ -27,18 +85,12 @@ void glue(do_stsw, MEMSUFFIX) (int src)
|
|||
{
|
||||
int sh;
|
||||
|
||||
#if 0
|
||||
if (loglevel > 0) {
|
||||
fprintf(logfile, "%s: addr=0x%08x count=%d reg=%d\n",
|
||||
__func__, T0, T1, src);
|
||||
}
|
||||
#endif
|
||||
for (; T1 > 3; T1 -= 4, T0 += 4) {
|
||||
glue(stl, MEMSUFFIX)(T0, ugpr(src++));
|
||||
if (src == 32)
|
||||
if (unlikely(src == 32))
|
||||
src = 0;
|
||||
}
|
||||
if (T1 > 0) {
|
||||
if (unlikely(T1 != 0)) {
|
||||
for (sh = 24; T1 > 0; T1--, T0++, sh -= 8)
|
||||
glue(stb, MEMSUFFIX)(T0, (ugpr(src) >> sh) & 0xFF);
|
||||
}
|
||||
|
@ -49,20 +101,12 @@ void glue(do_lsw_le, MEMSUFFIX) (int dst)
|
|||
uint32_t tmp;
|
||||
int sh;
|
||||
|
||||
#if 0
|
||||
if (loglevel > 0) {
|
||||
fprintf(logfile, "%s: addr=0x%08x count=%d reg=%d\n",
|
||||
__func__, T0, T1, dst);
|
||||
}
|
||||
#endif
|
||||
for (; T1 > 3; T1 -= 4, T0 += 4) {
|
||||
tmp = glue(ldl, MEMSUFFIX)(T0);
|
||||
ugpr(dst++) = ((tmp & 0xFF000000) >> 24) | ((tmp & 0x00FF0000) >> 8) |
|
||||
((tmp & 0x0000FF00) << 8) | ((tmp & 0x000000FF) << 24);
|
||||
if (dst == 32)
|
||||
ugpr(dst++) = glue(ld32r, MEMSUFFIX)(T0);
|
||||
if (unlikely(dst == 32))
|
||||
dst = 0;
|
||||
}
|
||||
if (T1 > 0) {
|
||||
if (unlikely(T1 != 0)) {
|
||||
tmp = 0;
|
||||
for (sh = 0; T1 > 0; T1--, T0++, sh += 8) {
|
||||
tmp |= glue(ldub, MEMSUFFIX)(T0) << sh;
|
||||
|
@ -73,28 +117,108 @@ void glue(do_lsw_le, MEMSUFFIX) (int dst)
|
|||
|
||||
void glue(do_stsw_le, MEMSUFFIX) (int src)
|
||||
{
|
||||
uint32_t tmp;
|
||||
int sh;
|
||||
|
||||
#if 0
|
||||
if (loglevel > 0) {
|
||||
fprintf(logfile, "%s: addr=0x%08x count=%d reg=%d\n",
|
||||
__func__, T0, T1, src);
|
||||
}
|
||||
#endif
|
||||
for (; T1 > 3; T1 -= 4, T0 += 4) {
|
||||
tmp = ((ugpr(src++) & 0xFF000000) >> 24);
|
||||
tmp |= ((ugpr(src++) & 0x00FF0000) >> 8);
|
||||
tmp |= ((ugpr(src++) & 0x0000FF00) << 8);
|
||||
tmp |= ((ugpr(src++) & 0x000000FF) << 24);
|
||||
glue(stl, MEMSUFFIX)(T0, tmp);
|
||||
if (src == 32)
|
||||
glue(st32r, MEMSUFFIX)(T0, ugpr(src++));
|
||||
if (unlikely(src == 32))
|
||||
src = 0;
|
||||
}
|
||||
if (T1 > 0) {
|
||||
if (unlikely(T1 != 0)) {
|
||||
for (sh = 0; T1 > 0; T1--, T0++, sh += 8)
|
||||
glue(stb, MEMSUFFIX)(T0, (ugpr(src) >> sh) & 0xFF);
|
||||
}
|
||||
}
|
||||
|
||||
/* PPC 601 specific instructions (POWER bridge) */
|
||||
// XXX: to be tested
|
||||
void glue(do_POWER_lscbx, MEMSUFFIX) (int dest, int ra, int rb)
|
||||
{
|
||||
int i, c, d, reg;
|
||||
|
||||
d = 24;
|
||||
reg = dest;
|
||||
for (i = 0; i < T1; i++) {
|
||||
c = glue(ldub, MEMSUFFIX)(T0++);
|
||||
/* ra (if not 0) and rb are never modified */
|
||||
if (likely(reg != rb && (ra == 0 || reg != ra))) {
|
||||
ugpr(reg) = (ugpr(reg) & ~(0xFF << d)) | (c << d);
|
||||
}
|
||||
if (unlikely(c == T2))
|
||||
break;
|
||||
if (likely(d != 0)) {
|
||||
d -= 8;
|
||||
} else {
|
||||
d = 24;
|
||||
reg++;
|
||||
reg = reg & 0x1F;
|
||||
}
|
||||
}
|
||||
T0 = i;
|
||||
}
|
||||
|
||||
/* XXX: TAGs are not managed */
|
||||
void glue(do_POWER2_lfq, MEMSUFFIX) (void)
|
||||
{
|
||||
FT0 = glue(ldfq, MEMSUFFIX)(T0);
|
||||
FT1 = glue(ldfq, MEMSUFFIX)(T0 + 4);
|
||||
}
|
||||
|
||||
static inline double glue(ldfqr, MEMSUFFIX) (target_ulong EA)
|
||||
{
|
||||
union {
|
||||
double d;
|
||||
uint64_t u;
|
||||
} u;
|
||||
|
||||
u.d = glue(ldfq, MEMSUFFIX)(EA);
|
||||
u.u = ((u.u & 0xFF00000000000000ULL) >> 56) |
|
||||
((u.u & 0x00FF000000000000ULL) >> 40) |
|
||||
((u.u & 0x0000FF0000000000ULL) >> 24) |
|
||||
((u.u & 0x000000FF00000000ULL) >> 8) |
|
||||
((u.u & 0x00000000FF000000ULL) << 8) |
|
||||
((u.u & 0x0000000000FF0000ULL) << 24) |
|
||||
((u.u & 0x000000000000FF00ULL) << 40) |
|
||||
((u.u & 0x00000000000000FFULL) << 56);
|
||||
|
||||
return u.d;
|
||||
}
|
||||
|
||||
void glue(do_POWER2_lfq_le, MEMSUFFIX) (void)
|
||||
{
|
||||
FT0 = glue(ldfqr, MEMSUFFIX)(T0 + 4);
|
||||
FT1 = glue(ldfqr, MEMSUFFIX)(T0);
|
||||
}
|
||||
|
||||
void glue(do_POWER2_stfq, MEMSUFFIX) (void)
|
||||
{
|
||||
glue(stfq, MEMSUFFIX)(T0, FT0);
|
||||
glue(stfq, MEMSUFFIX)(T0 + 4, FT1);
|
||||
}
|
||||
|
||||
static inline void glue(stfqr, MEMSUFFIX) (target_ulong EA, double d)
|
||||
{
|
||||
union {
|
||||
double d;
|
||||
uint64_t u;
|
||||
} u;
|
||||
|
||||
u.d = d;
|
||||
u.u = ((u.u & 0xFF00000000000000ULL) >> 56) |
|
||||
((u.u & 0x00FF000000000000ULL) >> 40) |
|
||||
((u.u & 0x0000FF0000000000ULL) >> 24) |
|
||||
((u.u & 0x000000FF00000000ULL) >> 8) |
|
||||
((u.u & 0x00000000FF000000ULL) << 8) |
|
||||
((u.u & 0x0000000000FF0000ULL) << 24) |
|
||||
((u.u & 0x000000000000FF00ULL) << 40) |
|
||||
((u.u & 0x00000000000000FFULL) << 56);
|
||||
glue(stfq, MEMSUFFIX)(EA, u.d);
|
||||
}
|
||||
|
||||
void glue(do_POWER2_stfq_le, MEMSUFFIX) (void)
|
||||
{
|
||||
glue(stfqr, MEMSUFFIX)(T0 + 4, FT0);
|
||||
glue(stfqr, MEMSUFFIX)(T0, FT1);
|
||||
}
|
||||
|
||||
#undef MEMSUFFIX
|
||||
|
|
|
@ -1,6 +1,22 @@
|
|||
/* External helpers */
|
||||
void glue(do_lsw, MEMSUFFIX) (int dst);
|
||||
void glue(do_stsw, MEMSUFFIX) (int src);
|
||||
/*
|
||||
* PowerPC emulation micro-operations for qemu.
|
||||
*
|
||||
* Copyright (c) 2003-2007 Jocelyn Mayer
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
static inline uint16_t glue(ld16r, MEMSUFFIX) (target_ulong EA)
|
||||
{
|
||||
|
@ -11,7 +27,7 @@ static inline uint16_t glue(ld16r, MEMSUFFIX) (target_ulong EA)
|
|||
static inline int32_t glue(ld16rs, MEMSUFFIX) (target_ulong EA)
|
||||
{
|
||||
int16_t tmp = glue(lduw, MEMSUFFIX)(EA);
|
||||
return ((tmp & 0xFF00) >> 8) | ((tmp & 0x00FF) << 8);
|
||||
return (int16_t)((tmp & 0xFF00) >> 8) | ((tmp & 0x00FF) << 8);
|
||||
}
|
||||
|
||||
static inline uint32_t glue(ld32r, MEMSUFFIX) (target_ulong EA)
|
||||
|
@ -80,41 +96,25 @@ PPC_ST_OP(wbr_le, stl);
|
|||
/*** Integer load and store multiple ***/
|
||||
PPC_OP(glue(lmw, MEMSUFFIX))
|
||||
{
|
||||
int dst = PARAM(1);
|
||||
|
||||
for (; dst < 32; dst++, T0 += 4) {
|
||||
ugpr(dst) = glue(ldl, MEMSUFFIX)(T0);
|
||||
}
|
||||
RETURN();
|
||||
}
|
||||
|
||||
PPC_OP(glue(stmw, MEMSUFFIX))
|
||||
{
|
||||
int src = PARAM(1);
|
||||
|
||||
for (; src < 32; src++, T0 += 4) {
|
||||
glue(stl, MEMSUFFIX)(T0, ugpr(src));
|
||||
}
|
||||
glue(do_lmw, MEMSUFFIX)(PARAM1);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
PPC_OP(glue(lmw_le, MEMSUFFIX))
|
||||
{
|
||||
int dst = PARAM(1);
|
||||
glue(do_lmw_le, MEMSUFFIX)(PARAM1);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
for (; dst < 32; dst++, T0 += 4) {
|
||||
ugpr(dst) = glue(ld32r, MEMSUFFIX)(T0);
|
||||
}
|
||||
PPC_OP(glue(stmw, MEMSUFFIX))
|
||||
{
|
||||
glue(do_stmw, MEMSUFFIX)(PARAM1);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
PPC_OP(glue(stmw_le, MEMSUFFIX))
|
||||
{
|
||||
int src = PARAM(1);
|
||||
|
||||
for (; src < 32; src++, T0 += 4) {
|
||||
glue(st32r, MEMSUFFIX)(T0, ugpr(src));
|
||||
}
|
||||
glue(do_stmw_le, MEMSUFFIX)(PARAM1);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
|
@ -125,7 +125,6 @@ PPC_OP(glue(lswi, MEMSUFFIX))
|
|||
RETURN();
|
||||
}
|
||||
|
||||
void glue(do_lsw_le, MEMSUFFIX) (int dst);
|
||||
PPC_OP(glue(lswi_le, MEMSUFFIX))
|
||||
{
|
||||
glue(do_lsw_le, MEMSUFFIX)(PARAM(1));
|
||||
|
@ -139,9 +138,9 @@ PPC_OP(glue(lswi_le, MEMSUFFIX))
|
|||
*/
|
||||
PPC_OP(glue(lswx, MEMSUFFIX))
|
||||
{
|
||||
if (T1 > 0) {
|
||||
if ((PARAM(1) < PARAM(2) && (PARAM(1) + T1) > PARAM(2)) ||
|
||||
(PARAM(1) < PARAM(3) && (PARAM(1) + T1) > PARAM(3))) {
|
||||
if (unlikely(T1 > 0)) {
|
||||
if (unlikely((PARAM1 < PARAM2 && (PARAM1 + T1) > PARAM2) ||
|
||||
(PARAM1 < PARAM3 && (PARAM1 + T1) > PARAM3))) {
|
||||
do_raise_exception_err(EXCP_PROGRAM, EXCP_INVAL | EXCP_INVAL_LSWX);
|
||||
} else {
|
||||
glue(do_lsw, MEMSUFFIX)(PARAM(1));
|
||||
|
@ -152,9 +151,9 @@ PPC_OP(glue(lswx, MEMSUFFIX))
|
|||
|
||||
PPC_OP(glue(lswx_le, MEMSUFFIX))
|
||||
{
|
||||
if (T1 > 0) {
|
||||
if ((PARAM(1) < PARAM(2) && (PARAM(1) + T1) > PARAM(2)) ||
|
||||
(PARAM(1) < PARAM(3) && (PARAM(1) + T1) > PARAM(3))) {
|
||||
if (unlikely(T1 > 0)) {
|
||||
if (unlikely((PARAM1 < PARAM2 && (PARAM1 + T1) > PARAM2) ||
|
||||
(PARAM1 < PARAM3 && (PARAM1 + T1) > PARAM3))) {
|
||||
do_raise_exception_err(EXCP_PROGRAM, EXCP_INVAL | EXCP_INVAL_LSWX);
|
||||
} else {
|
||||
glue(do_lsw_le, MEMSUFFIX)(PARAM(1));
|
||||
|
@ -169,7 +168,6 @@ PPC_OP(glue(stsw, MEMSUFFIX))
|
|||
RETURN();
|
||||
}
|
||||
|
||||
void glue(do_stsw_le, MEMSUFFIX) (int src);
|
||||
PPC_OP(glue(stsw_le, MEMSUFFIX))
|
||||
{
|
||||
glue(do_stsw_le, MEMSUFFIX)(PARAM(1));
|
||||
|
@ -180,7 +178,7 @@ PPC_OP(glue(stsw_le, MEMSUFFIX))
|
|||
#define PPC_STF_OP(name, op) \
|
||||
PPC_OP(glue(glue(st, name), MEMSUFFIX)) \
|
||||
{ \
|
||||
glue(op, MEMSUFFIX)(T0, FT1); \
|
||||
glue(op, MEMSUFFIX)(T0, FT0); \
|
||||
RETURN(); \
|
||||
}
|
||||
|
||||
|
@ -228,7 +226,7 @@ PPC_STF_OP(fs_le, stflr);
|
|||
#define PPC_LDF_OP(name, op) \
|
||||
PPC_OP(glue(glue(l, name), MEMSUFFIX)) \
|
||||
{ \
|
||||
FT1 = glue(op, MEMSUFFIX)(T0); \
|
||||
FT0 = glue(op, MEMSUFFIX)(T0); \
|
||||
RETURN(); \
|
||||
}
|
||||
|
||||
|
@ -277,22 +275,22 @@ PPC_LDF_OP(fs_le, ldflr);
|
|||
/* Load and set reservation */
|
||||
PPC_OP(glue(lwarx, MEMSUFFIX))
|
||||
{
|
||||
if (T0 & 0x03) {
|
||||
if (unlikely(T0 & 0x03)) {
|
||||
do_raise_exception(EXCP_ALIGN);
|
||||
} else {
|
||||
T1 = glue(ldl, MEMSUFFIX)(T0);
|
||||
regs->reserve = T0;
|
||||
T1 = glue(ldl, MEMSUFFIX)(T0);
|
||||
regs->reserve = T0;
|
||||
}
|
||||
RETURN();
|
||||
}
|
||||
|
||||
PPC_OP(glue(lwarx_le, MEMSUFFIX))
|
||||
{
|
||||
if (T0 & 0x03) {
|
||||
if (unlikely(T0 & 0x03)) {
|
||||
do_raise_exception(EXCP_ALIGN);
|
||||
} else {
|
||||
T1 = glue(ld32r, MEMSUFFIX)(T0);
|
||||
regs->reserve = T0;
|
||||
T1 = glue(ld32r, MEMSUFFIX)(T0);
|
||||
regs->reserve = T0;
|
||||
}
|
||||
RETURN();
|
||||
}
|
||||
|
@ -300,33 +298,33 @@ PPC_OP(glue(lwarx_le, MEMSUFFIX))
|
|||
/* Store with reservation */
|
||||
PPC_OP(glue(stwcx, MEMSUFFIX))
|
||||
{
|
||||
if (T0 & 0x03) {
|
||||
if (unlikely(T0 & 0x03)) {
|
||||
do_raise_exception(EXCP_ALIGN);
|
||||
} else {
|
||||
if (regs->reserve != T0) {
|
||||
if (unlikely(regs->reserve != T0)) {
|
||||
env->crf[0] = xer_ov;
|
||||
} else {
|
||||
glue(stl, MEMSUFFIX)(T0, T1);
|
||||
env->crf[0] = xer_ov | 0x02;
|
||||
}
|
||||
}
|
||||
regs->reserve = 0;
|
||||
regs->reserve = -1;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
PPC_OP(glue(stwcx_le, MEMSUFFIX))
|
||||
{
|
||||
if (T0 & 0x03) {
|
||||
if (unlikely(T0 & 0x03)) {
|
||||
do_raise_exception(EXCP_ALIGN);
|
||||
} else {
|
||||
if (regs->reserve != T0) {
|
||||
if (unlikely(regs->reserve != T0)) {
|
||||
env->crf[0] = xer_ov;
|
||||
} else {
|
||||
glue(st32r, MEMSUFFIX)(T0, T1);
|
||||
env->crf[0] = xer_ov | 0x02;
|
||||
}
|
||||
}
|
||||
regs->reserve = 0;
|
||||
regs->reserve = -1;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
|
@ -340,6 +338,17 @@ PPC_OP(glue(dcbz, MEMSUFFIX))
|
|||
glue(stl, MEMSUFFIX)(T0 + 0x14, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x18, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x1C, 0);
|
||||
#if DCACHE_LINE_SIZE == 64
|
||||
/* XXX: cache line size should be 64 for POWER & PowerPC 601 */
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x20UL, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x24UL, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x28UL, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x2CUL, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x30UL, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x34UL, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x38UL, 0);
|
||||
glue(stl, MEMSUFFIX)(T0 + 0x3CUL, 0);
|
||||
#endif
|
||||
RETURN();
|
||||
}
|
||||
|
||||
|
@ -368,4 +377,41 @@ PPC_OP(glue(ecowx_le, MEMSUFFIX))
|
|||
RETURN();
|
||||
}
|
||||
|
||||
/* XXX: those micro-ops need tests ! */
|
||||
/* PowerPC 601 specific instructions (POWER bridge) */
|
||||
void OPPROTO glue(op_POWER_lscbx, MEMSUFFIX) (void)
|
||||
{
|
||||
/* When byte count is 0, do nothing */
|
||||
if (likely(T1 > 0)) {
|
||||
glue(do_POWER_lscbx, MEMSUFFIX)(PARAM1, PARAM2, PARAM3);
|
||||
}
|
||||
RETURN();
|
||||
}
|
||||
|
||||
/* POWER2 quad load and store */
|
||||
/* XXX: TAGs are not managed */
|
||||
void OPPROTO glue(op_POWER2_lfq, MEMSUFFIX) (void)
|
||||
{
|
||||
glue(do_POWER2_lfq, MEMSUFFIX)();
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void glue(op_POWER2_lfq_le, MEMSUFFIX) (void)
|
||||
{
|
||||
glue(do_POWER2_lfq_le, MEMSUFFIX)();
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_POWER2_stfq, MEMSUFFIX) (void)
|
||||
{
|
||||
glue(do_POWER2_stfq, MEMSUFFIX)();
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_POWER2_stfq_le, MEMSUFFIX) (void)
|
||||
{
|
||||
glue(do_POWER2_stfq_le, MEMSUFFIX)();
|
||||
RETURN();
|
||||
}
|
||||
|
||||
#undef MEMSUFFIX
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PowerPC emulation micro-operations for qemu.
|
||||
*
|
||||
* Copyright (c) 2003-2005 Jocelyn Mayer
|
||||
* Copyright (c) 2003-2007 Jocelyn Mayer
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
|
@ -19,107 +19,97 @@
|
|||
*/
|
||||
|
||||
/* General purpose registers moves */
|
||||
void OPPROTO glue(op_load_gpr_T0_gpr, REG)(void)
|
||||
void OPPROTO glue(op_load_gpr_T0_gpr, REG) (void)
|
||||
{
|
||||
T0 = regs->gpr[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_load_gpr_T1_gpr, REG)(void)
|
||||
void OPPROTO glue(op_load_gpr_T1_gpr, REG) (void)
|
||||
{
|
||||
T1 = regs->gpr[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_load_gpr_T2_gpr, REG)(void)
|
||||
void OPPROTO glue(op_load_gpr_T2_gpr, REG) (void)
|
||||
{
|
||||
T2 = regs->gpr[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_T0_gpr_gpr, REG)(void)
|
||||
void OPPROTO glue(op_store_T0_gpr_gpr, REG) (void)
|
||||
{
|
||||
regs->gpr[REG] = T0;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_T1_gpr_gpr, REG)(void)
|
||||
void OPPROTO glue(op_store_T1_gpr_gpr, REG) (void)
|
||||
{
|
||||
regs->gpr[REG] = T1;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_T2_gpr_gpr, REG)(void)
|
||||
#if 0 // unused
|
||||
void OPPROTO glue(op_store_T2_gpr_gpr, REG) (void)
|
||||
{
|
||||
regs->gpr[REG] = T2;
|
||||
RETURN();
|
||||
}
|
||||
#endif
|
||||
|
||||
#if REG <= 7
|
||||
/* Condition register moves */
|
||||
void OPPROTO glue(op_load_crf_T0_crf, REG)(void)
|
||||
void OPPROTO glue(op_load_crf_T0_crf, REG) (void)
|
||||
{
|
||||
T0 = regs->crf[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_load_crf_T1_crf, REG)(void)
|
||||
void OPPROTO glue(op_load_crf_T1_crf, REG) (void)
|
||||
{
|
||||
T1 = regs->crf[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_T0_crf_crf, REG)(void)
|
||||
void OPPROTO glue(op_store_T0_crf_crf, REG) (void)
|
||||
{
|
||||
regs->crf[REG] = T0;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_T1_crf_crf, REG)(void)
|
||||
void OPPROTO glue(op_store_T1_crf_crf, REG) (void)
|
||||
{
|
||||
regs->crf[REG] = T1;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
/* Floating point condition and status register moves */
|
||||
void OPPROTO glue(op_load_fpscr_T0_fpscr, REG)(void)
|
||||
void OPPROTO glue(op_load_fpscr_T0_fpscr, REG) (void)
|
||||
{
|
||||
T0 = regs->fpscr[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
#if REG == 0
|
||||
void OPPROTO glue(op_store_T0_fpscr_fpscr, REG)(void)
|
||||
void OPPROTO glue(op_store_T0_fpscr_fpscr, REG) (void)
|
||||
{
|
||||
regs->fpscr[REG] = (regs->fpscr[REG] & 0x9) | (T0 & ~0x9);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_T0_fpscri_fpscr, REG)(void)
|
||||
{
|
||||
regs->fpscr[REG] = (regs->fpscr[REG] & ~0x9) | (PARAM(1) & 0x9);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_clear_fpscr_fpscr, REG)(void)
|
||||
void OPPROTO glue(op_clear_fpscr_fpscr, REG) (void)
|
||||
{
|
||||
regs->fpscr[REG] = (regs->fpscr[REG] & 0x9);
|
||||
RETURN();
|
||||
}
|
||||
#else
|
||||
void OPPROTO glue(op_store_T0_fpscr_fpscr, REG)(void)
|
||||
void OPPROTO glue(op_store_T0_fpscr_fpscr, REG) (void)
|
||||
{
|
||||
regs->fpscr[REG] = T0;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_T0_fpscri_fpscr, REG)(void)
|
||||
{
|
||||
regs->fpscr[REG] = PARAM(1);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_clear_fpscr_fpscr, REG)(void)
|
||||
void OPPROTO glue(op_clear_fpscr_fpscr, REG) (void)
|
||||
{
|
||||
regs->fpscr[REG] = 0x0;
|
||||
RETURN();
|
||||
|
@ -129,55 +119,42 @@ void OPPROTO glue(op_clear_fpscr_fpscr, REG)(void)
|
|||
#endif /* REG <= 7 */
|
||||
|
||||
/* floating point registers moves */
|
||||
void OPPROTO glue(op_load_fpr_FT0_fpr, REG)(void)
|
||||
void OPPROTO glue(op_load_fpr_FT0_fpr, REG) (void)
|
||||
{
|
||||
FT0 = env->fpr[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_FT0_fpr_fpr, REG)(void)
|
||||
void OPPROTO glue(op_store_FT0_fpr_fpr, REG) (void)
|
||||
{
|
||||
env->fpr[REG] = FT0;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_load_fpr_FT1_fpr, REG)(void)
|
||||
void OPPROTO glue(op_load_fpr_FT1_fpr, REG) (void)
|
||||
{
|
||||
FT1 = env->fpr[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_FT1_fpr_fpr, REG)(void)
|
||||
void OPPROTO glue(op_store_FT1_fpr_fpr, REG) (void)
|
||||
{
|
||||
env->fpr[REG] = FT1;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_load_fpr_FT2_fpr, REG)(void)
|
||||
void OPPROTO glue(op_load_fpr_FT2_fpr, REG) (void)
|
||||
{
|
||||
FT2 = env->fpr[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_FT2_fpr_fpr, REG)(void)
|
||||
#if 0 // unused
|
||||
void OPPROTO glue(op_store_FT2_fpr_fpr, REG) (void)
|
||||
{
|
||||
env->fpr[REG] = FT2;
|
||||
RETURN();
|
||||
}
|
||||
|
||||
#if REG <= 15
|
||||
/* Segment register moves */
|
||||
void OPPROTO glue(op_load_sr, REG)(void)
|
||||
{
|
||||
T0 = env->sr[REG];
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void OPPROTO glue(op_store_sr, REG)(void)
|
||||
{
|
||||
do_store_sr(env, REG, T0);
|
||||
RETURN();
|
||||
}
|
||||
#endif
|
||||
|
||||
#undef REG
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue