mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
target/arm: Implement the CPY* instructions
The FEAT_MOPS CPY* instructions implement memory copies. These come in both "always forwards" (memcpy-style) and "overlap OK" (memmove-style) flavours. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20230912140434.1333369-12-peter.maydell@linaro.org
This commit is contained in:
parent
69c51dc372
commit
5d7b37b5f6
4 changed files with 535 additions and 0 deletions
|
@ -124,3 +124,10 @@ DEF_HELPER_3(sete, void, env, i32, i32)
|
|||
DEF_HELPER_3(setgp, void, env, i32, i32)
|
||||
DEF_HELPER_3(setgm, void, env, i32, i32)
|
||||
DEF_HELPER_3(setge, void, env, i32, i32)
|
||||
|
||||
DEF_HELPER_4(cpyp, void, env, i32, i32, i32)
|
||||
DEF_HELPER_4(cpym, void, env, i32, i32, i32)
|
||||
DEF_HELPER_4(cpye, void, env, i32, i32, i32)
|
||||
DEF_HELPER_4(cpyfp, void, env, i32, i32, i32)
|
||||
DEF_HELPER_4(cpyfm, void, env, i32, i32, i32)
|
||||
DEF_HELPER_4(cpyfe, void, env, i32, i32, i32)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue