mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
target/arm: Implement MVE VQRSHL
Implement the MV VQRSHL (vector) insn. Again, the code to perform the actual shifts is borrowed from neon_helper.c. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20210617121628.20116-34-peter.maydell@linaro.org
This commit is contained in:
parent
483da66139
commit
9dc868c41d
4 changed files with 19 additions and 0 deletions
|
@ -404,6 +404,8 @@ DO_2OP(VQSUB_S, vqsubs)
|
|||
DO_2OP(VQSUB_U, vqsubu)
|
||||
DO_2OP(VQSHL_S, vqshls)
|
||||
DO_2OP(VQSHL_U, vqshlu)
|
||||
DO_2OP(VQRSHL_S, vqrshls)
|
||||
DO_2OP(VQRSHL_U, vqrshlu)
|
||||
|
||||
static bool do_2op_scalar(DisasContext *s, arg_2scalar *a,
|
||||
MVEGenTwoOpScalarFn fn)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue