提交 449f264b 编写于 作者: R Richard Henderson 提交者: Peter Maydell

target/arm: Refactor disas_simd_indexed size checks

The integer size check was already outside of the opcode switch;
move the floating-point size check outside as well.  Unify the
size vs index adjustment between fp and integer paths.
Signed-off-by: NRichard Henderson <richard.henderson@linaro.org>
Reviewed-by: NPeter Maydell <peter.maydell@linaro.org>
Message-id: 20180228193125.20577-4-richard.henderson@linaro.org
Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
上级 5f81b1de
...@@ -11820,10 +11820,6 @@ static void disas_simd_indexed(DisasContext *s, uint32_t insn) ...@@ -11820,10 +11820,6 @@ static void disas_simd_indexed(DisasContext *s, uint32_t insn)
case 0x05: /* FMLS */ case 0x05: /* FMLS */
case 0x09: /* FMUL */ case 0x09: /* FMUL */
case 0x19: /* FMULX */ case 0x19: /* FMULX */
if (size == 1) {
unallocated_encoding(s);
return;
}
is_fp = true; is_fp = true;
break; break;
default: default:
...@@ -11834,47 +11830,50 @@ static void disas_simd_indexed(DisasContext *s, uint32_t insn) ...@@ -11834,47 +11830,50 @@ static void disas_simd_indexed(DisasContext *s, uint32_t insn)
if (is_fp) { if (is_fp) {
/* convert insn encoded size to TCGMemOp size */ /* convert insn encoded size to TCGMemOp size */
switch (size) { switch (size) {
case 2: /* single precision */ case 0: /* half-precision */
size = MO_32; if (!arm_dc_feature(s, ARM_FEATURE_V8_FP16)) {
index = h << 1 | l;
rm |= (m << 4);
break;
case 3: /* double precision */
size = MO_64;
if (l || !is_q) {
unallocated_encoding(s); unallocated_encoding(s);
return; return;
} }
index = h;
rm |= (m << 4);
break;
case 0: /* half precision */
size = MO_16; size = MO_16;
index = h << 2 | l << 1 | m; break;
is_fp16 = true; case MO_32: /* single precision */
if (arm_dc_feature(s, ARM_FEATURE_V8_FP16)) { case MO_64: /* double precision */
break; break;
} default:
/* fallthru */
default: /* unallocated */
unallocated_encoding(s); unallocated_encoding(s);
return; return;
} }
} else { } else {
switch (size) { switch (size) {
case 1: case MO_8:
index = h << 2 | l << 1 | m; case MO_64:
break;
case 2:
index = h << 1 | l;
rm |= (m << 4);
break;
default:
unallocated_encoding(s); unallocated_encoding(s);
return; return;
} }
} }
/* Given TCGMemOp size, adjust register and indexing. */
switch (size) {
case MO_16:
index = h << 2 | l << 1 | m;
break;
case MO_32:
index = h << 1 | l;
rm |= m << 4;
break;
case MO_64:
if (l || !is_q) {
unallocated_encoding(s);
return;
}
index = h;
rm |= m << 4;
break;
default:
g_assert_not_reached();
}
if (!fp_access_check(s)) { if (!fp_access_check(s)) {
return; return;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册