mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 17:51:11 +00:00
target/arm: Don't allow Thumb Neon insns without FEATURE_NEON
We were accidentally permitting decode of Thumb Neon insns even if the CPU didn't have the FEATURE_NEON bit set, because the feature check was being done before the call to disas_neon_data_insn() and disas_neon_ls_insn() in the Arm decoder but was omitted from the Thumb decoder. Push the feature bit check down into the called functions so it is done for both Arm and Thumb encodings. Backports commit d1a6d3b594157425232a1ae5ea7f51b7a1c1aa2e from qemu
This commit is contained in:
parent
1964e4b9c9
commit
518d18062f
|
@ -3376,6 +3376,10 @@ static int disas_neon_ls_insn(DisasContext *s, uint32_t insn)
|
|||
TCGv_i32 tmp2;
|
||||
TCGv_i64 tmp64;
|
||||
|
||||
if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* FIXME: this access check should not take precedence over UNDEF
|
||||
* for invalid encodings; we will generate incorrect syndrome information
|
||||
* for attempts to execute invalid vfp/neon encodings with FP disabled.
|
||||
|
@ -5134,6 +5138,10 @@ static int disas_neon_data_insn(DisasContext *s, uint32_t insn)
|
|||
TCGv_ptr ptr1, ptr2, ptr3;
|
||||
TCGv_i64 tmp64;
|
||||
|
||||
if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* FIXME: this access check should not take precedence over UNDEF
|
||||
* for invalid encodings; we will generate incorrect syndrome information
|
||||
* for attempts to execute invalid vfp/neon encodings with FP disabled.
|
||||
|
@ -11253,10 +11261,6 @@ static void disas_arm_insn(DisasContext *s, unsigned int insn)
|
|||
|
||||
if (((insn >> 25) & 7) == 1) {
|
||||
/* NEON Data processing. */
|
||||
if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
|
||||
goto illegal_op;
|
||||
}
|
||||
|
||||
if (disas_neon_data_insn(s, insn)) {
|
||||
goto illegal_op;
|
||||
}
|
||||
|
@ -11264,10 +11268,6 @@ static void disas_arm_insn(DisasContext *s, unsigned int insn)
|
|||
}
|
||||
if ((insn & 0x0f100000) == 0x04000000) {
|
||||
/* NEON load/store. */
|
||||
if (!arm_dc_feature(s, ARM_FEATURE_NEON)) {
|
||||
goto illegal_op;
|
||||
}
|
||||
|
||||
if (disas_neon_ls_insn(s, insn)) {
|
||||
goto illegal_op;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue