[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v12 12/24] tcg: handle EXCP_ATOMIC exception for sys
From: |
Alex Bennée |
Subject: |
[Qemu-devel] [PATCH v12 12/24] tcg: handle EXCP_ATOMIC exception for system emulation |
Date: |
Mon, 13 Feb 2017 12:10:05 +0000 |
From: Pranith Kumar <address@hidden>
The patch enables handling atomic code in the guest. This should be
preferably done in cpu_handle_exception(), but the current assumptions
regarding when we can execute atomic sections cause a deadlock.
The current mechanism discards the flags which were set in atomic
execution. We ensure they are properly saved by calling the
cc->cpu_exec_enter/leave() functions around the loop.
As we are running cpu_exec_step_atomic() from the outermost loop we
need to avoid an abort() when single stepping over atomic code since
debug exception longjmp will point to the the setlongjmp in
cpu_exec(). We do this by setting a new jmp_env so that it jumps back
here on an exception.
Signed-off-by: Pranith Kumar <address@hidden>
[AJB: tweak title, merge with new patches]
Signed-off-by: Alex Bennée <address@hidden>
[PENDING, CHANGES] Reviewed-by: Richard Henderson <address@hidden>
CC: Richard Henderson <address@hidden>
CC: Paolo Bonzini <address@hidden>
---
cpu-exec.c | 14 +++++++++++---
cpus.c | 9 +++++++++
2 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/cpu-exec.c b/cpu-exec.c
index b0ddada8c1..e61f5747c8 100644
--- a/cpu-exec.c
+++ b/cpu-exec.c
@@ -228,6 +228,7 @@ static void cpu_exec_nocache(CPUState *cpu, int max_cycles,
static void cpu_exec_step(CPUState *cpu)
{
+ CPUClass *cc = CPU_GET_CLASS(cpu);
CPUArchState *env = (CPUArchState *)cpu->env_ptr;
TranslationBlock *tb;
target_ulong cs_base, pc;
@@ -239,9 +240,16 @@ static void cpu_exec_step(CPUState *cpu)
1 | CF_NOCACHE | CF_IGNORE_ICOUNT);
tb->orig_tb = NULL;
tb_unlock();
- /* execute the generated code */
- trace_exec_tb_nocache(tb, pc);
- cpu_tb_exec(cpu, tb);
+
+ cc->cpu_exec_enter(cpu);
+
+ if (sigsetjmp(cpu->jmp_env, 0) == 0) {
+ /* execute the generated code */
+ trace_exec_tb_nocache(tb, pc);
+ cpu_tb_exec(cpu, tb);
+ }
+
+ cc->cpu_exec_exit(cpu);
tb_lock();
tb_phys_invalidate(tb, -1);
tb_free(tb);
diff --git a/cpus.c b/cpus.c
index 25897edbd3..cb44544fcf 100644
--- a/cpus.c
+++ b/cpus.c
@@ -1347,6 +1347,11 @@ static void *qemu_tcg_rr_cpu_thread_fn(void *arg)
if (r == EXCP_DEBUG) {
cpu_handle_guest_debug(cpu);
break;
+ } else if (r == EXCP_ATOMIC) {
+ qemu_mutex_unlock_iothread();
+ cpu_exec_step_atomic(cpu);
+ qemu_mutex_lock_iothread();
+ break;
}
} else if (cpu->stop) {
if (cpu->unplug) {
@@ -1457,6 +1462,10 @@ static void *qemu_tcg_cpu_thread_fn(void *arg)
*/
g_assert(cpu->halted);
break;
+ case EXCP_ATOMIC:
+ qemu_mutex_unlock_iothread();
+ cpu_exec_step_atomic(cpu);
+ qemu_mutex_lock_iothread();
default:
/* Ignore everything else? */
break;
--
2.11.0
- [Qemu-devel] [PATCH v12 06/24] tcg: add kick timer for single-threaded vCPU emulation, (continued)
- [Qemu-devel] [PATCH v12 06/24] tcg: add kick timer for single-threaded vCPU emulation, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 05/24] tcg: add options for enabling MTTCG, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 14/24] cputlb: tweak qemu_ram_addr_from_host_nofail reporting, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 13/24] cputlb: add assert_cpu_is_self checks, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 15/24] cputlb: introduce tlb_flush_* async work., Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 16/24] cputlb and arm/sparc targets: convert mmuidx flushes from varg to bitmap, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 18/24] cputlb: atomically update tlb fields used by tlb_reset_dirty, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 09/24] tcg: remove global exit_request, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 10/24] tcg: enable tb_lock() for SoftMMU, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 08/24] tcg: drop global lock during TCG code execution, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 12/24] tcg: handle EXCP_ATOMIC exception for system emulation,
Alex Bennée <=
- [Qemu-devel] [PATCH v12 11/24] tcg: enable thread-per-vCPU, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 17/24] cputlb: add tlb_flush_by_mmuidx async routines, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 22/24] target-arm: ensure all cross vCPUs TLB flushes complete, Alex Bennée, 2017/02/13
- [Qemu-devel] [PATCH v12 21/24] target-arm: don't generate WFE/YIELD calls for MTTCG, Alex Bennée, 2017/02/13