blob: 97a6d4f5b9312aeeb0add92c4ce3b695fecb9fb7 [file] [log] [blame]
Blue Swirl296af7c2010-03-29 19:23:50 +00001/*
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. */
26#include "config-host.h"
27
28#include "monitor.h"
29#include "sysemu.h"
30#include "gdbstub.h"
31#include "dma.h"
32#include "kvm.h"
Jan Kiszka262ea182010-07-06 10:49:57 +020033#include "exec-all.h"
Blue Swirl296af7c2010-03-29 19:23:50 +000034
35#include "cpus.h"
Marcelo Tosattia8486bc2010-10-11 15:31:16 -030036#include "compatfd.h"
Blue Swirl296af7c2010-03-29 19:23:50 +000037
Blue Swirl7277e022010-04-12 17:19:06 +000038#ifdef SIGRTMIN
39#define SIG_IPI (SIGRTMIN+4)
40#else
41#define SIG_IPI SIGUSR1
42#endif
43
Jan Kiszka6d9cb732011-02-01 22:15:58 +010044#ifdef CONFIG_LINUX
45
46#include <sys/prctl.h>
47
Marcelo Tosattic0532a72010-10-11 15:31:21 -030048#ifndef PR_MCE_KILL
49#define PR_MCE_KILL 33
50#endif
51
Jan Kiszka6d9cb732011-02-01 22:15:58 +010052#ifndef PR_MCE_KILL_SET
53#define PR_MCE_KILL_SET 1
54#endif
55
56#ifndef PR_MCE_KILL_EARLY
57#define PR_MCE_KILL_EARLY 1
58#endif
59
60#endif /* CONFIG_LINUX */
61
Blue Swirl296af7c2010-03-29 19:23:50 +000062static CPUState *next_cpu;
63
64/***********************************************************/
65void hw_error(const char *fmt, ...)
66{
67 va_list ap;
68 CPUState *env;
69
70 va_start(ap, fmt);
71 fprintf(stderr, "qemu: hardware error: ");
72 vfprintf(stderr, fmt, ap);
73 fprintf(stderr, "\n");
74 for(env = first_cpu; env != NULL; env = env->next_cpu) {
75 fprintf(stderr, "CPU #%d:\n", env->cpu_index);
76#ifdef TARGET_I386
77 cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU);
78#else
79 cpu_dump_state(env, stderr, fprintf, 0);
80#endif
81 }
82 va_end(ap);
83 abort();
84}
85
86void cpu_synchronize_all_states(void)
87{
88 CPUState *cpu;
89
90 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
91 cpu_synchronize_state(cpu);
92 }
93}
94
95void cpu_synchronize_all_post_reset(void)
96{
97 CPUState *cpu;
98
99 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
100 cpu_synchronize_post_reset(cpu);
101 }
102}
103
104void cpu_synchronize_all_post_init(void)
105{
106 CPUState *cpu;
107
108 for (cpu = first_cpu; cpu; cpu = cpu->next_cpu) {
109 cpu_synchronize_post_init(cpu);
110 }
111}
112
Marcelo Tosatti3ae95012010-05-04 09:45:24 -0300113int cpu_is_stopped(CPUState *env)
114{
115 return !vm_running || env->stopped;
116}
117
Blue Swirl296af7c2010-03-29 19:23:50 +0000118static void do_vm_stop(int reason)
119{
120 if (vm_running) {
121 cpu_disable_ticks();
122 vm_running = 0;
123 pause_all_vcpus();
124 vm_state_notify(0, reason);
Michael S. Tsirkin55df6f32010-11-22 19:52:22 +0200125 qemu_aio_flush();
126 bdrv_flush_all();
Blue Swirl296af7c2010-03-29 19:23:50 +0000127 monitor_protocol_event(QEVENT_STOP, NULL);
128 }
129}
130
131static int cpu_can_run(CPUState *env)
132{
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100133 if (env->stop) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000134 return 0;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100135 }
136 if (env->stopped || !vm_running) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000137 return 0;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100138 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000139 return 1;
140}
141
Jan Kiszka16400322011-02-09 16:29:37 +0100142static bool cpu_thread_is_idle(CPUState *env)
Blue Swirl296af7c2010-03-29 19:23:50 +0000143{
Jan Kiszka16400322011-02-09 16:29:37 +0100144 if (env->stop || env->queued_work_first) {
145 return false;
146 }
147 if (env->stopped || !vm_running) {
148 return true;
149 }
150 if (!env->halted || qemu_cpu_has_work(env)) {
151 return false;
152 }
153 return true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000154}
155
Jan Kiszka16400322011-02-09 16:29:37 +0100156static bool all_cpu_threads_idle(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000157{
158 CPUState *env;
159
Jan Kiszka16400322011-02-09 16:29:37 +0100160 for (env = first_cpu; env != NULL; env = env->next_cpu) {
161 if (!cpu_thread_is_idle(env)) {
162 return false;
163 }
164 }
165 return true;
Blue Swirl296af7c2010-03-29 19:23:50 +0000166}
167
Jan Kiszka3c638d02010-06-25 16:56:56 +0200168static void cpu_debug_handler(CPUState *env)
169{
170 gdb_set_stop_cpu(env);
Jan Kiszka8cf71712011-02-07 12:19:16 +0100171 qemu_system_debug_request();
Jan Kiszka3c638d02010-06-25 16:56:56 +0200172}
173
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100174#ifdef CONFIG_LINUX
175static void sigbus_reraise(void)
176{
177 sigset_t set;
178 struct sigaction action;
179
180 memset(&action, 0, sizeof(action));
181 action.sa_handler = SIG_DFL;
182 if (!sigaction(SIGBUS, &action, NULL)) {
183 raise(SIGBUS);
184 sigemptyset(&set);
185 sigaddset(&set, SIGBUS);
186 sigprocmask(SIG_UNBLOCK, &set, NULL);
187 }
188 perror("Failed to re-raise SIGBUS!\n");
189 abort();
190}
191
192static void sigbus_handler(int n, struct qemu_signalfd_siginfo *siginfo,
193 void *ctx)
194{
195 if (kvm_on_sigbus(siginfo->ssi_code,
196 (void *)(intptr_t)siginfo->ssi_addr)) {
197 sigbus_reraise();
198 }
199}
200
201static void qemu_init_sigbus(void)
202{
203 struct sigaction action;
204
205 memset(&action, 0, sizeof(action));
206 action.sa_flags = SA_SIGINFO;
207 action.sa_sigaction = (void (*)(int, siginfo_t*, void*))sigbus_handler;
208 sigaction(SIGBUS, &action, NULL);
209
210 prctl(PR_MCE_KILL, PR_MCE_KILL_SET, PR_MCE_KILL_EARLY, 0, 0);
211}
212
213#else /* !CONFIG_LINUX */
214
215static void qemu_init_sigbus(void)
216{
217}
218#endif /* !CONFIG_LINUX */
219
Blue Swirl296af7c2010-03-29 19:23:50 +0000220#ifndef _WIN32
221static int io_thread_fd = -1;
222
223static void qemu_event_increment(void)
224{
225 /* Write 8 bytes to be compatible with eventfd. */
Blue Swirl26a82332010-05-14 19:32:21 +0000226 static const uint64_t val = 1;
Blue Swirl296af7c2010-03-29 19:23:50 +0000227 ssize_t ret;
228
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100229 if (io_thread_fd == -1) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000230 return;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100231 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000232 do {
233 ret = write(io_thread_fd, &val, sizeof(val));
234 } while (ret < 0 && errno == EINTR);
235
236 /* EAGAIN is fine, a read must be pending. */
237 if (ret < 0 && errno != EAGAIN) {
238 fprintf(stderr, "qemu_event_increment: write() filed: %s\n",
239 strerror(errno));
240 exit (1);
241 }
242}
243
244static void qemu_event_read(void *opaque)
245{
246 int fd = (unsigned long)opaque;
247 ssize_t len;
248 char buffer[512];
249
250 /* Drain the notify pipe. For eventfd, only 8 bytes will be read. */
251 do {
252 len = read(fd, buffer, sizeof(buffer));
253 } while ((len == -1 && errno == EINTR) || len == sizeof(buffer));
254}
255
256static int qemu_event_init(void)
257{
258 int err;
259 int fds[2];
260
261 err = qemu_eventfd(fds);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100262 if (err == -1) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000263 return -errno;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100264 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000265 err = fcntl_setfl(fds[0], O_NONBLOCK);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100266 if (err < 0) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000267 goto fail;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100268 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000269 err = fcntl_setfl(fds[1], O_NONBLOCK);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100270 if (err < 0) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000271 goto fail;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100272 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000273 qemu_set_fd_handler2(fds[0], NULL, qemu_event_read, NULL,
274 (void *)(unsigned long)fds[0]);
275
276 io_thread_fd = fds[1];
277 return 0;
278
279fail:
280 close(fds[0]);
281 close(fds[1]);
282 return err;
283}
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100284
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100285static void dummy_signal(int sig)
286{
287}
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100288
Jan Kiszkad0f294c2011-02-01 22:15:56 +0100289/* If we have signalfd, we mask out the signals we want to handle and then
290 * use signalfd to listen for them. We rely on whatever the current signal
291 * handler is to dispatch the signals when we receive them.
292 */
293static void sigfd_handler(void *opaque)
294{
295 int fd = (unsigned long) opaque;
296 struct qemu_signalfd_siginfo info;
297 struct sigaction action;
298 ssize_t len;
299
300 while (1) {
301 do {
302 len = read(fd, &info, sizeof(info));
303 } while (len == -1 && errno == EINTR);
304
305 if (len == -1 && errno == EAGAIN) {
306 break;
307 }
308
309 if (len != sizeof(info)) {
310 printf("read from sigfd returned %zd: %m\n", len);
311 return;
312 }
313
314 sigaction(info.ssi_signo, NULL, &action);
315 if ((action.sa_flags & SA_SIGINFO) && action.sa_sigaction) {
316 action.sa_sigaction(info.ssi_signo,
317 (siginfo_t *)&info, NULL);
318 } else if (action.sa_handler) {
319 action.sa_handler(info.ssi_signo);
320 }
321 }
322}
323
324static int qemu_signalfd_init(sigset_t mask)
325{
326 int sigfd;
327
328 sigfd = qemu_signalfd(&mask);
329 if (sigfd == -1) {
330 fprintf(stderr, "failed to create signalfd\n");
331 return -errno;
332 }
333
334 fcntl_setfl(sigfd, O_NONBLOCK);
335
336 qemu_set_fd_handler2(sigfd, NULL, sigfd_handler, NULL,
337 (void *)(unsigned long) sigfd);
338
339 return 0;
340}
341
Jan Kiszka9a360852011-02-01 22:15:55 +0100342static void qemu_kvm_eat_signals(CPUState *env)
343{
344 struct timespec ts = { 0, 0 };
345 siginfo_t siginfo;
346 sigset_t waitset;
347 sigset_t chkset;
348 int r;
349
350 sigemptyset(&waitset);
351 sigaddset(&waitset, SIG_IPI);
352 sigaddset(&waitset, SIGBUS);
353
354 do {
355 r = sigtimedwait(&waitset, &siginfo, &ts);
356 if (r == -1 && !(errno == EAGAIN || errno == EINTR)) {
357 perror("sigtimedwait");
358 exit(1);
359 }
360
361 switch (r) {
Jan Kiszka9a360852011-02-01 22:15:55 +0100362 case SIGBUS:
363 if (kvm_on_sigbus_vcpu(env, siginfo.si_code, siginfo.si_addr)) {
364 sigbus_reraise();
365 }
366 break;
Jan Kiszka9a360852011-02-01 22:15:55 +0100367 default:
368 break;
369 }
370
371 r = sigpending(&chkset);
372 if (r == -1) {
373 perror("sigpending");
374 exit(1);
375 }
376 } while (sigismember(&chkset, SIG_IPI) || sigismember(&chkset, SIGBUS));
Jan Kiszkade758972011-02-01 22:15:57 +0100377
378#ifndef CONFIG_IOTHREAD
379 if (sigismember(&chkset, SIGIO) || sigismember(&chkset, SIGALRM)) {
380 qemu_notify_event();
381 }
382#endif
Jan Kiszka9a360852011-02-01 22:15:55 +0100383}
384
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100385#else /* _WIN32 */
386
Blue Swirl296af7c2010-03-29 19:23:50 +0000387HANDLE qemu_event_handle;
388
389static void dummy_event_handler(void *opaque)
390{
391}
392
393static int qemu_event_init(void)
394{
395 qemu_event_handle = CreateEvent(NULL, FALSE, FALSE, NULL);
396 if (!qemu_event_handle) {
397 fprintf(stderr, "Failed CreateEvent: %ld\n", GetLastError());
398 return -1;
399 }
400 qemu_add_wait_object(qemu_event_handle, dummy_event_handler, NULL);
401 return 0;
402}
403
404static void qemu_event_increment(void)
405{
406 if (!SetEvent(qemu_event_handle)) {
407 fprintf(stderr, "qemu_event_increment: SetEvent failed: %ld\n",
408 GetLastError());
409 exit (1);
410 }
411}
Jan Kiszka9a360852011-02-01 22:15:55 +0100412
413static void qemu_kvm_eat_signals(CPUState *env)
414{
415}
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100416#endif /* _WIN32 */
Blue Swirl296af7c2010-03-29 19:23:50 +0000417
418#ifndef CONFIG_IOTHREAD
Jan Kiszkaff48eb52011-02-01 22:15:53 +0100419static void qemu_kvm_init_cpu_signals(CPUState *env)
420{
421#ifndef _WIN32
422 int r;
423 sigset_t set;
424 struct sigaction sigact;
425
426 memset(&sigact, 0, sizeof(sigact));
427 sigact.sa_handler = dummy_signal;
428 sigaction(SIG_IPI, &sigact, NULL);
429
430 sigemptyset(&set);
431 sigaddset(&set, SIG_IPI);
Jan Kiszkade758972011-02-01 22:15:57 +0100432 sigaddset(&set, SIGIO);
433 sigaddset(&set, SIGALRM);
Jan Kiszkaff48eb52011-02-01 22:15:53 +0100434 pthread_sigmask(SIG_BLOCK, &set, NULL);
435
436 pthread_sigmask(SIG_BLOCK, NULL, &set);
437 sigdelset(&set, SIG_IPI);
438 sigdelset(&set, SIGBUS);
Jan Kiszkade758972011-02-01 22:15:57 +0100439 sigdelset(&set, SIGIO);
440 sigdelset(&set, SIGALRM);
Jan Kiszkaff48eb52011-02-01 22:15:53 +0100441 r = kvm_set_signal_mask(env, &set);
442 if (r) {
443 fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(-r));
444 exit(1);
445 }
446#endif
447}
448
Jan Kiszkade758972011-02-01 22:15:57 +0100449#ifndef _WIN32
450static sigset_t block_synchronous_signals(void)
451{
452 sigset_t set;
453
454 sigemptyset(&set);
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100455 sigaddset(&set, SIGBUS);
Jan Kiszkade758972011-02-01 22:15:57 +0100456 if (kvm_enabled()) {
457 /*
458 * We need to process timer signals synchronously to avoid a race
459 * between exit_request check and KVM vcpu entry.
460 */
461 sigaddset(&set, SIGIO);
462 sigaddset(&set, SIGALRM);
463 }
464
465 return set;
466}
467#endif
468
Blue Swirl296af7c2010-03-29 19:23:50 +0000469int qemu_init_main_loop(void)
470{
Jan Kiszkad0f294c2011-02-01 22:15:56 +0100471#ifndef _WIN32
472 sigset_t blocked_signals;
473 int ret;
474
Jan Kiszkade758972011-02-01 22:15:57 +0100475 blocked_signals = block_synchronous_signals();
Jan Kiszkad0f294c2011-02-01 22:15:56 +0100476
477 ret = qemu_signalfd_init(blocked_signals);
478 if (ret) {
479 return ret;
480 }
481#endif
Jan Kiszka3c638d02010-06-25 16:56:56 +0200482 cpu_set_debug_excp_handler(cpu_debug_handler);
483
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100484 qemu_init_sigbus();
485
Blue Swirl296af7c2010-03-29 19:23:50 +0000486 return qemu_event_init();
487}
488
Blue Swirl7277e022010-04-12 17:19:06 +0000489void qemu_main_loop_start(void)
490{
491}
492
Blue Swirl296af7c2010-03-29 19:23:50 +0000493void qemu_init_vcpu(void *_env)
494{
495 CPUState *env = _env;
Jan Kiszka84b49152011-02-01 22:15:50 +0100496 int r;
Blue Swirl296af7c2010-03-29 19:23:50 +0000497
498 env->nr_cores = smp_cores;
499 env->nr_threads = smp_threads;
Jan Kiszka84b49152011-02-01 22:15:50 +0100500
501 if (kvm_enabled()) {
502 r = kvm_init_vcpu(env);
503 if (r < 0) {
504 fprintf(stderr, "kvm_init_vcpu failed: %s\n", strerror(-r));
505 exit(1);
506 }
Jan Kiszkaff48eb52011-02-01 22:15:53 +0100507 qemu_kvm_init_cpu_signals(env);
Jan Kiszka84b49152011-02-01 22:15:50 +0100508 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000509}
510
511int qemu_cpu_self(void *env)
512{
513 return 1;
514}
515
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300516void run_on_cpu(CPUState *env, void (*func)(void *data), void *data)
517{
518 func(data);
519}
520
Blue Swirl296af7c2010-03-29 19:23:50 +0000521void resume_all_vcpus(void)
522{
523}
524
525void pause_all_vcpus(void)
526{
527}
528
529void qemu_cpu_kick(void *env)
530{
Blue Swirl296af7c2010-03-29 19:23:50 +0000531}
532
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100533void qemu_cpu_kick_self(void)
534{
535#ifndef _WIN32
536 assert(cpu_single_env);
537
538 raise(SIG_IPI);
539#else
540 abort();
541#endif
542}
543
Blue Swirl296af7c2010-03-29 19:23:50 +0000544void qemu_notify_event(void)
545{
546 CPUState *env = cpu_single_env;
547
548 qemu_event_increment ();
549 if (env) {
550 cpu_exit(env);
551 }
552 if (next_cpu && env != next_cpu) {
553 cpu_exit(next_cpu);
554 }
Jan Kiszka38145df2011-02-01 22:15:45 +0100555 exit_request = 1;
Blue Swirl296af7c2010-03-29 19:23:50 +0000556}
557
558void qemu_mutex_lock_iothread(void) {}
559void qemu_mutex_unlock_iothread(void) {}
560
Jan Kiszkab4a3d962011-02-01 22:15:43 +0100561void cpu_stop_current(void)
562{
563}
564
Blue Swirl296af7c2010-03-29 19:23:50 +0000565void vm_stop(int reason)
566{
567 do_vm_stop(reason);
568}
569
570#else /* CONFIG_IOTHREAD */
571
572#include "qemu-thread.h"
573
574QemuMutex qemu_global_mutex;
575static QemuMutex qemu_fair_mutex;
576
577static QemuThread io_thread;
578
579static QemuThread *tcg_cpu_thread;
580static QemuCond *tcg_halt_cond;
581
582static int qemu_system_ready;
583/* cpu creation */
584static QemuCond qemu_cpu_cond;
585/* system init */
586static QemuCond qemu_system_cond;
587static QemuCond qemu_pause_cond;
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300588static QemuCond qemu_work_cond;
Blue Swirl296af7c2010-03-29 19:23:50 +0000589
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100590static void cpu_signal(int sig)
591{
592 if (cpu_single_env) {
593 cpu_exit(cpu_single_env);
594 }
595 exit_request = 1;
596}
597
598static void qemu_kvm_init_cpu_signals(CPUState *env)
599{
600 int r;
601 sigset_t set;
602 struct sigaction sigact;
603
604 memset(&sigact, 0, sizeof(sigact));
605 sigact.sa_handler = dummy_signal;
606 sigaction(SIG_IPI, &sigact, NULL);
607
608 pthread_sigmask(SIG_BLOCK, NULL, &set);
609 sigdelset(&set, SIG_IPI);
610 sigdelset(&set, SIGBUS);
611 r = kvm_set_signal_mask(env, &set);
612 if (r) {
613 fprintf(stderr, "kvm_set_signal_mask: %s\n", strerror(-r));
614 exit(1);
615 }
616}
617
618static void qemu_tcg_init_cpu_signals(void)
619{
620 sigset_t set;
621 struct sigaction sigact;
622
623 memset(&sigact, 0, sizeof(sigact));
624 sigact.sa_handler = cpu_signal;
625 sigaction(SIG_IPI, &sigact, NULL);
626
627 sigemptyset(&set);
628 sigaddset(&set, SIG_IPI);
629 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
630}
631
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100632static sigset_t block_io_signals(void)
633{
634 sigset_t set;
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100635
636 /* SIGUSR2 used by posix-aio-compat.c */
637 sigemptyset(&set);
638 sigaddset(&set, SIGUSR2);
639 pthread_sigmask(SIG_UNBLOCK, &set, NULL);
640
641 sigemptyset(&set);
642 sigaddset(&set, SIGIO);
643 sigaddset(&set, SIGALRM);
644 sigaddset(&set, SIG_IPI);
645 sigaddset(&set, SIGBUS);
646 pthread_sigmask(SIG_BLOCK, &set, NULL);
647
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100648 return set;
649}
650
Blue Swirl296af7c2010-03-29 19:23:50 +0000651int qemu_init_main_loop(void)
652{
653 int ret;
Marcelo Tosattia8486bc2010-10-11 15:31:16 -0300654 sigset_t blocked_signals;
Blue Swirl296af7c2010-03-29 19:23:50 +0000655
Jan Kiszka3c638d02010-06-25 16:56:56 +0200656 cpu_set_debug_excp_handler(cpu_debug_handler);
657
Jan Kiszka6d9cb732011-02-01 22:15:58 +0100658 qemu_init_sigbus();
659
Marcelo Tosattia8486bc2010-10-11 15:31:16 -0300660 blocked_signals = block_io_signals();
661
662 ret = qemu_signalfd_init(blocked_signals);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100663 if (ret) {
Marcelo Tosattia8486bc2010-10-11 15:31:16 -0300664 return ret;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100665 }
Marcelo Tosattia8486bc2010-10-11 15:31:16 -0300666
667 /* Note eventfd must be drained before signalfd handlers run */
Blue Swirl296af7c2010-03-29 19:23:50 +0000668 ret = qemu_event_init();
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100669 if (ret) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000670 return ret;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100671 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000672
673 qemu_cond_init(&qemu_pause_cond);
Jan Kiszkaf8ca7b42010-06-25 16:56:51 +0200674 qemu_cond_init(&qemu_system_cond);
Blue Swirl296af7c2010-03-29 19:23:50 +0000675 qemu_mutex_init(&qemu_fair_mutex);
676 qemu_mutex_init(&qemu_global_mutex);
677 qemu_mutex_lock(&qemu_global_mutex);
678
Blue Swirl296af7c2010-03-29 19:23:50 +0000679 qemu_thread_self(&io_thread);
680
681 return 0;
682}
683
Blue Swirl7277e022010-04-12 17:19:06 +0000684void qemu_main_loop_start(void)
685{
686 qemu_system_ready = 1;
687 qemu_cond_broadcast(&qemu_system_cond);
688}
689
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300690void run_on_cpu(CPUState *env, void (*func)(void *data), void *data)
691{
692 struct qemu_work_item wi;
693
694 if (qemu_cpu_self(env)) {
695 func(data);
696 return;
697 }
698
699 wi.func = func;
700 wi.data = data;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100701 if (!env->queued_work_first) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300702 env->queued_work_first = &wi;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100703 } else {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300704 env->queued_work_last->next = &wi;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100705 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300706 env->queued_work_last = &wi;
707 wi.next = NULL;
708 wi.done = false;
709
710 qemu_cpu_kick(env);
711 while (!wi.done) {
712 CPUState *self_env = cpu_single_env;
713
714 qemu_cond_wait(&qemu_work_cond, &qemu_global_mutex);
715 cpu_single_env = self_env;
716 }
717}
718
719static void flush_queued_work(CPUState *env)
720{
721 struct qemu_work_item *wi;
722
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100723 if (!env->queued_work_first) {
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300724 return;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100725 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300726
727 while ((wi = env->queued_work_first)) {
728 env->queued_work_first = wi->next;
729 wi->func(wi->data);
730 wi->done = true;
731 }
732 env->queued_work_last = NULL;
733 qemu_cond_broadcast(&qemu_work_cond);
734}
735
Blue Swirl296af7c2010-03-29 19:23:50 +0000736static void qemu_wait_io_event_common(CPUState *env)
737{
738 if (env->stop) {
739 env->stop = 0;
740 env->stopped = 1;
741 qemu_cond_signal(&qemu_pause_cond);
742 }
Marcelo Tosattie82bcec2010-05-04 09:45:22 -0300743 flush_queued_work(env);
Jan Kiszkaaa2c3642011-02-01 22:15:42 +0100744 env->thread_kicked = false;
Blue Swirl296af7c2010-03-29 19:23:50 +0000745}
746
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200747static void qemu_tcg_wait_io_event(void)
Blue Swirl296af7c2010-03-29 19:23:50 +0000748{
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200749 CPUState *env;
750
Jan Kiszka16400322011-02-09 16:29:37 +0100751 while (all_cpu_threads_idle()) {
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200752 qemu_cond_timedwait(tcg_halt_cond, &qemu_global_mutex, 1000);
Jan Kiszka16400322011-02-09 16:29:37 +0100753 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000754
755 qemu_mutex_unlock(&qemu_global_mutex);
756
757 /*
758 * Users of qemu_global_mutex can be starved, having no chance
759 * to acquire it since this path will get to it first.
760 * So use another lock to provide fairness.
761 */
762 qemu_mutex_lock(&qemu_fair_mutex);
763 qemu_mutex_unlock(&qemu_fair_mutex);
764
765 qemu_mutex_lock(&qemu_global_mutex);
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200766
767 for (env = first_cpu; env != NULL; env = env->next_cpu) {
768 qemu_wait_io_event_common(env);
769 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000770}
771
Blue Swirl296af7c2010-03-29 19:23:50 +0000772static void qemu_kvm_wait_io_event(CPUState *env)
773{
Jan Kiszka16400322011-02-09 16:29:37 +0100774 while (cpu_thread_is_idle(env)) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000775 qemu_cond_timedwait(env->halt_cond, &qemu_global_mutex, 1000);
Jan Kiszka16400322011-02-09 16:29:37 +0100776 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000777
Jan Kiszka5db5bda2011-02-01 22:15:54 +0100778 qemu_kvm_eat_signals(env);
Blue Swirl296af7c2010-03-29 19:23:50 +0000779 qemu_wait_io_event_common(env);
780}
781
782static int qemu_cpu_exec(CPUState *env);
783
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100784static void *qemu_kvm_cpu_thread_fn(void *arg)
Blue Swirl296af7c2010-03-29 19:23:50 +0000785{
786 CPUState *env = arg;
Jan Kiszka84b49152011-02-01 22:15:50 +0100787 int r;
Blue Swirl296af7c2010-03-29 19:23:50 +0000788
Marcelo Tosatti6164e6d2010-03-23 13:37:13 -0300789 qemu_mutex_lock(&qemu_global_mutex);
Blue Swirl296af7c2010-03-29 19:23:50 +0000790 qemu_thread_self(env->thread);
Jan Kiszkad31ae052011-02-01 22:15:49 +0100791
Jan Kiszka84b49152011-02-01 22:15:50 +0100792 r = kvm_init_vcpu(env);
793 if (r < 0) {
794 fprintf(stderr, "kvm_init_vcpu failed: %s\n", strerror(-r));
795 exit(1);
796 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000797
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100798 qemu_kvm_init_cpu_signals(env);
Blue Swirl296af7c2010-03-29 19:23:50 +0000799
800 /* signal CPU creation */
Blue Swirl296af7c2010-03-29 19:23:50 +0000801 env->created = 1;
802 qemu_cond_signal(&qemu_cpu_cond);
803
804 /* and wait for machine initialization */
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100805 while (!qemu_system_ready) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000806 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100807 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000808
809 while (1) {
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100810 if (cpu_can_run(env)) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000811 qemu_cpu_exec(env);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100812 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000813 qemu_kvm_wait_io_event(env);
814 }
815
816 return NULL;
817}
818
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100819static void *qemu_tcg_cpu_thread_fn(void *arg)
Blue Swirl296af7c2010-03-29 19:23:50 +0000820{
821 CPUState *env = arg;
822
Jan Kiszka55f8d6a2011-02-01 22:15:52 +0100823 qemu_tcg_init_cpu_signals();
Blue Swirl296af7c2010-03-29 19:23:50 +0000824 qemu_thread_self(env->thread);
825
826 /* signal CPU creation */
827 qemu_mutex_lock(&qemu_global_mutex);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100828 for (env = first_cpu; env != NULL; env = env->next_cpu) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000829 env->created = 1;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100830 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000831 qemu_cond_signal(&qemu_cpu_cond);
832
833 /* and wait for machine initialization */
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100834 while (!qemu_system_ready) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000835 qemu_cond_timedwait(&qemu_system_cond, &qemu_global_mutex, 100);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100836 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000837
838 while (1) {
Jan Kiszka472fb0c2010-06-25 16:56:55 +0200839 cpu_exec_all();
Jan Kiszka6cabe1f2010-06-25 16:56:53 +0200840 qemu_tcg_wait_io_event();
Blue Swirl296af7c2010-03-29 19:23:50 +0000841 }
842
843 return NULL;
844}
845
846void qemu_cpu_kick(void *_env)
847{
848 CPUState *env = _env;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100849
Blue Swirl296af7c2010-03-29 19:23:50 +0000850 qemu_cond_broadcast(env->halt_cond);
Jan Kiszkaaa2c3642011-02-01 22:15:42 +0100851 if (!env->thread_kicked) {
852 qemu_thread_signal(env->thread, SIG_IPI);
853 env->thread_kicked = true;
854 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000855}
856
Jan Kiszka46d62fa2011-02-01 22:15:59 +0100857void qemu_cpu_kick_self(void)
858{
859 assert(cpu_single_env);
860
861 if (!cpu_single_env->thread_kicked) {
862 qemu_thread_signal(cpu_single_env->thread, SIG_IPI);
863 cpu_single_env->thread_kicked = true;
864 }
865}
866
Blue Swirl296af7c2010-03-29 19:23:50 +0000867int qemu_cpu_self(void *_env)
868{
869 CPUState *env = _env;
870 QemuThread this;
871
872 qemu_thread_self(&this);
873
874 return qemu_thread_equal(&this, env->thread);
875}
876
Blue Swirl296af7c2010-03-29 19:23:50 +0000877void qemu_mutex_lock_iothread(void)
878{
879 if (kvm_enabled()) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000880 qemu_mutex_lock(&qemu_global_mutex);
Marcelo Tosatti1a28cac2010-05-04 09:45:20 -0300881 } else {
882 qemu_mutex_lock(&qemu_fair_mutex);
883 if (qemu_mutex_trylock(&qemu_global_mutex)) {
884 qemu_thread_signal(tcg_cpu_thread, SIG_IPI);
885 qemu_mutex_lock(&qemu_global_mutex);
886 }
887 qemu_mutex_unlock(&qemu_fair_mutex);
888 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000889}
890
891void qemu_mutex_unlock_iothread(void)
892{
893 qemu_mutex_unlock(&qemu_global_mutex);
894}
895
896static int all_vcpus_paused(void)
897{
898 CPUState *penv = first_cpu;
899
900 while (penv) {
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100901 if (!penv->stopped) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000902 return 0;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100903 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000904 penv = (CPUState *)penv->next_cpu;
905 }
906
907 return 1;
908}
909
910void pause_all_vcpus(void)
911{
912 CPUState *penv = first_cpu;
913
914 while (penv) {
915 penv->stop = 1;
Blue Swirl296af7c2010-03-29 19:23:50 +0000916 qemu_cpu_kick(penv);
917 penv = (CPUState *)penv->next_cpu;
918 }
919
920 while (!all_vcpus_paused()) {
921 qemu_cond_timedwait(&qemu_pause_cond, &qemu_global_mutex, 100);
922 penv = first_cpu;
923 while (penv) {
Marcelo Tosatti1fbb22e2010-05-04 09:45:21 -0300924 qemu_cpu_kick(penv);
Blue Swirl296af7c2010-03-29 19:23:50 +0000925 penv = (CPUState *)penv->next_cpu;
926 }
927 }
928}
929
930void resume_all_vcpus(void)
931{
932 CPUState *penv = first_cpu;
933
934 while (penv) {
935 penv->stop = 0;
936 penv->stopped = 0;
Blue Swirl296af7c2010-03-29 19:23:50 +0000937 qemu_cpu_kick(penv);
938 penv = (CPUState *)penv->next_cpu;
939 }
940}
941
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100942static void qemu_tcg_init_vcpu(void *_env)
Blue Swirl296af7c2010-03-29 19:23:50 +0000943{
944 CPUState *env = _env;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100945
Blue Swirl296af7c2010-03-29 19:23:50 +0000946 /* share a single thread for all cpus with TCG */
947 if (!tcg_cpu_thread) {
948 env->thread = qemu_mallocz(sizeof(QemuThread));
949 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
950 qemu_cond_init(env->halt_cond);
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100951 qemu_thread_create(env->thread, qemu_tcg_cpu_thread_fn, env);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100952 while (env->created == 0) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000953 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100954 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000955 tcg_cpu_thread = env->thread;
956 tcg_halt_cond = env->halt_cond;
957 } else {
958 env->thread = tcg_cpu_thread;
959 env->halt_cond = tcg_halt_cond;
960 }
961}
962
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100963static void qemu_kvm_start_vcpu(CPUState *env)
Blue Swirl296af7c2010-03-29 19:23:50 +0000964{
965 env->thread = qemu_mallocz(sizeof(QemuThread));
966 env->halt_cond = qemu_mallocz(sizeof(QemuCond));
967 qemu_cond_init(env->halt_cond);
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100968 qemu_thread_create(env->thread, qemu_kvm_cpu_thread_fn, env);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100969 while (env->created == 0) {
Blue Swirl296af7c2010-03-29 19:23:50 +0000970 qemu_cond_timedwait(&qemu_cpu_cond, &qemu_global_mutex, 100);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100971 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000972}
973
974void qemu_init_vcpu(void *_env)
975{
976 CPUState *env = _env;
977
978 env->nr_cores = smp_cores;
979 env->nr_threads = smp_threads;
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100980 if (kvm_enabled()) {
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100981 qemu_kvm_start_vcpu(env);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100982 } else {
Jan Kiszka7e97cd82011-02-07 12:19:12 +0100983 qemu_tcg_init_vcpu(env);
Jan Kiszka0ab07c62011-02-07 12:19:14 +0100984 }
Blue Swirl296af7c2010-03-29 19:23:50 +0000985}
986
987void qemu_notify_event(void)
988{
989 qemu_event_increment();
990}
991
Jan Kiszkab4a3d962011-02-01 22:15:43 +0100992void cpu_stop_current(void)
993{
994 if (cpu_single_env) {
995 cpu_single_env->stopped = 1;
996 cpu_exit(cpu_single_env);
997 }
998}
999
Blue Swirl296af7c2010-03-29 19:23:50 +00001000void vm_stop(int reason)
1001{
1002 QemuThread me;
1003 qemu_thread_self(&me);
1004
1005 if (!qemu_thread_equal(&me, &io_thread)) {
1006 qemu_system_vmstop_request(reason);
1007 /*
1008 * FIXME: should not return to device code in case
1009 * vm_stop() has been requested.
1010 */
Jan Kiszkab4a3d962011-02-01 22:15:43 +01001011 cpu_stop_current();
Blue Swirl296af7c2010-03-29 19:23:50 +00001012 return;
1013 }
1014 do_vm_stop(reason);
1015}
1016
1017#endif
1018
1019static int qemu_cpu_exec(CPUState *env)
1020{
1021 int ret;
1022#ifdef CONFIG_PROFILER
1023 int64_t ti;
1024#endif
1025
1026#ifdef CONFIG_PROFILER
1027 ti = profile_getclock();
1028#endif
1029 if (use_icount) {
1030 int64_t count;
1031 int decr;
1032 qemu_icount -= (env->icount_decr.u16.low + env->icount_extra);
1033 env->icount_decr.u16.low = 0;
1034 env->icount_extra = 0;
1035 count = qemu_icount_round (qemu_next_deadline());
1036 qemu_icount += count;
1037 decr = (count > 0xffff) ? 0xffff : count;
1038 count -= decr;
1039 env->icount_decr.u16.low = decr;
1040 env->icount_extra = count;
1041 }
1042 ret = cpu_exec(env);
1043#ifdef CONFIG_PROFILER
1044 qemu_time += profile_getclock() - ti;
1045#endif
1046 if (use_icount) {
1047 /* Fold pending instructions back into the
1048 instruction counter, and clear the interrupt flag. */
1049 qemu_icount -= (env->icount_decr.u16.low
1050 + env->icount_extra);
1051 env->icount_decr.u32 = 0;
1052 env->icount_extra = 0;
1053 }
1054 return ret;
1055}
1056
Jan Kiszka472fb0c2010-06-25 16:56:55 +02001057bool cpu_exec_all(void)
Blue Swirl296af7c2010-03-29 19:23:50 +00001058{
Jan Kiszka9a360852011-02-01 22:15:55 +01001059 int r;
1060
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001061 if (next_cpu == NULL) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001062 next_cpu = first_cpu;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001063 }
Jan Kiszkac629a4b2010-06-25 16:56:52 +02001064 for (; next_cpu != NULL && !exit_request; next_cpu = next_cpu->next_cpu) {
Jan Kiszka345f4422010-06-25 16:56:54 +02001065 CPUState *env = next_cpu;
Blue Swirl296af7c2010-03-29 19:23:50 +00001066
1067 qemu_clock_enable(vm_clock,
Jan Kiszka345f4422010-06-25 16:56:54 +02001068 (env->singlestep_enabled & SSTEP_NOTIMER) == 0);
Blue Swirl296af7c2010-03-29 19:23:50 +00001069
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001070 if (qemu_alarm_pending()) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001071 break;
Jan Kiszka0ab07c62011-02-07 12:19:14 +01001072 }
Jan Kiszka3c638d02010-06-25 16:56:56 +02001073 if (cpu_can_run(env)) {
Jan Kiszka9a360852011-02-01 22:15:55 +01001074 r = qemu_cpu_exec(env);
1075 if (kvm_enabled()) {
1076 qemu_kvm_eat_signals(env);
1077 }
1078 if (r == EXCP_DEBUG) {
Jan Kiszka3c638d02010-06-25 16:56:56 +02001079 break;
1080 }
1081 } else if (env->stop) {
Blue Swirl296af7c2010-03-29 19:23:50 +00001082 break;
1083 }
1084 }
Jan Kiszkac629a4b2010-06-25 16:56:52 +02001085 exit_request = 0;
Jan Kiszka16400322011-02-09 16:29:37 +01001086 return !all_cpu_threads_idle();
Blue Swirl296af7c2010-03-29 19:23:50 +00001087}
1088
1089void set_numa_modes(void)
1090{
1091 CPUState *env;
1092 int i;
1093
1094 for (env = first_cpu; env != NULL; env = env->next_cpu) {
1095 for (i = 0; i < nb_numa_nodes; i++) {
1096 if (node_cpumask[i] & (1 << env->cpu_index)) {
1097 env->numa_node = i;
1098 }
1099 }
1100 }
1101}
1102
1103void set_cpu_log(const char *optarg)
1104{
1105 int mask;
1106 const CPULogItem *item;
1107
1108 mask = cpu_str_to_log_mask(optarg);
1109 if (!mask) {
1110 printf("Log items (comma separated):\n");
1111 for (item = cpu_log_items; item->mask != 0; item++) {
1112 printf("%-10s %s\n", item->name, item->help);
1113 }
1114 exit(1);
1115 }
1116 cpu_set_log(mask);
1117}
Blue Swirl29e922b2010-03-29 19:24:00 +00001118
1119/* Return the virtual CPU time, based on the instruction counter. */
1120int64_t cpu_get_icount(void)
1121{
1122 int64_t icount;
1123 CPUState *env = cpu_single_env;;
1124
1125 icount = qemu_icount;
1126 if (env) {
1127 if (!can_do_io(env)) {
1128 fprintf(stderr, "Bad clock read\n");
1129 }
1130 icount -= (env->icount_decr.u16.low + env->icount_extra);
1131 }
1132 return qemu_icount_bias + (icount << icount_time_shift);
1133}
Blue Swirl262353c2010-05-04 19:55:35 +00001134
Stefan Weil9a78eea2010-10-22 23:03:33 +02001135void list_cpus(FILE *f, fprintf_function cpu_fprintf, const char *optarg)
Blue Swirl262353c2010-05-04 19:55:35 +00001136{
1137 /* XXX: implement xxx_cpu_list for targets that still miss it */
1138#if defined(cpu_list_id)
1139 cpu_list_id(f, cpu_fprintf, optarg);
1140#elif defined(cpu_list)
1141 cpu_list(f, cpu_fprintf); /* deprecated */
1142#endif
1143}