[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 07/15] bsd-user:Add set_mcontext function for ARM AArch64
From: |
Warner Losh |
Subject: |
[PULL 07/15] bsd-user:Add set_mcontext function for ARM AArch64 |
Date: |
Wed, 24 Jul 2024 16:04:40 -0600 |
From: Stacey Son <sson@FreeBSD.org>
The function copies register values from the provided target_mcontext_t
structure to the CPUARMState registers.
Note:FP is unfinished upstream but will be a separate commit coming soon.
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Ajeet Singh <itachis@FreeBSD.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20240707191128.10509-8-itachis@FreeBSD.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/aarch64/signal.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/bsd-user/aarch64/signal.c b/bsd-user/aarch64/signal.c
index 43c886e6036..13faac8ce60 100644
--- a/bsd-user/aarch64/signal.c
+++ b/bsd-user/aarch64/signal.c
@@ -95,3 +95,25 @@ abi_long setup_sigframe_arch(CPUARMState *env, abi_ulong
frame_addr,
return 0;
}
+/*
+ * Compare to set_mcontext() in arm64/arm64/machdep.c
+ * Assumes that the memory is locked if frame points to user memory.
+ */
+abi_long set_mcontext(CPUARMState *regs, target_mcontext_t *mcp, int srflag)
+{
+ int err = 0, i;
+ const uint64_t *gr = mcp->mc_gpregs.gp_x;
+
+ for (i = 0; i < 30; i++) {
+ regs->xregs[i] = tswap64(gr[i]);
+ }
+
+ regs->xregs[TARGET_REG_SP] = tswap64(mcp->mc_gpregs.gp_sp);
+ regs->xregs[TARGET_REG_LR] = tswap64(mcp->mc_gpregs.gp_lr);
+ regs->pc = mcp->mc_gpregs.gp_elr;
+ pstate_write(regs, mcp->mc_gpregs.gp_spsr);
+
+ /* XXX FP? */
+
+ return err;
+}
--
2.45.1
- [PULL 00/15] Bsd user for 9.1 patches, Warner Losh, 2024/07/24
- [PULL 01/15] bsd-user:Add CPU initialization and management functions, Warner Losh, 2024/07/24
- [PULL 03/15] bsd-user:Add ARM AArch64 support and capabilities, Warner Losh, 2024/07/24
- [PULL 02/15] bsd-user:Add AArch64 register handling and related functions, Warner Losh, 2024/07/24
- [PULL 04/15] bsd-user:Add ARM AArch64 signal handling support, Warner Losh, 2024/07/24
- [PULL 05/15] bsd-user:Add get_mcontext function for ARM AArch64, Warner Losh, 2024/07/24
- [PULL 07/15] bsd-user:Add set_mcontext function for ARM AArch64,
Warner Losh <=
- [PULL 06/15] bsd-user:Add setup_sigframe_arch function for ARM AArch64, Warner Losh, 2024/07/24
- [PULL 09/15] bsd-user: Simplify the implementation of execve, Warner Losh, 2024/07/24
- [PULL 11/15] bsd-user: Sync fork_start/fork_end with linux-user, Warner Losh, 2024/07/24
- [PULL 08/15] bsd-user:Add AArch64 improvements and signal handling functions, Warner Losh, 2024/07/24
- [PULL 10/15] bsd-user: Hard wire aarch64 to be 4k pages only, Warner Losh, 2024/07/24
- [PULL 12/15] bsd-user: Define TARGET_SIGSTACK_ALIGN and use it to round stack, Warner Losh, 2024/07/24
- [PULL 13/15] bsd-user: Make compile for non-linux user-mode stuff, Warner Losh, 2024/07/24
- [PULL 14/15] bsd-user: Add aarch64 build to tree, Warner Losh, 2024/07/24
- [PULL 15/15] bsd-user: Add target.h for aarch64., Warner Losh, 2024/07/24
- Re: [PULL 00/15] Bsd user for 9.1 patches, Richard Henderson, 2024/07/24