4 * Copyright (c) 2003-2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 /* Needed early for CONFIG_BSD etc. */
26 #include "qemu/osdep.h"
27 #include "qemu-common.h"
28 #include "qemu/config-file.h"
30 #include "monitor/monitor.h"
31 #include "qapi/qmp/qerror.h"
32 #include "qemu/error-report.h"
33 #include "sysemu/sysemu.h"
34 #include "sysemu/block-backend.h"
35 #include "exec/gdbstub.h"
36 #include "sysemu/dma.h"
37 #include "sysemu/hw_accel.h"
38 #include "sysemu/kvm.h"
39 #include "sysemu/hax.h"
40 #include "qmp-commands.h"
41 #include "exec/exec-all.h"
43 #include "qemu/thread.h"
44 #include "sysemu/cpus.h"
45 #include "sysemu/qtest.h"
46 #include "qemu/main-loop.h"
47 #include "qemu/bitmap.h"
48 #include "qemu/seqlock.h"
50 #include "qapi-event.h"
52 #include "sysemu/replay.h"
55 #include "qemu/compatfd.h"
60 #include <sys/prctl.h>
63 #define PR_MCE_KILL 33
66 #ifndef PR_MCE_KILL_SET
67 #define PR_MCE_KILL_SET 1
70 #ifndef PR_MCE_KILL_EARLY
71 #define PR_MCE_KILL_EARLY 1
74 #endif /* CONFIG_LINUX */
79 /* vcpu throttling controls */
80 static QEMUTimer
*throttle_timer
;
81 static unsigned int throttle_percentage
;
83 #define CPU_THROTTLE_PCT_MIN 1
84 #define CPU_THROTTLE_PCT_MAX 99
85 #define CPU_THROTTLE_TIMESLICE_NS 10000000
87 bool cpu_is_stopped(CPUState
*cpu
)
89 return cpu
->stopped
|| !runstate_is_running();
92 static bool cpu_thread_is_idle(CPUState
*cpu
)
94 if (cpu
->stop
|| cpu
->queued_work_first
) {
97 if (cpu_is_stopped(cpu
)) {
100 if (!cpu
->halted
|| cpu_has_work(cpu
) ||
101 kvm_halt_in_kernel()) {
107 static bool all_cpu_threads_idle(void)
112 if (!cpu_thread_is_idle(cpu
)) {
119 /***********************************************************/
120 /* guest cycle counter */
122 /* Protected by TimersState seqlock */
124 static bool icount_sleep
= true;
125 static int64_t vm_clock_warp_start
= -1;
126 /* Conversion factor from emulated instructions to virtual clock ticks. */
127 static int icount_time_shift
;
128 /* Arbitrarily pick 1MIPS as the minimum allowable speed. */
129 #define MAX_ICOUNT_SHIFT 10
131 static QEMUTimer
*icount_rt_timer
;
132 static QEMUTimer
*icount_vm_timer
;
133 static QEMUTimer
*icount_warp_timer
;
135 typedef struct TimersState
{
136 /* Protected by BQL. */
137 int64_t cpu_ticks_prev
;
138 int64_t cpu_ticks_offset
;
140 /* cpu_clock_offset can be read out of BQL, so protect it with
143 QemuSeqLock vm_clock_seqlock
;
144 int64_t cpu_clock_offset
;
145 int32_t cpu_ticks_enabled
;
148 /* Compensate for varying guest execution speed. */
149 int64_t qemu_icount_bias
;
150 /* Only written by TCG thread */
154 static TimersState timers_state
;
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
165 * Once a guest architecture has been converted to the new primitives
166 * there are two remaining limitations to check.
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
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
177 static bool check_tcg_memory_orders_compatible(void)
179 #if defined(TCG_GUEST_DEFAULT_MO) && defined(TCG_TARGET_DEFAULT_MO)
180 return (TCG_GUEST_DEFAULT_MO
& ~TCG_TARGET_DEFAULT_MO
) == 0;
186 static bool default_mttcg_enabled(void)
188 QemuOpts
*icount_opts
= qemu_find_opts_singleton("icount");
189 const char *rr
= qemu_opt_get(icount_opts
, "rr");
191 if (rr
|| TCG_OVERSIZED_GUEST
) {
194 #ifdef TARGET_SUPPORTS_MTTCG
195 return check_tcg_memory_orders_compatible();
202 void qemu_tcg_configure(QemuOpts
*opts
, Error
**errp
)
204 const char *t
= qemu_opt_get(opts
, "thread");
206 if (strcmp(t
, "multi") == 0) {
207 if (TCG_OVERSIZED_GUEST
) {
208 error_setg(errp
, "No MTTCG when guest word size > hosts");
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");
215 mttcg_enabled
= true;
217 } else if (strcmp(t
, "single") == 0) {
218 mttcg_enabled
= false;
220 error_setg(errp
, "Invalid 'thread' setting %s", t
);
223 mttcg_enabled
= default_mttcg_enabled();
227 int64_t cpu_get_icount_raw(void)
230 CPUState
*cpu
= current_cpu
;
232 icount
= timers_state
.qemu_icount
;
234 if (!cpu
->can_do_io
) {
235 fprintf(stderr
, "Bad icount read\n");
238 icount
-= (cpu
->icount_decr
.u16
.low
+ cpu
->icount_extra
);
243 /* Return the virtual CPU time, based on the instruction counter. */
244 static int64_t cpu_get_icount_locked(void)
246 int64_t icount
= cpu_get_icount_raw();
247 return timers_state
.qemu_icount_bias
+ cpu_icount_to_ns(icount
);
250 int64_t cpu_get_icount(void)
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
));
263 int64_t cpu_icount_to_ns(int64_t icount
)
265 return icount
<< icount_time_shift
;
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
272 * Caller must hold the BQL
274 int64_t cpu_get_ticks(void)
279 return cpu_get_icount();
282 ticks
= timers_state
.cpu_ticks_offset
;
283 if (timers_state
.cpu_ticks_enabled
) {
284 ticks
+= cpu_get_host_ticks();
287 if (timers_state
.cpu_ticks_prev
> ticks
) {
288 /* Note: non increasing ticks may happen if the host uses
290 timers_state
.cpu_ticks_offset
+= timers_state
.cpu_ticks_prev
- ticks
;
291 ticks
= timers_state
.cpu_ticks_prev
;
294 timers_state
.cpu_ticks_prev
= ticks
;
298 static int64_t cpu_get_clock_locked(void)
302 time
= timers_state
.cpu_clock_offset
;
303 if (timers_state
.cpu_ticks_enabled
) {
310 /* Return the monotonic time elapsed in VM, i.e.,
311 * the time between vm_start and vm_stop
313 int64_t cpu_get_clock(void)
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
));
326 /* enable cpu_get_ticks()
327 * Caller must hold BQL which serves as mutex for vm_clock_seqlock.
329 void cpu_enable_ticks(void)
331 /* Here, the really thing protected by seqlock is cpu_clock_offset. */
332 seqlock_write_begin(&timers_state
.vm_clock_seqlock
);
333 if (!timers_state
.cpu_ticks_enabled
) {
334 timers_state
.cpu_ticks_offset
-= cpu_get_host_ticks();
335 timers_state
.cpu_clock_offset
-= get_clock();
336 timers_state
.cpu_ticks_enabled
= 1;
338 seqlock_write_end(&timers_state
.vm_clock_seqlock
);
341 /* disable cpu_get_ticks() : the clock is stopped. You must not call
342 * cpu_get_ticks() after that.
343 * Caller must hold BQL which serves as mutex for vm_clock_seqlock.
345 void cpu_disable_ticks(void)
347 /* Here, the really thing protected by seqlock is cpu_clock_offset. */
348 seqlock_write_begin(&timers_state
.vm_clock_seqlock
);
349 if (timers_state
.cpu_ticks_enabled
) {
350 timers_state
.cpu_ticks_offset
+= cpu_get_host_ticks();
351 timers_state
.cpu_clock_offset
= cpu_get_clock_locked();
352 timers_state
.cpu_ticks_enabled
= 0;
354 seqlock_write_end(&timers_state
.vm_clock_seqlock
);
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
361 #define ICOUNT_WOBBLE (NANOSECONDS_PER_SECOND / 10)
363 static void icount_adjust(void)
369 /* Protected by TimersState mutex. */
370 static int64_t last_delta
;
372 /* If the VM is not running, then do nothing. */
373 if (!runstate_is_running()) {
377 seqlock_write_begin(&timers_state
.vm_clock_seqlock
);
378 cur_time
= cpu_get_clock_locked();
379 cur_icount
= cpu_get_icount_locked();
381 delta
= cur_icount
- cur_time
;
382 /* FIXME: This is a very crude algorithm, somewhat prone to oscillation. */
384 && last_delta
+ ICOUNT_WOBBLE
< delta
* 2
385 && icount_time_shift
> 0) {
386 /* The guest is getting too far ahead. Slow time down. */
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. */
396 timers_state
.qemu_icount_bias
= cur_icount
397 - (timers_state
.qemu_icount
<< icount_time_shift
);
398 seqlock_write_end(&timers_state
.vm_clock_seqlock
);
401 static void icount_adjust_rt(void *opaque
)
403 timer_mod(icount_rt_timer
,
404 qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL_RT
) + 1000);
408 static void icount_adjust_vm(void *opaque
)
410 timer_mod(icount_vm_timer
,
411 qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) +
412 NANOSECONDS_PER_SECOND
/ 10);
416 static int64_t qemu_icount_round(int64_t count
)
418 return (count
+ (1 << icount_time_shift
) - 1) >> icount_time_shift
;
421 static void icount_warp_rt(void)
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.
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
));
434 if (warp_start
== -1) {
438 seqlock_write_begin(&timers_state
.vm_clock_seqlock
);
439 if (runstate_is_running()) {
440 int64_t clock
= REPLAY_CLOCK(REPLAY_CLOCK_VIRTUAL_RT
,
441 cpu_get_clock_locked());
444 warp_delta
= clock
- vm_clock_warp_start
;
445 if (use_icount
== 2) {
447 * In adaptive mode, do not let QEMU_CLOCK_VIRTUAL run too
448 * far ahead of real time.
450 int64_t cur_icount
= cpu_get_icount_locked();
451 int64_t delta
= clock
- cur_icount
;
452 warp_delta
= MIN(warp_delta
, delta
);
454 timers_state
.qemu_icount_bias
+= warp_delta
;
456 vm_clock_warp_start
= -1;
457 seqlock_write_end(&timers_state
.vm_clock_seqlock
);
459 if (qemu_clock_expired(QEMU_CLOCK_VIRTUAL
)) {
460 qemu_clock_notify(QEMU_CLOCK_VIRTUAL
);
464 static void icount_timer_cb(void *opaque
)
466 /* No need for a checkpoint because the timer already synchronizes
467 * with CHECKPOINT_CLOCK_VIRTUAL_RT.
472 void qtest_clock_warp(int64_t dest
)
474 int64_t clock
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
475 AioContext
*aio_context
;
476 assert(qtest_enabled());
477 aio_context
= qemu_get_aio_context();
478 while (clock
< dest
) {
479 int64_t deadline
= qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL
);
480 int64_t warp
= qemu_soonest_timeout(dest
- clock
, deadline
);
482 seqlock_write_begin(&timers_state
.vm_clock_seqlock
);
483 timers_state
.qemu_icount_bias
+= warp
;
484 seqlock_write_end(&timers_state
.vm_clock_seqlock
);
486 qemu_clock_run_timers(QEMU_CLOCK_VIRTUAL
);
487 timerlist_run_timers(aio_context
->tlg
.tl
[QEMU_CLOCK_VIRTUAL
]);
488 clock
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
);
490 qemu_clock_notify(QEMU_CLOCK_VIRTUAL
);
493 void qemu_start_warp_timer(void)
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.
505 if (!runstate_is_running()) {
509 /* warp clock deterministically in record/replay mode */
510 if (!replay_checkpoint(CHECKPOINT_CLOCK_WARP_START
)) {
514 if (!all_cpu_threads_idle()) {
518 if (qtest_enabled()) {
519 /* When testing, qtest commands advance icount. */
523 /* We want to use the earliest deadline from ALL vm_clocks */
524 clock
= qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL_RT
);
525 deadline
= qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL
);
527 static bool notified
;
528 if (!icount_sleep
&& !notified
) {
529 error_report("WARNING: icount sleep disabled and no active timers");
537 * Ensure QEMU_CLOCK_VIRTUAL proceeds even when the virtual CPU goes to
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
541 * QEMU_CLOCK_VIRTUAL.
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.
551 seqlock_write_begin(&timers_state
.vm_clock_seqlock
);
552 timers_state
.qemu_icount_bias
+= deadline
;
553 seqlock_write_end(&timers_state
.vm_clock_seqlock
);
554 qemu_clock_notify(QEMU_CLOCK_VIRTUAL
);
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
564 seqlock_write_begin(&timers_state
.vm_clock_seqlock
);
565 if (vm_clock_warp_start
== -1 || vm_clock_warp_start
> clock
) {
566 vm_clock_warp_start
= clock
;
568 seqlock_write_end(&timers_state
.vm_clock_seqlock
);
569 timer_mod_anticipate(icount_warp_timer
, clock
+ deadline
);
571 } else if (deadline
== 0) {
572 qemu_clock_notify(QEMU_CLOCK_VIRTUAL
);
576 static void qemu_account_warp_timer(void)
578 if (!use_icount
|| !icount_sleep
) {
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.
585 if (!runstate_is_running()) {
589 /* warp clock deterministically in record/replay mode */
590 if (!replay_checkpoint(CHECKPOINT_CLOCK_WARP_ACCOUNT
)) {
594 timer_del(icount_warp_timer
);
598 static bool icount_state_needed(void *opaque
)
604 * This is a subsection for icount migration.
606 static const VMStateDescription icount_vmstate_timers
= {
607 .name
= "timer/icount",
609 .minimum_version_id
= 1,
610 .needed
= icount_state_needed
,
611 .fields
= (VMStateField
[]) {
612 VMSTATE_INT64(qemu_icount_bias
, TimersState
),
613 VMSTATE_INT64(qemu_icount
, TimersState
),
614 VMSTATE_END_OF_LIST()
618 static const VMStateDescription vmstate_timers
= {
621 .minimum_version_id
= 1,
622 .fields
= (VMStateField
[]) {
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()
628 .subsections
= (const VMStateDescription
*[]) {
629 &icount_vmstate_timers
,
634 static void cpu_throttle_thread(CPUState
*cpu
, run_on_cpu_data opaque
)
637 double throttle_ratio
;
640 if (!cpu_throttle_get_percentage()) {
644 pct
= (double)cpu_throttle_get_percentage()/100;
645 throttle_ratio
= pct
/ (1 - pct
);
646 sleeptime_ns
= (long)(throttle_ratio
* CPU_THROTTLE_TIMESLICE_NS
);
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();
654 static void cpu_throttle_timer_tick(void *opaque
)
659 /* Stop the timer if needed */
660 if (!cpu_throttle_get_percentage()) {
664 if (!atomic_xchg(&cpu
->throttle_thread_scheduled
, 1)) {
665 async_run_on_cpu(cpu
, cpu_throttle_thread
,
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
));
675 void cpu_throttle_set(int new_throttle_pct
)
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
);
681 atomic_set(&throttle_percentage
, new_throttle_pct
);
683 timer_mod(throttle_timer
, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL_RT
) +
684 CPU_THROTTLE_TIMESLICE_NS
);
687 void cpu_throttle_stop(void)
689 atomic_set(&throttle_percentage
, 0);
692 bool cpu_throttle_active(void)
694 return (cpu_throttle_get_percentage() != 0);
697 int cpu_throttle_get_percentage(void)
699 return atomic_read(&throttle_percentage
);
702 void cpu_ticks_init(void)
704 seqlock_init(&timers_state
.vm_clock_seqlock
);
705 vmstate_register(NULL
, 0, &vmstate_timers
, &timers_state
);
706 throttle_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL_RT
,
707 cpu_throttle_timer_tick
, NULL
);
710 void configure_icount(QemuOpts
*opts
, Error
**errp
)
713 char *rem_str
= NULL
;
715 option
= qemu_opt_get(opts
, "shift");
717 if (qemu_opt_get(opts
, "align") != NULL
) {
718 error_setg(errp
, "Please specify shift option when using align");
723 icount_sleep
= qemu_opt_get_bool(opts
, "sleep", true);
725 icount_warp_timer
= timer_new_ns(QEMU_CLOCK_VIRTUAL_RT
,
726 icount_timer_cb
, NULL
);
729 icount_align_option
= qemu_opt_get_bool(opts
, "align", false);
731 if (icount_align_option
&& !icount_sleep
) {
732 error_setg(errp
, "align=on and sleep=off are incompatible");
734 if (strcmp(option
, "auto") != 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");
742 } else if (icount_align_option
) {
743 error_setg(errp
, "shift=auto and align=on are incompatible");
744 } else if (!icount_sleep
) {
745 error_setg(errp
, "shift=auto and sleep=off are incompatible");
750 /* 125MIPS seems a reasonable initial guess at the guest speed.
751 It will be corrected fairly quickly anyway. */
752 icount_time_shift
= 3;
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
759 icount_rt_timer
= timer_new_ms(QEMU_CLOCK_VIRTUAL_RT
,
760 icount_adjust_rt
, NULL
);
761 timer_mod(icount_rt_timer
,
762 qemu_clock_get_ms(QEMU_CLOCK_VIRTUAL_RT
) + 1000);
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
) +
767 NANOSECONDS_PER_SECOND
/ 10);
770 /***********************************************************/
771 /* TCG vCPU kick timer
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
778 * The timer is removed if all vCPUs are idle and restarted again once
779 * idleness is complete.
782 static QEMUTimer
*tcg_kick_vcpu_timer
;
783 static CPUState
*tcg_current_rr_cpu
;
785 #define TCG_KICK_PERIOD (NANOSECONDS_PER_SECOND / 10)
787 static inline int64_t qemu_tcg_next_kick(void)
789 return qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL
) + TCG_KICK_PERIOD
;
792 /* Kick the currently round-robin scheduled vCPU */
793 static void qemu_cpu_kick_rr_cpu(void)
797 cpu
= atomic_mb_read(&tcg_current_rr_cpu
);
801 } while (cpu
!= atomic_mb_read(&tcg_current_rr_cpu
));
804 static void kick_tcg_thread(void *opaque
)
806 timer_mod(tcg_kick_vcpu_timer
, qemu_tcg_next_kick());
807 qemu_cpu_kick_rr_cpu();
810 static void start_tcg_kick_timer(void)
812 if (!mttcg_enabled
&& !tcg_kick_vcpu_timer
&& CPU_NEXT(first_cpu
)) {
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());
819 static void stop_tcg_kick_timer(void)
821 if (tcg_kick_vcpu_timer
) {
822 timer_del(tcg_kick_vcpu_timer
);
823 tcg_kick_vcpu_timer
= NULL
;
827 /***********************************************************/
828 void hw_error(const char *fmt
, ...)
834 fprintf(stderr
, "qemu: hardware error: ");
835 vfprintf(stderr
, fmt
, ap
);
836 fprintf(stderr
, "\n");
838 fprintf(stderr
, "CPU #%d:\n", cpu
->cpu_index
);
839 cpu_dump_state(cpu
, stderr
, fprintf
, CPU_DUMP_FPU
);
845 void cpu_synchronize_all_states(void)
850 cpu_synchronize_state(cpu
);
854 void cpu_synchronize_all_post_reset(void)
859 cpu_synchronize_post_reset(cpu
);
863 void cpu_synchronize_all_post_init(void)
868 cpu_synchronize_post_init(cpu
);
872 static int do_vm_stop(RunState state
)
876 if (runstate_is_running()) {
880 vm_state_notify(0, state
);
881 qapi_event_send_stop(&error_abort
);
885 replay_disable_events();
886 ret
= bdrv_flush_all();
891 static bool cpu_can_run(CPUState
*cpu
)
896 if (cpu_is_stopped(cpu
)) {
902 static void cpu_handle_guest_debug(CPUState
*cpu
)
904 gdb_set_stop_cpu(cpu
);
905 qemu_system_debug_request();
910 static void sigbus_reraise(void)
913 struct sigaction action
;
915 memset(&action
, 0, sizeof(action
));
916 action
.sa_handler
= SIG_DFL
;
917 if (!sigaction(SIGBUS
, &action
, NULL
)) {
920 sigaddset(&set
, SIGBUS
);
921 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
923 perror("Failed to re-raise SIGBUS!\n");
927 static void sigbus_handler(int n
, struct qemu_signalfd_siginfo
*siginfo
,
930 if (kvm_on_sigbus(siginfo
->ssi_code
,
931 (void *)(intptr_t)siginfo
->ssi_addr
)) {
936 static void qemu_init_sigbus(void)
938 struct sigaction action
;
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
);
945 prctl(PR_MCE_KILL
, PR_MCE_KILL_SET
, PR_MCE_KILL_EARLY
, 0, 0);
948 static void qemu_kvm_eat_signals(CPUState
*cpu
)
950 struct timespec ts
= { 0, 0 };
956 sigemptyset(&waitset
);
957 sigaddset(&waitset
, SIG_IPI
);
958 sigaddset(&waitset
, SIGBUS
);
961 r
= sigtimedwait(&waitset
, &siginfo
, &ts
);
962 if (r
== -1 && !(errno
== EAGAIN
|| errno
== EINTR
)) {
963 perror("sigtimedwait");
969 if (kvm_on_sigbus_vcpu(cpu
, siginfo
.si_code
, siginfo
.si_addr
)) {
977 r
= sigpending(&chkset
);
979 perror("sigpending");
982 } while (sigismember(&chkset
, SIG_IPI
) || sigismember(&chkset
, SIGBUS
));
985 #else /* !CONFIG_LINUX */
987 static void qemu_init_sigbus(void)
991 static void qemu_kvm_eat_signals(CPUState
*cpu
)
994 #endif /* !CONFIG_LINUX */
997 static void dummy_signal(int sig
)
1001 static void qemu_kvm_init_cpu_signals(CPUState
*cpu
)
1005 struct sigaction sigact
;
1007 memset(&sigact
, 0, sizeof(sigact
));
1008 sigact
.sa_handler
= dummy_signal
;
1009 sigaction(SIG_IPI
, &sigact
, NULL
);
1011 pthread_sigmask(SIG_BLOCK
, NULL
, &set
);
1012 sigdelset(&set
, SIG_IPI
);
1013 sigdelset(&set
, SIGBUS
);
1014 r
= kvm_set_signal_mask(cpu
, &set
);
1016 fprintf(stderr
, "kvm_set_signal_mask: %s\n", strerror(-r
));
1022 static void qemu_kvm_init_cpu_signals(CPUState
*cpu
)
1028 static QemuMutex qemu_global_mutex
;
1030 static QemuThread io_thread
;
1033 static QemuCond qemu_cpu_cond
;
1035 static QemuCond qemu_pause_cond
;
1037 void qemu_init_cpu_loop(void)
1040 qemu_cond_init(&qemu_cpu_cond
);
1041 qemu_cond_init(&qemu_pause_cond
);
1042 qemu_mutex_init(&qemu_global_mutex
);
1044 qemu_thread_get_self(&io_thread
);
1047 void run_on_cpu(CPUState
*cpu
, run_on_cpu_func func
, run_on_cpu_data data
)
1049 do_run_on_cpu(cpu
, func
, data
, &qemu_global_mutex
);
1052 static void qemu_kvm_destroy_vcpu(CPUState
*cpu
)
1054 if (kvm_destroy_vcpu(cpu
) < 0) {
1055 error_report("kvm_destroy_vcpu failed");
1060 static void qemu_tcg_destroy_vcpu(CPUState
*cpu
)
1064 static void qemu_wait_io_event_common(CPUState
*cpu
)
1066 atomic_mb_set(&cpu
->thread_kicked
, false);
1069 cpu
->stopped
= true;
1070 qemu_cond_broadcast(&qemu_pause_cond
);
1072 process_queued_cpu_work(cpu
);
1075 static bool qemu_tcg_should_sleep(CPUState
*cpu
)
1077 if (mttcg_enabled
) {
1078 return cpu_thread_is_idle(cpu
);
1080 return all_cpu_threads_idle();
1084 static void qemu_tcg_wait_io_event(CPUState
*cpu
)
1086 while (qemu_tcg_should_sleep(cpu
)) {
1087 stop_tcg_kick_timer();
1088 qemu_cond_wait(cpu
->halt_cond
, &qemu_global_mutex
);
1091 start_tcg_kick_timer();
1093 qemu_wait_io_event_common(cpu
);
1096 static void qemu_kvm_wait_io_event(CPUState
*cpu
)
1098 while (cpu_thread_is_idle(cpu
)) {
1099 qemu_cond_wait(cpu
->halt_cond
, &qemu_global_mutex
);
1102 qemu_kvm_eat_signals(cpu
);
1103 qemu_wait_io_event_common(cpu
);
1106 static void *qemu_kvm_cpu_thread_fn(void *arg
)
1108 CPUState
*cpu
= arg
;
1111 rcu_register_thread();
1113 qemu_mutex_lock_iothread();
1114 qemu_thread_get_self(cpu
->thread
);
1115 cpu
->thread_id
= qemu_get_thread_id();
1119 r
= kvm_init_vcpu(cpu
);
1121 fprintf(stderr
, "kvm_init_vcpu failed: %s\n", strerror(-r
));
1125 qemu_kvm_init_cpu_signals(cpu
);
1127 /* signal CPU creation */
1128 cpu
->created
= true;
1129 qemu_cond_signal(&qemu_cpu_cond
);
1132 if (cpu_can_run(cpu
)) {
1133 r
= kvm_cpu_exec(cpu
);
1134 if (r
== EXCP_DEBUG
) {
1135 cpu_handle_guest_debug(cpu
);
1138 qemu_kvm_wait_io_event(cpu
);
1139 } while (!cpu
->unplug
|| cpu_can_run(cpu
));
1141 qemu_kvm_destroy_vcpu(cpu
);
1142 cpu
->created
= false;
1143 qemu_cond_signal(&qemu_cpu_cond
);
1144 qemu_mutex_unlock_iothread();
1148 static void *qemu_dummy_cpu_thread_fn(void *arg
)
1151 fprintf(stderr
, "qtest is not supported under Windows\n");
1154 CPUState
*cpu
= arg
;
1158 rcu_register_thread();
1160 qemu_mutex_lock_iothread();
1161 qemu_thread_get_self(cpu
->thread
);
1162 cpu
->thread_id
= qemu_get_thread_id();
1166 sigemptyset(&waitset
);
1167 sigaddset(&waitset
, SIG_IPI
);
1169 /* signal CPU creation */
1170 cpu
->created
= true;
1171 qemu_cond_signal(&qemu_cpu_cond
);
1174 qemu_mutex_unlock_iothread();
1177 r
= sigwait(&waitset
, &sig
);
1178 } while (r
== -1 && (errno
== EAGAIN
|| errno
== EINTR
));
1183 qemu_mutex_lock_iothread();
1184 qemu_wait_io_event_common(cpu
);
1191 static int64_t tcg_get_icount_limit(void)
1195 if (replay_mode
!= REPLAY_MODE_PLAY
) {
1196 deadline
= qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL
);
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
1203 if ((deadline
< 0) || (deadline
> INT32_MAX
)) {
1204 deadline
= INT32_MAX
;
1207 return qemu_icount_round(deadline
);
1209 return replay_get_instructions();
1213 static void handle_icount_deadline(void)
1217 qemu_clock_deadline_ns_all(QEMU_CLOCK_VIRTUAL
);
1219 if (deadline
== 0) {
1220 qemu_clock_notify(QEMU_CLOCK_VIRTUAL
);
1225 static int tcg_cpu_exec(CPUState
*cpu
)
1228 #ifdef CONFIG_PROFILER
1232 #ifdef CONFIG_PROFILER
1233 ti
= profile_getclock();
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
;
1246 cpu
->icount_decr
.u16
.low
= decr
;
1247 cpu
->icount_extra
= count
;
1249 qemu_mutex_unlock_iothread();
1250 cpu_exec_start(cpu
);
1251 ret
= cpu_exec(cpu
);
1253 qemu_mutex_lock_iothread();
1254 #ifdef CONFIG_PROFILER
1255 tcg_time
+= profile_getclock() - ti
;
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();
1269 /* Destroy any remaining vCPUs which have been unplugged and have
1272 static void deal_with_unplugged_cpus(void)
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
);
1286 /* Single-threaded TCG
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
1295 static void *qemu_tcg_rr_cpu_thread_fn(void *arg
)
1297 CPUState
*cpu
= arg
;
1299 rcu_register_thread();
1301 qemu_mutex_lock_iothread();
1302 qemu_thread_get_self(cpu
->thread
);
1305 cpu
->thread_id
= qemu_get_thread_id();
1306 cpu
->created
= true;
1309 qemu_cond_signal(&qemu_cpu_cond
);
1311 /* wait for initial kick-off after machine start */
1312 while (first_cpu
->stopped
) {
1313 qemu_cond_wait(first_cpu
->halt_cond
, &qemu_global_mutex
);
1315 /* process any pending work */
1318 qemu_wait_io_event_common(cpu
);
1322 start_tcg_kick_timer();
1326 /* process any pending work */
1327 cpu
->exit_request
= 1;
1330 /* Account partial waits to QEMU_CLOCK_VIRTUAL. */
1331 qemu_account_warp_timer();
1337 while (cpu
&& !cpu
->queued_work_first
&& !cpu
->exit_request
) {
1339 atomic_mb_set(&tcg_current_rr_cpu
, cpu
);
1342 qemu_clock_enable(QEMU_CLOCK_VIRTUAL
,
1343 (cpu
->singlestep_enabled
& SSTEP_NOTIMER
) == 0);
1345 if (cpu_can_run(cpu
)) {
1347 r
= tcg_cpu_exec(cpu
);
1348 if (r
== EXCP_DEBUG
) {
1349 cpu_handle_guest_debug(cpu
);
1351 } else if (r
== EXCP_ATOMIC
) {
1352 qemu_mutex_unlock_iothread();
1353 cpu_exec_step_atomic(cpu
);
1354 qemu_mutex_lock_iothread();
1357 } else if (cpu
->stop
) {
1359 cpu
= CPU_NEXT(cpu
);
1364 cpu
= CPU_NEXT(cpu
);
1365 } /* while (cpu && !cpu->exit_request).. */
1367 /* Does not need atomic_mb_set because a spurious wakeup is okay. */
1368 atomic_set(&tcg_current_rr_cpu
, NULL
);
1370 if (cpu
&& cpu
->exit_request
) {
1371 atomic_mb_set(&cpu
->exit_request
, 0);
1374 handle_icount_deadline();
1376 qemu_tcg_wait_io_event(cpu
? cpu
: QTAILQ_FIRST(&cpus
));
1377 deal_with_unplugged_cpus();
1383 static void *qemu_hax_cpu_thread_fn(void *arg
)
1385 CPUState
*cpu
= arg
;
1387 qemu_thread_get_self(cpu
->thread
);
1388 qemu_mutex_lock(&qemu_global_mutex
);
1390 cpu
->thread_id
= qemu_get_thread_id();
1391 cpu
->created
= true;
1396 qemu_cond_signal(&qemu_cpu_cond
);
1399 if (cpu_can_run(cpu
)) {
1400 r
= hax_smp_cpu_exec(cpu
);
1401 if (r
== EXCP_DEBUG
) {
1402 cpu_handle_guest_debug(cpu
);
1406 while (cpu_thread_is_idle(cpu
)) {
1407 qemu_cond_wait(cpu
->halt_cond
, &qemu_global_mutex
);
1412 qemu_wait_io_event_common(cpu
);
1418 static void CALLBACK
dummy_apc_func(ULONG_PTR unused
)
1423 /* Multi-threaded TCG
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.
1430 static void *qemu_tcg_cpu_thread_fn(void *arg
)
1432 CPUState
*cpu
= arg
;
1434 rcu_register_thread();
1436 qemu_mutex_lock_iothread();
1437 qemu_thread_get_self(cpu
->thread
);
1439 cpu
->thread_id
= qemu_get_thread_id();
1440 cpu
->created
= true;
1443 qemu_cond_signal(&qemu_cpu_cond
);
1445 /* process any pending work */
1446 cpu
->exit_request
= 1;
1449 if (cpu_can_run(cpu
)) {
1451 r
= tcg_cpu_exec(cpu
);
1454 cpu_handle_guest_debug(cpu
);
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.
1462 * cpu->halted should ensure we sleep in wait_io_event
1464 g_assert(cpu
->halted
);
1467 qemu_mutex_unlock_iothread();
1468 cpu_exec_step_atomic(cpu
);
1469 qemu_mutex_lock_iothread();
1471 /* Ignore everything else? */
1476 handle_icount_deadline();
1478 atomic_mb_set(&cpu
->exit_request
, 0);
1479 qemu_tcg_wait_io_event(cpu
);
1485 static void qemu_cpu_kick_thread(CPUState
*cpu
)
1490 if (cpu
->thread_kicked
) {
1493 cpu
->thread_kicked
= true;
1494 err
= pthread_kill(cpu
->thread
->thread
, SIG_IPI
);
1496 fprintf(stderr
, "qemu:%s: %s", __func__
, strerror(err
));
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());
1510 void qemu_cpu_kick(CPUState
*cpu
)
1512 qemu_cond_broadcast(cpu
->halt_cond
);
1513 if (tcg_enabled()) {
1515 /* NOP unless doing single-thread RR */
1516 qemu_cpu_kick_rr_cpu();
1518 if (hax_enabled()) {
1520 * FIXME: race condition with the exit_request check in
1523 cpu
->exit_request
= 1;
1525 qemu_cpu_kick_thread(cpu
);
1529 void qemu_cpu_kick_self(void)
1531 assert(current_cpu
);
1532 qemu_cpu_kick_thread(current_cpu
);
1535 bool qemu_cpu_is_self(CPUState
*cpu
)
1537 return qemu_thread_is_self(cpu
->thread
);
1540 bool qemu_in_vcpu_thread(void)
1542 return current_cpu
&& qemu_cpu_is_self(current_cpu
);
1545 static __thread
bool iothread_locked
= false;
1547 bool qemu_mutex_iothread_locked(void)
1549 return iothread_locked
;
1552 void qemu_mutex_lock_iothread(void)
1554 g_assert(!qemu_mutex_iothread_locked());
1555 qemu_mutex_lock(&qemu_global_mutex
);
1556 iothread_locked
= true;
1559 void qemu_mutex_unlock_iothread(void)
1561 g_assert(qemu_mutex_iothread_locked());
1562 iothread_locked
= false;
1563 qemu_mutex_unlock(&qemu_global_mutex
);
1566 static bool all_vcpus_paused(void)
1571 if (!cpu
->stopped
) {
1579 void pause_all_vcpus(void)
1583 qemu_clock_enable(QEMU_CLOCK_VIRTUAL
, false);
1589 if (qemu_in_vcpu_thread()) {
1593 while (!all_vcpus_paused()) {
1594 qemu_cond_wait(&qemu_pause_cond
, &qemu_global_mutex
);
1601 void cpu_resume(CPUState
*cpu
)
1604 cpu
->stopped
= false;
1608 void resume_all_vcpus(void)
1612 qemu_clock_enable(QEMU_CLOCK_VIRTUAL
, true);
1618 void cpu_remove(CPUState
*cpu
)
1625 void cpu_remove_sync(CPUState
*cpu
)
1628 while (cpu
->created
) {
1629 qemu_cond_wait(&qemu_cpu_cond
, &qemu_global_mutex
);
1633 /* For temporary buffers for forming a name */
1634 #define VCPU_THREAD_NAME_SIZE 16
1636 static void qemu_tcg_init_vcpu(CPUState
*cpu
)
1638 char thread_name
[VCPU_THREAD_NAME_SIZE
];
1639 static QemuCond
*single_tcg_halt_cond
;
1640 static QemuThread
*single_tcg_cpu_thread
;
1642 if (qemu_tcg_mttcg_enabled() || !single_tcg_cpu_thread
) {
1643 cpu
->thread
= g_malloc0(sizeof(QemuThread
));
1644 cpu
->halt_cond
= g_malloc0(sizeof(QemuCond
));
1645 qemu_cond_init(cpu
->halt_cond
);
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",
1653 qemu_thread_create(cpu
->thread
, thread_name
, qemu_tcg_cpu_thread_fn
,
1654 cpu
, QEMU_THREAD_JOINABLE
);
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
);
1663 single_tcg_halt_cond
= cpu
->halt_cond
;
1664 single_tcg_cpu_thread
= cpu
->thread
;
1667 cpu
->hThread
= qemu_thread_get_handle(cpu
->thread
);
1669 while (!cpu
->created
) {
1670 qemu_cond_wait(&qemu_cpu_cond
, &qemu_global_mutex
);
1673 /* For non-MTTCG cases we share the thread */
1674 cpu
->thread
= single_tcg_cpu_thread
;
1675 cpu
->halt_cond
= single_tcg_halt_cond
;
1679 static void qemu_hax_start_vcpu(CPUState
*cpu
)
1681 char thread_name
[VCPU_THREAD_NAME_SIZE
];
1683 cpu
->thread
= g_malloc0(sizeof(QemuThread
));
1684 cpu
->halt_cond
= g_malloc0(sizeof(QemuCond
));
1685 qemu_cond_init(cpu
->halt_cond
);
1687 snprintf(thread_name
, VCPU_THREAD_NAME_SIZE
, "CPU %d/HAX",
1689 qemu_thread_create(cpu
->thread
, thread_name
, qemu_hax_cpu_thread_fn
,
1690 cpu
, QEMU_THREAD_JOINABLE
);
1692 cpu
->hThread
= qemu_thread_get_handle(cpu
->thread
);
1694 while (!cpu
->created
) {
1695 qemu_cond_wait(&qemu_cpu_cond
, &qemu_global_mutex
);
1699 static void qemu_kvm_start_vcpu(CPUState
*cpu
)
1701 char thread_name
[VCPU_THREAD_NAME_SIZE
];
1703 cpu
->thread
= g_malloc0(sizeof(QemuThread
));
1704 cpu
->halt_cond
= g_malloc0(sizeof(QemuCond
));
1705 qemu_cond_init(cpu
->halt_cond
);
1706 snprintf(thread_name
, VCPU_THREAD_NAME_SIZE
, "CPU %d/KVM",
1708 qemu_thread_create(cpu
->thread
, thread_name
, qemu_kvm_cpu_thread_fn
,
1709 cpu
, QEMU_THREAD_JOINABLE
);
1710 while (!cpu
->created
) {
1711 qemu_cond_wait(&qemu_cpu_cond
, &qemu_global_mutex
);
1715 static void qemu_dummy_start_vcpu(CPUState
*cpu
)
1717 char thread_name
[VCPU_THREAD_NAME_SIZE
];
1719 cpu
->thread
= g_malloc0(sizeof(QemuThread
));
1720 cpu
->halt_cond
= g_malloc0(sizeof(QemuCond
));
1721 qemu_cond_init(cpu
->halt_cond
);
1722 snprintf(thread_name
, VCPU_THREAD_NAME_SIZE
, "CPU %d/DUMMY",
1724 qemu_thread_create(cpu
->thread
, thread_name
, qemu_dummy_cpu_thread_fn
, cpu
,
1725 QEMU_THREAD_JOINABLE
);
1726 while (!cpu
->created
) {
1727 qemu_cond_wait(&qemu_cpu_cond
, &qemu_global_mutex
);
1731 void qemu_init_vcpu(CPUState
*cpu
)
1733 cpu
->nr_cores
= smp_cores
;
1734 cpu
->nr_threads
= smp_threads
;
1735 cpu
->stopped
= true;
1738 /* If the target cpu hasn't set up any address spaces itself,
1739 * give it the default one.
1741 AddressSpace
*as
= address_space_init_shareable(cpu
->memory
,
1744 cpu_address_space_init(cpu
, as
, 0);
1747 if (kvm_enabled()) {
1748 qemu_kvm_start_vcpu(cpu
);
1749 } else if (hax_enabled()) {
1750 qemu_hax_start_vcpu(cpu
);
1751 } else if (tcg_enabled()) {
1752 qemu_tcg_init_vcpu(cpu
);
1754 qemu_dummy_start_vcpu(cpu
);
1758 void cpu_stop_current(void)
1761 current_cpu
->stop
= false;
1762 current_cpu
->stopped
= true;
1763 cpu_exit(current_cpu
);
1764 qemu_cond_broadcast(&qemu_pause_cond
);
1768 int vm_stop(RunState state
)
1770 if (qemu_in_vcpu_thread()) {
1771 qemu_system_vmstop_request_prepare();
1772 qemu_system_vmstop_request(state
);
1774 * FIXME: should not return to device code in case
1775 * vm_stop() has been requested.
1781 return do_vm_stop(state
);
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.
1789 int vm_prepare_start(void)
1794 qemu_vmstop_requested(&requested
);
1795 if (runstate_is_running() && requested
== RUN_STATE__MAX
) {
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
1804 if (runstate_is_running()) {
1805 qapi_event_send_stop(&error_abort
);
1808 replay_enable_events();
1810 runstate_set(RUN_STATE_RUNNING
);
1811 vm_state_notify(1, RUN_STATE_RUNNING
);
1814 /* We are sending this now, but the CPUs will be resumed shortly later */
1815 qapi_event_send_resume(&error_abort
);
1821 if (!vm_prepare_start()) {
1826 /* does a state transition even if the VM is already stopped,
1827 current state is forgotten forever */
1828 int vm_stop_force_state(RunState state
)
1830 if (runstate_is_running()) {
1831 return vm_stop(state
);
1833 runstate_set(state
);
1836 /* Make sure to return an error if the flush in a previous vm_stop()
1838 return bdrv_flush_all();
1842 void list_cpus(FILE *f
, fprintf_function cpu_fprintf
, const char *optarg
)
1844 /* XXX: implement xxx_cpu_list for targets that still miss it */
1845 #if defined(cpu_list)
1846 cpu_list(f
, cpu_fprintf
);
1850 CpuInfoList
*qmp_query_cpus(Error
**errp
)
1852 CpuInfoList
*head
= NULL
, *cur_item
= NULL
;
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
;
1869 #elif defined(TARGET_TRICORE)
1870 TriCoreCPU
*tricore_cpu
= TRICORE_CPU(cpu
);
1871 CPUTriCoreState
*env
= &tricore_cpu
->env
;
1874 cpu_synchronize_state(cpu
);
1876 info
= g_malloc0(sizeof(*info
));
1877 info
->value
= g_malloc0(sizeof(*info
->value
));
1878 info
->value
->CPU
= cpu
->cpu_index
;
1879 info
->value
->current
= (cpu
== first_cpu
);
1880 info
->value
->halted
= cpu
->halted
;
1881 info
->value
->qom_path
= object_get_canonical_path(OBJECT(cpu
));
1882 info
->value
->thread_id
= cpu
->thread_id
;
1883 #if defined(TARGET_I386)
1884 info
->value
->arch
= CPU_INFO_ARCH_X86
;
1885 info
->value
->u
.x86
.pc
= env
->eip
+ env
->segs
[R_CS
].base
;
1886 #elif defined(TARGET_PPC)
1887 info
->value
->arch
= CPU_INFO_ARCH_PPC
;
1888 info
->value
->u
.ppc
.nip
= env
->nip
;
1889 #elif defined(TARGET_SPARC)
1890 info
->value
->arch
= CPU_INFO_ARCH_SPARC
;
1891 info
->value
->u
.q_sparc
.pc
= env
->pc
;
1892 info
->value
->u
.q_sparc
.npc
= env
->npc
;
1893 #elif defined(TARGET_MIPS)
1894 info
->value
->arch
= CPU_INFO_ARCH_MIPS
;
1895 info
->value
->u
.q_mips
.PC
= env
->active_tc
.PC
;
1896 #elif defined(TARGET_TRICORE)
1897 info
->value
->arch
= CPU_INFO_ARCH_TRICORE
;
1898 info
->value
->u
.tricore
.PC
= env
->PC
;
1900 info
->value
->arch
= CPU_INFO_ARCH_OTHER
;
1903 /* XXX: waiting for the qapi to support GSList */
1905 head
= cur_item
= info
;
1907 cur_item
->next
= info
;
1915 void qmp_memsave(int64_t addr
, int64_t size
, const char *filename
,
1916 bool has_cpu
, int64_t cpu_index
, Error
**errp
)
1922 int64_t orig_addr
= addr
, orig_size
= size
;
1928 cpu
= qemu_get_cpu(cpu_index
);
1930 error_setg(errp
, QERR_INVALID_PARAMETER_VALUE
, "cpu-index",
1935 f
= fopen(filename
, "wb");
1937 error_setg_file_open(errp
, errno
, filename
);
1945 if (cpu_memory_rw_debug(cpu
, addr
, buf
, l
, 0) != 0) {
1946 error_setg(errp
, "Invalid addr 0x%016" PRIx64
"/size %" PRId64
1947 " specified", orig_addr
, orig_size
);
1950 if (fwrite(buf
, 1, l
, f
) != l
) {
1951 error_setg(errp
, QERR_IO_ERROR
);
1962 void qmp_pmemsave(int64_t addr
, int64_t size
, const char *filename
,
1969 f
= fopen(filename
, "wb");
1971 error_setg_file_open(errp
, errno
, filename
);
1979 cpu_physical_memory_read(addr
, buf
, l
);
1980 if (fwrite(buf
, 1, l
, f
) != l
) {
1981 error_setg(errp
, QERR_IO_ERROR
);
1992 void qmp_inject_nmi(Error
**errp
)
1994 nmi_monitor_handle(monitor_get_cpu_index(), errp
);
1997 void dump_drift_info(FILE *f
, fprintf_function cpu_fprintf
)
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
);
2009 cpu_fprintf(f
, "Max guest delay NA\n");
2010 cpu_fprintf(f
, "Max guest advance NA\n");