]> git.proxmox.com Git - mirror_qemu.git/blame - cpus.c
Merge branch 'icount-update' into HEAD
[mirror_qemu.git] / cpus.c
CommitLineData
296af7c9
BS
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25/* Needed early for CONFIG_BSD etc. */
7b31bbc2 26#include "qemu/osdep.h"
33c11879 27#include "qemu-common.h"
8d4e9146 28#include "qemu/config-file.h"
33c11879 29#include "cpu.h"
83c9089e 30#include "monitor/monitor.h"
a4e15de9 31#include "qapi/qmp/qerror.h"
d49b6836 32#include "qemu/error-report.h"
9c17d615 33#include "sysemu/sysemu.h"
da31d594 34#include "sysemu/block-backend.h"
022c62cb 35#include "exec/gdbstub.h"
9c17d615 36#include "sysemu/dma.h"
b3946626 37#include "sysemu/hw_accel.h"
9c17d615 38#include "sysemu/kvm.h"
b0cb0a66 39#include "sysemu/hax.h"
de0b36b6 40#include "qmp-commands.h"
63c91552 41#include "exec/exec-all.h"
296af7c9 42
1de7afc9 43#include "qemu/thread.h"
9c17d615
PB
44#include "sysemu/cpus.h"
45#include "sysemu/qtest.h"
1de7afc9
PB
46#include "qemu/main-loop.h"
47#include "qemu/bitmap.h"
cb365646 48#include "qemu/seqlock.h"
8d4e9146 49#include "tcg.h"
a4e15de9 50#include "qapi-event.h"
9cb805fd 51#include "hw/nmi.h"
8b427044 52#include "sysemu/replay.h"
0ff0fc19
JK
53
54#ifndef _WIN32
1de7afc9 55#include "qemu/compatfd.h"
0ff0fc19 56#endif
296af7c9 57
6d9cb73c
JK
58#ifdef CONFIG_LINUX
59
60#include <sys/prctl.h>
61
c0532a76
MT
62#ifndef PR_MCE_KILL
63#define PR_MCE_KILL 33
64#endif
65
6d9cb73c
JK
66#ifndef PR_MCE_KILL_SET
67#define PR_MCE_KILL_SET 1
68#endif
69
70#ifndef PR_MCE_KILL_EARLY
71#define PR_MCE_KILL_EARLY 1
72#endif
73
74#endif /* CONFIG_LINUX */
75
27498bef
ST
76int64_t max_delay;
77int64_t max_advance;
296af7c9 78
2adcc85d
JH
79/* vcpu throttling controls */
80static QEMUTimer *throttle_timer;
81static unsigned int throttle_percentage;
82
83#define CPU_THROTTLE_PCT_MIN 1
84#define CPU_THROTTLE_PCT_MAX 99
85#define CPU_THROTTLE_TIMESLICE_NS 10000000
86
321bc0b2
TC
87bool cpu_is_stopped(CPUState *cpu)
88{
89 return cpu->stopped || !runstate_is_running();
90}
91
a98ae1d8 92static bool cpu_thread_is_idle(CPUState *cpu)
ac873f1e 93{
c64ca814 94 if (cpu->stop || cpu->queued_work_first) {
ac873f1e
PM
95 return false;
96 }
321bc0b2 97 if (cpu_is_stopped(cpu)) {
ac873f1e
PM
98 return true;
99 }
8c2e1b00 100 if (!cpu->halted || cpu_has_work(cpu) ||
215e79c0 101 kvm_halt_in_kernel()) {
ac873f1e
PM
102 return false;
103 }
104 return true;
105}
106
107static bool all_cpu_threads_idle(void)
108{
182735ef 109 CPUState *cpu;
ac873f1e 110
bdc44640 111 CPU_FOREACH(cpu) {
182735ef 112 if (!cpu_thread_is_idle(cpu)) {
ac873f1e
PM
113 return false;
114 }
115 }
116 return true;
117}
118
946fb27c
PB
119/***********************************************************/
120/* guest cycle counter */
121
a3270e19
PB
122/* Protected by TimersState seqlock */
123
5045e9d9 124static bool icount_sleep = true;
71468395 125static int64_t vm_clock_warp_start = -1;
946fb27c
PB
126/* Conversion factor from emulated instructions to virtual clock ticks. */
127static int icount_time_shift;
128/* Arbitrarily pick 1MIPS as the minimum allowable speed. */
129#define MAX_ICOUNT_SHIFT 10
a3270e19 130
946fb27c
PB
131static QEMUTimer *icount_rt_timer;
132static QEMUTimer *icount_vm_timer;
133static QEMUTimer *icount_warp_timer;
946fb27c
PB
134
135typedef struct TimersState {
cb365646 136 /* Protected by BQL. */
946fb27c
PB
137 int64_t cpu_ticks_prev;
138 int64_t cpu_ticks_offset;
cb365646
LPF
139
140 /* cpu_clock_offset can be read out of BQL, so protect it with
141 * this lock.
142 */
143 QemuSeqLock vm_clock_seqlock;
946fb27c
PB
144 int64_t cpu_clock_offset;
145 int32_t cpu_ticks_enabled;
146 int64_t dummy;
c96778bb
FK
147
148 /* Compensate for varying guest execution speed. */
149 int64_t qemu_icount_bias;
150 /* Only written by TCG thread */
151 int64_t qemu_icount;
946fb27c
PB
152} TimersState;
153
d9cd4007 154static TimersState timers_state;
8d4e9146
FK
155bool mttcg_enabled;
156
157/*
158 * We default to false if we know other options have been enabled
159 * which are currently incompatible with MTTCG. Otherwise when each
160 * guest (target) has been updated to support:
161 * - atomic instructions
162 * - memory ordering primitives (barriers)
163 * they can set the appropriate CONFIG flags in ${target}-softmmu.mak
164 *
165 * Once a guest architecture has been converted to the new primitives
166 * there are two remaining limitations to check.
167 *
168 * - The guest can't be oversized (e.g. 64 bit guest on 32 bit host)
169 * - The host must have a stronger memory order than the guest
170 *
171 * It may be possible in future to support strong guests on weak hosts
172 * but that will require tagging all load/stores in a guest with their
173 * implicit memory order requirements which would likely slow things
174 * down a lot.
175 */
176
177static bool check_tcg_memory_orders_compatible(void)
178{
179#if defined(TCG_GUEST_DEFAULT_MO) && defined(TCG_TARGET_DEFAULT_MO)
180 return (TCG_GUEST_DEFAULT_MO & ~TCG_TARGET_DEFAULT_MO) == 0;
181#else
182 return false;
183#endif
184}
185
186static bool default_mttcg_enabled(void)
187{
188 QemuOpts *icount_opts = qemu_find_opts_singleton("icount");
189 const char *rr = qemu_opt_get(icount_opts, "rr");
190
191 if (rr || TCG_OVERSIZED_GUEST) {
192 return false;
193 } else {
194#ifdef TARGET_SUPPORTS_MTTCG
195 return check_tcg_memory_orders_compatible();
196#else
197 return false;
198#endif
199 }
200}
201
202void qemu_tcg_configure(QemuOpts *opts, Error **errp)
203{
204 const char *t = qemu_opt_get(opts, "thread");
205 if (t) {
206 if (strcmp(t, "multi") == 0) {
207 if (TCG_OVERSIZED_GUEST) {
208 error_setg(errp, "No MTTCG when guest word size > hosts");
209 } else {
210 if (!check_tcg_memory_orders_compatible()) {
211 error_report("Guest expects a stronger memory ordering "
212 "than the host provides");
213 error_printf("This may cause strange/hard to debug errors");
214 }
215 mttcg_enabled = true;
216 }
217 } else if (strcmp(t, "single") == 0) {
218 mttcg_enabled = false;
219 } else {
220 error_setg(errp, "Invalid 'thread' setting %s", t);
221 }
222 } else {
223 mttcg_enabled = default_mttcg_enabled();
224 }
225}
946fb27c 226
2a62914b 227int64_t cpu_get_icount_raw(void)
946fb27c
PB
228{
229 int64_t icount;
4917cf44 230 CPUState *cpu = current_cpu;
946fb27c 231
c96778bb 232 icount = timers_state.qemu_icount;
4917cf44 233 if (cpu) {
414b15c9 234 if (!cpu->can_do_io) {
2a62914b
PD
235 fprintf(stderr, "Bad icount read\n");
236 exit(1);
946fb27c 237 }
28ecfd7a 238 icount -= (cpu->icount_decr.u16.low + cpu->icount_extra);
946fb27c 239 }
2a62914b
PD
240 return icount;
241}
242
243/* Return the virtual CPU time, based on the instruction counter. */
244static int64_t cpu_get_icount_locked(void)
245{
246 int64_t icount = cpu_get_icount_raw();
3f031313 247 return timers_state.qemu_icount_bias + cpu_icount_to_ns(icount);
946fb27c
PB
248}
249
17a15f1b
PB
250int64_t cpu_get_icount(void)
251{
252 int64_t icount;
253 unsigned start;
254
255 do {
256 start = seqlock_read_begin(&timers_state.vm_clock_seqlock);
257 icount = cpu_get_icount_locked();
258 } while (seqlock_read_retry(&timers_state.vm_clock_seqlock, start));
259
260 return icount;
261}
262
3f031313
FK
263int64_t cpu_icount_to_ns(int64_t icount)
264{
265 return icount << icount_time_shift;
266}
267
d90f3cca
C
268/* return the time elapsed in VM between vm_start and vm_stop. Unless
269 * icount is active, cpu_get_ticks() uses units of the host CPU cycle
270 * counter.
271 *
272 * Caller must hold the BQL
273 */
946fb27c
PB
274int64_t cpu_get_ticks(void)
275{
5f3e3101
PB
276 int64_t ticks;
277
946fb27c
PB
278 if (use_icount) {
279 return cpu_get_icount();
280 }
5f3e3101
PB
281
282 ticks = timers_state.cpu_ticks_offset;
283 if (timers_state.cpu_ticks_enabled) {
4a7428c5 284 ticks += cpu_get_host_ticks();
5f3e3101
PB
285 }
286
287 if (timers_state.cpu_ticks_prev > ticks) {
288 /* Note: non increasing ticks may happen if the host uses
289 software suspend */
290 timers_state.cpu_ticks_offset += timers_state.cpu_ticks_prev - ticks;
291 ticks = timers_state.cpu_ticks_prev;
946fb27c 292 }
5f3e3101
PB
293
294 timers_state.cpu_ticks_prev = ticks;
295 return ticks;
946fb27c
PB
296}
297
cb365646 298static int64_t cpu_get_clock_locked(void)
946fb27c 299{
1d45cea5 300 int64_t time;
cb365646 301
1d45cea5 302 time = timers_state.cpu_clock_offset;
5f3e3101 303 if (timers_state.cpu_ticks_enabled) {
1d45cea5 304 time += get_clock();
946fb27c 305 }
cb365646 306
1d45cea5 307 return time;
cb365646
LPF
308}
309
d90f3cca 310/* Return the monotonic time elapsed in VM, i.e.,
8212ff86
PM
311 * the time between vm_start and vm_stop
312 */
cb365646
LPF
313int64_t cpu_get_clock(void)
314{
315 int64_t ti;
316 unsigned start;
317
318 do {
319 start = seqlock_read_begin(&timers_state.vm_clock_seqlock);
320 ti = cpu_get_clock_locked();
321 } while (seqlock_read_retry(&timers_state.vm_clock_seqlock, start));
322
323 return ti;
946fb27c
PB
324}
325
cb365646 326/* enable cpu_get_ticks()
3224e878 327 * Caller must hold BQL which serves as mutex for vm_clock_seqlock.
cb365646 328 */
946fb27c
PB
329void cpu_enable_ticks(void)
330{
cb365646 331 /* Here, the really thing protected by seqlock is cpu_clock_offset. */
03719e44 332 seqlock_write_begin(&timers_state.vm_clock_seqlock);
946fb27c 333 if (!timers_state.cpu_ticks_enabled) {
4a7428c5 334 timers_state.cpu_ticks_offset -= cpu_get_host_ticks();
946fb27c
PB
335 timers_state.cpu_clock_offset -= get_clock();
336 timers_state.cpu_ticks_enabled = 1;
337 }
03719e44 338 seqlock_write_end(&timers_state.vm_clock_seqlock);
946fb27c
PB
339}
340
341/* disable cpu_get_ticks() : the clock is stopped. You must not call
cb365646 342 * cpu_get_ticks() after that.
3224e878 343 * Caller must hold BQL which serves as mutex for vm_clock_seqlock.
cb365646 344 */
946fb27c
PB
345void cpu_disable_ticks(void)
346{
cb365646 347 /* Here, the really thing protected by seqlock is cpu_clock_offset. */
03719e44 348 seqlock_write_begin(&timers_state.vm_clock_seqlock);
946fb27c 349 if (timers_state.cpu_ticks_enabled) {
4a7428c5 350 timers_state.cpu_ticks_offset += cpu_get_host_ticks();
cb365646 351 timers_state.cpu_clock_offset = cpu_get_clock_locked();
946fb27c
PB
352 timers_state.cpu_ticks_enabled = 0;
353 }
03719e44 354 seqlock_write_end(&timers_state.vm_clock_seqlock);
946fb27c
PB
355}
356
357/* Correlation between real and virtual time is always going to be
358 fairly approximate, so ignore small variation.
359 When the guest is idle real and virtual time will be aligned in
360 the IO wait loop. */
73bcb24d 361#define ICOUNT_WOBBLE (NANOSECONDS_PER_SECOND / 10)
946fb27c
PB
362
363static void icount_adjust(void)
364{
365 int64_t cur_time;
366 int64_t cur_icount;
367 int64_t delta;
a3270e19
PB
368
369 /* Protected by TimersState mutex. */
946fb27c 370 static int64_t last_delta;
468cc7cf 371
946fb27c
PB
372 /* If the VM is not running, then do nothing. */
373 if (!runstate_is_running()) {
374 return;
375 }
468cc7cf 376
03719e44 377 seqlock_write_begin(&timers_state.vm_clock_seqlock);
17a15f1b
PB
378 cur_time = cpu_get_clock_locked();
379 cur_icount = cpu_get_icount_locked();
468cc7cf 380
946fb27c
PB
381 delta = cur_icount - cur_time;
382 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
383 if (delta > 0
384 && last_delta + ICOUNT_WOBBLE < delta * 2
385 && icount_time_shift > 0) {
386 /* The guest is getting too far ahead. Slow time down. */
387 icount_time_shift--;
388 }
389 if (delta < 0
390 && last_delta - ICOUNT_WOBBLE > delta * 2
391 && icount_time_shift < MAX_ICOUNT_SHIFT) {
392 /* The guest is getting too far behind. Speed time up. */
393 icount_time_shift++;
394 }
395 last_delta = delta;
c96778bb
FK
396 timers_state.qemu_icount_bias = cur_icount
397 - (timers_state.qemu_icount << icount_time_shift);
03719e44 398 seqlock_write_end(&timers_state.vm_clock_seqlock);
946fb27c
PB
399}
400
401static void icount_adjust_rt(void *opaque)
402{
40daca54 403 timer_mod(icount_rt_timer,
1979b908 404 qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL_RT) + 1000);
946fb27c
PB
405 icount_adjust();
406}
407
408static void icount_adjust_vm(void *opaque)
409{
40daca54
AB
410 timer_mod(icount_vm_timer,
411 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
73bcb24d 412 NANOSECONDS_PER_SECOND / 10);
946fb27c
PB
413 icount_adjust();
414}
415
416static int64_t qemu_icount_round(int64_t count)
417{
418 return (count + (1 << icount_time_shift) - 1) >> icount_time_shift;
419}
420
efab87cf 421static void icount_warp_rt(void)
946fb27c 422{
ccffff48
AB
423 unsigned seq;
424 int64_t warp_start;
425
17a15f1b
PB
426 /* The icount_warp_timer is rescheduled soon after vm_clock_warp_start
427 * changes from -1 to another value, so the race here is okay.
428 */
ccffff48
AB
429 do {
430 seq = seqlock_read_begin(&timers_state.vm_clock_seqlock);
431 warp_start = vm_clock_warp_start;
432 } while (seqlock_read_retry(&timers_state.vm_clock_seqlock, seq));
433
434 if (warp_start == -1) {
946fb27c
PB
435 return;
436 }
437
03719e44 438 seqlock_write_begin(&timers_state.vm_clock_seqlock);
946fb27c 439 if (runstate_is_running()) {
8eda206e
PD
440 int64_t clock = REPLAY_CLOCK(REPLAY_CLOCK_VIRTUAL_RT,
441 cpu_get_clock_locked());
8ed961d9
PB
442 int64_t warp_delta;
443
444 warp_delta = clock - vm_clock_warp_start;
445 if (use_icount == 2) {
946fb27c 446 /*
40daca54 447 * In adaptive mode, do not let QEMU_CLOCK_VIRTUAL run too
946fb27c
PB
448 * far ahead of real time.
449 */
17a15f1b 450 int64_t cur_icount = cpu_get_icount_locked();
bf2a7ddb 451 int64_t delta = clock - cur_icount;
8ed961d9 452 warp_delta = MIN(warp_delta, delta);
946fb27c 453 }
c96778bb 454 timers_state.qemu_icount_bias += warp_delta;
946fb27c
PB
455 }
456 vm_clock_warp_start = -1;
03719e44 457 seqlock_write_end(&timers_state.vm_clock_seqlock);
8ed961d9
PB
458
459 if (qemu_clock_expired(QEMU_CLOCK_VIRTUAL)) {
460 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
461 }
946fb27c
PB
462}
463
e76d1798 464static void icount_timer_cb(void *opaque)
efab87cf 465{
e76d1798
PD
466 /* No need for a checkpoint because the timer already synchronizes
467 * with CHECKPOINT_CLOCK_VIRTUAL_RT.
468 */
469 icount_warp_rt();
efab87cf
PD
470}
471
8156be56
PB
472void qtest_clock_warp(int64_t dest)
473{
40daca54 474 int64_t clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
efef88b3 475 AioContext *aio_context;
8156be56 476 assert(qtest_enabled());
efef88b3 477 aio_context = qemu_get_aio_context();
8156be56 478 while (clock < dest) {
40daca54 479 int64_t deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
c9299e2f 480 int64_t warp = qemu_soonest_timeout(dest - clock, deadline);
efef88b3 481
03719e44 482 seqlock_write_begin(&timers_state.vm_clock_seqlock);
c96778bb 483 timers_state.qemu_icount_bias += warp;
03719e44 484 seqlock_write_end(&timers_state.vm_clock_seqlock);
17a15f1b 485
40daca54 486 qemu_clock_run_timers(QEMU_CLOCK_VIRTUAL);
efef88b3 487 timerlist_run_timers(aio_context->tlg.tl[QEMU_CLOCK_VIRTUAL]);
40daca54 488 clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
8156be56 489 }
40daca54 490 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
8156be56
PB
491}
492
e76d1798 493void qemu_start_warp_timer(void)
946fb27c 494{
ce78d18c 495 int64_t clock;
946fb27c
PB
496 int64_t deadline;
497
e76d1798 498 if (!use_icount) {
946fb27c
PB
499 return;
500 }
501
8bd7f71d
PD
502 /* Nothing to do if the VM is stopped: QEMU_CLOCK_VIRTUAL timers
503 * do not fire, so computing the deadline does not make sense.
504 */
505 if (!runstate_is_running()) {
506 return;
507 }
508
509 /* warp clock deterministically in record/replay mode */
e76d1798 510 if (!replay_checkpoint(CHECKPOINT_CLOCK_WARP_START)) {
8bd7f71d
PD
511 return;
512 }
513
ce78d18c 514 if (!all_cpu_threads_idle()) {
946fb27c
PB
515 return;
516 }
517
8156be56
PB
518 if (qtest_enabled()) {
519 /* When testing, qtest commands advance icount. */
e76d1798 520 return;
8156be56
PB
521 }
522
ac70aafc 523 /* We want to use the earliest deadline from ALL vm_clocks */
bf2a7ddb 524 clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL_RT);
40daca54 525 deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
ce78d18c 526 if (deadline < 0) {
d7a0f71d
VC
527 static bool notified;
528 if (!icount_sleep && !notified) {
529 error_report("WARNING: icount sleep disabled and no active timers");
530 notified = true;
531 }
ce78d18c 532 return;
ac70aafc
AB
533 }
534
946fb27c
PB
535 if (deadline > 0) {
536 /*
40daca54 537 * Ensure QEMU_CLOCK_VIRTUAL proceeds even when the virtual CPU goes to
946fb27c
PB
538 * sleep. Otherwise, the CPU might be waiting for a future timer
539 * interrupt to wake it up, but the interrupt never comes because
540 * the vCPU isn't running any insns and thus doesn't advance the
40daca54 541 * QEMU_CLOCK_VIRTUAL.
946fb27c 542 */
5045e9d9
VC
543 if (!icount_sleep) {
544 /*
545 * We never let VCPUs sleep in no sleep icount mode.
546 * If there is a pending QEMU_CLOCK_VIRTUAL timer we just advance
547 * to the next QEMU_CLOCK_VIRTUAL event and notify it.
548 * It is useful when we want a deterministic execution time,
549 * isolated from host latencies.
550 */
03719e44 551 seqlock_write_begin(&timers_state.vm_clock_seqlock);
5045e9d9 552 timers_state.qemu_icount_bias += deadline;
03719e44 553 seqlock_write_end(&timers_state.vm_clock_seqlock);
5045e9d9
VC
554 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
555 } else {
556 /*
557 * We do stop VCPUs and only advance QEMU_CLOCK_VIRTUAL after some
558 * "real" time, (related to the time left until the next event) has
559 * passed. The QEMU_CLOCK_VIRTUAL_RT clock will do this.
560 * This avoids that the warps are visible externally; for example,
561 * you will not be sending network packets continuously instead of
562 * every 100ms.
563 */
03719e44 564 seqlock_write_begin(&timers_state.vm_clock_seqlock);
5045e9d9
VC
565 if (vm_clock_warp_start == -1 || vm_clock_warp_start > clock) {
566 vm_clock_warp_start = clock;
567 }
03719e44 568 seqlock_write_end(&timers_state.vm_clock_seqlock);
5045e9d9 569 timer_mod_anticipate(icount_warp_timer, clock + deadline);
ce78d18c 570 }
ac70aafc 571 } else if (deadline == 0) {
40daca54 572 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
946fb27c
PB
573 }
574}
575
e76d1798
PD
576static void qemu_account_warp_timer(void)
577{
578 if (!use_icount || !icount_sleep) {
579 return;
580 }
581
582 /* Nothing to do if the VM is stopped: QEMU_CLOCK_VIRTUAL timers
583 * do not fire, so computing the deadline does not make sense.
584 */
585 if (!runstate_is_running()) {
586 return;
587 }
588
589 /* warp clock deterministically in record/replay mode */
590 if (!replay_checkpoint(CHECKPOINT_CLOCK_WARP_ACCOUNT)) {
591 return;
592 }
593
594 timer_del(icount_warp_timer);
595 icount_warp_rt();
596}
597
d09eae37
FK
598static bool icount_state_needed(void *opaque)
599{
600 return use_icount;
601}
602
603/*
604 * This is a subsection for icount migration.
605 */
606static const VMStateDescription icount_vmstate_timers = {
607 .name = "timer/icount",
608 .version_id = 1,
609 .minimum_version_id = 1,
5cd8cada 610 .needed = icount_state_needed,
d09eae37
FK
611 .fields = (VMStateField[]) {
612 VMSTATE_INT64(qemu_icount_bias, TimersState),
613 VMSTATE_INT64(qemu_icount, TimersState),
614 VMSTATE_END_OF_LIST()
615 }
616};
617
946fb27c
PB
618static const VMStateDescription vmstate_timers = {
619 .name = "timer",
620 .version_id = 2,
621 .minimum_version_id = 1,
35d08458 622 .fields = (VMStateField[]) {
946fb27c
PB
623 VMSTATE_INT64(cpu_ticks_offset, TimersState),
624 VMSTATE_INT64(dummy, TimersState),
625 VMSTATE_INT64_V(cpu_clock_offset, TimersState, 2),
626 VMSTATE_END_OF_LIST()
d09eae37 627 },
5cd8cada
JQ
628 .subsections = (const VMStateDescription*[]) {
629 &icount_vmstate_timers,
630 NULL
946fb27c
PB
631 }
632};
633
14e6fe12 634static void cpu_throttle_thread(CPUState *cpu, run_on_cpu_data opaque)
2adcc85d 635{
2adcc85d
JH
636 double pct;
637 double throttle_ratio;
638 long sleeptime_ns;
639
640 if (!cpu_throttle_get_percentage()) {
641 return;
642 }
643
644 pct = (double)cpu_throttle_get_percentage()/100;
645 throttle_ratio = pct / (1 - pct);
646 sleeptime_ns = (long)(throttle_ratio * CPU_THROTTLE_TIMESLICE_NS);
647
648 qemu_mutex_unlock_iothread();
649 atomic_set(&cpu->throttle_thread_scheduled, 0);
650 g_usleep(sleeptime_ns / 1000); /* Convert ns to us for usleep call */
651 qemu_mutex_lock_iothread();
652}
653
654static void cpu_throttle_timer_tick(void *opaque)
655{
656 CPUState *cpu;
657 double pct;
658
659 /* Stop the timer if needed */
660 if (!cpu_throttle_get_percentage()) {
661 return;
662 }
663 CPU_FOREACH(cpu) {
664 if (!atomic_xchg(&cpu->throttle_thread_scheduled, 1)) {
14e6fe12
PB
665 async_run_on_cpu(cpu, cpu_throttle_thread,
666 RUN_ON_CPU_NULL);
2adcc85d
JH
667 }
668 }
669
670 pct = (double)cpu_throttle_get_percentage()/100;
671 timer_mod(throttle_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL_RT) +
672 CPU_THROTTLE_TIMESLICE_NS / (1-pct));
673}
674
675void cpu_throttle_set(int new_throttle_pct)
676{
677 /* Ensure throttle percentage is within valid range */
678 new_throttle_pct = MIN(new_throttle_pct, CPU_THROTTLE_PCT_MAX);
679 new_throttle_pct = MAX(new_throttle_pct, CPU_THROTTLE_PCT_MIN);
680
681 atomic_set(&throttle_percentage, new_throttle_pct);
682
683 timer_mod(throttle_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL_RT) +
684 CPU_THROTTLE_TIMESLICE_NS);
685}
686
687void cpu_throttle_stop(void)
688{
689 atomic_set(&throttle_percentage, 0);
690}
691
692bool cpu_throttle_active(void)
693{
694 return (cpu_throttle_get_percentage() != 0);
695}
696
697int cpu_throttle_get_percentage(void)
698{
699 return atomic_read(&throttle_percentage);
700}
701
4603ea01
PD
702void cpu_ticks_init(void)
703{
ccdb3c1f 704 seqlock_init(&timers_state.vm_clock_seqlock);
4603ea01 705 vmstate_register(NULL, 0, &vmstate_timers, &timers_state);
2adcc85d
JH
706 throttle_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL_RT,
707 cpu_throttle_timer_tick, NULL);
4603ea01
PD
708}
709
1ad9580b 710void configure_icount(QemuOpts *opts, Error **errp)
946fb27c 711{
1ad9580b 712 const char *option;
a8bfac37 713 char *rem_str = NULL;
1ad9580b 714
1ad9580b 715 option = qemu_opt_get(opts, "shift");
946fb27c 716 if (!option) {
a8bfac37
ST
717 if (qemu_opt_get(opts, "align") != NULL) {
718 error_setg(errp, "Please specify shift option when using align");
719 }
946fb27c
PB
720 return;
721 }
f1f4b57e
VC
722
723 icount_sleep = qemu_opt_get_bool(opts, "sleep", true);
5045e9d9
VC
724 if (icount_sleep) {
725 icount_warp_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL_RT,
e76d1798 726 icount_timer_cb, NULL);
5045e9d9 727 }
f1f4b57e 728
a8bfac37 729 icount_align_option = qemu_opt_get_bool(opts, "align", false);
f1f4b57e
VC
730
731 if (icount_align_option && !icount_sleep) {
778d9f9b 732 error_setg(errp, "align=on and sleep=off are incompatible");
f1f4b57e 733 }
946fb27c 734 if (strcmp(option, "auto") != 0) {
a8bfac37
ST
735 errno = 0;
736 icount_time_shift = strtol(option, &rem_str, 0);
737 if (errno != 0 || *rem_str != '\0' || !strlen(option)) {
738 error_setg(errp, "icount: Invalid shift value");
739 }
946fb27c
PB
740 use_icount = 1;
741 return;
a8bfac37
ST
742 } else if (icount_align_option) {
743 error_setg(errp, "shift=auto and align=on are incompatible");
f1f4b57e 744 } else if (!icount_sleep) {
778d9f9b 745 error_setg(errp, "shift=auto and sleep=off are incompatible");
946fb27c
PB
746 }
747
748 use_icount = 2;
749
750 /* 125MIPS seems a reasonable initial guess at the guest speed.
751 It will be corrected fairly quickly anyway. */
752 icount_time_shift = 3;
753
754 /* Have both realtime and virtual time triggers for speed adjustment.
755 The realtime trigger catches emulated time passing too slowly,
756 the virtual time trigger catches emulated time passing too fast.
757 Realtime triggers occur even when idle, so use them less frequently
758 than VM triggers. */
bf2a7ddb
PD
759 icount_rt_timer = timer_new_ms(QEMU_CLOCK_VIRTUAL_RT,
760 icount_adjust_rt, NULL);
40daca54 761 timer_mod(icount_rt_timer,
bf2a7ddb 762 qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL_RT) + 1000);
40daca54
AB
763 icount_vm_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
764 icount_adjust_vm, NULL);
765 timer_mod(icount_vm_timer,
766 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
73bcb24d 767 NANOSECONDS_PER_SECOND / 10);
946fb27c
PB
768}
769
6546706d
AB
770/***********************************************************/
771/* TCG vCPU kick timer
772 *
773 * The kick timer is responsible for moving single threaded vCPU
774 * emulation on to the next vCPU. If more than one vCPU is running a
775 * timer event with force a cpu->exit so the next vCPU can get
776 * scheduled.
777 *
778 * The timer is removed if all vCPUs are idle and restarted again once
779 * idleness is complete.
780 */
781
782static QEMUTimer *tcg_kick_vcpu_timer;
791158d9 783static CPUState *tcg_current_rr_cpu;
6546706d
AB
784
785#define TCG_KICK_PERIOD (NANOSECONDS_PER_SECOND / 10)
786
787static inline int64_t qemu_tcg_next_kick(void)
788{
789 return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + TCG_KICK_PERIOD;
790}
791
791158d9
AB
792/* Kick the currently round-robin scheduled vCPU */
793static void qemu_cpu_kick_rr_cpu(void)
794{
795 CPUState *cpu;
791158d9
AB
796 do {
797 cpu = atomic_mb_read(&tcg_current_rr_cpu);
798 if (cpu) {
799 cpu_exit(cpu);
800 }
801 } while (cpu != atomic_mb_read(&tcg_current_rr_cpu));
802}
803
6546706d
AB
804static void kick_tcg_thread(void *opaque)
805{
806 timer_mod(tcg_kick_vcpu_timer, qemu_tcg_next_kick());
791158d9 807 qemu_cpu_kick_rr_cpu();
6546706d
AB
808}
809
810static void start_tcg_kick_timer(void)
811{
37257942 812 if (!mttcg_enabled && !tcg_kick_vcpu_timer && CPU_NEXT(first_cpu)) {
6546706d
AB
813 tcg_kick_vcpu_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL,
814 kick_tcg_thread, NULL);
815 timer_mod(tcg_kick_vcpu_timer, qemu_tcg_next_kick());
816 }
817}
818
819static void stop_tcg_kick_timer(void)
820{
821 if (tcg_kick_vcpu_timer) {
822 timer_del(tcg_kick_vcpu_timer);
823 tcg_kick_vcpu_timer = NULL;
824 }
825}
826
296af7c9
BS
827/***********************************************************/
828void hw_error(const char *fmt, ...)
829{
830 va_list ap;
55e5c285 831 CPUState *cpu;
296af7c9
BS
832
833 va_start(ap, fmt);
834 fprintf(stderr, "qemu: hardware error: ");
835 vfprintf(stderr, fmt, ap);
836 fprintf(stderr, "\n");
bdc44640 837 CPU_FOREACH(cpu) {
55e5c285 838 fprintf(stderr, "CPU #%d:\n", cpu->cpu_index);
878096ee 839 cpu_dump_state(cpu, stderr, fprintf, CPU_DUMP_FPU);
296af7c9
BS
840 }
841 va_end(ap);
842 abort();
843}
844
845void cpu_synchronize_all_states(void)
846{
182735ef 847 CPUState *cpu;
296af7c9 848
bdc44640 849 CPU_FOREACH(cpu) {
182735ef 850 cpu_synchronize_state(cpu);
296af7c9
BS
851 }
852}
853
854void cpu_synchronize_all_post_reset(void)
855{
182735ef 856 CPUState *cpu;
296af7c9 857
bdc44640 858 CPU_FOREACH(cpu) {
182735ef 859 cpu_synchronize_post_reset(cpu);
296af7c9
BS
860 }
861}
862
863void cpu_synchronize_all_post_init(void)
864{
182735ef 865 CPUState *cpu;
296af7c9 866
bdc44640 867 CPU_FOREACH(cpu) {
182735ef 868 cpu_synchronize_post_init(cpu);
296af7c9
BS
869 }
870}
871
56983463 872static int do_vm_stop(RunState state)
296af7c9 873{
56983463
KW
874 int ret = 0;
875
1354869c 876 if (runstate_is_running()) {
296af7c9 877 cpu_disable_ticks();
296af7c9 878 pause_all_vcpus();
f5bbfba1 879 runstate_set(state);
1dfb4dd9 880 vm_state_notify(0, state);
a4e15de9 881 qapi_event_send_stop(&error_abort);
296af7c9 882 }
56983463 883
594a45ce 884 bdrv_drain_all();
6d0ceb80 885 replay_disable_events();
22af08ea 886 ret = bdrv_flush_all();
594a45ce 887
56983463 888 return ret;
296af7c9
BS
889}
890
a1fcaa73 891static bool cpu_can_run(CPUState *cpu)
296af7c9 892{
4fdeee7c 893 if (cpu->stop) {
a1fcaa73 894 return false;
0ab07c62 895 }
321bc0b2 896 if (cpu_is_stopped(cpu)) {
a1fcaa73 897 return false;
0ab07c62 898 }
a1fcaa73 899 return true;
296af7c9
BS
900}
901
91325046 902static void cpu_handle_guest_debug(CPUState *cpu)
83f338f7 903{
64f6b346 904 gdb_set_stop_cpu(cpu);
8cf71710 905 qemu_system_debug_request();
f324e766 906 cpu->stopped = true;
3c638d06
JK
907}
908
6d9cb73c
JK
909#ifdef CONFIG_LINUX
910static void sigbus_reraise(void)
911{
912 sigset_t set;
913 struct sigaction action;
914
915 memset(&action, 0, sizeof(action));
916 action.sa_handler = SIG_DFL;
917 if (!sigaction(SIGBUS, &action, NULL)) {
918 raise(SIGBUS);
919 sigemptyset(&set);
920 sigaddset(&set, SIGBUS);
a2d1761d 921 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
6d9cb73c
JK
922 }
923 perror("Failed to re-raise SIGBUS!\n");
924 abort();
925}
926
927static void sigbus_handler(int n, struct qemu_signalfd_siginfo *siginfo,
928 void *ctx)
929{
930 if (kvm_on_sigbus(siginfo->ssi_code,
931 (void *)(intptr_t)siginfo->ssi_addr)) {
932 sigbus_reraise();
933 }
934}
935
936static void qemu_init_sigbus(void)
937{
938 struct sigaction action;
939
940 memset(&action, 0, sizeof(action));
941 action.sa_flags = SA_SIGINFO;
942 action.sa_sigaction = (void (*)(int, siginfo_t*, void*))sigbus_handler;
943 sigaction(SIGBUS, &action, NULL);
944
945 prctl(PR_MCE_KILL, PR_MCE_KILL_SET, PR_MCE_KILL_EARLY, 0, 0);
946}
947
290adf38 948static void qemu_kvm_eat_signals(CPUState *cpu)
1ab3c6c0
JK
949{
950 struct timespec ts = { 0, 0 };
951 siginfo_t siginfo;
952 sigset_t waitset;
953 sigset_t chkset;
954 int r;
955
956 sigemptyset(&waitset);
957 sigaddset(&waitset, SIG_IPI);
958 sigaddset(&waitset, SIGBUS);
959
960 do {
961 r = sigtimedwait(&waitset, &siginfo, &ts);
962 if (r == -1 && !(errno == EAGAIN || errno == EINTR)) {
963 perror("sigtimedwait");
964 exit(1);
965 }
966
967 switch (r) {
968 case SIGBUS:
290adf38 969 if (kvm_on_sigbus_vcpu(cpu, siginfo.si_code, siginfo.si_addr)) {
1ab3c6c0
JK
970 sigbus_reraise();
971 }
972 break;
973 default:
974 break;
975 }
976
977 r = sigpending(&chkset);
978 if (r == -1) {
979 perror("sigpending");
980 exit(1);
981 }
982 } while (sigismember(&chkset, SIG_IPI) || sigismember(&chkset, SIGBUS));
1ab3c6c0
JK
983}
984
6d9cb73c
JK
985#else /* !CONFIG_LINUX */
986
987static void qemu_init_sigbus(void)
988{
989}
1ab3c6c0 990
290adf38 991static void qemu_kvm_eat_signals(CPUState *cpu)
1ab3c6c0
JK
992{
993}
6d9cb73c
JK
994#endif /* !CONFIG_LINUX */
995
296af7c9 996#ifndef _WIN32
55f8d6ac
JK
997static void dummy_signal(int sig)
998{
999}
55f8d6ac 1000
13618e05 1001static void qemu_kvm_init_cpu_signals(CPUState *cpu)
714bd040
PB
1002{
1003 int r;
1004 sigset_t set;
1005 struct sigaction sigact;
1006
1007 memset(&sigact, 0, sizeof(sigact));
1008 sigact.sa_handler = dummy_signal;
1009 sigaction(SIG_IPI, &sigact, NULL);
1010
714bd040
PB
1011 pthread_sigmask(SIG_BLOCK, NULL, &set);
1012 sigdelset(&set, SIG_IPI);
714bd040 1013 sigdelset(&set, SIGBUS);
491d6e80 1014 r = kvm_set_signal_mask(cpu, &set);
714bd040
PB
1015 if (r) {
1016 fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(-r));
1017 exit(1);
1018 }
1019}
1020
55f8d6ac 1021#else /* _WIN32 */
13618e05 1022static void qemu_kvm_init_cpu_signals(CPUState *cpu)
ff48eb5f 1023{
714bd040
PB
1024 abort();
1025}
714bd040 1026#endif /* _WIN32 */
ff48eb5f 1027
b2532d88 1028static QemuMutex qemu_global_mutex;
296af7c9
BS
1029
1030static QemuThread io_thread;
1031
296af7c9
BS
1032/* cpu creation */
1033static QemuCond qemu_cpu_cond;
1034/* system init */
296af7c9
BS
1035static QemuCond qemu_pause_cond;
1036
d3b12f5d 1037void qemu_init_cpu_loop(void)
296af7c9 1038{
6d9cb73c 1039 qemu_init_sigbus();
ed94592b 1040 qemu_cond_init(&qemu_cpu_cond);
ed94592b 1041 qemu_cond_init(&qemu_pause_cond);
296af7c9 1042 qemu_mutex_init(&qemu_global_mutex);
296af7c9 1043
b7680cb6 1044 qemu_thread_get_self(&io_thread);
296af7c9
BS
1045}
1046
14e6fe12 1047void run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data)
e82bcec2 1048{
d148d90e 1049 do_run_on_cpu(cpu, func, data, &qemu_global_mutex);
3c02270d
CV
1050}
1051
4c055ab5
GZ
1052static void qemu_kvm_destroy_vcpu(CPUState *cpu)
1053{
1054 if (kvm_destroy_vcpu(cpu) < 0) {
1055 error_report("kvm_destroy_vcpu failed");
1056 exit(EXIT_FAILURE);
1057 }
1058}
1059
1060static void qemu_tcg_destroy_vcpu(CPUState *cpu)
1061{
1062}
1063
509a0d78 1064static void qemu_wait_io_event_common(CPUState *cpu)
296af7c9 1065{
37257942 1066 atomic_mb_set(&cpu->thread_kicked, false);
4fdeee7c
AF
1067 if (cpu->stop) {
1068 cpu->stop = false;
f324e766 1069 cpu->stopped = true;
96bce683 1070 qemu_cond_broadcast(&qemu_pause_cond);
296af7c9 1071 }
a5403c69 1072 process_queued_cpu_work(cpu);
37257942
AB
1073}
1074
1075static bool qemu_tcg_should_sleep(CPUState *cpu)
1076{
1077 if (mttcg_enabled) {
1078 return cpu_thread_is_idle(cpu);
1079 } else {
1080 return all_cpu_threads_idle();
1081 }
296af7c9
BS
1082}
1083
d5f8d613 1084static void qemu_tcg_wait_io_event(CPUState *cpu)
296af7c9 1085{
37257942 1086 while (qemu_tcg_should_sleep(cpu)) {
6546706d 1087 stop_tcg_kick_timer();
d5f8d613 1088 qemu_cond_wait(cpu->halt_cond, &qemu_global_mutex);
16400322 1089 }
296af7c9 1090
6546706d
AB
1091 start_tcg_kick_timer();
1092
37257942 1093 qemu_wait_io_event_common(cpu);
296af7c9
BS
1094}
1095
fd529e8f 1096static void qemu_kvm_wait_io_event(CPUState *cpu)
296af7c9 1097{
a98ae1d8 1098 while (cpu_thread_is_idle(cpu)) {
f5c121b8 1099 qemu_cond_wait(cpu->halt_cond, &qemu_global_mutex);
16400322 1100 }
296af7c9 1101
290adf38 1102 qemu_kvm_eat_signals(cpu);
509a0d78 1103 qemu_wait_io_event_common(cpu);
296af7c9
BS
1104}
1105
7e97cd88 1106static void *qemu_kvm_cpu_thread_fn(void *arg)
296af7c9 1107{
48a106bd 1108 CPUState *cpu = arg;
84b4915d 1109 int r;
296af7c9 1110
ab28bd23
PB
1111 rcu_register_thread();
1112
2e7f7a3c 1113 qemu_mutex_lock_iothread();
814e612e 1114 qemu_thread_get_self(cpu->thread);
9f09e18a 1115 cpu->thread_id = qemu_get_thread_id();
626cf8f4 1116 cpu->can_do_io = 1;
4917cf44 1117 current_cpu = cpu;
296af7c9 1118
504134d2 1119 r = kvm_init_vcpu(cpu);
84b4915d
JK
1120 if (r < 0) {
1121 fprintf(stderr, "kvm_init_vcpu failed: %s\n", strerror(-r));
1122 exit(1);
1123 }
296af7c9 1124
13618e05 1125 qemu_kvm_init_cpu_signals(cpu);
296af7c9
BS
1126
1127 /* signal CPU creation */
61a46217 1128 cpu->created = true;
296af7c9
BS
1129 qemu_cond_signal(&qemu_cpu_cond);
1130
4c055ab5 1131 do {
a1fcaa73 1132 if (cpu_can_run(cpu)) {
1458c363 1133 r = kvm_cpu_exec(cpu);
83f338f7 1134 if (r == EXCP_DEBUG) {
91325046 1135 cpu_handle_guest_debug(cpu);
83f338f7 1136 }
0ab07c62 1137 }
fd529e8f 1138 qemu_kvm_wait_io_event(cpu);
4c055ab5 1139 } while (!cpu->unplug || cpu_can_run(cpu));
296af7c9 1140
4c055ab5 1141 qemu_kvm_destroy_vcpu(cpu);
2c579042
BR
1142 cpu->created = false;
1143 qemu_cond_signal(&qemu_cpu_cond);
4c055ab5 1144 qemu_mutex_unlock_iothread();
296af7c9
BS
1145 return NULL;
1146}
1147
c7f0f3b1
AL
1148static void *qemu_dummy_cpu_thread_fn(void *arg)
1149{
1150#ifdef _WIN32
1151 fprintf(stderr, "qtest is not supported under Windows\n");
1152 exit(1);
1153#else
10a9021d 1154 CPUState *cpu = arg;
c7f0f3b1
AL
1155 sigset_t waitset;
1156 int r;
1157
ab28bd23
PB
1158 rcu_register_thread();
1159
c7f0f3b1 1160 qemu_mutex_lock_iothread();
814e612e 1161 qemu_thread_get_self(cpu->thread);
9f09e18a 1162 cpu->thread_id = qemu_get_thread_id();
626cf8f4 1163 cpu->can_do_io = 1;
37257942 1164 current_cpu = cpu;
c7f0f3b1
AL
1165
1166 sigemptyset(&waitset);
1167 sigaddset(&waitset, SIG_IPI);
1168
1169 /* signal CPU creation */
61a46217 1170 cpu->created = true;
c7f0f3b1
AL
1171 qemu_cond_signal(&qemu_cpu_cond);
1172
c7f0f3b1 1173 while (1) {
c7f0f3b1
AL
1174 qemu_mutex_unlock_iothread();
1175 do {
1176 int sig;
1177 r = sigwait(&waitset, &sig);
1178 } while (r == -1 && (errno == EAGAIN || errno == EINTR));
1179 if (r == -1) {
1180 perror("sigwait");
1181 exit(1);
1182 }
1183 qemu_mutex_lock_iothread();
509a0d78 1184 qemu_wait_io_event_common(cpu);
c7f0f3b1
AL
1185 }
1186
1187 return NULL;
1188#endif
1189}
1190
1be7fcb8
AB
1191static int64_t tcg_get_icount_limit(void)
1192{
1193 int64_t deadline;
1194
1195 if (replay_mode != REPLAY_MODE_PLAY) {
1196 deadline = qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
1197
1198 /* Maintain prior (possibly buggy) behaviour where if no deadline
1199 * was set (as there is no QEMU_CLOCK_VIRTUAL timer) or it is more than
1200 * INT32_MAX nanoseconds ahead, we still use INT32_MAX
1201 * nanoseconds.
1202 */
1203 if ((deadline < 0) || (deadline > INT32_MAX)) {
1204 deadline = INT32_MAX;
1205 }
1206
1207 return qemu_icount_round(deadline);
1208 } else {
1209 return replay_get_instructions();
1210 }
1211}
1212
12e9700d
AB
1213static void handle_icount_deadline(void)
1214{
1215 if (use_icount) {
1216 int64_t deadline =
1217 qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL);
1218
1219 if (deadline == 0) {
1220 qemu_clock_notify(QEMU_CLOCK_VIRTUAL);
1221 }
1222 }
1223}
1224
1be7fcb8
AB
1225static int tcg_cpu_exec(CPUState *cpu)
1226{
1227 int ret;
1228#ifdef CONFIG_PROFILER
1229 int64_t ti;
1230#endif
1231
1232#ifdef CONFIG_PROFILER
1233 ti = profile_getclock();
1234#endif
1235 if (use_icount) {
1236 int64_t count;
1237 int decr;
1238 timers_state.qemu_icount -= (cpu->icount_decr.u16.low
1239 + cpu->icount_extra);
1240 cpu->icount_decr.u16.low = 0;
1241 cpu->icount_extra = 0;
1242 count = tcg_get_icount_limit();
1243 timers_state.qemu_icount += count;
1244 decr = (count > 0xffff) ? 0xffff : count;
1245 count -= decr;
1246 cpu->icount_decr.u16.low = decr;
1247 cpu->icount_extra = count;
1248 }
8d04fb55 1249 qemu_mutex_unlock_iothread();
1be7fcb8
AB
1250 cpu_exec_start(cpu);
1251 ret = cpu_exec(cpu);
1252 cpu_exec_end(cpu);
8d04fb55 1253 qemu_mutex_lock_iothread();
1be7fcb8
AB
1254#ifdef CONFIG_PROFILER
1255 tcg_time += profile_getclock() - ti;
1256#endif
1257 if (use_icount) {
1258 /* Fold pending instructions back into the
1259 instruction counter, and clear the interrupt flag. */
1260 timers_state.qemu_icount -= (cpu->icount_decr.u16.low
1261 + cpu->icount_extra);
1262 cpu->icount_decr.u32 = 0;
1263 cpu->icount_extra = 0;
1264 replay_account_executed_instructions();
1265 }
1266 return ret;
1267}
1268
c93bbbef
AB
1269/* Destroy any remaining vCPUs which have been unplugged and have
1270 * finished running
1271 */
1272static void deal_with_unplugged_cpus(void)
1be7fcb8 1273{
c93bbbef 1274 CPUState *cpu;
1be7fcb8 1275
c93bbbef
AB
1276 CPU_FOREACH(cpu) {
1277 if (cpu->unplug && !cpu_can_run(cpu)) {
1278 qemu_tcg_destroy_vcpu(cpu);
1279 cpu->created = false;
1280 qemu_cond_signal(&qemu_cpu_cond);
1be7fcb8
AB
1281 break;
1282 }
1283 }
1be7fcb8 1284}
bdb7ca67 1285
6546706d
AB
1286/* Single-threaded TCG
1287 *
1288 * In the single-threaded case each vCPU is simulated in turn. If
1289 * there is more than a single vCPU we create a simple timer to kick
1290 * the vCPU and ensure we don't get stuck in a tight loop in one vCPU.
1291 * This is done explicitly rather than relying on side-effects
1292 * elsewhere.
1293 */
1294
37257942 1295static void *qemu_tcg_rr_cpu_thread_fn(void *arg)
296af7c9 1296{
c3586ba7 1297 CPUState *cpu = arg;
296af7c9 1298
ab28bd23
PB
1299 rcu_register_thread();
1300
2e7f7a3c 1301 qemu_mutex_lock_iothread();
814e612e 1302 qemu_thread_get_self(cpu->thread);
296af7c9 1303
38fcbd3f
AF
1304 CPU_FOREACH(cpu) {
1305 cpu->thread_id = qemu_get_thread_id();
1306 cpu->created = true;
626cf8f4 1307 cpu->can_do_io = 1;
38fcbd3f 1308 }
296af7c9
BS
1309 qemu_cond_signal(&qemu_cpu_cond);
1310
fa7d1867 1311 /* wait for initial kick-off after machine start */
c28e399c 1312 while (first_cpu->stopped) {
d5f8d613 1313 qemu_cond_wait(first_cpu->halt_cond, &qemu_global_mutex);
8e564b4e
JK
1314
1315 /* process any pending work */
bdc44640 1316 CPU_FOREACH(cpu) {
37257942 1317 current_cpu = cpu;
182735ef 1318 qemu_wait_io_event_common(cpu);
8e564b4e 1319 }
0ab07c62 1320 }
296af7c9 1321
6546706d
AB
1322 start_tcg_kick_timer();
1323
c93bbbef
AB
1324 cpu = first_cpu;
1325
e5143e30
AB
1326 /* process any pending work */
1327 cpu->exit_request = 1;
1328
296af7c9 1329 while (1) {
c93bbbef
AB
1330 /* Account partial waits to QEMU_CLOCK_VIRTUAL. */
1331 qemu_account_warp_timer();
1332
1333 if (!cpu) {
1334 cpu = first_cpu;
1335 }
1336
e5143e30
AB
1337 while (cpu && !cpu->queued_work_first && !cpu->exit_request) {
1338
791158d9 1339 atomic_mb_set(&tcg_current_rr_cpu, cpu);
37257942 1340 current_cpu = cpu;
c93bbbef
AB
1341
1342 qemu_clock_enable(QEMU_CLOCK_VIRTUAL,
1343 (cpu->singlestep_enabled & SSTEP_NOTIMER) == 0);
1344
1345 if (cpu_can_run(cpu)) {
1346 int r;
1347 r = tcg_cpu_exec(cpu);
1348 if (r == EXCP_DEBUG) {
1349 cpu_handle_guest_debug(cpu);
1350 break;
08e73c48
PK
1351 } else if (r == EXCP_ATOMIC) {
1352 qemu_mutex_unlock_iothread();
1353 cpu_exec_step_atomic(cpu);
1354 qemu_mutex_lock_iothread();
1355 break;
c93bbbef 1356 }
37257942 1357 } else if (cpu->stop) {
c93bbbef
AB
1358 if (cpu->unplug) {
1359 cpu = CPU_NEXT(cpu);
1360 }
1361 break;
1362 }
1363
e5143e30
AB
1364 cpu = CPU_NEXT(cpu);
1365 } /* while (cpu && !cpu->exit_request).. */
1366
791158d9
AB
1367 /* Does not need atomic_mb_set because a spurious wakeup is okay. */
1368 atomic_set(&tcg_current_rr_cpu, NULL);
c93bbbef 1369
e5143e30
AB
1370 if (cpu && cpu->exit_request) {
1371 atomic_mb_set(&cpu->exit_request, 0);
1372 }
ac70aafc 1373
12e9700d 1374 handle_icount_deadline();
ac70aafc 1375
37257942 1376 qemu_tcg_wait_io_event(cpu ? cpu : QTAILQ_FIRST(&cpus));
c93bbbef 1377 deal_with_unplugged_cpus();
296af7c9
BS
1378 }
1379
1380 return NULL;
1381}
1382
b0cb0a66
VP
1383static void *qemu_hax_cpu_thread_fn(void *arg)
1384{
1385 CPUState *cpu = arg;
1386 int r;
1387 qemu_thread_get_self(cpu->thread);
1388 qemu_mutex_lock(&qemu_global_mutex);
1389
1390 cpu->thread_id = qemu_get_thread_id();
1391 cpu->created = true;
1392 cpu->halted = 0;
1393 current_cpu = cpu;
1394
1395 hax_init_vcpu(cpu);
1396 qemu_cond_signal(&qemu_cpu_cond);
1397
1398 while (1) {
1399 if (cpu_can_run(cpu)) {
1400 r = hax_smp_cpu_exec(cpu);
1401 if (r == EXCP_DEBUG) {
1402 cpu_handle_guest_debug(cpu);
1403 }
1404 }
1405
1406 while (cpu_thread_is_idle(cpu)) {
1407 qemu_cond_wait(cpu->halt_cond, &qemu_global_mutex);
1408 }
1409#ifdef _WIN32
1410 SleepEx(0, TRUE);
1411#endif
1412 qemu_wait_io_event_common(cpu);
1413 }
1414 return NULL;
1415}
1416
1417#ifdef _WIN32
1418static void CALLBACK dummy_apc_func(ULONG_PTR unused)
1419{
1420}
1421#endif
1422
37257942
AB
1423/* Multi-threaded TCG
1424 *
1425 * In the multi-threaded case each vCPU has its own thread. The TLS
1426 * variable current_cpu can be used deep in the code to find the
1427 * current CPUState for a given thread.
1428 */
1429
1430static void *qemu_tcg_cpu_thread_fn(void *arg)
1431{
1432 CPUState *cpu = arg;
1433
1434 rcu_register_thread();
1435
1436 qemu_mutex_lock_iothread();
1437 qemu_thread_get_self(cpu->thread);
1438
1439 cpu->thread_id = qemu_get_thread_id();
1440 cpu->created = true;
1441 cpu->can_do_io = 1;
1442 current_cpu = cpu;
1443 qemu_cond_signal(&qemu_cpu_cond);
1444
1445 /* process any pending work */
1446 cpu->exit_request = 1;
1447
1448 while (1) {
1449 if (cpu_can_run(cpu)) {
1450 int r;
1451 r = tcg_cpu_exec(cpu);
1452 switch (r) {
1453 case EXCP_DEBUG:
1454 cpu_handle_guest_debug(cpu);
1455 break;
1456 case EXCP_HALTED:
1457 /* during start-up the vCPU is reset and the thread is
1458 * kicked several times. If we don't ensure we go back
1459 * to sleep in the halted state we won't cleanly
1460 * start-up when the vCPU is enabled.
1461 *
1462 * cpu->halted should ensure we sleep in wait_io_event
1463 */
1464 g_assert(cpu->halted);
1465 break;
08e73c48
PK
1466 case EXCP_ATOMIC:
1467 qemu_mutex_unlock_iothread();
1468 cpu_exec_step_atomic(cpu);
1469 qemu_mutex_lock_iothread();
37257942
AB
1470 default:
1471 /* Ignore everything else? */
1472 break;
1473 }
1474 }
1475
1476 handle_icount_deadline();
1477
1478 atomic_mb_set(&cpu->exit_request, 0);
1479 qemu_tcg_wait_io_event(cpu);
1480 }
1481
1482 return NULL;
1483}
1484
2ff09a40 1485static void qemu_cpu_kick_thread(CPUState *cpu)
cc015e9a
PB
1486{
1487#ifndef _WIN32
1488 int err;
1489
e0c38211
PB
1490 if (cpu->thread_kicked) {
1491 return;
9102deda 1492 }
e0c38211 1493 cpu->thread_kicked = true;
814e612e 1494 err = pthread_kill(cpu->thread->thread, SIG_IPI);
cc015e9a
PB
1495 if (err) {
1496 fprintf(stderr, "qemu:%s: %s", __func__, strerror(err));
1497 exit(1);
1498 }
1499#else /* _WIN32 */
b0cb0a66
VP
1500 if (!qemu_cpu_is_self(cpu)) {
1501 if (!QueueUserAPC(dummy_apc_func, cpu->hThread, 0)) {
1502 fprintf(stderr, "%s: QueueUserAPC failed with error %lu\n",
1503 __func__, GetLastError());
1504 exit(1);
1505 }
1506 }
e0c38211
PB
1507#endif
1508}
ed9164a3 1509
c08d7424 1510void qemu_cpu_kick(CPUState *cpu)
296af7c9 1511{
f5c121b8 1512 qemu_cond_broadcast(cpu->halt_cond);
e0c38211 1513 if (tcg_enabled()) {
791158d9 1514 cpu_exit(cpu);
37257942 1515 /* NOP unless doing single-thread RR */
791158d9 1516 qemu_cpu_kick_rr_cpu();
e0c38211 1517 } else {
b0cb0a66
VP
1518 if (hax_enabled()) {
1519 /*
1520 * FIXME: race condition with the exit_request check in
1521 * hax_vcpu_hax_exec
1522 */
1523 cpu->exit_request = 1;
1524 }
e0c38211
PB
1525 qemu_cpu_kick_thread(cpu);
1526 }
296af7c9
BS
1527}
1528
46d62fac 1529void qemu_cpu_kick_self(void)
296af7c9 1530{
4917cf44 1531 assert(current_cpu);
9102deda 1532 qemu_cpu_kick_thread(current_cpu);
296af7c9
BS
1533}
1534
60e82579 1535bool qemu_cpu_is_self(CPUState *cpu)
296af7c9 1536{
814e612e 1537 return qemu_thread_is_self(cpu->thread);
296af7c9
BS
1538}
1539
79e2b9ae 1540bool qemu_in_vcpu_thread(void)
aa723c23 1541{
4917cf44 1542 return current_cpu && qemu_cpu_is_self(current_cpu);
aa723c23
JQ
1543}
1544
afbe7053
PB
1545static __thread bool iothread_locked = false;
1546
1547bool qemu_mutex_iothread_locked(void)
1548{
1549 return iothread_locked;
1550}
1551
296af7c9
BS
1552void qemu_mutex_lock_iothread(void)
1553{
8d04fb55
JK
1554 g_assert(!qemu_mutex_iothread_locked());
1555 qemu_mutex_lock(&qemu_global_mutex);
afbe7053 1556 iothread_locked = true;
296af7c9
BS
1557}
1558
1559void qemu_mutex_unlock_iothread(void)
1560{
8d04fb55 1561 g_assert(qemu_mutex_iothread_locked());
afbe7053 1562 iothread_locked = false;
296af7c9
BS
1563 qemu_mutex_unlock(&qemu_global_mutex);
1564}
1565
e8faee06 1566static bool all_vcpus_paused(void)
296af7c9 1567{
bdc44640 1568 CPUState *cpu;
296af7c9 1569
bdc44640 1570 CPU_FOREACH(cpu) {
182735ef 1571 if (!cpu->stopped) {
e8faee06 1572 return false;
0ab07c62 1573 }
296af7c9
BS
1574 }
1575
e8faee06 1576 return true;
296af7c9
BS
1577}
1578
1579void pause_all_vcpus(void)
1580{
bdc44640 1581 CPUState *cpu;
296af7c9 1582
40daca54 1583 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, false);
bdc44640 1584 CPU_FOREACH(cpu) {
182735ef
AF
1585 cpu->stop = true;
1586 qemu_cpu_kick(cpu);
296af7c9
BS
1587 }
1588
aa723c23 1589 if (qemu_in_vcpu_thread()) {
d798e974 1590 cpu_stop_current();
d798e974
JK
1591 }
1592
296af7c9 1593 while (!all_vcpus_paused()) {
be7d6c57 1594 qemu_cond_wait(&qemu_pause_cond, &qemu_global_mutex);
bdc44640 1595 CPU_FOREACH(cpu) {
182735ef 1596 qemu_cpu_kick(cpu);
296af7c9
BS
1597 }
1598 }
1599}
1600
2993683b
IM
1601void cpu_resume(CPUState *cpu)
1602{
1603 cpu->stop = false;
1604 cpu->stopped = false;
1605 qemu_cpu_kick(cpu);
1606}
1607
296af7c9
BS
1608void resume_all_vcpus(void)
1609{
bdc44640 1610 CPUState *cpu;
296af7c9 1611
40daca54 1612 qemu_clock_enable(QEMU_CLOCK_VIRTUAL, true);
bdc44640 1613 CPU_FOREACH(cpu) {
182735ef 1614 cpu_resume(cpu);
296af7c9
BS
1615 }
1616}
1617
4c055ab5
GZ
1618void cpu_remove(CPUState *cpu)
1619{
1620 cpu->stop = true;
1621 cpu->unplug = true;
1622 qemu_cpu_kick(cpu);
1623}
1624
2c579042
BR
1625void cpu_remove_sync(CPUState *cpu)
1626{
1627 cpu_remove(cpu);
1628 while (cpu->created) {
1629 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
1630 }
1631}
1632
4900116e
DDAG
1633/* For temporary buffers for forming a name */
1634#define VCPU_THREAD_NAME_SIZE 16
1635
e5ab30a2 1636static void qemu_tcg_init_vcpu(CPUState *cpu)
296af7c9 1637{
4900116e 1638 char thread_name[VCPU_THREAD_NAME_SIZE];
37257942
AB
1639 static QemuCond *single_tcg_halt_cond;
1640 static QemuThread *single_tcg_cpu_thread;
4900116e 1641
37257942 1642 if (qemu_tcg_mttcg_enabled() || !single_tcg_cpu_thread) {
814e612e 1643 cpu->thread = g_malloc0(sizeof(QemuThread));
f5c121b8
AF
1644 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1645 qemu_cond_init(cpu->halt_cond);
37257942
AB
1646
1647 if (qemu_tcg_mttcg_enabled()) {
1648 /* create a thread per vCPU with TCG (MTTCG) */
1649 parallel_cpus = true;
1650 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/TCG",
4900116e 1651 cpu->cpu_index);
37257942
AB
1652
1653 qemu_thread_create(cpu->thread, thread_name, qemu_tcg_cpu_thread_fn,
1654 cpu, QEMU_THREAD_JOINABLE);
1655
1656 } else {
1657 /* share a single thread for all cpus with TCG */
1658 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "ALL CPUs/TCG");
1659 qemu_thread_create(cpu->thread, thread_name,
1660 qemu_tcg_rr_cpu_thread_fn,
1661 cpu, QEMU_THREAD_JOINABLE);
1662
1663 single_tcg_halt_cond = cpu->halt_cond;
1664 single_tcg_cpu_thread = cpu->thread;
1665 }
1ecf47bf 1666#ifdef _WIN32
814e612e 1667 cpu->hThread = qemu_thread_get_handle(cpu->thread);
1ecf47bf 1668#endif
61a46217 1669 while (!cpu->created) {
18a85728 1670 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
0ab07c62 1671 }
296af7c9 1672 } else {
37257942
AB
1673 /* For non-MTTCG cases we share the thread */
1674 cpu->thread = single_tcg_cpu_thread;
1675 cpu->halt_cond = single_tcg_halt_cond;
296af7c9
BS
1676 }
1677}
1678
b0cb0a66
VP
1679static void qemu_hax_start_vcpu(CPUState *cpu)
1680{
1681 char thread_name[VCPU_THREAD_NAME_SIZE];
1682
1683 cpu->thread = g_malloc0(sizeof(QemuThread));
1684 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1685 qemu_cond_init(cpu->halt_cond);
1686
1687 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/HAX",
1688 cpu->cpu_index);
1689 qemu_thread_create(cpu->thread, thread_name, qemu_hax_cpu_thread_fn,
1690 cpu, QEMU_THREAD_JOINABLE);
1691#ifdef _WIN32
1692 cpu->hThread = qemu_thread_get_handle(cpu->thread);
1693#endif
1694 while (!cpu->created) {
1695 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
1696 }
1697}
1698
48a106bd 1699static void qemu_kvm_start_vcpu(CPUState *cpu)
296af7c9 1700{
4900116e
DDAG
1701 char thread_name[VCPU_THREAD_NAME_SIZE];
1702
814e612e 1703 cpu->thread = g_malloc0(sizeof(QemuThread));
f5c121b8
AF
1704 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1705 qemu_cond_init(cpu->halt_cond);
4900116e
DDAG
1706 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/KVM",
1707 cpu->cpu_index);
1708 qemu_thread_create(cpu->thread, thread_name, qemu_kvm_cpu_thread_fn,
1709 cpu, QEMU_THREAD_JOINABLE);
61a46217 1710 while (!cpu->created) {
18a85728 1711 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
0ab07c62 1712 }
296af7c9
BS
1713}
1714
10a9021d 1715static void qemu_dummy_start_vcpu(CPUState *cpu)
c7f0f3b1 1716{
4900116e
DDAG
1717 char thread_name[VCPU_THREAD_NAME_SIZE];
1718
814e612e 1719 cpu->thread = g_malloc0(sizeof(QemuThread));
f5c121b8
AF
1720 cpu->halt_cond = g_malloc0(sizeof(QemuCond));
1721 qemu_cond_init(cpu->halt_cond);
4900116e
DDAG
1722 snprintf(thread_name, VCPU_THREAD_NAME_SIZE, "CPU %d/DUMMY",
1723 cpu->cpu_index);
1724 qemu_thread_create(cpu->thread, thread_name, qemu_dummy_cpu_thread_fn, cpu,
c7f0f3b1 1725 QEMU_THREAD_JOINABLE);
61a46217 1726 while (!cpu->created) {
c7f0f3b1
AL
1727 qemu_cond_wait(&qemu_cpu_cond, &qemu_global_mutex);
1728 }
1729}
1730
c643bed9 1731void qemu_init_vcpu(CPUState *cpu)
296af7c9 1732{
ce3960eb
AF
1733 cpu->nr_cores = smp_cores;
1734 cpu->nr_threads = smp_threads;
f324e766 1735 cpu->stopped = true;
56943e8c
PM
1736
1737 if (!cpu->as) {
1738 /* If the target cpu hasn't set up any address spaces itself,
1739 * give it the default one.
1740 */
6731d864
PC
1741 AddressSpace *as = address_space_init_shareable(cpu->memory,
1742 "cpu-memory");
12ebc9a7 1743 cpu->num_ases = 1;
6731d864 1744 cpu_address_space_init(cpu, as, 0);
56943e8c
PM
1745 }
1746
0ab07c62 1747 if (kvm_enabled()) {
48a106bd 1748 qemu_kvm_start_vcpu(cpu);
b0cb0a66
VP
1749 } else if (hax_enabled()) {
1750 qemu_hax_start_vcpu(cpu);
c7f0f3b1 1751 } else if (tcg_enabled()) {
e5ab30a2 1752 qemu_tcg_init_vcpu(cpu);
c7f0f3b1 1753 } else {
10a9021d 1754 qemu_dummy_start_vcpu(cpu);
0ab07c62 1755 }
296af7c9
BS
1756}
1757
b4a3d965 1758void cpu_stop_current(void)
296af7c9 1759{
4917cf44
AF
1760 if (current_cpu) {
1761 current_cpu->stop = false;
1762 current_cpu->stopped = true;
1763 cpu_exit(current_cpu);
96bce683 1764 qemu_cond_broadcast(&qemu_pause_cond);
b4a3d965 1765 }
296af7c9
BS
1766}
1767
56983463 1768int vm_stop(RunState state)
296af7c9 1769{
aa723c23 1770 if (qemu_in_vcpu_thread()) {
74892d24 1771 qemu_system_vmstop_request_prepare();
1dfb4dd9 1772 qemu_system_vmstop_request(state);
296af7c9
BS
1773 /*
1774 * FIXME: should not return to device code in case
1775 * vm_stop() has been requested.
1776 */
b4a3d965 1777 cpu_stop_current();
56983463 1778 return 0;
296af7c9 1779 }
56983463
KW
1780
1781 return do_vm_stop(state);
296af7c9
BS
1782}
1783
2d76e823
CI
1784/**
1785 * Prepare for (re)starting the VM.
1786 * Returns -1 if the vCPUs are not to be restarted (e.g. if they are already
1787 * running or in case of an error condition), 0 otherwise.
1788 */
1789int vm_prepare_start(void)
1790{
1791 RunState requested;
1792 int res = 0;
1793
1794 qemu_vmstop_requested(&requested);
1795 if (runstate_is_running() && requested == RUN_STATE__MAX) {
1796 return -1;
1797 }
1798
1799 /* Ensure that a STOP/RESUME pair of events is emitted if a
1800 * vmstop request was pending. The BLOCK_IO_ERROR event, for
1801 * example, according to documentation is always followed by
1802 * the STOP event.
1803 */
1804 if (runstate_is_running()) {
1805 qapi_event_send_stop(&error_abort);
1806 res = -1;
1807 } else {
1808 replay_enable_events();
1809 cpu_enable_ticks();
1810 runstate_set(RUN_STATE_RUNNING);
1811 vm_state_notify(1, RUN_STATE_RUNNING);
1812 }
1813
1814 /* We are sending this now, but the CPUs will be resumed shortly later */
1815 qapi_event_send_resume(&error_abort);
1816 return res;
1817}
1818
1819void vm_start(void)
1820{
1821 if (!vm_prepare_start()) {
1822 resume_all_vcpus();
1823 }
1824}
1825
8a9236f1
LC
1826/* does a state transition even if the VM is already stopped,
1827 current state is forgotten forever */
56983463 1828int vm_stop_force_state(RunState state)
8a9236f1
LC
1829{
1830 if (runstate_is_running()) {
56983463 1831 return vm_stop(state);
8a9236f1
LC
1832 } else {
1833 runstate_set(state);
b2780d32
WC
1834
1835 bdrv_drain_all();
594a45ce
KW
1836 /* Make sure to return an error if the flush in a previous vm_stop()
1837 * failed. */
22af08ea 1838 return bdrv_flush_all();
8a9236f1
LC
1839 }
1840}
1841
9a78eead 1842void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg)
262353cb
BS
1843{
1844 /* XXX: implement xxx_cpu_list for targets that still miss it */
e916cbf8
PM
1845#if defined(cpu_list)
1846 cpu_list(f, cpu_fprintf);
262353cb
BS
1847#endif
1848}
de0b36b6
LC
1849
1850CpuInfoList *qmp_query_cpus(Error **errp)
1851{
1852 CpuInfoList *head = NULL, *cur_item = NULL;
182735ef 1853 CPUState *cpu;
de0b36b6 1854
bdc44640 1855 CPU_FOREACH(cpu) {
de0b36b6 1856 CpuInfoList *info;
182735ef
AF
1857#if defined(TARGET_I386)
1858 X86CPU *x86_cpu = X86_CPU(cpu);
1859 CPUX86State *env = &x86_cpu->env;
1860#elif defined(TARGET_PPC)
1861 PowerPCCPU *ppc_cpu = POWERPC_CPU(cpu);
1862 CPUPPCState *env = &ppc_cpu->env;
1863#elif defined(TARGET_SPARC)
1864 SPARCCPU *sparc_cpu = SPARC_CPU(cpu);
1865 CPUSPARCState *env = &sparc_cpu->env;
1866#elif defined(TARGET_MIPS)
1867 MIPSCPU *mips_cpu = MIPS_CPU(cpu);
1868 CPUMIPSState *env = &mips_cpu->env;
48e06fe0
BK
1869#elif defined(TARGET_TRICORE)
1870 TriCoreCPU *tricore_cpu = TRICORE_CPU(cpu);
1871 CPUTriCoreState *env = &tricore_cpu->env;
182735ef 1872#endif
de0b36b6 1873
cb446eca 1874 cpu_synchronize_state(cpu);
de0b36b6
LC
1875
1876 info = g_malloc0(sizeof(*info));
1877 info->value = g_malloc0(sizeof(*info->value));
55e5c285 1878 info->value->CPU = cpu->cpu_index;
182735ef 1879 info->value->current = (cpu == first_cpu);
259186a7 1880 info->value->halted = cpu->halted;
58f88d4b 1881 info->value->qom_path = object_get_canonical_path(OBJECT(cpu));
9f09e18a 1882 info->value->thread_id = cpu->thread_id;
de0b36b6 1883#if defined(TARGET_I386)
86f4b687 1884 info->value->arch = CPU_INFO_ARCH_X86;
544a3731 1885 info->value->u.x86.pc = env->eip + env->segs[R_CS].base;
de0b36b6 1886#elif defined(TARGET_PPC)
86f4b687 1887 info->value->arch = CPU_INFO_ARCH_PPC;
544a3731 1888 info->value->u.ppc.nip = env->nip;
de0b36b6 1889#elif defined(TARGET_SPARC)
86f4b687 1890 info->value->arch = CPU_INFO_ARCH_SPARC;
544a3731
EB
1891 info->value->u.q_sparc.pc = env->pc;
1892 info->value->u.q_sparc.npc = env->npc;
de0b36b6 1893#elif defined(TARGET_MIPS)
86f4b687 1894 info->value->arch = CPU_INFO_ARCH_MIPS;
544a3731 1895 info->value->u.q_mips.PC = env->active_tc.PC;
48e06fe0 1896#elif defined(TARGET_TRICORE)
86f4b687 1897 info->value->arch = CPU_INFO_ARCH_TRICORE;
544a3731 1898 info->value->u.tricore.PC = env->PC;
86f4b687
EB
1899#else
1900 info->value->arch = CPU_INFO_ARCH_OTHER;
de0b36b6
LC
1901#endif
1902
1903 /* XXX: waiting for the qapi to support GSList */
1904 if (!cur_item) {
1905 head = cur_item = info;
1906 } else {
1907 cur_item->next = info;
1908 cur_item = info;
1909 }
1910 }
1911
1912 return head;
1913}
0cfd6a9a
LC
1914
1915void qmp_memsave(int64_t addr, int64_t size, const char *filename,
1916 bool has_cpu, int64_t cpu_index, Error **errp)
1917{
1918 FILE *f;
1919 uint32_t l;
55e5c285 1920 CPUState *cpu;
0cfd6a9a 1921 uint8_t buf[1024];
0dc9daf0 1922 int64_t orig_addr = addr, orig_size = size;
0cfd6a9a
LC
1923
1924 if (!has_cpu) {
1925 cpu_index = 0;
1926 }
1927
151d1322
AF
1928 cpu = qemu_get_cpu(cpu_index);
1929 if (cpu == NULL) {
c6bd8c70
MA
1930 error_setg(errp, QERR_INVALID_PARAMETER_VALUE, "cpu-index",
1931 "a CPU number");
0cfd6a9a
LC
1932 return;
1933 }
1934
1935 f = fopen(filename, "wb");
1936 if (!f) {
618da851 1937 error_setg_file_open(errp, errno, filename);
0cfd6a9a
LC
1938 return;
1939 }
1940
1941 while (size != 0) {
1942 l = sizeof(buf);
1943 if (l > size)
1944 l = size;
2f4d0f59 1945 if (cpu_memory_rw_debug(cpu, addr, buf, l, 0) != 0) {
0dc9daf0
BP
1946 error_setg(errp, "Invalid addr 0x%016" PRIx64 "/size %" PRId64
1947 " specified", orig_addr, orig_size);
2f4d0f59
AK
1948 goto exit;
1949 }
0cfd6a9a 1950 if (fwrite(buf, 1, l, f) != l) {
c6bd8c70 1951 error_setg(errp, QERR_IO_ERROR);
0cfd6a9a
LC
1952 goto exit;
1953 }
1954 addr += l;
1955 size -= l;
1956 }
1957
1958exit:
1959 fclose(f);
1960}
6d3962bf
LC
1961
1962void qmp_pmemsave(int64_t addr, int64_t size, const char *filename,
1963 Error **errp)
1964{
1965 FILE *f;
1966 uint32_t l;
1967 uint8_t buf[1024];
1968
1969 f = fopen(filename, "wb");
1970 if (!f) {
618da851 1971 error_setg_file_open(errp, errno, filename);
6d3962bf
LC
1972 return;
1973 }
1974
1975 while (size != 0) {
1976 l = sizeof(buf);
1977 if (l > size)
1978 l = size;
eb6282f2 1979 cpu_physical_memory_read(addr, buf, l);
6d3962bf 1980 if (fwrite(buf, 1, l, f) != l) {
c6bd8c70 1981 error_setg(errp, QERR_IO_ERROR);
6d3962bf
LC
1982 goto exit;
1983 }
1984 addr += l;
1985 size -= l;
1986 }
1987
1988exit:
1989 fclose(f);
1990}
ab49ab5c
LC
1991
1992void qmp_inject_nmi(Error **errp)
1993{
9cb805fd 1994 nmi_monitor_handle(monitor_get_cpu_index(), errp);
ab49ab5c 1995}
27498bef
ST
1996
1997void dump_drift_info(FILE *f, fprintf_function cpu_fprintf)
1998{
1999 if (!use_icount) {
2000 return;
2001 }
2002
2003 cpu_fprintf(f, "Host - Guest clock %"PRIi64" ms\n",
2004 (cpu_get_clock() - cpu_get_icount())/SCALE_MS);
2005 if (icount_align_option) {
2006 cpu_fprintf(f, "Max guest delay %"PRIi64" ms\n", -max_delay/SCALE_MS);
2007 cpu_fprintf(f, "Max guest advance %"PRIi64" ms\n", max_advance/SCALE_MS);
2008 } else {
2009 cpu_fprintf(f, "Max guest delay NA\n");
2010 cpu_fprintf(f, "Max guest advance NA\n");
2011 }
2012}