mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/arm: Implement MVE VMULH
Implement the MVE VMULH insn, which performs a vector multiply and returns the high half of the result. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20210617121628.20116-14-peter.maydell@linaro.org
This commit is contained in:
parent
9333fe4dd3
commit
ba62cc56e8
4 changed files with 38 additions and 0 deletions
|
@ -347,3 +347,5 @@ DO_LOGIC(VEOR, gen_helper_mve_veor)
|
|||
DO_2OP(VADD, vadd)
|
||||
DO_2OP(VSUB, vsub)
|
||||
DO_2OP(VMUL, vmul)
|
||||
DO_2OP(VMULH_S, vmulhs)
|
||||
DO_2OP(VMULH_U, vmulhu)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue