]> git.proxmox.com Git - mirror_qemu.git/commit
target/arm: Explicitly enable VFP short-vectors for aarch32 -cpu max
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 11 Jun 2019 15:39:42 +0000 (16:39 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 13 Jun 2019 14:14:03 +0000 (15:14 +0100)
commit973751fd798d41402d34f9f705c0c6d1633d0cda
tree715898f29e0bf180140ab000989a82f682d75a73
parent3de79d335c9aa7d726865e3933d9b21781032183
target/arm: Explicitly enable VFP short-vectors for aarch32 -cpu max

At the moment our -cpu max for AArch32 supports VFP short-vectors
because we always implement them, even for CPUs which should
not have them. The following commits are going to switch to
using the correct ID-register-check to enable or disable short
vector support, so we need to turn it on explicitly for -cpu max,
because Cortex-A15 doesn't implement it.

We don't enable this for the AArch64 -cpu max, because the v8A
architecture never supports short-vectors.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
target/arm/cpu.c