[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 61/71] linux-user/aarch64: Add SM bit to SVE signal context
From: |
Richard Henderson |
Subject: |
[PATCH v2 61/71] linux-user/aarch64: Add SM bit to SVE signal context |
Date: |
Tue, 7 Jun 2022 13:32:56 -0700 |
Make sure to zero the currently reserved fields.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
linux-user/aarch64/signal.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/linux-user/aarch64/signal.c b/linux-user/aarch64/signal.c
index 7da0e36c6d..3cef2f44cf 100644
--- a/linux-user/aarch64/signal.c
+++ b/linux-user/aarch64/signal.c
@@ -78,7 +78,8 @@ struct target_extra_context {
struct target_sve_context {
struct target_aarch64_ctx head;
uint16_t vl;
- uint16_t reserved[3];
+ uint16_t flags;
+ uint16_t reserved[2];
/* The actual SVE data immediately follows. It is laid out
* according to TARGET_SVE_SIG_{Z,P}REG_OFFSET, based off of
* the original struct pointer.
@@ -101,6 +102,8 @@ struct target_sve_context {
#define TARGET_SVE_SIG_CONTEXT_SIZE(VQ) \
(TARGET_SVE_SIG_PREG_OFFSET(VQ, 17))
+#define TARGET_SVE_SIG_FLAG_SM 1
+
struct target_rt_sigframe {
struct target_siginfo info;
struct target_ucontext uc;
@@ -177,9 +180,13 @@ static void target_setup_sve_record(struct
target_sve_context *sve,
{
int i, j;
+ memset(sve, 0, sizeof(*sve));
__put_user(TARGET_SVE_MAGIC, &sve->head.magic);
__put_user(size, &sve->head.size);
__put_user(vq * TARGET_SVE_VQ_BYTES, &sve->vl);
+ if (FIELD_EX64(env->svcr, SVCR, SM)) {
+ __put_user(TARGET_SVE_SIG_FLAG_SM, &sve->flags);
+ }
/* Note that SVE regs are stored as a byte stream, with each byte element
* at a subsequent address. This corresponds to a little-endian store
--
2.34.1
- [PATCH v2 48/71] target/arm: Implement SME LDR, STR, (continued)
- [PATCH v2 48/71] target/arm: Implement SME LDR, STR, Richard Henderson, 2022/06/07
- [PATCH v2 49/71] target/arm: Implement SME ADDHA, ADDVA, Richard Henderson, 2022/06/07
- [PATCH v2 42/71] target/arm: Trap AdvSIMD usage when Streaming SVE is active, Richard Henderson, 2022/06/07
- [PATCH v2 51/71] target/arm: Implement BFMOPA, BFMOPS, Richard Henderson, 2022/06/07
- [PATCH v2 53/71] target/arm: Implement SME integer outer product, Richard Henderson, 2022/06/07
- [PATCH v2 54/71] target/arm: Implement PSEL, Richard Henderson, 2022/06/07
- [PATCH v2 50/71] target/arm: Implement FMOPA, FMOPS (non-widening), Richard Henderson, 2022/06/07
- [PATCH v2 52/71] target/arm: Implement FMOPA, FMOPS (widening), Richard Henderson, 2022/06/07
- [PATCH v2 57/71] target/arm: Reset streaming sve state on exception boundaries, Richard Henderson, 2022/06/07
- [PATCH v2 59/71] linux-user/aarch64: Clear tpidr2_el0 if CLONE_SETTLS, Richard Henderson, 2022/06/07
- [PATCH v2 61/71] linux-user/aarch64: Add SM bit to SVE signal context,
Richard Henderson <=
- [PATCH v2 55/71] target/arm: Implement REVD, Richard Henderson, 2022/06/07
- [PATCH v2 56/71] target/arm: Implement SCLAMP, UCLAMP, Richard Henderson, 2022/06/07
- [PATCH v2 58/71] target/arm: Enable SME for -cpu max, Richard Henderson, 2022/06/07
- [PATCH v2 62/71] linux-user/aarch64: Tidy target_restore_sigframe error return, Richard Henderson, 2022/06/07
- [PATCH v2 60/71] linux-user/aarch64: Reset PSTATE.SM on syscalls, Richard Henderson, 2022/06/07
- [PATCH v2 65/71] linux-user/aarch64: Move sve record checks into restore, Richard Henderson, 2022/06/07
- [PATCH v2 63/71] linux-user/aarch64: Do not allow duplicate or short sve records, Richard Henderson, 2022/06/07
- [PATCH v2 64/71] linux-user/aarch64: Verify extra record lock succeeded, Richard Henderson, 2022/06/07
- [PATCH v2 67/71] linux-user: Rename sve prctls, Richard Henderson, 2022/06/07
- [PATCH v2 68/71] linux-user/aarch64: Implement PR_SME_GET_VL, PR_SME_SET_VL, Richard Henderson, 2022/06/07