]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/arm: Implement v8.4-RCPC
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 24 Feb 2020 17:28:46 +0000 (17:28 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 28 Feb 2020 16:14:57 +0000 (16:14 +0000)
commita1229109dec4375259d3fff99f362405aab7917a
treefa861ddfe41b9f6e1864945ecfc7206be3af1cb9
parent2677cf9f92a5319bb995927f9225940414ce879d
target/arm: Implement v8.4-RCPC

The v8.4-RCPC extension implements some new instructions:
 * LDAPUR, LDAPURB, LDAPURH, LDAPRSB, LDAPRSH, LDAPRSW
 * STLUR, STLURB, STLURH

These are all in a new subgroup of encodings that sits below the
top-level "Loads and Stores" group in the Arm ARM.

The STLUR* instructions have standard store-release semantics; the
LDAPUR* have Load-AcquirePC semantics, but (as with LDAPR*) we choose
to implement them as the slightly stronger Load-Acquire.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20200224172846.13053-4-peter.maydell@linaro.org
linux-user/elfload.c
target/arm/cpu.h
target/arm/cpu64.c
target/arm/translate-a64.c