diff options
author | Richard Henderson | 2019-02-05 17:52:39 +0100 |
---|---|---|
committer | Peter Maydell | 2019-02-05 17:52:39 +0100 |
commit | 4a9ee99db38ba513bf1e8f43665b79c60accd017 (patch) | |
tree | b6457595eb7c254a3c2b60ddca9ee47bcad67d83 /target/arm/cpu.h | |
parent | tests/tcg/aarch64: Add pauth smoke test (diff) | |
download | qemu-4a9ee99db38ba513bf1e8f43665b79c60accd017.tar.gz qemu-4a9ee99db38ba513bf1e8f43665b79c60accd017.tar.xz qemu-4a9ee99db38ba513bf1e8f43665b79c60accd017.zip |
target/arm: Add TBFLAG_A64_TBID, split out gen_top_byte_ignore
Split out gen_top_byte_ignore in preparation of handling these
data accesses; the new tbflags field is not yet honored.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20190204132126.3255-2-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 1ff7197efd..ec14d3e228 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -3054,6 +3054,7 @@ FIELD(TBFLAG_A64, ZCR_LEN, 4, 4) FIELD(TBFLAG_A64, PAUTH_ACTIVE, 8, 1) FIELD(TBFLAG_A64, BT, 9, 1) FIELD(TBFLAG_A64, BTYPE, 10, 2) +FIELD(TBFLAG_A64, TBID, 12, 2) static inline bool bswap_code(bool sctlr_b) { |