2 * QEMU TCG Single Threaded vCPUs implementation
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright (c) 2014 Red Hat Inc.
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
27 #include "qemu-common.h"
28 #include "sysemu/tcg.h"
29 #include "sysemu/replay.h"
30 #include "qemu/main-loop.h"
31 #include "qemu/guest-random.h"
32 #include "exec/exec-all.h"
33 #include "hw/boards.h"
36 #include "tcg-cpus-rr.h"
37 #include "tcg-cpus-icount.h"
39 /* Kick all RR vCPUs */
40 void rr_kick_vcpu_thread(CPUState
*unused
)
52 * The kick timer is responsible for moving single threaded vCPU
53 * emulation on to the next vCPU. If more than one vCPU is running a
54 * timer event with force a cpu->exit so the next vCPU can get
57 * The timer is removed if all vCPUs are idle and restarted again once
58 * idleness is complete.
61 static QEMUTimer
*rr_kick_vcpu_timer
;
62 static CPUState
*rr_current_cpu
;
64 #define TCG_KICK_PERIOD (NANOSECONDS_PER_SECOND / 10)
66 static inline int64_t rr_next_kick_time(void)
68 return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + TCG_KICK_PERIOD
;
71 /* Kick the currently round-robin scheduled vCPU to next */
72 static void rr_kick_next_cpu(void)
76 cpu
= qatomic_mb_read(&rr_current_cpu
);
80 } while (cpu
!= qatomic_mb_read(&rr_current_cpu
));
83 static void rr_kick_thread(void *opaque
)
85 timer_mod(rr_kick_vcpu_timer
, rr_next_kick_time());
89 static void rr_start_kick_timer(void)
91 if (!rr_kick_vcpu_timer
&& CPU_NEXT(first_cpu
)) {
92 rr_kick_vcpu_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL
,
93 rr_kick_thread
, NULL
);
95 if (rr_kick_vcpu_timer
&& !timer_pending(rr_kick_vcpu_timer
)) {
96 timer_mod(rr_kick_vcpu_timer
, rr_next_kick_time());
100 static void rr_stop_kick_timer(void)
102 if (rr_kick_vcpu_timer
&& timer_pending(rr_kick_vcpu_timer
)) {
103 timer_del(rr_kick_vcpu_timer
);
107 static void rr_wait_io_event(void)
111 while (all_cpu_threads_idle()) {
112 rr_stop_kick_timer();
113 qemu_cond_wait_iothread(first_cpu
->halt_cond
);
116 rr_start_kick_timer();
119 qemu_wait_io_event_common(cpu
);
124 * Destroy any remaining vCPUs which have been unplugged and have
127 static void rr_deal_with_unplugged_cpus(void)
132 if (cpu
->unplug
&& !cpu_can_run(cpu
)) {
133 tcg_cpus_destroy(cpu
);
140 * In the single-threaded case each vCPU is simulated in turn. If
141 * there is more than a single vCPU we create a simple timer to kick
142 * the vCPU and ensure we don't get stuck in a tight loop in one vCPU.
143 * This is done explicitly rather than relying on side-effects
147 static void *rr_cpu_thread_fn(void *arg
)
151 assert(tcg_enabled());
152 rcu_register_thread();
153 tcg_register_thread();
155 qemu_mutex_lock_iothread();
156 qemu_thread_get_self(cpu
->thread
);
158 cpu
->thread_id
= qemu_get_thread_id();
160 cpu_thread_signal_created(cpu
);
161 qemu_guest_random_seed_thread_part2(cpu
->random_seed
);
163 /* wait for initial kick-off after machine start */
164 while (first_cpu
->stopped
) {
165 qemu_cond_wait_iothread(first_cpu
->halt_cond
);
167 /* process any pending work */
170 qemu_wait_io_event_common(cpu
);
174 rr_start_kick_timer();
178 /* process any pending work */
179 cpu
->exit_request
= 1;
182 qemu_mutex_unlock_iothread();
184 qemu_mutex_lock_iothread();
186 if (icount_enabled()) {
187 /* Account partial waits to QEMU_CLOCK_VIRTUAL. */
188 icount_account_warp_timer();
190 * Run the timers here. This is much more efficient than
191 * waking up the I/O thread and waiting for completion.
193 icount_handle_deadline();
196 replay_mutex_unlock();
202 while (cpu
&& cpu_work_list_empty(cpu
) && !cpu
->exit_request
) {
204 qatomic_mb_set(&rr_current_cpu
, cpu
);
207 qemu_clock_enable(QEMU_CLOCK_VIRTUAL
,
208 (cpu
->singlestep_enabled
& SSTEP_NOTIMER
) == 0);
210 if (cpu_can_run(cpu
)) {
213 qemu_mutex_unlock_iothread();
214 if (icount_enabled()) {
215 icount_prepare_for_run(cpu
);
217 r
= tcg_cpus_exec(cpu
);
218 if (icount_enabled()) {
219 icount_process_data(cpu
);
221 qemu_mutex_lock_iothread();
223 if (r
== EXCP_DEBUG
) {
224 cpu_handle_guest_debug(cpu
);
226 } else if (r
== EXCP_ATOMIC
) {
227 qemu_mutex_unlock_iothread();
228 cpu_exec_step_atomic(cpu
);
229 qemu_mutex_lock_iothread();
232 } else if (cpu
->stop
) {
240 } /* while (cpu && !cpu->exit_request).. */
242 /* Does not need qatomic_mb_set because a spurious wakeup is okay. */
243 qatomic_set(&rr_current_cpu
, NULL
);
245 if (cpu
&& cpu
->exit_request
) {
246 qatomic_mb_set(&cpu
->exit_request
, 0);
249 if (icount_enabled() && all_cpu_threads_idle()) {
251 * When all cpus are sleeping (e.g in WFI), to avoid a deadlock
252 * in the main_loop, wake it up in order to start the warp timer.
258 rr_deal_with_unplugged_cpus();
261 rcu_unregister_thread();
265 void rr_start_vcpu_thread(CPUState
*cpu
)
267 char thread_name
[VCPU_THREAD_NAME_SIZE
];
268 static QemuCond
*single_tcg_halt_cond
;
269 static QemuThread
*single_tcg_cpu_thread
;
271 g_assert(tcg_enabled());
272 parallel_cpus
= false;
274 if (!single_tcg_cpu_thread
) {
275 cpu
->thread
= g_malloc0(sizeof(QemuThread
));
276 cpu
->halt_cond
= g_malloc0(sizeof(QemuCond
));
277 qemu_cond_init(cpu
->halt_cond
);
279 /* share a single thread for all cpus with TCG */
280 snprintf(thread_name
, VCPU_THREAD_NAME_SIZE
, "ALL CPUs/TCG");
281 qemu_thread_create(cpu
->thread
, thread_name
,
283 cpu
, QEMU_THREAD_JOINABLE
);
285 single_tcg_halt_cond
= cpu
->halt_cond
;
286 single_tcg_cpu_thread
= cpu
->thread
;
288 cpu
->hThread
= qemu_thread_get_handle(cpu
->thread
);
291 /* we share the thread */
292 cpu
->thread
= single_tcg_cpu_thread
;
293 cpu
->halt_cond
= single_tcg_halt_cond
;
294 cpu
->thread_id
= first_cpu
->thread_id
;
300 const CpusAccel tcg_cpus_rr
= {
301 .create_vcpu_thread
= rr_start_vcpu_thread
,
302 .kick_vcpu_thread
= rr_kick_vcpu_thread
,
304 .handle_interrupt
= tcg_cpus_handle_interrupt
,