diff options
| author | Emilio G. Cota | 2016-06-27 21:02:16 +0200 |
|---|---|---|
| committer | Richard Henderson | 2016-10-26 17:29:02 +0200 |
| commit | 05188cc72f0399e99c92f608a8e7ca4c8e552c4b (patch) | |
| tree | 5592b108f269be1e994ac3138e465d4dbed02977 /target-arm/cpu.h | |
| parent | linux-user: remove handling of aarch64's EXCP_STREX (diff) | |
| download | qemu-05188cc72f0399e99c92f608a8e7ca4c8e552c4b.tar.gz qemu-05188cc72f0399e99c92f608a8e7ca4c8e552c4b.tar.xz qemu-05188cc72f0399e99c92f608a8e7ca4c8e552c4b.zip | |
target-arm: remove EXCP_STREX + cpu_exclusive_{test, info}
The exception is not emitted anymore; remove it and the associated
TCG variables.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Message-Id: <1467054136-10430-31-git-send-email-cota@braap.org>
Diffstat (limited to 'target-arm/cpu.h')
| -rw-r--r-- | target-arm/cpu.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target-arm/cpu.h b/target-arm/cpu.h index 9d75227e04..19d967b69e 100644 --- a/target-arm/cpu.h +++ b/target-arm/cpu.h @@ -46,7 +46,6 @@ #define EXCP_BKPT 7 #define EXCP_EXCEPTION_EXIT 8 /* Return from v7M exception. */ #define EXCP_KERNEL_TRAP 9 /* Jumped to kernel code page. */ -#define EXCP_STREX 10 #define EXCP_HVC 11 /* HyperVisor Call */ #define EXCP_HYP_TRAP 12 #define EXCP_SMC 13 /* Secure Monitor Call */ @@ -475,10 +474,6 @@ typedef struct CPUARMState { uint64_t exclusive_addr; uint64_t exclusive_val; uint64_t exclusive_high; -#if defined(CONFIG_USER_ONLY) - uint64_t exclusive_test; - uint32_t exclusive_info; -#endif /* iwMMXt coprocessor state. */ struct { |
