From: Ajeet Singh <itachis6234@gmail.com>
To: qemu-devel@nongnu.org
Cc: Warner Losh <imp@bsdimp.com>, Stacey Son <sson@FreeBSD.org>,
Ajeet Singh <itachis@FreeBSD.org>
Subject: [PATCH v2 7/8] bsd-user:Add set_mcontext function for ARM AArch64
Date: Mon, 8 Jul 2024 00:41:27 +0530 [thread overview]
Message-ID: <20240707191128.10509-8-itachis@FreeBSD.org> (raw)
In-Reply-To: <20240707191128.10509-1-itachis@FreeBSD.org>
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>
---
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 43c886e603..13faac8ce6 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.34.1
next prev parent reply other threads:[~2024-07-07 19:13 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-07 19:11 [PATCH v2 0/8] ARM AArch64 Support for BSD Ajeet Singh
2024-07-07 19:11 ` [PATCH v2 1/8] bsd-user:Add CPU initialization and management functions Ajeet Singh
2024-07-07 19:11 ` [PATCH v2 2/8] bsd-user:Add AArch64 register handling and related functions Ajeet Singh
2024-07-07 19:11 ` [PATCH v2 3/8] bsd-user:Add ARM AArch64 support and capabilities Ajeet Singh
2024-07-07 19:11 ` [PATCH v2 4/8] bsd-user:Add ARM AArch64 signal handling support Ajeet Singh
2024-07-07 19:11 ` [PATCH v2 5/8] bsd-user:Add get_mcontext function for ARM AArch64 Ajeet Singh
2024-07-08 16:09 ` Richard Henderson
2024-07-07 19:11 ` [PATCH v2 6/8] bsd-user:Add setup_sigframe_arch " Ajeet Singh
2024-07-07 19:11 ` Ajeet Singh [this message]
2024-07-08 16:10 ` [PATCH v2 7/8] bsd-user:Add set_mcontext " Richard Henderson
2024-07-07 19:11 ` [PATCH v2 8/8] bsd-user:Add AArch64 improvements and signal handling functions Ajeet Singh
2024-07-08 16:12 ` Richard Henderson
2024-07-21 21:56 ` [PATCH v2 0/8] ARM AArch64 Support for BSD Warner Losh
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240707191128.10509-8-itachis@FreeBSD.org \
--to=itachis6234@gmail.com \
--cc=imp@bsdimp.com \
--cc=itachis@FreeBSD.org \
--cc=qemu-devel@nongnu.org \
--cc=sson@FreeBSD.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).