mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
target/arm: Implement MVE VMVN (register)
Implement the MVE VMVN(register) operation. Note that for predication this operation is byte-by-byte. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20210617121628.20116-7-peter.maydell@linaro.org
This commit is contained in:
parent
249b5309c4
commit
8abd3c80b1
4 changed files with 14 additions and 0 deletions
|
@ -232,3 +232,8 @@ static bool trans_VREV64(DisasContext *s, arg_1op *a)
|
|||
};
|
||||
return do_1op(s, a, fns[a->size]);
|
||||
}
|
||||
|
||||
static bool trans_VMVN(DisasContext *s, arg_1op *a)
|
||||
{
|
||||
return do_1op(s, a, gen_helper_mve_vmvn);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue