[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 07/30] bsd-user/arm/target_arch_cpu.h: Dummy target_cpu_loop i
From: |
Warner Losh |
Subject: |
[PATCH v2 07/30] bsd-user/arm/target_arch_cpu.h: Dummy target_cpu_loop implementation |
Date: |
Tue, 2 Nov 2021 16:52:25 -0600 |
Add a boiler plate CPU loop that does nothing except return an error for
all traps.
Signed-off-by: Sean Bruno <sbruno@FreeBSD.org>
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Kyle Evans <kevans@FreeBSD.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
bsd-user/arm/target_arch_cpu.h | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/bsd-user/arm/target_arch_cpu.h b/bsd-user/arm/target_arch_cpu.h
index fa45d9335d..2484bdc2f7 100644
--- a/bsd-user/arm/target_arch_cpu.h
+++ b/bsd-user/arm/target_arch_cpu.h
@@ -36,6 +36,28 @@ static inline void target_cpu_init(CPUARMState *env,
}
}
+static inline void target_cpu_loop(CPUARMState *env)
+{
+ int trapnr;
+ target_siginfo_t info;
+ CPUState *cs = env_cpu(env);
+
+ for (;;) {
+ cpu_exec_start(cs);
+ trapnr = cpu_exec(cs);
+ cpu_exec_end(cs);
+ process_queued_cpu_work(cs);
+ switch (trapnr) {
+ default:
+ fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
+ trapnr);
+ cpu_dump_state(cs, stderr, 0);
+ abort();
+ } /* switch() */
+ process_pending_signals(env);
+ } /* for (;;) */
+}
+
static inline void target_cpu_clone_regs(CPUARMState *env, target_ulong newsp)
{
if (newsp) {
--
2.33.0
- [PATCH v2 00/30] bsd-user: arm (32-bit) support, Warner Losh, 2021/11/02
- [PATCH v2 01/30] bsd-user: Add stubs for new signal routines, Warner Losh, 2021/11/02
- [PATCH v2 02/30] bsd-user/arm/target_arch_sysarch.h: Use consistent include guards, Warner Losh, 2021/11/02
- [PATCH v2 03/30] bsd-user/arm/target_syscall.h: Add copyright and update name, Warner Losh, 2021/11/02
- [PATCH v2 04/30] bsd-user/arm/target_arch_cpu.c: Target specific TLS routines, Warner Losh, 2021/11/02
- [PATCH v2 05/30] bsd-user/arm/target_arch_cpu.h: CPU Loop definitions, Warner Losh, 2021/11/02
- [PATCH v2 06/30] bsd-user/arm/target_arch_cpu.h: Implement target_cpu_clone_regs, Warner Losh, 2021/11/02
- [PATCH v2 07/30] bsd-user/arm/target_arch_cpu.h: Dummy target_cpu_loop implementation,
Warner Losh <=
- [PATCH v2 08/30] bsd-user/arm/target_arch_cpu.h: Implement trivial EXCP exceptions, Warner Losh, 2021/11/02
- [PATCH v2 09/30] bsd-user/arm/target_arch_cpu.h: Implement data abort exceptions, Warner Losh, 2021/11/02
- [PATCH v2 10/30] bsd-user/arm/target_arch_cpu.h: Implement system call dispatch, Warner Losh, 2021/11/02
- [PATCH v2 12/30] bsd-user/arm/target_arch_vmparam.h: Parameters for arm address space, Warner Losh, 2021/11/02
- [PATCH v2 11/30] bsd-user/arm/target_arch_reg.h: Implement core dump register copying, Warner Losh, 2021/11/02
- [PATCH v2 14/30] bsd-user/arm/target_arch_thread.h: Routines to create and switch to a thread, Warner Losh, 2021/11/02