mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-07-07 16:30:40 +00:00
target/arm: Implement vector shifted SCVF/UCVF for fp16
While we have some of the scalar paths for *CVF for fp16, we failed to decode the fp16 version of these instructions. Backports commit a6117fae4576edfe7a5a5b802a742c33112c0993 from qemu
This commit is contained in:
parent
5752b2086b
commit
ad6c191d96
|
@ -7527,13 +7527,26 @@ static void handle_simd_shift_intfp_conv(DisasContext *s, bool is_scalar,
|
||||||
int immh, int immb, int opcode,
|
int immh, int immb, int opcode,
|
||||||
int rn, int rd)
|
int rn, int rd)
|
||||||
{
|
{
|
||||||
bool is_double = extract32(immh, 3, 1);
|
int size, elements, fracbits;
|
||||||
int size = is_double ? MO_64 : MO_32;
|
|
||||||
int elements;
|
|
||||||
int immhb = immh << 3 | immb;
|
int immhb = immh << 3 | immb;
|
||||||
int fracbits = (is_double ? 128 : 64) - immhb;
|
|
||||||
|
|
||||||
if (!extract32(immh, 2, 2)) {
|
if (immh & 8) {
|
||||||
|
size = MO_64;
|
||||||
|
if (!is_scalar && !is_q) {
|
||||||
|
unallocated_encoding(s);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else if (immh & 4) {
|
||||||
|
size = MO_32;
|
||||||
|
} else if (immh & 2) {
|
||||||
|
size = MO_16;
|
||||||
|
if (!arm_dc_feature(s, ARM_FEATURE_V8_FP16)) {
|
||||||
|
unallocated_encoding(s);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/* immh == 0 would be a failure of the decode logic */
|
||||||
|
g_assert(immh == 1);
|
||||||
unallocated_encoding(s);
|
unallocated_encoding(s);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -7541,20 +7554,14 @@ static void handle_simd_shift_intfp_conv(DisasContext *s, bool is_scalar,
|
||||||
if (is_scalar) {
|
if (is_scalar) {
|
||||||
elements = 1;
|
elements = 1;
|
||||||
} else {
|
} else {
|
||||||
elements = is_double ? 2 : is_q ? 4 : 2;
|
elements = (8 << is_q) >> size;
|
||||||
if (is_double && !is_q) {
|
|
||||||
unallocated_encoding(s);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
fracbits = (16 << size) - immhb;
|
||||||
|
|
||||||
if (!fp_access_check(s)) {
|
if (!fp_access_check(s)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* immh == 0 would be a failure of the decode logic */
|
|
||||||
g_assert(immh);
|
|
||||||
|
|
||||||
handle_simd_intfp_conv(s, rd, rn, elements, !is_u, fracbits, size);
|
handle_simd_intfp_conv(s, rd, rn, elements, !is_u, fracbits, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue