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 "config-host.h"
34 #include "qemu-thread.h"
42 #define SIG_IPI (SIGRTMIN+4)
44 #define SIG_IPI SIGUSR1
49 #include <sys/prctl.h>
52 #define PR_MCE_KILL 33
55 #ifndef PR_MCE_KILL_SET
56 #define PR_MCE_KILL_SET 1
59 #ifndef PR_MCE_KILL_EARLY
60 #define PR_MCE_KILL_EARLY 1
63 #endif /* CONFIG_LINUX */
65 static CPUState
*next_cpu
;
67 /***********************************************************/
68 void hw_error(const char *fmt
, ...)
74 fprintf(stderr
, "qemu: hardware error: ");
75 vfprintf(stderr
, fmt
, ap
);
76 fprintf(stderr
, "\n");
77 for(env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
78 fprintf(stderr
, "CPU #%d:\n", env
->cpu_index
);
80 cpu_dump_state(env
, stderr
, fprintf
, X86_DUMP_FPU
);
82 cpu_dump_state(env
, stderr
, fprintf
, 0);
89 void cpu_synchronize_all_states(void)
93 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
94 cpu_synchronize_state(cpu
);
98 void cpu_synchronize_all_post_reset(void)
102 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
103 cpu_synchronize_post_reset(cpu
);
107 void cpu_synchronize_all_post_init(void)
111 for (cpu
= first_cpu
; cpu
; cpu
= cpu
->next_cpu
) {
112 cpu_synchronize_post_init(cpu
);
116 int cpu_is_stopped(CPUState
*env
)
118 return !vm_running
|| env
->stopped
;
121 static void do_vm_stop(int reason
)
127 vm_state_notify(0, reason
);
130 monitor_protocol_event(QEVENT_STOP
, NULL
);
134 static int cpu_can_run(CPUState
*env
)
139 if (env
->stopped
|| !vm_running
) {
145 static bool cpu_thread_is_idle(CPUState
*env
)
147 if (env
->stop
|| env
->queued_work_first
) {
150 if (env
->stopped
|| !vm_running
) {
153 if (!env
->halted
|| qemu_cpu_has_work(env
) ||
154 (kvm_enabled() && kvm_irqchip_in_kernel())) {
160 bool all_cpu_threads_idle(void)
164 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
165 if (!cpu_thread_is_idle(env
)) {
172 static void cpu_handle_guest_debug(CPUState
*env
)
174 gdb_set_stop_cpu(env
);
175 qemu_system_debug_request();
176 #ifdef CONFIG_IOTHREAD
181 #ifdef CONFIG_IOTHREAD
182 static void cpu_signal(int sig
)
184 if (cpu_single_env
) {
185 cpu_exit(cpu_single_env
);
192 static void sigbus_reraise(void)
195 struct sigaction action
;
197 memset(&action
, 0, sizeof(action
));
198 action
.sa_handler
= SIG_DFL
;
199 if (!sigaction(SIGBUS
, &action
, NULL
)) {
202 sigaddset(&set
, SIGBUS
);
203 sigprocmask(SIG_UNBLOCK
, &set
, NULL
);
205 perror("Failed to re-raise SIGBUS!\n");
209 static void sigbus_handler(int n
, struct qemu_signalfd_siginfo
*siginfo
,
212 if (kvm_on_sigbus(siginfo
->ssi_code
,
213 (void *)(intptr_t)siginfo
->ssi_addr
)) {
218 static void qemu_init_sigbus(void)
220 struct sigaction action
;
222 memset(&action
, 0, sizeof(action
));
223 action
.sa_flags
= SA_SIGINFO
;
224 action
.sa_sigaction
= (void (*)(int, siginfo_t
*, void*))sigbus_handler
;
225 sigaction(SIGBUS
, &action
, NULL
);
227 prctl(PR_MCE_KILL
, PR_MCE_KILL_SET
, PR_MCE_KILL_EARLY
, 0, 0);
230 static void qemu_kvm_eat_signals(CPUState
*env
)
232 struct timespec ts
= { 0, 0 };
238 sigemptyset(&waitset
);
239 sigaddset(&waitset
, SIG_IPI
);
240 sigaddset(&waitset
, SIGBUS
);
243 r
= sigtimedwait(&waitset
, &siginfo
, &ts
);
244 if (r
== -1 && !(errno
== EAGAIN
|| errno
== EINTR
)) {
245 perror("sigtimedwait");
251 if (kvm_on_sigbus_vcpu(env
, siginfo
.si_code
, siginfo
.si_addr
)) {
259 r
= sigpending(&chkset
);
261 perror("sigpending");
264 } while (sigismember(&chkset
, SIG_IPI
) || sigismember(&chkset
, SIGBUS
));
266 #ifndef CONFIG_IOTHREAD
267 if (sigismember(&chkset
, SIGIO
) || sigismember(&chkset
, SIGALRM
)) {
273 #else /* !CONFIG_LINUX */
275 static void qemu_init_sigbus(void)
279 static void qemu_kvm_eat_signals(CPUState
*env
)
282 #endif /* !CONFIG_LINUX */
285 static int io_thread_fd
= -1;
287 static void qemu_event_increment(void)
289 /* Write 8 bytes to be compatible with eventfd. */
290 static const uint64_t val
= 1;
293 if (io_thread_fd
== -1) {
297 ret
= write(io_thread_fd
, &val
, sizeof(val
));
298 } while (ret
< 0 && errno
== EINTR
);
300 /* EAGAIN is fine, a read must be pending. */
301 if (ret
< 0 && errno
!= EAGAIN
) {
302 fprintf(stderr
, "qemu_event_increment: write() failed: %s\n",
308 static void qemu_event_read(void *opaque
)
310 int fd
= (intptr_t)opaque
;
314 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
316 len
= read(fd
, buffer
, sizeof(buffer
));
317 } while ((len
== -1 && errno
== EINTR
) || len
== sizeof(buffer
));
320 static int qemu_event_init(void)
325 err
= qemu_eventfd(fds
);
329 err
= fcntl_setfl(fds
[0], O_NONBLOCK
);
333 err
= fcntl_setfl(fds
[1], O_NONBLOCK
);
337 qemu_set_fd_handler2(fds
[0], NULL
, qemu_event_read
, NULL
,
338 (void *)(intptr_t)fds
[0]);
340 io_thread_fd
= fds
[1];
349 static void dummy_signal(int sig
)
353 /* If we have signalfd, we mask out the signals we want to handle and then
354 * use signalfd to listen for them. We rely on whatever the current signal
355 * handler is to dispatch the signals when we receive them.
357 static void sigfd_handler(void *opaque
)
359 int fd
= (intptr_t)opaque
;
360 struct qemu_signalfd_siginfo info
;
361 struct sigaction action
;
366 len
= read(fd
, &info
, sizeof(info
));
367 } while (len
== -1 && errno
== EINTR
);
369 if (len
== -1 && errno
== EAGAIN
) {
373 if (len
!= sizeof(info
)) {
374 printf("read from sigfd returned %zd: %m\n", len
);
378 sigaction(info
.ssi_signo
, NULL
, &action
);
379 if ((action
.sa_flags
& SA_SIGINFO
) && action
.sa_sigaction
) {
380 action
.sa_sigaction(info
.ssi_signo
,
381 (siginfo_t
*)&info
, NULL
);
382 } else if (action
.sa_handler
) {
383 action
.sa_handler(info
.ssi_signo
);
388 static int qemu_signal_init(void)
393 #ifdef CONFIG_IOTHREAD
394 /* SIGUSR2 used by posix-aio-compat.c */
396 sigaddset(&set
, SIGUSR2
);
397 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
400 * SIG_IPI must be blocked in the main thread and must not be caught
401 * by sigwait() in the signal thread. Otherwise, the cpu thread will
402 * not catch it reliably.
405 sigaddset(&set
, SIG_IPI
);
406 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
409 sigaddset(&set
, SIGIO
);
410 sigaddset(&set
, SIGALRM
);
411 sigaddset(&set
, SIGBUS
);
414 sigaddset(&set
, SIGBUS
);
417 * We need to process timer signals synchronously to avoid a race
418 * between exit_request check and KVM vcpu entry.
420 sigaddset(&set
, SIGIO
);
421 sigaddset(&set
, SIGALRM
);
424 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
426 sigfd
= qemu_signalfd(&set
);
428 fprintf(stderr
, "failed to create signalfd\n");
432 fcntl_setfl(sigfd
, O_NONBLOCK
);
434 qemu_set_fd_handler2(sigfd
, NULL
, sigfd_handler
, NULL
,
435 (void *)(intptr_t)sigfd
);
440 static void qemu_kvm_init_cpu_signals(CPUState
*env
)
444 struct sigaction sigact
;
446 memset(&sigact
, 0, sizeof(sigact
));
447 sigact
.sa_handler
= dummy_signal
;
448 sigaction(SIG_IPI
, &sigact
, NULL
);
450 #ifdef CONFIG_IOTHREAD
451 pthread_sigmask(SIG_BLOCK
, NULL
, &set
);
452 sigdelset(&set
, SIG_IPI
);
453 sigdelset(&set
, SIGBUS
);
454 r
= kvm_set_signal_mask(env
, &set
);
456 fprintf(stderr
, "kvm_set_signal_mask: %s\n", strerror(-r
));
461 sigaddset(&set
, SIG_IPI
);
462 sigaddset(&set
, SIGIO
);
463 sigaddset(&set
, SIGALRM
);
464 pthread_sigmask(SIG_BLOCK
, &set
, NULL
);
466 pthread_sigmask(SIG_BLOCK
, NULL
, &set
);
467 sigdelset(&set
, SIGIO
);
468 sigdelset(&set
, SIGALRM
);
470 sigdelset(&set
, SIG_IPI
);
471 sigdelset(&set
, SIGBUS
);
472 r
= kvm_set_signal_mask(env
, &set
);
474 fprintf(stderr
, "kvm_set_signal_mask: %s\n", strerror(-r
));
479 static void qemu_tcg_init_cpu_signals(void)
481 #ifdef CONFIG_IOTHREAD
483 struct sigaction sigact
;
485 memset(&sigact
, 0, sizeof(sigact
));
486 sigact
.sa_handler
= cpu_signal
;
487 sigaction(SIG_IPI
, &sigact
, NULL
);
490 sigaddset(&set
, SIG_IPI
);
491 pthread_sigmask(SIG_UNBLOCK
, &set
, NULL
);
497 HANDLE qemu_event_handle
;
499 static void dummy_event_handler(void *opaque
)
503 static int qemu_event_init(void)
505 qemu_event_handle
= CreateEvent(NULL
, FALSE
, FALSE
, NULL
);
506 if (!qemu_event_handle
) {
507 fprintf(stderr
, "Failed CreateEvent: %ld\n", GetLastError());
510 qemu_add_wait_object(qemu_event_handle
, dummy_event_handler
, NULL
);
514 static void qemu_event_increment(void)
516 if (!SetEvent(qemu_event_handle
)) {
517 fprintf(stderr
, "qemu_event_increment: SetEvent failed: %ld\n",
523 static int qemu_signal_init(void)
528 static void qemu_kvm_init_cpu_signals(CPUState
*env
)
533 static void qemu_tcg_init_cpu_signals(void)
538 #ifndef CONFIG_IOTHREAD
539 int qemu_init_main_loop(void)
543 ret
= qemu_signal_init();
550 return qemu_event_init();
553 void qemu_main_loop_start(void)
557 void qemu_init_vcpu(void *_env
)
559 CPUState
*env
= _env
;
562 env
->nr_cores
= smp_cores
;
563 env
->nr_threads
= smp_threads
;
566 r
= kvm_init_vcpu(env
);
568 fprintf(stderr
, "kvm_init_vcpu failed: %s\n", strerror(-r
));
571 qemu_kvm_init_cpu_signals(env
);
573 qemu_tcg_init_cpu_signals();
577 int qemu_cpu_is_self(void *env
)
582 void run_on_cpu(CPUState
*env
, void (*func
)(void *data
), void *data
)
587 void resume_all_vcpus(void)
591 void pause_all_vcpus(void)
595 void qemu_cpu_kick(void *env
)
599 void qemu_cpu_kick_self(void)
602 assert(cpu_single_env
);
610 void qemu_notify_event(void)
612 CPUState
*env
= cpu_single_env
;
614 qemu_event_increment ();
618 if (next_cpu
&& env
!= next_cpu
) {
624 void qemu_mutex_lock_iothread(void) {}
625 void qemu_mutex_unlock_iothread(void) {}
627 void cpu_stop_current(void)
631 void vm_stop(int reason
)
636 #else /* CONFIG_IOTHREAD */
638 QemuMutex qemu_global_mutex
;
639 static QemuMutex qemu_fair_mutex
;
641 static QemuThread io_thread
;
643 static QemuThread
*tcg_cpu_thread
;
644 static QemuCond
*tcg_halt_cond
;
646 static int qemu_system_ready
;
648 static QemuCond qemu_cpu_cond
;
650 static QemuCond qemu_system_cond
;
651 static QemuCond qemu_pause_cond
;
652 static QemuCond qemu_work_cond
;
654 int qemu_init_main_loop(void)
660 ret
= qemu_signal_init();
665 /* Note eventfd must be drained before signalfd handlers run */
666 ret
= qemu_event_init();
671 qemu_cond_init(&qemu_cpu_cond
);
672 qemu_cond_init(&qemu_system_cond
);
673 qemu_cond_init(&qemu_pause_cond
);
674 qemu_cond_init(&qemu_work_cond
);
675 qemu_mutex_init(&qemu_fair_mutex
);
676 qemu_mutex_init(&qemu_global_mutex
);
677 qemu_mutex_lock(&qemu_global_mutex
);
679 qemu_thread_get_self(&io_thread
);
684 void qemu_main_loop_start(void)
686 qemu_system_ready
= 1;
687 qemu_cond_broadcast(&qemu_system_cond
);
690 void run_on_cpu(CPUState
*env
, void (*func
)(void *data
), void *data
)
692 struct qemu_work_item wi
;
694 if (qemu_cpu_is_self(env
)) {
701 if (!env
->queued_work_first
) {
702 env
->queued_work_first
= &wi
;
704 env
->queued_work_last
->next
= &wi
;
706 env
->queued_work_last
= &wi
;
712 CPUState
*self_env
= cpu_single_env
;
714 qemu_cond_wait(&qemu_work_cond
, &qemu_global_mutex
);
715 cpu_single_env
= self_env
;
719 static void flush_queued_work(CPUState
*env
)
721 struct qemu_work_item
*wi
;
723 if (!env
->queued_work_first
) {
727 while ((wi
= env
->queued_work_first
)) {
728 env
->queued_work_first
= wi
->next
;
732 env
->queued_work_last
= NULL
;
733 qemu_cond_broadcast(&qemu_work_cond
);
736 static void qemu_wait_io_event_common(CPUState
*env
)
741 qemu_cond_signal(&qemu_pause_cond
);
743 flush_queued_work(env
);
744 env
->thread_kicked
= false;
747 static void qemu_tcg_wait_io_event(void)
751 while (all_cpu_threads_idle()) {
752 /* Start accounting real time to the virtual clock if the CPUs
754 qemu_clock_warp(vm_clock
);
755 qemu_cond_wait(tcg_halt_cond
, &qemu_global_mutex
);
758 qemu_mutex_unlock(&qemu_global_mutex
);
761 * Users of qemu_global_mutex can be starved, having no chance
762 * to acquire it since this path will get to it first.
763 * So use another lock to provide fairness.
765 qemu_mutex_lock(&qemu_fair_mutex
);
766 qemu_mutex_unlock(&qemu_fair_mutex
);
768 qemu_mutex_lock(&qemu_global_mutex
);
770 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
771 qemu_wait_io_event_common(env
);
775 static void qemu_kvm_wait_io_event(CPUState
*env
)
777 while (cpu_thread_is_idle(env
)) {
778 qemu_cond_wait(env
->halt_cond
, &qemu_global_mutex
);
781 qemu_kvm_eat_signals(env
);
782 qemu_wait_io_event_common(env
);
785 static void *qemu_kvm_cpu_thread_fn(void *arg
)
790 qemu_mutex_lock(&qemu_global_mutex
);
791 qemu_thread_get_self(env
->thread
);
792 env
->thread_id
= qemu_get_thread_id();
794 r
= kvm_init_vcpu(env
);
796 fprintf(stderr
, "kvm_init_vcpu failed: %s\n", strerror(-r
));
800 qemu_kvm_init_cpu_signals(env
);
802 /* signal CPU creation */
804 qemu_cond_signal(&qemu_cpu_cond
);
806 /* and wait for machine initialization */
807 while (!qemu_system_ready
) {
808 qemu_cond_wait(&qemu_system_cond
, &qemu_global_mutex
);
812 if (cpu_can_run(env
)) {
813 r
= kvm_cpu_exec(env
);
814 if (r
== EXCP_DEBUG
) {
815 cpu_handle_guest_debug(env
);
818 qemu_kvm_wait_io_event(env
);
824 static void *qemu_tcg_cpu_thread_fn(void *arg
)
828 qemu_tcg_init_cpu_signals();
829 qemu_thread_get_self(env
->thread
);
831 /* signal CPU creation */
832 qemu_mutex_lock(&qemu_global_mutex
);
833 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
834 env
->thread_id
= qemu_get_thread_id();
837 qemu_cond_signal(&qemu_cpu_cond
);
839 /* and wait for machine initialization */
840 while (!qemu_system_ready
) {
841 qemu_cond_wait(&qemu_system_cond
, &qemu_global_mutex
);
846 if (use_icount
&& qemu_next_icount_deadline() <= 0) {
849 qemu_tcg_wait_io_event();
855 static void qemu_cpu_kick_thread(CPUState
*env
)
860 err
= pthread_kill(env
->thread
->thread
, SIG_IPI
);
862 fprintf(stderr
, "qemu:%s: %s", __func__
, strerror(err
));
866 if (!qemu_cpu_is_self(env
)) {
867 SuspendThread(env
->thread
->thread
);
869 ResumeThread(env
->thread
->thread
);
874 void qemu_cpu_kick(void *_env
)
876 CPUState
*env
= _env
;
878 qemu_cond_broadcast(env
->halt_cond
);
879 if (!env
->thread_kicked
) {
880 qemu_cpu_kick_thread(env
);
881 env
->thread_kicked
= true;
885 void qemu_cpu_kick_self(void)
888 assert(cpu_single_env
);
890 if (!cpu_single_env
->thread_kicked
) {
891 qemu_cpu_kick_thread(cpu_single_env
);
892 cpu_single_env
->thread_kicked
= true;
899 int qemu_cpu_is_self(void *_env
)
901 CPUState
*env
= _env
;
903 return qemu_thread_is_self(env
->thread
);
906 void qemu_mutex_lock_iothread(void)
909 qemu_mutex_lock(&qemu_global_mutex
);
911 qemu_mutex_lock(&qemu_fair_mutex
);
912 if (qemu_mutex_trylock(&qemu_global_mutex
)) {
913 qemu_cpu_kick_thread(first_cpu
);
914 qemu_mutex_lock(&qemu_global_mutex
);
916 qemu_mutex_unlock(&qemu_fair_mutex
);
920 void qemu_mutex_unlock_iothread(void)
922 qemu_mutex_unlock(&qemu_global_mutex
);
925 static int all_vcpus_paused(void)
927 CPUState
*penv
= first_cpu
;
930 if (!penv
->stopped
) {
933 penv
= (CPUState
*)penv
->next_cpu
;
939 void pause_all_vcpus(void)
941 CPUState
*penv
= first_cpu
;
946 penv
= (CPUState
*)penv
->next_cpu
;
949 while (!all_vcpus_paused()) {
950 qemu_cond_wait(&qemu_pause_cond
, &qemu_global_mutex
);
954 penv
= (CPUState
*)penv
->next_cpu
;
959 void resume_all_vcpus(void)
961 CPUState
*penv
= first_cpu
;
967 penv
= (CPUState
*)penv
->next_cpu
;
971 static void qemu_tcg_init_vcpu(void *_env
)
973 CPUState
*env
= _env
;
975 /* share a single thread for all cpus with TCG */
976 if (!tcg_cpu_thread
) {
977 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
978 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
979 qemu_cond_init(env
->halt_cond
);
980 qemu_thread_create(env
->thread
, qemu_tcg_cpu_thread_fn
, env
);
981 while (env
->created
== 0) {
982 qemu_cond_wait(&qemu_cpu_cond
, &qemu_global_mutex
);
984 tcg_cpu_thread
= env
->thread
;
985 tcg_halt_cond
= env
->halt_cond
;
987 env
->thread
= tcg_cpu_thread
;
988 env
->halt_cond
= tcg_halt_cond
;
992 static void qemu_kvm_start_vcpu(CPUState
*env
)
994 env
->thread
= qemu_mallocz(sizeof(QemuThread
));
995 env
->halt_cond
= qemu_mallocz(sizeof(QemuCond
));
996 qemu_cond_init(env
->halt_cond
);
997 qemu_thread_create(env
->thread
, qemu_kvm_cpu_thread_fn
, env
);
998 while (env
->created
== 0) {
999 qemu_cond_wait(&qemu_cpu_cond
, &qemu_global_mutex
);
1003 void qemu_init_vcpu(void *_env
)
1005 CPUState
*env
= _env
;
1007 env
->nr_cores
= smp_cores
;
1008 env
->nr_threads
= smp_threads
;
1009 if (kvm_enabled()) {
1010 qemu_kvm_start_vcpu(env
);
1012 qemu_tcg_init_vcpu(env
);
1016 void qemu_notify_event(void)
1018 qemu_event_increment();
1021 void cpu_stop_current(void)
1023 if (cpu_single_env
) {
1024 cpu_single_env
->stop
= 0;
1025 cpu_single_env
->stopped
= 1;
1026 cpu_exit(cpu_single_env
);
1027 qemu_cond_signal(&qemu_pause_cond
);
1031 void vm_stop(int reason
)
1033 if (!qemu_thread_is_self(&io_thread
)) {
1034 qemu_system_vmstop_request(reason
);
1036 * FIXME: should not return to device code in case
1037 * vm_stop() has been requested.
1047 static int tcg_cpu_exec(CPUState
*env
)
1050 #ifdef CONFIG_PROFILER
1054 #ifdef CONFIG_PROFILER
1055 ti
= profile_getclock();
1060 qemu_icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
1061 env
->icount_decr
.u16
.low
= 0;
1062 env
->icount_extra
= 0;
1063 count
= qemu_icount_round(qemu_next_icount_deadline());
1064 qemu_icount
+= count
;
1065 decr
= (count
> 0xffff) ? 0xffff : count
;
1067 env
->icount_decr
.u16
.low
= decr
;
1068 env
->icount_extra
= count
;
1070 ret
= cpu_exec(env
);
1071 #ifdef CONFIG_PROFILER
1072 qemu_time
+= profile_getclock() - ti
;
1075 /* Fold pending instructions back into the
1076 instruction counter, and clear the interrupt flag. */
1077 qemu_icount
-= (env
->icount_decr
.u16
.low
1078 + env
->icount_extra
);
1079 env
->icount_decr
.u32
= 0;
1080 env
->icount_extra
= 0;
1085 bool cpu_exec_all(void)
1089 /* Account partial waits to the vm_clock. */
1090 qemu_clock_warp(vm_clock
);
1092 if (next_cpu
== NULL
) {
1093 next_cpu
= first_cpu
;
1095 for (; next_cpu
!= NULL
&& !exit_request
; next_cpu
= next_cpu
->next_cpu
) {
1096 CPUState
*env
= next_cpu
;
1098 qemu_clock_enable(vm_clock
,
1099 (env
->singlestep_enabled
& SSTEP_NOTIMER
) == 0);
1101 #ifndef CONFIG_IOTHREAD
1102 if (qemu_alarm_pending()) {
1106 if (cpu_can_run(env
)) {
1107 if (kvm_enabled()) {
1108 r
= kvm_cpu_exec(env
);
1109 qemu_kvm_eat_signals(env
);
1111 r
= tcg_cpu_exec(env
);
1113 if (r
== EXCP_DEBUG
) {
1114 cpu_handle_guest_debug(env
);
1117 } else if (env
->stop
|| env
->stopped
) {
1122 return !all_cpu_threads_idle();
1125 void set_numa_modes(void)
1130 for (env
= first_cpu
; env
!= NULL
; env
= env
->next_cpu
) {
1131 for (i
= 0; i
< nb_numa_nodes
; i
++) {
1132 if (node_cpumask
[i
] & (1 << env
->cpu_index
)) {
1139 void set_cpu_log(const char *optarg
)
1142 const CPULogItem
*item
;
1144 mask
= cpu_str_to_log_mask(optarg
);
1146 printf("Log items (comma separated):\n");
1147 for (item
= cpu_log_items
; item
->mask
!= 0; item
++) {
1148 printf("%-10s %s\n", item
->name
, item
->help
);
1155 void set_cpu_log_filename(const char *optarg
)
1157 cpu_set_log_filename(optarg
);
1160 /* Return the virtual CPU time, based on the instruction counter. */
1161 int64_t cpu_get_icount(void)
1164 CPUState
*env
= cpu_single_env
;;
1166 icount
= qemu_icount
;
1168 if (!can_do_io(env
)) {
1169 fprintf(stderr
, "Bad clock read\n");
1171 icount
-= (env
->icount_decr
.u16
.low
+ env
->icount_extra
);
1173 return qemu_icount_bias
+ (icount
<< icount_time_shift
);
1176 void list_cpus(FILE *f
, fprintf_function cpu_fprintf
, const char *optarg
)
1178 /* XXX: implement xxx_cpu_list for targets that still miss it */
1179 #if defined(cpu_list_id)
1180 cpu_list_id(f
, cpu_fprintf
, optarg
);
1181 #elif defined(cpu_list)
1182 cpu_list(f
, cpu_fprintf
); /* deprecated */