mirror of https://github.com/xqemu/xqemu.git
target/arm: Add fp16 support to vfp_expand_imm
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20180110063337.21538-3-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
e90a99fe6b
commit
8081796a75
|
@ -5006,6 +5006,11 @@ static uint64_t vfp_expand_imm(int size, uint8_t imm8)
|
||||||
(extract32(imm8, 0, 6) << 3);
|
(extract32(imm8, 0, 6) << 3);
|
||||||
imm <<= 16;
|
imm <<= 16;
|
||||||
break;
|
break;
|
||||||
|
case MO_16:
|
||||||
|
imm = (extract32(imm8, 7, 1) ? 0x8000 : 0) |
|
||||||
|
(extract32(imm8, 6, 1) ? 0x3000 : 0x4000) |
|
||||||
|
(extract32(imm8, 0, 6) << 6);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
g_assert_not_reached();
|
g_assert_not_reached();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue