mirror of https://gitee.com/openkylin/qemu.git
target-arm: Handle UNDEF cases for VDUP (scalar)
Handle the UNDEF cases for VDUP(scalar): imm4 == x000 Q == 1 && Vd<0> == 1 Signed-off-by: Juha Riihimäki <juha.riihimaki@nokia.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
56907d776e
commit
133da6aae1
|
@ -6057,6 +6057,9 @@ static int disas_neon_data_insn(CPUState * env, DisasContext *s, uint32_t insn)
|
|||
tcg_temp_free_i32(tmp);
|
||||
} else if ((insn & 0x380) == 0) {
|
||||
/* VDUP */
|
||||
if ((insn & (7 << 16)) == 0 || (q && (rd & 1))) {
|
||||
return 1;
|
||||
}
|
||||
if (insn & (1 << 19)) {
|
||||
tmp = neon_load_reg(rm, 1);
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue