mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
Merge remote-tracking branch 'remotes/aurel/tags/pull-sh4-next-20150612' into staging
sh4 linux-user cpu and hwcap misc optimizations and cleanup convert r2d to new MMIO accessor style # gpg: Signature made Fri Jun 12 11:28:43 2015 BST using RSA key ID 1DDD8C9B # gpg: Good signature from "Aurelien Jarno <aurelien@aurel32.net>" # gpg: aka "Aurelien Jarno <aurelien@jarno.fr>" # gpg: aka "Aurelien Jarno <aurel32@debian.org>" # gpg: WARNING: This key is not certified with a trusted signature! # gpg: There is no indication that the signature belongs to the owner. # Primary key fingerprint: 7746 2642 A9EF 94FD 0F77 196D BA9C 7806 1DDD 8C9B * remotes/aurel/tags/pull-sh4-next-20150612: target-sh4: remove dead code target-sh4: factorize fmov implementation target-sh4: split out Q and M from of SR and optimize div1 target-sh4: optimize negc using add2 and sub2 target-sh4: optimize subc using sub2 target-sh4: optimize addc using add2 target-sh4: Split out T from SR target-sh4: use bit number for SR constants sh4/r2d: convert to new MMIO accessor style linux-user: Add HWCAP for SH4 linux-user: Default sh4 to sh7785 Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
+6
-6
@@ -127,7 +127,7 @@ static void r2d_fpga_irq_set(void *opaque, int n, int level)
|
||||
update_irl(fpga);
|
||||
}
|
||||
|
||||
static uint32_t r2d_fpga_read(void *opaque, hwaddr addr)
|
||||
static uint64_t r2d_fpga_read(void *opaque, hwaddr addr, unsigned int size)
|
||||
{
|
||||
r2d_fpga_t *s = opaque;
|
||||
|
||||
@@ -146,7 +146,7 @@ static uint32_t r2d_fpga_read(void *opaque, hwaddr addr)
|
||||
}
|
||||
|
||||
static void
|
||||
r2d_fpga_write(void *opaque, hwaddr addr, uint32_t value)
|
||||
r2d_fpga_write(void *opaque, hwaddr addr, uint64_t value, unsigned int size)
|
||||
{
|
||||
r2d_fpga_t *s = opaque;
|
||||
|
||||
@@ -170,10 +170,10 @@ r2d_fpga_write(void *opaque, hwaddr addr, uint32_t value)
|
||||
}
|
||||
|
||||
static const MemoryRegionOps r2d_fpga_ops = {
|
||||
.old_mmio = {
|
||||
.read = { r2d_fpga_read, r2d_fpga_read, NULL, },
|
||||
.write = { r2d_fpga_write, r2d_fpga_write, NULL, },
|
||||
},
|
||||
.read = r2d_fpga_read,
|
||||
.write = r2d_fpga_write,
|
||||
.impl.min_access_size = 2,
|
||||
.impl.max_access_size = 2,
|
||||
.endianness = DEVICE_NATIVE_ENDIAN,
|
||||
};
|
||||
|
||||
|
||||
@@ -1075,6 +1075,35 @@ static inline void elf_core_copy_regs(target_elf_gregset_t *regs,
|
||||
#define USE_ELF_CORE_DUMP
|
||||
#define ELF_EXEC_PAGESIZE 4096
|
||||
|
||||
enum {
|
||||
SH_CPU_HAS_FPU = 0x0001, /* Hardware FPU support */
|
||||
SH_CPU_HAS_P2_FLUSH_BUG = 0x0002, /* Need to flush the cache in P2 area */
|
||||
SH_CPU_HAS_MMU_PAGE_ASSOC = 0x0004, /* SH3: TLB way selection bit support */
|
||||
SH_CPU_HAS_DSP = 0x0008, /* SH-DSP: DSP support */
|
||||
SH_CPU_HAS_PERF_COUNTER = 0x0010, /* Hardware performance counters */
|
||||
SH_CPU_HAS_PTEA = 0x0020, /* PTEA register */
|
||||
SH_CPU_HAS_LLSC = 0x0040, /* movli.l/movco.l */
|
||||
SH_CPU_HAS_L2_CACHE = 0x0080, /* Secondary cache / URAM */
|
||||
SH_CPU_HAS_OP32 = 0x0100, /* 32-bit instruction support */
|
||||
SH_CPU_HAS_PTEAEX = 0x0200, /* PTE ASID Extension support */
|
||||
};
|
||||
|
||||
#define ELF_HWCAP get_elf_hwcap()
|
||||
|
||||
static uint32_t get_elf_hwcap(void)
|
||||
{
|
||||
SuperHCPU *cpu = SUPERH_CPU(thread_cpu);
|
||||
uint32_t hwcap = 0;
|
||||
|
||||
hwcap |= SH_CPU_HAS_FPU;
|
||||
|
||||
if (cpu->env.features & SH_FEATURE_SH4A) {
|
||||
hwcap |= SH_CPU_HAS_LLSC;
|
||||
}
|
||||
|
||||
return hwcap;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef TARGET_CRIS
|
||||
|
||||
@@ -3925,6 +3925,8 @@ int main(int argc, char **argv, char **envp)
|
||||
# else
|
||||
cpu_model = "750";
|
||||
# endif
|
||||
#elif defined TARGET_SH4
|
||||
cpu_model = TYPE_SH7785_CPU;
|
||||
#else
|
||||
cpu_model = "any";
|
||||
#endif
|
||||
|
||||
+2
-1
@@ -61,7 +61,8 @@ static void superh_cpu_reset(CPUState *s)
|
||||
env->fpscr = FPSCR_PR; /* value for userspace according to the kernel */
|
||||
set_float_rounding_mode(float_round_nearest_even, &env->fp_status); /* ?! */
|
||||
#else
|
||||
env->sr = SR_MD | SR_RB | SR_BL | SR_I3 | SR_I2 | SR_I1 | SR_I0;
|
||||
env->sr = (1u << SR_MD) | (1u << SR_RB) | (1u << SR_BL) |
|
||||
(1u << SR_I3) | (1u << SR_I2) | (1u << SR_I1) | (1u << SR_I0);
|
||||
env->fpscr = FPSCR_DN | FPSCR_RM_ZERO; /* CPU reset value according to SH4 manual */
|
||||
set_float_rounding_mode(float_round_to_zero, &env->fp_status);
|
||||
set_flush_to_zero(1, &env->fp_status);
|
||||
|
||||
+34
-16
@@ -47,18 +47,18 @@
|
||||
#define TARGET_PHYS_ADDR_SPACE_BITS 32
|
||||
#define TARGET_VIRT_ADDR_SPACE_BITS 32
|
||||
|
||||
#define SR_MD (1 << 30)
|
||||
#define SR_RB (1 << 29)
|
||||
#define SR_BL (1 << 28)
|
||||
#define SR_FD (1 << 15)
|
||||
#define SR_M (1 << 9)
|
||||
#define SR_Q (1 << 8)
|
||||
#define SR_I3 (1 << 7)
|
||||
#define SR_I2 (1 << 6)
|
||||
#define SR_I1 (1 << 5)
|
||||
#define SR_I0 (1 << 4)
|
||||
#define SR_S (1 << 1)
|
||||
#define SR_T (1 << 0)
|
||||
#define SR_MD 30
|
||||
#define SR_RB 29
|
||||
#define SR_BL 28
|
||||
#define SR_FD 15
|
||||
#define SR_M 9
|
||||
#define SR_Q 8
|
||||
#define SR_I3 7
|
||||
#define SR_I2 6
|
||||
#define SR_I1 5
|
||||
#define SR_I0 4
|
||||
#define SR_S 1
|
||||
#define SR_T 0
|
||||
|
||||
#define FPSCR_MASK (0x003fffff)
|
||||
#define FPSCR_FR (1 << 21)
|
||||
@@ -138,7 +138,10 @@ typedef struct CPUSH4State {
|
||||
uint32_t flags; /* general execution flags */
|
||||
uint32_t gregs[24]; /* general registers */
|
||||
float32 fregs[32]; /* floating point registers */
|
||||
uint32_t sr; /* status register */
|
||||
uint32_t sr; /* status register (with T split out) */
|
||||
uint32_t sr_m; /* M bit of status register */
|
||||
uint32_t sr_q; /* Q bit of status register */
|
||||
uint32_t sr_t; /* T bit of status register */
|
||||
uint32_t ssr; /* saved status register */
|
||||
uint32_t spc; /* saved program counter */
|
||||
uint32_t gbr; /* global base register */
|
||||
@@ -234,7 +237,7 @@ void cpu_load_tlb(CPUSH4State * env);
|
||||
#define MMU_USER_IDX 1
|
||||
static inline int cpu_mmu_index (CPUSH4State *env)
|
||||
{
|
||||
return (env->sr & SR_MD) == 0 ? 1 : 0;
|
||||
return (env->sr & (1u << SR_MD)) == 0 ? 1 : 0;
|
||||
}
|
||||
|
||||
#include "exec/cpu-all.h"
|
||||
@@ -331,6 +334,21 @@ static inline int cpu_ptel_pr (uint32_t ptel)
|
||||
|
||||
#define TB_FLAG_PENDING_MOVCA (1 << 4)
|
||||
|
||||
static inline target_ulong cpu_read_sr(CPUSH4State *env)
|
||||
{
|
||||
return env->sr | (env->sr_m << SR_M) |
|
||||
(env->sr_q << SR_Q) |
|
||||
(env->sr_t << SR_T);
|
||||
}
|
||||
|
||||
static inline void cpu_write_sr(CPUSH4State *env, target_ulong sr)
|
||||
{
|
||||
env->sr_m = (sr >> SR_M) & 1;
|
||||
env->sr_q = (sr >> SR_Q) & 1;
|
||||
env->sr_t = (sr >> SR_T) & 1;
|
||||
env->sr = sr & ~((1u << SR_M) | (1u << SR_Q) | (1u << SR_T));
|
||||
}
|
||||
|
||||
static inline void cpu_get_tb_cpu_state(CPUSH4State *env, target_ulong *pc,
|
||||
target_ulong *cs_base, int *flags)
|
||||
{
|
||||
@@ -339,8 +357,8 @@ static inline void cpu_get_tb_cpu_state(CPUSH4State *env, target_ulong *pc,
|
||||
*flags = (env->flags & (DELAY_SLOT | DELAY_SLOT_CONDITIONAL
|
||||
| DELAY_SLOT_TRUE | DELAY_SLOT_CLEARME)) /* Bits 0- 3 */
|
||||
| (env->fpscr & (FPSCR_FR | FPSCR_SZ | FPSCR_PR)) /* Bits 19-21 */
|
||||
| (env->sr & (SR_MD | SR_RB)) /* Bits 29-30 */
|
||||
| (env->sr & SR_FD) /* Bit 15 */
|
||||
| (env->sr & ((1u << SR_MD) | (1u << SR_RB))) /* Bits 29-30 */
|
||||
| (env->sr & (1u << SR_FD)) /* Bit 15 */
|
||||
| (env->movcal_backup ? TB_FLAG_PENDING_MOVCA : 0); /* Bit 4 */
|
||||
}
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ int superh_cpu_gdb_read_register(CPUState *cs, uint8_t *mem_buf, int n)
|
||||
|
||||
switch (n) {
|
||||
case 0 ... 7:
|
||||
if ((env->sr & (SR_MD | SR_RB)) == (SR_MD | SR_RB)) {
|
||||
if ((env->sr & (1u << SR_MD)) && (env->sr & (1u << SR_RB))) {
|
||||
return gdb_get_regl(mem_buf, env->gregs[n + 16]);
|
||||
} else {
|
||||
return gdb_get_regl(mem_buf, env->gregs[n]);
|
||||
@@ -51,7 +51,7 @@ int superh_cpu_gdb_read_register(CPUState *cs, uint8_t *mem_buf, int n)
|
||||
case 21:
|
||||
return gdb_get_regl(mem_buf, env->macl);
|
||||
case 22:
|
||||
return gdb_get_regl(mem_buf, env->sr);
|
||||
return gdb_get_regl(mem_buf, cpu_read_sr(env));
|
||||
case 23:
|
||||
return gdb_get_regl(mem_buf, env->fpul);
|
||||
case 24:
|
||||
@@ -83,7 +83,7 @@ int superh_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
||||
|
||||
switch (n) {
|
||||
case 0 ... 7:
|
||||
if ((env->sr & (SR_MD | SR_RB)) == (SR_MD | SR_RB)) {
|
||||
if ((env->sr & (1u << SR_MD)) && (env->sr & (1u << SR_RB))) {
|
||||
env->gregs[n + 16] = ldl_p(mem_buf);
|
||||
} else {
|
||||
env->gregs[n] = ldl_p(mem_buf);
|
||||
@@ -111,7 +111,7 @@ int superh_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
|
||||
env->macl = ldl_p(mem_buf);
|
||||
break;
|
||||
case 22:
|
||||
env->sr = ldl_p(mem_buf);
|
||||
cpu_write_sr(env, ldl_p(mem_buf));
|
||||
break;
|
||||
case 23:
|
||||
env->fpul = ldl_p(mem_buf);
|
||||
|
||||
+15
-14
@@ -93,7 +93,7 @@ void superh_cpu_do_interrupt(CPUState *cs)
|
||||
do_exp = cs->exception_index != -1;
|
||||
do_irq = do_irq && (cs->exception_index == -1);
|
||||
|
||||
if (env->sr & SR_BL) {
|
||||
if (env->sr & (1u << SR_BL)) {
|
||||
if (do_exp && cs->exception_index != 0x1e0) {
|
||||
cs->exception_index = 0x000; /* masked exception -> reset */
|
||||
}
|
||||
@@ -162,10 +162,10 @@ void superh_cpu_do_interrupt(CPUState *cs)
|
||||
log_cpu_state(cs, 0);
|
||||
}
|
||||
|
||||
env->ssr = env->sr;
|
||||
env->ssr = cpu_read_sr(env);
|
||||
env->spc = env->pc;
|
||||
env->sgr = env->gregs[15];
|
||||
env->sr |= SR_BL | SR_MD | SR_RB;
|
||||
env->sr |= (1u << SR_BL) | (1u << SR_MD) | (1u << SR_RB);
|
||||
|
||||
if (env->flags & (DELAY_SLOT | DELAY_SLOT_CONDITIONAL)) {
|
||||
/* Branch instruction should be executed again before delay slot. */
|
||||
@@ -182,7 +182,7 @@ void superh_cpu_do_interrupt(CPUState *cs)
|
||||
case 0x000:
|
||||
case 0x020:
|
||||
case 0x140:
|
||||
env->sr &= ~SR_FD;
|
||||
env->sr &= ~(1u << SR_FD);
|
||||
env->sr |= 0xf << 4; /* IMASK */
|
||||
env->pc = 0xa0000000;
|
||||
break;
|
||||
@@ -355,23 +355,24 @@ static int get_mmu_address(CPUSH4State * env, target_ulong * physical,
|
||||
int use_asid, n;
|
||||
tlb_t *matching = NULL;
|
||||
|
||||
use_asid = (env->mmucr & MMUCR_SV) == 0 || (env->sr & SR_MD) == 0;
|
||||
use_asid = !(env->mmucr & MMUCR_SV) || !(env->sr & (1u << SR_MD));
|
||||
|
||||
if (rw == 2) {
|
||||
n = find_itlb_entry(env, address, use_asid);
|
||||
if (n >= 0) {
|
||||
matching = &env->itlb[n];
|
||||
if (!(env->sr & SR_MD) && !(matching->pr & 2))
|
||||
if (!(env->sr & (1u << SR_MD)) && !(matching->pr & 2)) {
|
||||
n = MMU_ITLB_VIOLATION;
|
||||
else
|
||||
} else {
|
||||
*prot = PAGE_EXEC;
|
||||
}
|
||||
} else {
|
||||
n = find_utlb_entry(env, address, use_asid);
|
||||
if (n >= 0) {
|
||||
n = copy_utlb_entry_itlb(env, n);
|
||||
matching = &env->itlb[n];
|
||||
if (!(env->sr & SR_MD) && !(matching->pr & 2)) {
|
||||
n = MMU_ITLB_VIOLATION;
|
||||
if (!(env->sr & (1u << SR_MD)) && !(matching->pr & 2)) {
|
||||
n = MMU_ITLB_VIOLATION;
|
||||
} else {
|
||||
*prot = PAGE_READ | PAGE_EXEC;
|
||||
if ((matching->pr & 1) && matching->d) {
|
||||
@@ -388,7 +389,7 @@ static int get_mmu_address(CPUSH4State * env, target_ulong * physical,
|
||||
n = find_utlb_entry(env, address, use_asid);
|
||||
if (n >= 0) {
|
||||
matching = &env->utlb[n];
|
||||
if (!(env->sr & SR_MD) && !(matching->pr & 2)) {
|
||||
if (!(env->sr & (1u << SR_MD)) && !(matching->pr & 2)) {
|
||||
n = (rw == 1) ? MMU_DTLB_VIOLATION_WRITE :
|
||||
MMU_DTLB_VIOLATION_READ;
|
||||
} else if ((rw == 1) && !(matching->pr & 1)) {
|
||||
@@ -421,7 +422,7 @@ static int get_physical_address(CPUSH4State * env, target_ulong * physical,
|
||||
/* P1, P2 and P4 areas do not use translation */
|
||||
if ((address >= 0x80000000 && address < 0xc0000000) ||
|
||||
address >= 0xe0000000) {
|
||||
if (!(env->sr & SR_MD)
|
||||
if (!(env->sr & (1u << SR_MD))
|
||||
&& (address < 0xe0000000 || address >= 0xe4000000)) {
|
||||
/* Unauthorized access in user mode (only store queues are available) */
|
||||
fprintf(stderr, "Unauthorized access\n");
|
||||
@@ -690,7 +691,7 @@ void cpu_sh4_write_mmaped_utlb_addr(CPUSH4State *s, hwaddr addr,
|
||||
uint8_t d = (uint8_t)((mem_value & 0x00000200) >> 9);
|
||||
uint8_t v = (uint8_t)((mem_value & 0x00000100) >> 8);
|
||||
uint8_t asid = (uint8_t)(mem_value & 0x000000ff);
|
||||
int use_asid = (s->mmucr & MMUCR_SV) == 0 || (s->sr & SR_MD) == 0;
|
||||
int use_asid = !(s->mmucr & MMUCR_SV) || !(s->sr & (1u << SR_MD));
|
||||
|
||||
if (associate) {
|
||||
int i;
|
||||
@@ -821,10 +822,10 @@ void cpu_sh4_write_mmaped_utlb_data(CPUSH4State *s, hwaddr addr,
|
||||
int cpu_sh4_is_cached(CPUSH4State * env, target_ulong addr)
|
||||
{
|
||||
int n;
|
||||
int use_asid = (env->mmucr & MMUCR_SV) == 0 || (env->sr & SR_MD) == 0;
|
||||
int use_asid = !(env->mmucr & MMUCR_SV) || !(env->sr & (1u << SR_MD));
|
||||
|
||||
/* check area */
|
||||
if (env->sr & SR_MD) {
|
||||
if (env->sr & (1u << SR_MD)) {
|
||||
/* For previledged mode, P2 and P4 area is not cachable. */
|
||||
if ((0xA0000000 <= addr && addr < 0xC0000000) || 0xE0000000 <= addr)
|
||||
return 0;
|
||||
|
||||
@@ -11,7 +11,6 @@ DEF_HELPER_3(movcal, void, env, i32, i32)
|
||||
DEF_HELPER_1(discard_movcal_backup, void, env)
|
||||
DEF_HELPER_2(ocbi, void, env, i32)
|
||||
|
||||
DEF_HELPER_3(div1, i32, env, i32, i32)
|
||||
DEF_HELPER_3(macl, void, env, i32, i32)
|
||||
DEF_HELPER_3(macw, void, env, i32, i32)
|
||||
|
||||
|
||||
+6
-142
@@ -156,124 +156,6 @@ void helper_ocbi(CPUSH4State *env, uint32_t address)
|
||||
}
|
||||
}
|
||||
|
||||
#define T (env->sr & SR_T)
|
||||
#define Q (env->sr & SR_Q ? 1 : 0)
|
||||
#define M (env->sr & SR_M ? 1 : 0)
|
||||
#define SETT env->sr |= SR_T
|
||||
#define CLRT env->sr &= ~SR_T
|
||||
#define SETQ env->sr |= SR_Q
|
||||
#define CLRQ env->sr &= ~SR_Q
|
||||
#define SETM env->sr |= SR_M
|
||||
#define CLRM env->sr &= ~SR_M
|
||||
|
||||
uint32_t helper_div1(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
|
||||
{
|
||||
uint32_t tmp0, tmp2;
|
||||
uint8_t old_q, tmp1 = 0xff;
|
||||
|
||||
//printf("div1 arg0=0x%08x arg1=0x%08x M=%d Q=%d T=%d\n", arg0, arg1, M, Q, T);
|
||||
old_q = Q;
|
||||
if ((0x80000000 & arg1) != 0)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
tmp2 = arg0;
|
||||
arg1 <<= 1;
|
||||
arg1 |= T;
|
||||
switch (old_q) {
|
||||
case 0:
|
||||
switch (M) {
|
||||
case 0:
|
||||
tmp0 = arg1;
|
||||
arg1 -= tmp2;
|
||||
tmp1 = arg1 > tmp0;
|
||||
switch (Q) {
|
||||
case 0:
|
||||
if (tmp1)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
break;
|
||||
case 1:
|
||||
if (tmp1 == 0)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
tmp0 = arg1;
|
||||
arg1 += tmp2;
|
||||
tmp1 = arg1 < tmp0;
|
||||
switch (Q) {
|
||||
case 0:
|
||||
if (tmp1 == 0)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
break;
|
||||
case 1:
|
||||
if (tmp1)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
switch (M) {
|
||||
case 0:
|
||||
tmp0 = arg1;
|
||||
arg1 += tmp2;
|
||||
tmp1 = arg1 < tmp0;
|
||||
switch (Q) {
|
||||
case 0:
|
||||
if (tmp1)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
break;
|
||||
case 1:
|
||||
if (tmp1 == 0)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
tmp0 = arg1;
|
||||
arg1 -= tmp2;
|
||||
tmp1 = arg1 > tmp0;
|
||||
switch (Q) {
|
||||
case 0:
|
||||
if (tmp1 == 0)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
break;
|
||||
case 1:
|
||||
if (tmp1)
|
||||
SETQ;
|
||||
else
|
||||
CLRQ;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
if (Q == M)
|
||||
SETT;
|
||||
else
|
||||
CLRT;
|
||||
//printf("Output: arg1=0x%08x M=%d Q=%d T=%d\n", arg1, M, Q, T);
|
||||
return arg1;
|
||||
}
|
||||
|
||||
void helper_macl(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
|
||||
{
|
||||
int64_t res;
|
||||
@@ -282,7 +164,7 @@ void helper_macl(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
|
||||
res += (int64_t) (int32_t) arg0 *(int64_t) (int32_t) arg1;
|
||||
env->mach = (res >> 32) & 0xffffffff;
|
||||
env->macl = res & 0xffffffff;
|
||||
if (env->sr & SR_S) {
|
||||
if (env->sr & (1u << SR_S)) {
|
||||
if (res < 0)
|
||||
env->mach |= 0xffff0000;
|
||||
else
|
||||
@@ -298,7 +180,7 @@ void helper_macw(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
|
||||
res += (int64_t) (int16_t) arg0 *(int64_t) (int16_t) arg1;
|
||||
env->mach = (res >> 32) & 0xffffffff;
|
||||
env->macl = res & 0xffffffff;
|
||||
if (env->sr & SR_S) {
|
||||
if (env->sr & (1u << SR_S)) {
|
||||
if (res < -0x80000000) {
|
||||
env->mach = 1;
|
||||
env->macl = 0x80000000;
|
||||
@@ -309,16 +191,6 @@ void helper_macw(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
|
||||
}
|
||||
}
|
||||
|
||||
static inline void set_t(CPUSH4State *env)
|
||||
{
|
||||
env->sr |= SR_T;
|
||||
}
|
||||
|
||||
static inline void clr_t(CPUSH4State *env)
|
||||
{
|
||||
env->sr &= ~SR_T;
|
||||
}
|
||||
|
||||
void helper_ld_fpscr(CPUSH4State *env, uint32_t val)
|
||||
{
|
||||
env->fpscr = val & FPSCR_MASK;
|
||||
@@ -403,10 +275,8 @@ void helper_fcmp_eq_FT(CPUSH4State *env, float32 t0, float32 t1)
|
||||
relation = float32_compare(t0, t1, &env->fp_status);
|
||||
if (unlikely(relation == float_relation_unordered)) {
|
||||
update_fpscr(env, GETPC());
|
||||
} else if (relation == float_relation_equal) {
|
||||
set_t(env);
|
||||
} else {
|
||||
clr_t(env);
|
||||
env->sr_t = (relation == float_relation_equal);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -418,10 +288,8 @@ void helper_fcmp_eq_DT(CPUSH4State *env, float64 t0, float64 t1)
|
||||
relation = float64_compare(t0, t1, &env->fp_status);
|
||||
if (unlikely(relation == float_relation_unordered)) {
|
||||
update_fpscr(env, GETPC());
|
||||
} else if (relation == float_relation_equal) {
|
||||
set_t(env);
|
||||
} else {
|
||||
clr_t(env);
|
||||
env->sr_t = (relation == float_relation_equal);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -433,10 +301,8 @@ void helper_fcmp_gt_FT(CPUSH4State *env, float32 t0, float32 t1)
|
||||
relation = float32_compare(t0, t1, &env->fp_status);
|
||||
if (unlikely(relation == float_relation_unordered)) {
|
||||
update_fpscr(env, GETPC());
|
||||
} else if (relation == float_relation_greater) {
|
||||
set_t(env);
|
||||
} else {
|
||||
clr_t(env);
|
||||
env->sr_t = (relation == float_relation_greater);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -448,10 +314,8 @@ void helper_fcmp_gt_DT(CPUSH4State *env, float64 t0, float64 t1)
|
||||
relation = float64_compare(t0, t1, &env->fp_status);
|
||||
if (unlikely(relation == float_relation_unordered)) {
|
||||
update_fpscr(env, GETPC());
|
||||
} else if (relation == float_relation_greater) {
|
||||
set_t(env);
|
||||
} else {
|
||||
clr_t(env);
|
||||
env->sr_t = (relation == float_relation_greater);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+157
-170
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user