[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v1 2/9] target/arm: handle A-profile T32 semihosting
From: |
Alex Bennée |
Subject: |
[Qemu-devel] [PATCH v1 2/9] target/arm: handle A-profile T32 semihosting at translate time |
Date: |
Wed, 28 Aug 2019 17:53:00 +0100 |
As for the other semihosting calls we can resolve this at translate
time.
Signed-off-by: Alex Bennée <address@hidden>
Reviewed-by: Richard Henderson <address@hidden>
---
target/arm/translate.c | 24 ++++++++++++++++++++----
1 file changed, 20 insertions(+), 4 deletions(-)
diff --git a/target/arm/translate.c b/target/arm/translate.c
index 259c4669b4c..6157e9f52fc 100644
--- a/target/arm/translate.c
+++ b/target/arm/translate.c
@@ -10907,6 +10907,24 @@ static inline void gen_thumb_bkpt(DisasContext *s, int
imm8)
gen_exception_bkpt_insn(s, syn_aa32_bkpt(imm8, true));
}
+/*
+ * Thumb SWI. On A-profile CPUs this may be a semihosting call.
+ */
+static inline void gen_thumb_swi(DisasContext *s, int imm8)
+{
+ if (semihosting_enabled() &&
+#ifndef CONFIG_USER_ONLY
+ s->current_el != 0 &&
+#endif
+ (imm8 == 0xab)) {
+ gen_exception_internal_insn(s, 0, EXCP_SEMIHOST);
+ return;
+ }
+ gen_set_pc_im(s, s->base.pc_next);
+ s->svc_imm = imm8;
+ s->base.is_jmp = DISAS_SWI;
+}
+
static void disas_thumb_insn(DisasContext *s, uint32_t insn)
{
uint32_t val, op, rm, rn, rd, shift, cond;
@@ -11658,10 +11676,8 @@ static void disas_thumb_insn(DisasContext *s, uint32_t
insn)
goto undef;
if (cond == 0xf) {
- /* swi */
- gen_set_pc_im(s, s->base.pc_next);
- s->svc_imm = extract32(insn, 0, 8);
- s->base.is_jmp = DISAS_SWI;
+ /* swi/svc */
+ gen_thumb_swi(s, extract32(insn, 0, 8));
break;
}
/* generate a conditional jump to next instruction */
--
2.20.1
- [Qemu-devel] [PATCH v1 0/9] arm semih-hosting cleanups and other misc cleanups, Alex Bennée, 2019/08/28
- [Qemu-devel] [PATCH v1 2/9] target/arm: handle A-profile T32 semihosting at translate time,
Alex Bennée <=
- [Qemu-devel] [PATCH v1 6/9] tcg/README: fix typo s/afterwise/afterwards/, Alex Bennée, 2019/08/28
- [Qemu-devel] [PATCH v1 5/9] includes: remove stale [smp|max]_cpus externs, Alex Bennée, 2019/08/28
- [Qemu-devel] [PATCH v1 1/9] target/arm: handle M-profile semihosting at translate time, Alex Bennée, 2019/08/28
- [Qemu-devel] [PATCH v1 7/9] atomic_template: fix indentation in GEN_ATOMIC_HELPER, Alex Bennée, 2019/08/28
- [Qemu-devel] [PATCH v1 3/9] target/arm: handle A-profile A32 semihosting at translate time, Alex Bennée, 2019/08/28
- [Qemu-devel] [PATCH v1 4/9] target/arm: remove run time semihosting checks, Alex Bennée, 2019/08/28
- [Qemu-devel] [PATCH v1 9/9] include/exec/cpu-defs.h: fix typo, Alex Bennée, 2019/08/28
- [Qemu-devel] [PATCH v1 8/9] accel/stubs: reduce headers from tcg-stub, Alex Bennée, 2019/08/28