mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-25 19:41:05 +00:00
target/arm: Convert T16, Change processor state
Add a check for ARMv6 in trans_CPS. We had this correct in the T16 path, but had previously forgotten the check on the A32 and T32 paths. Backports commit 20556e7bd6111266fbf1d81e4ff7a89bfa5795a7 from qemu
This commit is contained in:
parent
cc7d3fe9da
commit
692ad18e62
|
@ -29,6 +29,8 @@
|
||||||
&ldst_rr !extern p w u rn rt rm shimm shtype
|
&ldst_rr !extern p w u rn rt rm shimm shtype
|
||||||
&ldst_ri !extern p w u rn rt imm
|
&ldst_ri !extern p w u rn rt imm
|
||||||
&ldst_block !extern rn i b u w list
|
&ldst_block !extern rn i b u w list
|
||||||
|
&setend !extern E
|
||||||
|
&cps !extern mode imod M A I F
|
||||||
|
|
||||||
# Set S if the instruction is outside of an IT block.
|
# Set S if the instruction is outside of an IT block.
|
||||||
%s !function=t16_setflags
|
%s !function=t16_setflags
|
||||||
|
@ -183,3 +185,13 @@ SXTAH 1011 0010 00 ... ... @extend
|
||||||
SXTAB 1011 0010 01 ... ... @extend
|
SXTAB 1011 0010 01 ... ... @extend
|
||||||
UXTAH 1011 0010 10 ... ... @extend
|
UXTAH 1011 0010 10 ... ... @extend
|
||||||
UXTAB 1011 0010 11 ... ... @extend
|
UXTAB 1011 0010 11 ... ... @extend
|
||||||
|
|
||||||
|
# Change processor state
|
||||||
|
|
||||||
|
%imod 4:1 !function=plus_2
|
||||||
|
|
||||||
|
SETEND 1011 0110 010 1 E:1 000 &setend
|
||||||
|
{
|
||||||
|
CPS 1011 0110 011 . 0 A:1 I:1 F:1 &cps mode=0 M=0 %imod
|
||||||
|
CPS_v7m 1011 0110 011 im:1 00 I:1 F:1
|
||||||
|
}
|
||||||
|
|
|
@ -7645,6 +7645,11 @@ static int negate(DisasContext *s, int x)
|
||||||
return -x;
|
return -x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int plus_2(DisasContext *s, int x)
|
||||||
|
{
|
||||||
|
return x + 2;
|
||||||
|
}
|
||||||
|
|
||||||
static int times_2(DisasContext *s, int x)
|
static int times_2(DisasContext *s, int x)
|
||||||
{
|
{
|
||||||
return x * 2;
|
return x * 2;
|
||||||
|
@ -10602,6 +10607,75 @@ static bool trans_SRS(DisasContext *s, arg_SRS *a)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool trans_CPS(DisasContext *s, arg_CPS *a)
|
||||||
|
{
|
||||||
|
uint32_t mask, val;
|
||||||
|
|
||||||
|
if (!ENABLE_ARCH_6 || arm_dc_feature(s, ARM_FEATURE_M)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (IS_USER(s)) {
|
||||||
|
/* Implemented as NOP in user mode. */
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
/* TODO: There are quite a lot of UNPREDICTABLE argument combinations. */
|
||||||
|
|
||||||
|
mask = val = 0;
|
||||||
|
if (a->imod & 2) {
|
||||||
|
if (a->A) {
|
||||||
|
mask |= CPSR_A;
|
||||||
|
}
|
||||||
|
if (a->I) {
|
||||||
|
mask |= CPSR_I;
|
||||||
|
}
|
||||||
|
if (a->F) {
|
||||||
|
mask |= CPSR_F;
|
||||||
|
}
|
||||||
|
if (a->imod & 1) {
|
||||||
|
val |= mask;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (a->M) {
|
||||||
|
mask |= CPSR_M;
|
||||||
|
val |= a->mode;
|
||||||
|
}
|
||||||
|
if (mask) {
|
||||||
|
gen_set_psr_im(s, mask, 0, val);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
static bool trans_CPS_v7m(DisasContext *s, arg_CPS_v7m *a)
|
||||||
|
{
|
||||||
|
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
||||||
|
TCGv_i32 tmp, addr;
|
||||||
|
|
||||||
|
if (!arm_dc_feature(s, ARM_FEATURE_M)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (IS_USER(s)) {
|
||||||
|
/* Implemented as NOP in user mode. */
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
tmp = tcg_const_i32(tcg_ctx, a->im);
|
||||||
|
/* FAULTMASK */
|
||||||
|
if (a->F) {
|
||||||
|
addr = tcg_const_i32(tcg_ctx, 19);
|
||||||
|
gen_helper_v7m_msr(tcg_ctx, tcg_ctx->cpu_env, addr, tmp);
|
||||||
|
tcg_temp_free_i32(tcg_ctx, addr);
|
||||||
|
}
|
||||||
|
/* PRIMASK */
|
||||||
|
if (a->I) {
|
||||||
|
addr = tcg_const_i32(tcg_ctx, 16);
|
||||||
|
gen_helper_v7m_msr(tcg_ctx, tcg_ctx->cpu_env, addr, tmp);
|
||||||
|
tcg_temp_free_i32(tcg_ctx, addr);
|
||||||
|
}
|
||||||
|
tcg_temp_free_i32(tcg_ctx, tmp);
|
||||||
|
gen_lookup_tb(s);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Clear-Exclusive, Barriers
|
* Clear-Exclusive, Barriers
|
||||||
*/
|
*/
|
||||||
|
@ -10661,44 +10735,6 @@ static bool trans_SB(DisasContext *s, arg_SB *a)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool trans_CPS(DisasContext *s, arg_CPS *a)
|
|
||||||
{
|
|
||||||
uint32_t mask, val;
|
|
||||||
|
|
||||||
if (arm_dc_feature(s, ARM_FEATURE_M)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (IS_USER(s)) {
|
|
||||||
/* Implemented as NOP in user mode. */
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
/* TODO: There are quite a lot of UNPREDICTABLE argument combinations. */
|
|
||||||
|
|
||||||
mask = val = 0;
|
|
||||||
if (a->imod & 2) {
|
|
||||||
if (a->A) {
|
|
||||||
mask |= CPSR_A;
|
|
||||||
}
|
|
||||||
if (a->I) {
|
|
||||||
mask |= CPSR_I;
|
|
||||||
}
|
|
||||||
if (a->F) {
|
|
||||||
mask |= CPSR_F;
|
|
||||||
}
|
|
||||||
if (a->imod & 1) {
|
|
||||||
val |= mask;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (a->M) {
|
|
||||||
mask |= CPSR_M;
|
|
||||||
val |= a->mode;
|
|
||||||
}
|
|
||||||
if (mask) {
|
|
||||||
gen_set_psr_im(s, mask, 0, val);
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static bool trans_SETEND(DisasContext *s, arg_SETEND *a)
|
static bool trans_SETEND(DisasContext *s, arg_SETEND *a)
|
||||||
{
|
{
|
||||||
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
||||||
|
@ -11261,51 +11297,8 @@ static void disas_thumb_insn(DisasContext *s, uint32_t insn)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case 6:
|
case 6: /* setend, cps; in decodetree */
|
||||||
switch ((insn >> 5) & 7) {
|
goto illegal_op;
|
||||||
case 2:
|
|
||||||
/* setend */
|
|
||||||
ARCH(6);
|
|
||||||
if (((insn >> 3) & 1) != !!(s->be_data == MO_BE)) {
|
|
||||||
gen_helper_setend(tcg_ctx, tcg_ctx->cpu_env);
|
|
||||||
s->base.is_jmp = DISAS_UPDATE;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
/* cps */
|
|
||||||
ARCH(6);
|
|
||||||
if (IS_USER(s)) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (arm_dc_feature(s, ARM_FEATURE_M)) {
|
|
||||||
tmp = tcg_const_i32(tcg_ctx, (insn & (1 << 4)) != 0);
|
|
||||||
/* FAULTMASK */
|
|
||||||
if (insn & 1) {
|
|
||||||
addr = tcg_const_i32(tcg_ctx, 19);
|
|
||||||
gen_helper_v7m_msr(tcg_ctx, tcg_ctx->cpu_env, addr, tmp);
|
|
||||||
tcg_temp_free_i32(tcg_ctx, addr);
|
|
||||||
}
|
|
||||||
/* PRIMASK */
|
|
||||||
if (insn & 2) {
|
|
||||||
addr = tcg_const_i32(tcg_ctx, 16);
|
|
||||||
gen_helper_v7m_msr(tcg_ctx, tcg_ctx->cpu_env, addr, tmp);
|
|
||||||
tcg_temp_free_i32(tcg_ctx, addr);
|
|
||||||
}
|
|
||||||
tcg_temp_free_i32(tcg_ctx, tmp);
|
|
||||||
gen_lookup_tb(s);
|
|
||||||
} else {
|
|
||||||
if (insn & (1 << 4)) {
|
|
||||||
shift = CPSR_A | CPSR_I | CPSR_F;
|
|
||||||
} else {
|
|
||||||
shift = 0;
|
|
||||||
}
|
|
||||||
gen_set_psr_im(s, ((insn & 7) << 6), 0, shift);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
goto undef;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
goto undef;
|
goto undef;
|
||||||
|
|
Loading…
Reference in a new issue