pci: Remove capability specific handlers
[qemu-kvm/stefanha.git] / cpus.c
bloba55c3307c7f6ab59332d6695ccf5e2ae3d969d67
1 /*
2 * QEMU System Emulator
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
22 * THE SOFTWARE.
25 /* Needed early for CONFIG_BSD etc. */
26 #include "config-host.h"
28 #include "monitor.h"
29 #include "sysemu.h"
30 #include "gdbstub.h"
31 #include "dma.h"
32 #include "kvm.h"
33 #include "exec-all.h"
35 #include "cpus.h"
36 #include "compatfd.h"
37 #ifdef CONFIG_LINUX
38 #include <sys/prctl.h>
39 #endif
41 #ifdef SIGRTMIN
42 #define SIG_IPI (SIGRTMIN+4)
43 #else
44 #define SIG_IPI SIGUSR1
45 #endif
47 #ifndef PR_MCE_KILL
48 #define PR_MCE_KILL 33
49 #endif
51 static CPUState *next_cpu;
53 /***********************************************************/
54 void hw_error(const char *fmt, ...)
56 va_list ap;
57 CPUState *env;
59 va_start(ap, fmt);
60 fprintf(stderr, "qemu: hardware error: ");
61 vfprintf(stderr, fmt, ap);
62 fprintf(stderr, "\n");
63 for(env = first_cpu; env != NULL; env = env->next_cpu) {
64 fprintf(stderr, "CPU #%d:\n", env->cpu_index);
65 #ifdef TARGET_I386
66 cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
67 #else
68 cpu_dump_state(env, stderr, fprintf, 0);
69 #endif
71 va_end(ap);
72 abort();
75 void cpu_synchronize_all_states(void)
77 CPUState *cpu;
79 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
80 cpu_synchronize_state(cpu);
84 void cpu_synchronize_all_post_reset(void)
86 CPUState *cpu;
88 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
89 cpu_synchronize_post_reset(cpu);
93 void cpu_synchronize_all_post_init(void)
95 CPUState *cpu;
97 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
98 cpu_synchronize_post_init(cpu);
102 int cpu_is_stopped(CPUState *env)
104 return !vm_running || env->stopped;
107 static void do_vm_stop(int reason)
109 if (vm_running) {
110 cpu_disable_ticks();
111 vm_running = 0;
112 pause_all_vcpus();
113 vm_state_notify(0, reason);
114 monitor_protocol_event(QEVENT_STOP, NULL);
118 static int cpu_can_run(CPUState *env)
120 if (env->stop)
121 return 0;
122 if (env->stopped || !vm_running)
123 return 0;
124 return 1;
127 static int cpu_has_work(CPUState *env)
129 if (env->stop)
130 return 1;
131 if (env->queued_work_first)
132 return 1;
133 if (env->stopped || !vm_running)
134 return 0;
135 if (!env->halted)
136 return 1;
137 if (qemu_cpu_has_work(env))
138 return 1;
139 return 0;
142 static int any_cpu_has_work(void)
144 CPUState *env;
146 for (env = first_cpu; env != NULL; env = env->next_cpu)
147 if (cpu_has_work(env))
148 return 1;
149 return 0;
152 static void cpu_debug_handler(CPUState *env)
154 gdb_set_stop_cpu(env);
155 debug_requested = EXCP_DEBUG;
156 vm_stop(EXCP_DEBUG);
159 #ifndef _WIN32
160 static int io_thread_fd = -1;
162 static void qemu_event_increment(void)
164 /* Write 8 bytes to be compatible with eventfd. */
165 static const uint64_t val = 1;
166 ssize_t ret;
168 if (io_thread_fd == -1)
169 return;
171 do {
172 ret = write(io_thread_fd, &val, sizeof(val));
173 } while (ret < 0 && errno == EINTR);
175 /* EAGAIN is fine, a read must be pending. */
176 if (ret < 0 && errno != EAGAIN) {
177 fprintf(stderr, "qemu_event_increment: write() filed: %s\n",
178 strerror(errno));
179 exit (1);
183 static void qemu_event_read(void *opaque)
185 int fd = (unsigned long)opaque;
186 ssize_t len;
187 char buffer[512];
189 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
190 do {
191 len = read(fd, buffer, sizeof(buffer));
192 } while ((len == -1 && errno == EINTR) || len == sizeof(buffer));
195 static int qemu_event_init(void)
197 int err;
198 int fds[2];
200 err = qemu_eventfd(fds);
201 if (err == -1)
202 return -errno;
204 err = fcntl_setfl(fds[0], O_NONBLOCK);
205 if (err < 0)
206 goto fail;
208 err = fcntl_setfl(fds[1], O_NONBLOCK);
209 if (err < 0)
210 goto fail;
212 qemu_set_fd_handler2(fds[0], NULL, qemu_event_read, NULL,
213 (void *)(unsigned long)fds[0]);
215 io_thread_fd = fds[1];
216 return 0;
218 fail:
219 close(fds[0]);
220 close(fds[1]);
221 return err;
223 #else
224 HANDLE qemu_event_handle;
226 static void dummy_event_handler(void *opaque)
230 static int qemu_event_init(void)
232 qemu_event_handle = CreateEvent(NULL, FALSE, FALSE, NULL);
233 if (!qemu_event_handle) {
234 fprintf(stderr, "Failed CreateEvent: %ld\n", GetLastError());
235 return -1;
237 qemu_add_wait_object(qemu_event_handle, dummy_event_handler, NULL);
238 return 0;
241 static void qemu_event_increment(void)
243 if (!SetEvent(qemu_event_handle)) {
244 fprintf(stderr, "qemu_event_increment: SetEvent failed: %ld\n",
245 GetLastError());
246 exit (1);
249 #endif
251 #ifndef CONFIG_IOTHREAD
252 int qemu_init_main_loop(void)
254 cpu_set_debug_excp_handler(cpu_debug_handler);
256 return qemu_event_init();
259 void qemu_main_loop_start(void)
263 void qemu_init_vcpu(void *_env)
265 CPUState *env = _env;
267 env->nr_cores = smp_cores;
268 env->nr_threads = smp_threads;
269 if (kvm_enabled())
270 kvm_init_vcpu(env);
271 return;
274 int qemu_cpu_self(void *env)
276 return 1;
279 void run_on_cpu(CPUState *env, void (*func)(void *data), void *data)
281 func(data);
284 void resume_all_vcpus(void)
288 void pause_all_vcpus(void)
292 void qemu_cpu_kick(void *env)
294 return;
297 void qemu_notify_event(void)
299 CPUState *env = cpu_single_env;
301 qemu_event_increment ();
302 if (env) {
303 cpu_exit(env);
305 if (next_cpu && env != next_cpu) {
306 cpu_exit(next_cpu);
310 #if defined(OBSOLETE_KVM_IMPL) || !defined(CONFIG_KVM)
311 void qemu_mutex_lock_iothread(void) {}
312 void qemu_mutex_unlock_iothread(void) {}
313 #endif
315 void vm_stop(int reason)
317 do_vm_stop(reason);
320 #else /* CONFIG_IOTHREAD */
322 #include "qemu-thread.h"
324 QemuMutex qemu_global_mutex;
325 static QemuMutex qemu_fair_mutex;
327 static QemuThread io_thread;
329 static QemuThread *tcg_cpu_thread;
330 static QemuCond *tcg_halt_cond;
332 static int qemu_system_ready;
333 /* cpu creation */
334 static QemuCond qemu_cpu_cond;
335 /* system init */
336 static QemuCond qemu_system_cond;
337 static QemuCond qemu_pause_cond;
338 static QemuCond qemu_work_cond;
340 static void tcg_init_ipi(void);
341 static void kvm_init_ipi(CPUState *env);
342 static sigset_t block_io_signals(void);
344 /* If we have signalfd, we mask out the signals we want to handle and then
345 * use signalfd to listen for them. We rely on whatever the current signal
346 * handler is to dispatch the signals when we receive them.
348 static void sigfd_handler(void *opaque)
350 int fd = (unsigned long) opaque;
351 struct qemu_signalfd_siginfo info;
352 struct sigaction action;
353 ssize_t len;
355 while (1) {
356 do {
357 len = read(fd, &info, sizeof(info));
358 } while (len == -1 && errno == EINTR);
360 if (len == -1 && errno == EAGAIN) {
361 break;
364 if (len != sizeof(info)) {
365 printf("read from sigfd returned %zd: %m\n", len);
366 return;
369 sigaction(info.ssi_signo, NULL, &action);
370 if ((action.sa_flags & SA_SIGINFO) && action.sa_sigaction) {
371 action.sa_sigaction(info.ssi_signo,
372 (siginfo_t *)&info, NULL);
373 } else if (action.sa_handler) {
374 action.sa_handler(info.ssi_signo);
379 static int qemu_signalfd_init(sigset_t mask)
381 int sigfd;
383 sigfd = qemu_signalfd(&mask);
384 if (sigfd == -1) {
385 fprintf(stderr, "failed to create signalfd\n");
386 return -errno;
389 fcntl_setfl(sigfd, O_NONBLOCK);
391 qemu_set_fd_handler2(sigfd, NULL, sigfd_handler, NULL,
392 (void *)(unsigned long) sigfd);
394 return 0;
397 int qemu_init_main_loop(void)
399 int ret;
400 sigset_t blocked_signals;
402 cpu_set_debug_excp_handler(cpu_debug_handler);
404 blocked_signals = block_io_signals();
406 ret = qemu_signalfd_init(blocked_signals);
407 if (ret)
408 return ret;
410 /* Note eventfd must be drained before signalfd handlers run */
411 ret = qemu_event_init();
412 if (ret)
413 return ret;
415 qemu_cond_init(&qemu_pause_cond);
416 qemu_cond_init(&qemu_system_cond);
417 qemu_mutex_init(&qemu_fair_mutex);
418 qemu_mutex_init(&qemu_global_mutex);
419 qemu_mutex_lock(&qemu_global_mutex);
421 qemu_thread_self(&io_thread);
423 return 0;
426 void qemu_main_loop_start(void)
428 qemu_system_ready = 1;
429 qemu_cond_broadcast(&qemu_system_cond);
432 void run_on_cpu(CPUState *env, void (*func)(void *data), void *data)
434 struct qemu_work_item wi;
436 if (qemu_cpu_self(env)) {
437 func(data);
438 return;
441 wi.func = func;
442 wi.data = data;
443 if (!env->queued_work_first)
444 env->queued_work_first = &wi;
445 else
446 env->queued_work_last->next = &wi;
447 env->queued_work_last = &wi;
448 wi.next = NULL;
449 wi.done = false;
451 qemu_cpu_kick(env);
452 while (!wi.done) {
453 CPUState *self_env = cpu_single_env;
455 qemu_cond_wait(&qemu_work_cond, &qemu_global_mutex);
456 cpu_single_env = self_env;
460 static void flush_queued_work(CPUState *env)
462 struct qemu_work_item *wi;
464 if (!env->queued_work_first)
465 return;
467 while ((wi = env->queued_work_first)) {
468 env->queued_work_first = wi->next;
469 wi->func(wi->data);
470 wi->done = true;
472 env->queued_work_last = NULL;
473 qemu_cond_broadcast(&qemu_work_cond);
476 static void qemu_wait_io_event_common(CPUState *env)
478 if (env->stop) {
479 env->stop = 0;
480 env->stopped = 1;
481 qemu_cond_signal(&qemu_pause_cond);
483 flush_queued_work(env);
486 static void qemu_tcg_wait_io_event(void)
488 CPUState *env;
490 while (!any_cpu_has_work())
491 qemu_cond_timedwait(tcg_halt_cond, &qemu_global_mutex, 1000);
493 qemu_mutex_unlock(&qemu_global_mutex);
496 * Users of qemu_global_mutex can be starved, having no chance
497 * to acquire it since this path will get to it first.
498 * So use another lock to provide fairness.
500 qemu_mutex_lock(&qemu_fair_mutex);
501 qemu_mutex_unlock(&qemu_fair_mutex);
503 qemu_mutex_lock(&qemu_global_mutex);
505 for (env = first_cpu; env != NULL; env = env->next_cpu) {
506 qemu_wait_io_event_common(env);
510 static void sigbus_reraise(void)
512 sigset_t set;
513 struct sigaction action;
515 memset(&action, 0, sizeof(action));
516 action.sa_handler = SIG_DFL;
517 if (!sigaction(SIGBUS, &action, NULL)) {
518 raise(SIGBUS);
519 sigemptyset(&set);
520 sigaddset(&set, SIGBUS);
521 sigprocmask(SIG_UNBLOCK, &set, NULL);
523 perror("Failed to re-raise SIGBUS!\n");
524 abort();
527 static void sigbus_handler(int n, struct qemu_signalfd_siginfo *siginfo,
528 void *ctx)
530 #if defined(TARGET_I386)
531 if (kvm_on_sigbus(siginfo->ssi_code, (void *)(intptr_t)siginfo->ssi_addr))
532 #endif
533 sigbus_reraise();
536 static void qemu_kvm_eat_signal(CPUState *env, int timeout)
538 struct timespec ts;
539 int r, e;
540 siginfo_t siginfo;
541 sigset_t waitset;
542 sigset_t chkset;
544 ts.tv_sec = timeout / 1000;
545 ts.tv_nsec = (timeout % 1000) * 1000000;
547 sigemptyset(&waitset);
548 sigaddset(&waitset, SIG_IPI);
549 sigaddset(&waitset, SIGBUS);
551 do {
552 qemu_mutex_unlock(&qemu_global_mutex);
554 r = sigtimedwait(&waitset, &siginfo, &ts);
555 e = errno;
557 qemu_mutex_lock(&qemu_global_mutex);
559 if (r == -1 && !(e == EAGAIN || e == EINTR)) {
560 fprintf(stderr, "sigtimedwait: %s\n", strerror(e));
561 exit(1);
564 switch (r) {
565 case SIGBUS:
566 #ifdef TARGET_I386
567 if (kvm_on_sigbus_vcpu(env, siginfo.si_code, siginfo.si_addr))
568 #endif
569 sigbus_reraise();
570 break;
571 default:
572 break;
575 r = sigpending(&chkset);
576 if (r == -1) {
577 fprintf(stderr, "sigpending: %s\n", strerror(e));
578 exit(1);
580 } while (sigismember(&chkset, SIG_IPI) || sigismember(&chkset, SIGBUS));
583 static void qemu_kvm_wait_io_event(CPUState *env)
585 while (!cpu_has_work(env))
586 qemu_cond_timedwait(env->halt_cond, &qemu_global_mutex, 1000);
588 qemu_kvm_eat_signal(env, 0);
589 qemu_wait_io_event_common(env);
592 static int qemu_cpu_exec(CPUState *env);
594 static void *kvm_cpu_thread_fn(void *arg)
596 CPUState *env = arg;
598 qemu_mutex_lock(&qemu_global_mutex);
599 qemu_thread_self(env->thread);
600 if (kvm_enabled())
601 kvm_init_vcpu(env);
603 kvm_init_ipi(env);
605 /* signal CPU creation */
606 env->created = 1;
607 qemu_cond_signal(&qemu_cpu_cond);
609 /* and wait for machine initialization */
610 while (!qemu_system_ready)
611 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
613 while (1) {
614 if (cpu_can_run(env))
615 qemu_cpu_exec(env);
616 qemu_kvm_wait_io_event(env);
619 return NULL;
622 static void *tcg_cpu_thread_fn(void *arg)
624 CPUState *env = arg;
626 tcg_init_ipi();
627 qemu_thread_self(env->thread);
629 /* signal CPU creation */
630 qemu_mutex_lock(&qemu_global_mutex);
631 for (env = first_cpu; env != NULL; env = env->next_cpu)
632 env->created = 1;
633 qemu_cond_signal(&qemu_cpu_cond);
635 /* and wait for machine initialization */
636 while (!qemu_system_ready)
637 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
639 while (1) {
640 cpu_exec_all();
641 qemu_tcg_wait_io_event();
644 return NULL;
647 void qemu_cpu_kick(void *_env)
649 CPUState *env = _env;
650 qemu_cond_broadcast(env->halt_cond);
651 qemu_thread_signal(env->thread, SIG_IPI);
654 int qemu_cpu_self(void *_env)
656 CPUState *env = _env;
657 QemuThread this;
659 qemu_thread_self(&this);
661 return qemu_thread_equal(&this, env->thread);
664 static void cpu_signal(int sig)
666 if (cpu_single_env)
667 cpu_exit(cpu_single_env);
668 exit_request = 1;
671 static void tcg_init_ipi(void)
673 sigset_t set;
674 struct sigaction sigact;
676 memset(&sigact, 0, sizeof(sigact));
677 sigact.sa_handler = cpu_signal;
678 sigaction(SIG_IPI, &sigact, NULL);
680 sigemptyset(&set);
681 sigaddset(&set, SIG_IPI);
682 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
685 static void dummy_signal(int sig)
689 static void kvm_init_ipi(CPUState *env)
691 int r;
692 sigset_t set;
693 struct sigaction sigact;
695 memset(&sigact, 0, sizeof(sigact));
696 sigact.sa_handler = dummy_signal;
697 sigaction(SIG_IPI, &sigact, NULL);
699 pthread_sigmask(SIG_BLOCK, NULL, &set);
700 sigdelset(&set, SIG_IPI);
701 sigdelset(&set, SIGBUS);
702 r = kvm_set_signal_mask(env, &set);
703 if (r) {
704 fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(r));
705 exit(1);
709 static sigset_t block_io_signals(void)
711 sigset_t set;
712 struct sigaction action;
714 /* SIGUSR2 used by posix-aio-compat.c */
715 sigemptyset(&set);
716 sigaddset(&set, SIGUSR2);
717 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
719 sigemptyset(&set);
720 sigaddset(&set, SIGIO);
721 sigaddset(&set, SIGALRM);
722 sigaddset(&set, SIG_IPI);
723 sigaddset(&set, SIGBUS);
724 pthread_sigmask(SIG_BLOCK, &set, NULL);
726 memset(&action, 0, sizeof(action));
727 action.sa_flags = SA_SIGINFO;
728 action.sa_sigaction = (void (*)(int, siginfo_t*, void*))sigbus_handler;
729 sigaction(SIGBUS, &action, NULL);
730 prctl(PR_MCE_KILL, 1, 1, 0, 0);
732 return set;
735 void qemu_mutex_lock_iothread(void)
737 if (kvm_enabled()) {
738 qemu_mutex_lock(&qemu_fair_mutex);
739 qemu_mutex_lock(&qemu_global_mutex);
740 qemu_mutex_unlock(&qemu_fair_mutex);
741 } else {
742 qemu_mutex_lock(&qemu_fair_mutex);
743 if (qemu_mutex_trylock(&qemu_global_mutex)) {
744 qemu_thread_signal(tcg_cpu_thread, SIG_IPI);
745 qemu_mutex_lock(&qemu_global_mutex);
747 qemu_mutex_unlock(&qemu_fair_mutex);
751 void qemu_mutex_unlock_iothread(void)
753 qemu_mutex_unlock(&qemu_global_mutex);
756 static int all_vcpus_paused(void)
758 CPUState *penv = first_cpu;
760 while (penv) {
761 if (!penv->stopped)
762 return 0;
763 penv = (CPUState *)penv->next_cpu;
766 return 1;
769 void pause_all_vcpus(void)
771 CPUState *penv = first_cpu;
773 while (penv) {
774 penv->stop = 1;
775 qemu_cpu_kick(penv);
776 penv = (CPUState *)penv->next_cpu;
779 while (!all_vcpus_paused()) {
780 qemu_cond_timedwait(&qemu_pause_cond, &qemu_global_mutex, 100);
781 penv = first_cpu;
782 while (penv) {
783 qemu_cpu_kick(penv);
784 penv = (CPUState *)penv->next_cpu;
789 void resume_all_vcpus(void)
791 CPUState *penv = first_cpu;
793 while (penv) {
794 penv->stop = 0;
795 penv->stopped = 0;
796 qemu_cpu_kick(penv);
797 penv = (CPUState *)penv->next_cpu;
801 static void tcg_init_vcpu(void *_env)
803 CPUState *env = _env;
804 /* share a single thread for all cpus with TCG */
805 if (!tcg_cpu_thread) {
806 env->thread = qemu_mallocz(sizeof(QemuThread));
807 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
808 qemu_cond_init(env->halt_cond);
809 qemu_thread_create(env->thread, tcg_cpu_thread_fn, env);
810 while (env->created == 0)
811 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
812 tcg_cpu_thread = env->thread;
813 tcg_halt_cond = env->halt_cond;
814 } else {
815 env->thread = tcg_cpu_thread;
816 env->halt_cond = tcg_halt_cond;
820 static void kvm_start_vcpu(CPUState *env)
822 env->thread = qemu_mallocz(sizeof(QemuThread));
823 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
824 qemu_cond_init(env->halt_cond);
825 qemu_thread_create(env->thread, kvm_cpu_thread_fn, env);
826 while (env->created == 0)
827 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
830 void qemu_init_vcpu(void *_env)
832 CPUState *env = _env;
834 env->nr_cores = smp_cores;
835 env->nr_threads = smp_threads;
836 if (kvm_enabled())
837 kvm_start_vcpu(env);
838 else
839 tcg_init_vcpu(env);
842 void qemu_notify_event(void)
844 qemu_event_increment();
847 static void qemu_system_vmstop_request(int reason)
849 vmstop_requested = reason;
850 qemu_notify_event();
853 void vm_stop(int reason)
855 QemuThread me;
856 qemu_thread_self(&me);
858 if (!qemu_thread_equal(&me, &io_thread)) {
859 qemu_system_vmstop_request(reason);
861 * FIXME: should not return to device code in case
862 * vm_stop() has been requested.
864 if (cpu_single_env) {
865 cpu_exit(cpu_single_env);
866 cpu_single_env->stop = 1;
868 return;
870 do_vm_stop(reason);
873 #endif
875 static int qemu_cpu_exec(CPUState *env)
877 int ret;
878 #ifdef CONFIG_PROFILER
879 int64_t ti;
880 #endif
882 #ifdef CONFIG_PROFILER
883 ti = profile_getclock();
884 #endif
885 if (use_icount) {
886 int64_t count;
887 int decr;
888 qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
889 env->icount_decr.u16.low = 0;
890 env->icount_extra = 0;
891 count = qemu_icount_round (qemu_next_deadline());
892 qemu_icount += count;
893 decr = (count > 0xffff) ? 0xffff : count;
894 count -= decr;
895 env->icount_decr.u16.low = decr;
896 env->icount_extra = count;
898 ret = cpu_exec(env);
899 #ifdef CONFIG_PROFILER
900 qemu_time += profile_getclock() - ti;
901 #endif
902 if (use_icount) {
903 /* Fold pending instructions back into the
904 instruction counter, and clear the interrupt flag. */
905 qemu_icount -= (env->icount_decr.u16.low
906 + env->icount_extra);
907 env->icount_decr.u32 = 0;
908 env->icount_extra = 0;
910 return ret;
913 bool cpu_exec_all(void)
915 if (next_cpu == NULL)
916 next_cpu = first_cpu;
917 for (; next_cpu != NULL && !exit_request; next_cpu = next_cpu->next_cpu) {
918 CPUState *env = next_cpu;
920 qemu_clock_enable(vm_clock,
921 (env->singlestep_enabled & SSTEP_NOTIMER) == 0);
923 if (qemu_alarm_pending())
924 break;
925 if (cpu_can_run(env)) {
926 if (qemu_cpu_exec(env) == EXCP_DEBUG) {
927 break;
929 } else if (env->stop) {
930 break;
933 exit_request = 0;
934 return any_cpu_has_work();
937 void set_numa_modes(void)
939 CPUState *env;
940 int i;
942 for (env = first_cpu; env != NULL; env = env->next_cpu) {
943 for (i = 0; i < nb_numa_nodes; i++) {
944 if (node_cpumask[i] & (1 << env->cpu_index)) {
945 env->numa_node = i;
951 void set_cpu_log(const char *optarg)
953 int mask;
954 const CPULogItem *item;
956 mask = cpu_str_to_log_mask(optarg);
957 if (!mask) {
958 printf("Log items (comma separated):\n");
959 for (item = cpu_log_items; item->mask != 0; item++) {
960 printf("%-10s %s\n", item->name, item->help);
962 exit(1);
964 cpu_set_log(mask);
967 /* Return the virtual CPU time, based on the instruction counter. */
968 int64_t cpu_get_icount(void)
970 int64_t icount;
971 CPUState *env = cpu_single_env;;
973 icount = qemu_icount;
974 if (env) {
975 if (!can_do_io(env)) {
976 fprintf(stderr, "Bad clock read\n");
978 icount -= (env->icount_decr.u16.low + env->icount_extra);
980 return qemu_icount_bias + (icount << icount_time_shift);
983 void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg)
985 /* XXX: implement xxx_cpu_list for targets that still miss it */
986 #if defined(cpu_list_id)
987 cpu_list_id(f, cpu_fprintf, optarg);
988 #elif defined(cpu_list)
989 cpu_list(f, cpu_fprintf); /* deprecated */
990 #endif