[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 11/40] bsd-user/signal.c: implement cpu_loop_exit_sigbus
|
From: |
Warner Losh |
|
Subject: |
[PATCH v2 11/40] bsd-user/signal.c: implement cpu_loop_exit_sigbus |
|
Date: |
Mon, 24 Jan 2022 18:29:18 -0700 |
First attempt at implementing cpu_loop_exit_sigbus, mostly copied from
linux-user version of this function.
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Kyle Evans <kevans@freebsd.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
bsd-user/signal.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/bsd-user/signal.c b/bsd-user/signal.c
index 12de0e2dea4..844dfa19095 100644
--- a/bsd-user/signal.c
+++ b/bsd-user/signal.c
@@ -80,7 +80,13 @@ void cpu_loop_exit_sigsegv(CPUState *cpu, target_ulong addr,
void cpu_loop_exit_sigbus(CPUState *cpu, target_ulong addr,
MMUAccessType access_type, uintptr_t ra)
{
- qemu_log_mask(LOG_UNIMP, "No signal support for SIGBUS\n");
- /* unreachable */
- abort();
+ const struct TCGCPUOps *tcg_ops = CPU_GET_CLASS(cpu)->tcg_ops;
+
+ if (tcg_ops->record_sigbus) {
+ tcg_ops->record_sigbus(cpu, addr, access_type, ra);
+ }
+
+ force_sig_fault(TARGET_SIGBUS, TARGET_BUS_ADRALN, addr);
+ cpu->exception_index = EXCP_INTERRUPT;
+ cpu_loop_exit_restore(cpu, ra);
}
--
2.33.1
- Re: [PATCH v2 09/40] bsd-user/signal-common.h: Move signal functions prototypes to here, (continued)
- [PATCH v2 10/40] bsd-user/signal.c: Implement cpu_loop_exit_sigsegv, Warner Losh, 2022/01/24
- [PATCH v2 14/40] bsd-user/arm/target_arch_cpu.h: Use force_sig_fault for EXCP_UDEF, Warner Losh, 2022/01/24
- [PATCH v2 16/40] bsd-user/signal.c: implement abstract target / host signal translation, Warner Losh, 2022/01/24
- [PATCH v2 18/40] bsd-user/signal.c: Add si_type argument to queue_signal, Warner Losh, 2022/01/24
- [PATCH v2 13/40] bsd-user/arm/target_arch_cpu.h: Correct code pointer, Warner Losh, 2022/01/24
- [PATCH v2 15/40] bsd-user/arm/target_arch_cpu.h: Implement data faults, Warner Losh, 2022/01/24
- [PATCH v2 11/40] bsd-user/signal.c: implement cpu_loop_exit_sigbus,
Warner Losh <=
- [PATCH v2 12/40] bsd-user/arm/arget_arch_cpu.h: Move EXCP_DEBUG and EXCP_BKPT together, Warner Losh, 2022/01/24
- [PATCH v2 22/40] bsd-user: Add host signals to the build, Warner Losh, 2022/01/24
- [PATCH v2 17/40] bsd-user/signal.c: Implement signal_init(), Warner Losh, 2022/01/24
- [PATCH v2 19/40] bsd-user/host/arm/host-signal.h: Implement host_signal_*, Warner Losh, 2022/01/24
- [PATCH v2 26/40] bsd-user/signal.c: Implement host_signal_handler, Warner Losh, 2022/01/24
- [PATCH v2 23/40] bsd-user: Add trace events for bsd-user, Warner Losh, 2022/01/24
- [PATCH v2 21/40] bsd-user/host/x86_64/host-signal.h: Implement host_signal_*, Warner Losh, 2022/01/24
- [PATCH v2 29/40] bsd-user/signal.c: Fill in queue_signal, Warner Losh, 2022/01/24