mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 17:51:11 +00:00
target/arm: Convert TT
Backports commit d449f174e820b15ca1a1f5f3ec19999eeb7da14c from qemu
This commit is contained in:
parent
0e03a1f59c
commit
1b5c72935d
|
@ -508,7 +508,10 @@ STRD_ri_t32 1110 1001 .110 .... .... .... ........ @ldstd_ri8 w=1 p=1
|
||||||
@ldrex_d .... .... .... rn:4 rt:4 rt2:4 .... .... \
|
@ldrex_d .... .... .... rn:4 rt:4 rt2:4 .... .... \
|
||||||
&ldrex imm=0
|
&ldrex imm=0
|
||||||
|
|
||||||
STREX 1110 1000 0100 .... .... .... .... .... @strex_i
|
{
|
||||||
|
TT 1110 1000 0100 rn:4 1111 rd:4 A:1 T:1 000000
|
||||||
|
STREX 1110 1000 0100 .... .... .... .... .... @strex_i
|
||||||
|
}
|
||||||
STREXB 1110 1000 1100 .... .... 1111 0100 .... @strex_0
|
STREXB 1110 1000 1100 .... .... 1111 0100 .... @strex_0
|
||||||
STREXH 1110 1000 1100 .... .... 1111 0101 .... @strex_0
|
STREXH 1110 1000 1100 .... .... 1111 0101 .... @strex_0
|
||||||
STREXD_t32 1110 1000 1100 .... .... .... 0111 .... @strex_d
|
STREXD_t32 1110 1000 1100 .... .... .... 0111 .... @strex_d
|
||||||
|
|
|
@ -8793,6 +8793,34 @@ static bool trans_SG(DisasContext *s, arg_SG *a)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static bool trans_TT(DisasContext *s, arg_TT *a)
|
||||||
|
{
|
||||||
|
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
||||||
|
TCGv_i32 addr, tmp;
|
||||||
|
|
||||||
|
if (!arm_dc_feature(s, ARM_FEATURE_M) ||
|
||||||
|
!arm_dc_feature(s, ARM_FEATURE_V8)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (a->rd == 13 || a->rd == 15 || a->rn == 15) {
|
||||||
|
/* We UNDEF for these UNPREDICTABLE cases */
|
||||||
|
unallocated_encoding(s);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (a->A && !s->v8m_secure) {
|
||||||
|
/* This case is UNDEFINED. */
|
||||||
|
unallocated_encoding(s);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
addr = load_reg(s, a->rn);
|
||||||
|
tmp = tcg_const_i32(tcg_ctx, (a->A << 1) | a->T);
|
||||||
|
gen_helper_v7m_tt(tcg_ctx, tmp, tcg_ctx->cpu_env, addr, tmp);
|
||||||
|
tcg_temp_free_i32(tcg_ctx, addr);
|
||||||
|
store_reg(s, a->rd, tmp);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Load/store register index
|
* Load/store register index
|
||||||
*/
|
*/
|
||||||
|
@ -10878,7 +10906,7 @@ static bool thumb_insn_is_16bit(DisasContext *s, uint32_t pc, uint32_t insn)
|
||||||
static void disas_thumb2_insn(DisasContext *s, uint32_t insn)
|
static void disas_thumb2_insn(DisasContext *s, uint32_t insn)
|
||||||
{
|
{
|
||||||
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
TCGContext *tcg_ctx = s->uc->tcg_ctx;
|
||||||
uint32_t rd, rn, rs;
|
uint32_t rn;
|
||||||
int op;
|
int op;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -10922,70 +10950,13 @@ static void disas_thumb2_insn(DisasContext *s, uint32_t insn)
|
||||||
/* fall back to legacy decoder */
|
/* fall back to legacy decoder */
|
||||||
|
|
||||||
rn = (insn >> 16) & 0xf;
|
rn = (insn >> 16) & 0xf;
|
||||||
rs = (insn >> 12) & 0xf;
|
|
||||||
rd = (insn >> 8) & 0xf;
|
|
||||||
switch ((insn >> 25) & 0xf) {
|
switch ((insn >> 25) & 0xf) {
|
||||||
case 0: case 1: case 2: case 3:
|
case 0: case 1: case 2: case 3:
|
||||||
/* 16-bit instructions. Should never happen. */
|
/* 16-bit instructions. Should never happen. */
|
||||||
abort();
|
abort();
|
||||||
case 4:
|
case 4:
|
||||||
if (insn & (1 << 22)) {
|
/* All in decodetree */
|
||||||
/* 0b1110_100x_x1xx_xxxx_xxxx_xxxx_xxxx_xxxx
|
goto illegal_op;
|
||||||
* - load/store doubleword, load/store exclusive, ldacq/strel,
|
|
||||||
* table branch, TT.
|
|
||||||
*/
|
|
||||||
if (insn & 0x01200000) {
|
|
||||||
/* load/store dual, in decodetree */
|
|
||||||
goto illegal_op;
|
|
||||||
} else if ((insn & (1 << 23)) == 0) {
|
|
||||||
/* 0b1110_1000_010x_xxxx_xxxx_xxxx_xxxx_xxxx
|
|
||||||
* - load/store exclusive word
|
|
||||||
* - TT (v8M only)
|
|
||||||
*/
|
|
||||||
if (rs == 15) {
|
|
||||||
if (!(insn & (1 << 20)) &&
|
|
||||||
arm_dc_feature(s, ARM_FEATURE_M) &&
|
|
||||||
arm_dc_feature(s, ARM_FEATURE_V8)) {
|
|
||||||
/* 0b1110_1000_0100_xxxx_1111_xxxx_xxxx_xxxx
|
|
||||||
* - TT (v8M only)
|
|
||||||
*/
|
|
||||||
bool alt = insn & (1 << 7);
|
|
||||||
TCGv_i32 addr, op, ttresp;
|
|
||||||
|
|
||||||
if ((insn & 0x3f) || rd == 13 || rd == 15 || rn == 15) {
|
|
||||||
/* we UNDEF for these UNPREDICTABLE cases */
|
|
||||||
goto illegal_op;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (alt && !s->v8m_secure) {
|
|
||||||
goto illegal_op;
|
|
||||||
}
|
|
||||||
|
|
||||||
addr = load_reg(s, rn);
|
|
||||||
op = tcg_const_i32(tcg_ctx, extract32(insn, 6, 2));
|
|
||||||
ttresp = tcg_temp_new_i32(tcg_ctx);
|
|
||||||
gen_helper_v7m_tt(tcg_ctx, ttresp, tcg_ctx->cpu_env, addr, op);
|
|
||||||
tcg_temp_free_i32(tcg_ctx, addr);
|
|
||||||
tcg_temp_free_i32(tcg_ctx, op);
|
|
||||||
store_reg(s, rd, ttresp);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
goto illegal_op;
|
|
||||||
}
|
|
||||||
/* Load/store exclusive, in decodetree */
|
|
||||||
goto illegal_op;
|
|
||||||
} else if ((insn & (7 << 5)) == 0) {
|
|
||||||
/* Table Branch, in decodetree */
|
|
||||||
goto illegal_op;
|
|
||||||
} else {
|
|
||||||
/* Load/store exclusive, load-acq/store-rel, in decodetree */
|
|
||||||
goto illegal_op;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
/* Load/store multiple, RFE, SRS, in decodetree */
|
|
||||||
goto illegal_op;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 5:
|
case 5:
|
||||||
/* All in decodetree */
|
/* All in decodetree */
|
||||||
goto illegal_op;
|
goto illegal_op;
|
||||||
|
|
Loading…
Reference in a new issue