diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-10-10 20:18:49 -0700 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-10-20 11:27:49 +0100 |
commit | b8967ddf393aaf35fdbc07b4cb538a40f8b6fe37 (patch) | |
tree | 12e43e773e740f7e1407d717ac9b7c3ab1272da8 /target/arm/sve_ldst_internal.h | |
parent | 24d18d5d7e31462b7bd5bb2c6ee19856699e34ed (diff) | |
download | qemu-b8967ddf393aaf35fdbc07b4cb538a40f8b6fe37.zip qemu-b8967ddf393aaf35fdbc07b4cb538a40f8b6fe37.tar.gz qemu-b8967ddf393aaf35fdbc07b4cb538a40f8b6fe37.tar.bz2 |
target/arm: Use probe_access_full for MTE
The CPUTLBEntryFull structure now stores the original pte attributes, as
well as the physical address. Therefore, we no longer need a separate
bit in MemTxAttrs, nor do we need to walk the tree of memory regions.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20221011031911.2408754-3-richard.henderson@linaro.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/sve_ldst_internal.h')
-rw-r--r-- | target/arm/sve_ldst_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/arm/sve_ldst_internal.h b/target/arm/sve_ldst_internal.h index b5c473f..4f159ec 100644 --- a/target/arm/sve_ldst_internal.h +++ b/target/arm/sve_ldst_internal.h @@ -134,6 +134,7 @@ typedef struct { void *host; int flags; MemTxAttrs attrs; + bool tagged; } SVEHostPage; bool sve_probe_page(SVEHostPage *info, bool nofault, CPUARMState *env, |