target/arm: Update feature checks for insns which are "MVE or FP"
commit69049bcf5114f7af379b4f3cccfb0b213b30f88a
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 20 May 2021 15:28:33 +0000 (20 16:28 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 3 Jun 2021 15:43:25 +0000 (3 16:43 +0100)
tree05efee656738c1b961f7301ac4a9fd9d4cb88b9a
parent7df6a1ffdbdcaf98fa57747dc79216ac089e6215
target/arm: Update feature checks for insns which are "MVE or FP"

Some v8M instructions are present if either the floating point
extension or MVE is implemented.  Update our implementation of them
to check for MVE as well as for FP.

This is all the insns which use CheckDecodeFaults(ExtType_MveOrFp) or
CheckDecodeFaults(ExtType_MveOrDpFp) in their pseudocode, which are
essentially the loads and stores, moves and sysreg accesses, except
for VMOV_reg_sp and VMOV_reg_dp, which we handle in subsequent
patches because they need a refactor to provide a place to put the
new MVE check.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210520152840.24453-3-peter.maydell@linaro.org
target/arm/translate-vfp.c