blob: b95b09a77dabc70342a9a89043d658e8184a658c [file] [log] [blame]
Peter Crosthwaite5abf9492015-09-10 22:39:31 -07001/*
2 * emulator main execution loop
3 *
4 * Copyright (c) 2003-2005 Fabrice Bellard
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "config.h"
21#include "cpu.h"
22#include "sysemu/cpus.h"
23#include "exec/memory-internal.h"
24
25bool exit_request;
26CPUState *tcg_current_cpu;
27
28/* exit the current TB from a signal handler. The host registers are
29 restored in a state compatible with the CPU emulator
30 */
31#if defined(CONFIG_SOFTMMU)
32void cpu_resume_from_signal(CPUState *cpu, void *puc)
33{
34 /* XXX: restore cpu registers saved in host registers */
35
36 cpu->exception_index = -1;
37 siglongjmp(cpu->jmp_env, 1);
38}
39
40void cpu_reload_memory_map(CPUState *cpu)
41{
42 AddressSpaceDispatch *d;
43
44 if (qemu_in_vcpu_thread()) {
Peter Maydell53f8a5e2015-10-01 15:29:49 +010045 /* The guest can in theory prolong the RCU critical section as long
46 * as it feels like. The major problem with this is that because it
47 * can do multiple reconfigurations of the memory map within the
48 * critical section, we could potentially accumulate an unbounded
49 * collection of memory data structures awaiting reclamation.
Peter Crosthwaite5abf9492015-09-10 22:39:31 -070050 *
Peter Maydell53f8a5e2015-10-01 15:29:49 +010051 * Because the only thing we're currently protecting with RCU is the
52 * memory data structures, it's sufficient to break the critical section
53 * in this callback, which we know will get called every time the
54 * memory map is rearranged.
55 *
56 * (If we add anything else in the system that uses RCU to protect
57 * its data structures, we will need to implement some other mechanism
58 * to force TCG CPUs to exit the critical section, at which point this
59 * part of this callback might become unnecessary.)
Peter Crosthwaite5abf9492015-09-10 22:39:31 -070060 *
61 * This pair matches cpu_exec's rcu_read_lock()/rcu_read_unlock(), which
62 * only protects cpu->as->dispatch. Since we reload it below, we can
63 * split the critical section.
64 */
65 rcu_read_unlock();
66 rcu_read_lock();
67 }
68
69 /* The CPU and TLB are protected by the iothread lock. */
70 d = atomic_rcu_read(&cpu->as->dispatch);
71 cpu->memory_dispatch = d;
72 tlb_flush(cpu, 1);
73}
74#endif
75
76void cpu_loop_exit(CPUState *cpu)
77{
78 cpu->current_tb = NULL;
79 siglongjmp(cpu->jmp_env, 1);
80}
81
82void cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc)
83{
84 if (pc) {
85 cpu_restore_state(cpu, pc);
86 }
87 cpu->current_tb = NULL;
88 siglongjmp(cpu->jmp_env, 1);
89}