]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/arm: Implement MVE VLDR/VSTR (non-widening forms)
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 17 Jun 2021 12:15:45 +0000 (13:15 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 21 Jun 2021 15:49:38 +0000 (16:49 +0100)
commit507b6a500c2f0f6cf6182aa69efac4c20eb3e97b
treec808f16caa45dc0fc5431bdb122c274702b0d17f
parent88137f787f374ac4117877bcc8c8af97326a10bd
target/arm: Implement MVE VLDR/VSTR (non-widening forms)

Implement the forms of the MVE VLDR and VSTR insns which perform
non-widening loads of bytes, halfwords or words from memory into
vector elements of the same width (encodings T5, T6, T7).

(At the moment we know for MVE and M-profile in general that
vfp_access_check() can never return false, but we include the
conventional return-true-on-failure check for consistency
with non-M-profile translation code.)

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210617121628.20116-2-peter.maydell@linaro.org
target/arm/helper-mve.h [new file with mode: 0644]
target/arm/helper.h
target/arm/internals.h
target/arm/meson.build
target/arm/mve.decode
target/arm/mve_helper.c [new file with mode: 0644]
target/arm/translate-mve.c