OSDN Git Service

target/arm: Implement the SET* instructions
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 12 Sep 2023 14:04:29 +0000 (15:04 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Thu, 21 Sep 2023 15:07:14 +0000 (16:07 +0100)
commit0e92818887deef2300255300af57bb58a6af1ad4
tree2891973f14aa41feb6421a9a6119074fc8070ca8
parent8163998920388d7fa8534185460320838046f089
target/arm: Implement the SET* instructions

Implement the SET* instructions which collectively implement a
"memset" operation.  These come in a set of three, eg SETP
(prologue), SETM (main), SETE (epilogue), and each of those has
different flavours to indicate whether memory accesses should be
unpriv or non-temporal.

This commit does not include the "memset with tag setting"
SETG* instructions.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20230912140434.1333369-8-peter.maydell@linaro.org
target/arm/tcg/a64.decode
target/arm/tcg/helper-a64.c
target/arm/tcg/helper-a64.h
target/arm/tcg/translate-a64.c