]> Git Repo - qemu.git/blob - cpu-exec.c
libqtest: Fix qmp() & friends to abort on JSON parse errors
[qemu.git] / cpu-exec.c
1 /*
2  *  emulator main execution loop
3  *
4  *  Copyright (c) 2003-2005 Fabrice Bellard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18  */
19 #include "qemu/osdep.h"
20 #include "cpu.h"
21 #include "trace-root.h"
22 #include "disas/disas.h"
23 #include "exec/exec-all.h"
24 #include "tcg.h"
25 #include "qemu/atomic.h"
26 #include "sysemu/qtest.h"
27 #include "qemu/timer.h"
28 #include "exec/address-spaces.h"
29 #include "qemu/rcu.h"
30 #include "exec/tb-hash.h"
31 #include "exec/log.h"
32 #include "qemu/main-loop.h"
33 #if defined(TARGET_I386) && !defined(CONFIG_USER_ONLY)
34 #include "hw/i386/apic.h"
35 #endif
36 #include "sysemu/replay.h"
37
38 /* -icount align implementation. */
39
40 typedef struct SyncClocks {
41     int64_t diff_clk;
42     int64_t last_cpu_icount;
43     int64_t realtime_clock;
44 } SyncClocks;
45
46 #if !defined(CONFIG_USER_ONLY)
47 /* Allow the guest to have a max 3ms advance.
48  * The difference between the 2 clocks could therefore
49  * oscillate around 0.
50  */
51 #define VM_CLOCK_ADVANCE 3000000
52 #define THRESHOLD_REDUCE 1.5
53 #define MAX_DELAY_PRINT_RATE 2000000000LL
54 #define MAX_NB_PRINTS 100
55
56 static void align_clocks(SyncClocks *sc, const CPUState *cpu)
57 {
58     int64_t cpu_icount;
59
60     if (!icount_align_option) {
61         return;
62     }
63
64     cpu_icount = cpu->icount_extra + cpu->icount_decr.u16.low;
65     sc->diff_clk += cpu_icount_to_ns(sc->last_cpu_icount - cpu_icount);
66     sc->last_cpu_icount = cpu_icount;
67
68     if (sc->diff_clk > VM_CLOCK_ADVANCE) {
69 #ifndef _WIN32
70         struct timespec sleep_delay, rem_delay;
71         sleep_delay.tv_sec = sc->diff_clk / 1000000000LL;
72         sleep_delay.tv_nsec = sc->diff_clk % 1000000000LL;
73         if (nanosleep(&sleep_delay, &rem_delay) < 0) {
74             sc->diff_clk = rem_delay.tv_sec * 1000000000LL + rem_delay.tv_nsec;
75         } else {
76             sc->diff_clk = 0;
77         }
78 #else
79         Sleep(sc->diff_clk / SCALE_MS);
80         sc->diff_clk = 0;
81 #endif
82     }
83 }
84
85 static void print_delay(const SyncClocks *sc)
86 {
87     static float threshold_delay;
88     static int64_t last_realtime_clock;
89     static int nb_prints;
90
91     if (icount_align_option &&
92         sc->realtime_clock - last_realtime_clock >= MAX_DELAY_PRINT_RATE &&
93         nb_prints < MAX_NB_PRINTS) {
94         if ((-sc->diff_clk / (float)1000000000LL > threshold_delay) ||
95             (-sc->diff_clk / (float)1000000000LL <
96              (threshold_delay - THRESHOLD_REDUCE))) {
97             threshold_delay = (-sc->diff_clk / 1000000000LL) + 1;
98             printf("Warning: The guest is now late by %.1f to %.1f seconds\n",
99                    threshold_delay - 1,
100                    threshold_delay);
101             nb_prints++;
102             last_realtime_clock = sc->realtime_clock;
103         }
104     }
105 }
106
107 static void init_delay_params(SyncClocks *sc,
108                               const CPUState *cpu)
109 {
110     if (!icount_align_option) {
111         return;
112     }
113     sc->realtime_clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL_RT);
114     sc->diff_clk = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) - sc->realtime_clock;
115     sc->last_cpu_icount = cpu->icount_extra + cpu->icount_decr.u16.low;
116     if (sc->diff_clk < max_delay) {
117         max_delay = sc->diff_clk;
118     }
119     if (sc->diff_clk > max_advance) {
120         max_advance = sc->diff_clk;
121     }
122
123     /* Print every 2s max if the guest is late. We limit the number
124        of printed messages to NB_PRINT_MAX(currently 100) */
125     print_delay(sc);
126 }
127 #else
128 static void align_clocks(SyncClocks *sc, const CPUState *cpu)
129 {
130 }
131
132 static void init_delay_params(SyncClocks *sc, const CPUState *cpu)
133 {
134 }
135 #endif /* CONFIG USER ONLY */
136
137 /* Execute a TB, and fix up the CPU state afterwards if necessary */
138 static inline tcg_target_ulong cpu_tb_exec(CPUState *cpu, TranslationBlock *itb)
139 {
140     CPUArchState *env = cpu->env_ptr;
141     uintptr_t ret;
142     TranslationBlock *last_tb;
143     int tb_exit;
144     uint8_t *tb_ptr = itb->tc_ptr;
145
146     qemu_log_mask_and_addr(CPU_LOG_EXEC, itb->pc,
147                            "Trace %p [%d: " TARGET_FMT_lx "] %s\n",
148                            itb->tc_ptr, cpu->cpu_index, itb->pc,
149                            lookup_symbol(itb->pc));
150
151 #if defined(DEBUG_DISAS)
152     if (qemu_loglevel_mask(CPU_LOG_TB_CPU)
153         && qemu_log_in_addr_range(itb->pc)) {
154         qemu_log_lock();
155 #if defined(TARGET_I386)
156         log_cpu_state(cpu, CPU_DUMP_CCOP);
157 #else
158         log_cpu_state(cpu, 0);
159 #endif
160         qemu_log_unlock();
161     }
162 #endif /* DEBUG_DISAS */
163
164     cpu->can_do_io = !use_icount;
165     ret = tcg_qemu_tb_exec(env, tb_ptr);
166     cpu->can_do_io = 1;
167     last_tb = (TranslationBlock *)(ret & ~TB_EXIT_MASK);
168     tb_exit = ret & TB_EXIT_MASK;
169     trace_exec_tb_exit(last_tb, tb_exit);
170
171     if (tb_exit > TB_EXIT_IDX1) {
172         /* We didn't start executing this TB (eg because the instruction
173          * counter hit zero); we must restore the guest PC to the address
174          * of the start of the TB.
175          */
176         CPUClass *cc = CPU_GET_CLASS(cpu);
177         qemu_log_mask_and_addr(CPU_LOG_EXEC, last_tb->pc,
178                                "Stopped execution of TB chain before %p ["
179                                TARGET_FMT_lx "] %s\n",
180                                last_tb->tc_ptr, last_tb->pc,
181                                lookup_symbol(last_tb->pc));
182         if (cc->synchronize_from_tb) {
183             cc->synchronize_from_tb(cpu, last_tb);
184         } else {
185             assert(cc->set_pc);
186             cc->set_pc(cpu, last_tb->pc);
187         }
188     }
189     return ret;
190 }
191
192 #ifndef CONFIG_USER_ONLY
193 /* Execute the code without caching the generated code. An interpreter
194    could be used if available. */
195 static void cpu_exec_nocache(CPUState *cpu, int max_cycles,
196                              TranslationBlock *orig_tb, bool ignore_icount)
197 {
198     TranslationBlock *tb;
199
200     /* Should never happen.
201        We only end up here when an existing TB is too long.  */
202     if (max_cycles > CF_COUNT_MASK)
203         max_cycles = CF_COUNT_MASK;
204
205     tb_lock();
206     tb = tb_gen_code(cpu, orig_tb->pc, orig_tb->cs_base, orig_tb->flags,
207                      max_cycles | CF_NOCACHE
208                          | (ignore_icount ? CF_IGNORE_ICOUNT : 0));
209     tb->orig_tb = orig_tb;
210     tb_unlock();
211
212     /* execute the generated code */
213     trace_exec_tb_nocache(tb, tb->pc);
214     cpu_tb_exec(cpu, tb);
215
216     tb_lock();
217     tb_phys_invalidate(tb, -1);
218     tb_free(tb);
219     tb_unlock();
220 }
221 #endif
222
223 static void cpu_exec_step(CPUState *cpu)
224 {
225     CPUClass *cc = CPU_GET_CLASS(cpu);
226     CPUArchState *env = (CPUArchState *)cpu->env_ptr;
227     TranslationBlock *tb;
228     target_ulong cs_base, pc;
229     uint32_t flags;
230
231     cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags);
232     if (sigsetjmp(cpu->jmp_env, 0) == 0) {
233         mmap_lock();
234         tb_lock();
235         tb = tb_gen_code(cpu, pc, cs_base, flags,
236                          1 | CF_NOCACHE | CF_IGNORE_ICOUNT);
237         tb->orig_tb = NULL;
238         tb_unlock();
239         mmap_unlock();
240
241         cc->cpu_exec_enter(cpu);
242         /* execute the generated code */
243         trace_exec_tb_nocache(tb, pc);
244         cpu_tb_exec(cpu, tb);
245         cc->cpu_exec_exit(cpu);
246
247         tb_lock();
248         tb_phys_invalidate(tb, -1);
249         tb_free(tb);
250         tb_unlock();
251     } else {
252         /* We may have exited due to another problem here, so we need
253          * to reset any tb_locks we may have taken but didn't release.
254          * The mmap_lock is dropped by tb_gen_code if it runs out of
255          * memory.
256          */
257 #ifndef CONFIG_SOFTMMU
258         tcg_debug_assert(!have_mmap_lock());
259 #endif
260         tb_lock_reset();
261     }
262 }
263
264 void cpu_exec_step_atomic(CPUState *cpu)
265 {
266     start_exclusive();
267
268     /* Since we got here, we know that parallel_cpus must be true.  */
269     parallel_cpus = false;
270     cpu_exec_step(cpu);
271     parallel_cpus = true;
272
273     end_exclusive();
274 }
275
276 struct tb_desc {
277     target_ulong pc;
278     target_ulong cs_base;
279     CPUArchState *env;
280     tb_page_addr_t phys_page1;
281     uint32_t flags;
282 };
283
284 static bool tb_cmp(const void *p, const void *d)
285 {
286     const TranslationBlock *tb = p;
287     const struct tb_desc *desc = d;
288
289     if (tb->pc == desc->pc &&
290         tb->page_addr[0] == desc->phys_page1 &&
291         tb->cs_base == desc->cs_base &&
292         tb->flags == desc->flags &&
293         !atomic_read(&tb->invalid)) {
294         /* check next page if needed */
295         if (tb->page_addr[1] == -1) {
296             return true;
297         } else {
298             tb_page_addr_t phys_page2;
299             target_ulong virt_page2;
300
301             virt_page2 = (desc->pc & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE;
302             phys_page2 = get_page_addr_code(desc->env, virt_page2);
303             if (tb->page_addr[1] == phys_page2) {
304                 return true;
305             }
306         }
307     }
308     return false;
309 }
310
311 static TranslationBlock *tb_htable_lookup(CPUState *cpu,
312                                           target_ulong pc,
313                                           target_ulong cs_base,
314                                           uint32_t flags)
315 {
316     tb_page_addr_t phys_pc;
317     struct tb_desc desc;
318     uint32_t h;
319
320     desc.env = (CPUArchState *)cpu->env_ptr;
321     desc.cs_base = cs_base;
322     desc.flags = flags;
323     desc.pc = pc;
324     phys_pc = get_page_addr_code(desc.env, pc);
325     desc.phys_page1 = phys_pc & TARGET_PAGE_MASK;
326     h = tb_hash_func(phys_pc, pc, flags);
327     return qht_lookup(&tcg_ctx.tb_ctx.htable, tb_cmp, &desc, h);
328 }
329
330 static inline TranslationBlock *tb_find(CPUState *cpu,
331                                         TranslationBlock *last_tb,
332                                         int tb_exit)
333 {
334     CPUArchState *env = (CPUArchState *)cpu->env_ptr;
335     TranslationBlock *tb;
336     target_ulong cs_base, pc;
337     uint32_t flags;
338     bool have_tb_lock = false;
339
340     /* we record a subset of the CPU state. It will
341        always be the same before a given translated block
342        is executed. */
343     cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags);
344     tb = atomic_rcu_read(&cpu->tb_jmp_cache[tb_jmp_cache_hash_func(pc)]);
345     if (unlikely(!tb || tb->pc != pc || tb->cs_base != cs_base ||
346                  tb->flags != flags)) {
347         tb = tb_htable_lookup(cpu, pc, cs_base, flags);
348         if (!tb) {
349
350             /* mmap_lock is needed by tb_gen_code, and mmap_lock must be
351              * taken outside tb_lock. As system emulation is currently
352              * single threaded the locks are NOPs.
353              */
354             mmap_lock();
355             tb_lock();
356             have_tb_lock = true;
357
358             /* There's a chance that our desired tb has been translated while
359              * taking the locks so we check again inside the lock.
360              */
361             tb = tb_htable_lookup(cpu, pc, cs_base, flags);
362             if (!tb) {
363                 /* if no translated code available, then translate it now */
364                 tb = tb_gen_code(cpu, pc, cs_base, flags, 0);
365             }
366
367             mmap_unlock();
368         }
369
370         /* We add the TB in the virtual pc hash table for the fast lookup */
371         atomic_set(&cpu->tb_jmp_cache[tb_jmp_cache_hash_func(pc)], tb);
372     }
373 #ifndef CONFIG_USER_ONLY
374     /* We don't take care of direct jumps when address mapping changes in
375      * system emulation. So it's not safe to make a direct jump to a TB
376      * spanning two pages because the mapping for the second page can change.
377      */
378     if (tb->page_addr[1] != -1) {
379         last_tb = NULL;
380     }
381 #endif
382     /* See if we can patch the calling TB. */
383     if (last_tb && !qemu_loglevel_mask(CPU_LOG_TB_NOCHAIN)) {
384         if (!have_tb_lock) {
385             tb_lock();
386             have_tb_lock = true;
387         }
388         if (!tb->invalid) {
389             tb_add_jump(last_tb, tb_exit, tb);
390         }
391     }
392     if (have_tb_lock) {
393         tb_unlock();
394     }
395     return tb;
396 }
397
398 static inline bool cpu_handle_halt(CPUState *cpu)
399 {
400     if (cpu->halted) {
401 #if defined(TARGET_I386) && !defined(CONFIG_USER_ONLY)
402         if ((cpu->interrupt_request & CPU_INTERRUPT_POLL)
403             && replay_interrupt()) {
404             X86CPU *x86_cpu = X86_CPU(cpu);
405             qemu_mutex_lock_iothread();
406             apic_poll_irq(x86_cpu->apic_state);
407             cpu_reset_interrupt(cpu, CPU_INTERRUPT_POLL);
408             qemu_mutex_unlock_iothread();
409         }
410 #endif
411         if (!cpu_has_work(cpu)) {
412             return true;
413         }
414
415         cpu->halted = 0;
416     }
417
418     return false;
419 }
420
421 static inline void cpu_handle_debug_exception(CPUState *cpu)
422 {
423     CPUClass *cc = CPU_GET_CLASS(cpu);
424     CPUWatchpoint *wp;
425
426     if (!cpu->watchpoint_hit) {
427         QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) {
428             wp->flags &= ~BP_WATCHPOINT_HIT;
429         }
430     }
431
432     cc->debug_excp_handler(cpu);
433 }
434
435 static inline bool cpu_handle_exception(CPUState *cpu, int *ret)
436 {
437     if (cpu->exception_index >= 0) {
438         if (cpu->exception_index >= EXCP_INTERRUPT) {
439             /* exit request from the cpu execution loop */
440             *ret = cpu->exception_index;
441             if (*ret == EXCP_DEBUG) {
442                 cpu_handle_debug_exception(cpu);
443             }
444             cpu->exception_index = -1;
445             return true;
446         } else {
447 #if defined(CONFIG_USER_ONLY)
448             /* if user mode only, we simulate a fake exception
449                which will be handled outside the cpu execution
450                loop */
451 #if defined(TARGET_I386)
452             CPUClass *cc = CPU_GET_CLASS(cpu);
453             cc->do_interrupt(cpu);
454 #endif
455             *ret = cpu->exception_index;
456             cpu->exception_index = -1;
457             return true;
458 #else
459             if (replay_exception()) {
460                 CPUClass *cc = CPU_GET_CLASS(cpu);
461                 qemu_mutex_lock_iothread();
462                 cc->do_interrupt(cpu);
463                 qemu_mutex_unlock_iothread();
464                 cpu->exception_index = -1;
465             } else if (!replay_has_interrupt()) {
466                 /* give a chance to iothread in replay mode */
467                 *ret = EXCP_INTERRUPT;
468                 return true;
469             }
470 #endif
471         }
472 #ifndef CONFIG_USER_ONLY
473     } else if (replay_has_exception()
474                && cpu->icount_decr.u16.low + cpu->icount_extra == 0) {
475         /* try to cause an exception pending in the log */
476         cpu_exec_nocache(cpu, 1, tb_find(cpu, NULL, 0), true);
477         *ret = -1;
478         return true;
479 #endif
480     }
481
482     return false;
483 }
484
485 static inline bool cpu_handle_interrupt(CPUState *cpu,
486                                         TranslationBlock **last_tb)
487 {
488     CPUClass *cc = CPU_GET_CLASS(cpu);
489
490     if (unlikely(atomic_read(&cpu->interrupt_request))) {
491         int interrupt_request;
492         qemu_mutex_lock_iothread();
493         interrupt_request = cpu->interrupt_request;
494         if (unlikely(cpu->singlestep_enabled & SSTEP_NOIRQ)) {
495             /* Mask out external interrupts for this step. */
496             interrupt_request &= ~CPU_INTERRUPT_SSTEP_MASK;
497         }
498         if (interrupt_request & CPU_INTERRUPT_DEBUG) {
499             cpu->interrupt_request &= ~CPU_INTERRUPT_DEBUG;
500             cpu->exception_index = EXCP_DEBUG;
501             qemu_mutex_unlock_iothread();
502             return true;
503         }
504         if (replay_mode == REPLAY_MODE_PLAY && !replay_has_interrupt()) {
505             /* Do nothing */
506         } else if (interrupt_request & CPU_INTERRUPT_HALT) {
507             replay_interrupt();
508             cpu->interrupt_request &= ~CPU_INTERRUPT_HALT;
509             cpu->halted = 1;
510             cpu->exception_index = EXCP_HLT;
511             qemu_mutex_unlock_iothread();
512             return true;
513         }
514 #if defined(TARGET_I386)
515         else if (interrupt_request & CPU_INTERRUPT_INIT) {
516             X86CPU *x86_cpu = X86_CPU(cpu);
517             CPUArchState *env = &x86_cpu->env;
518             replay_interrupt();
519             cpu_svm_check_intercept_param(env, SVM_EXIT_INIT, 0, 0);
520             do_cpu_init(x86_cpu);
521             cpu->exception_index = EXCP_HALTED;
522             qemu_mutex_unlock_iothread();
523             return true;
524         }
525 #else
526         else if (interrupt_request & CPU_INTERRUPT_RESET) {
527             replay_interrupt();
528             cpu_reset(cpu);
529             qemu_mutex_unlock_iothread();
530             return true;
531         }
532 #endif
533         /* The target hook has 3 exit conditions:
534            False when the interrupt isn't processed,
535            True when it is, and we should restart on a new TB,
536            and via longjmp via cpu_loop_exit.  */
537         else {
538             if (cc->cpu_exec_interrupt(cpu, interrupt_request)) {
539                 replay_interrupt();
540                 *last_tb = NULL;
541             }
542             /* The target hook may have updated the 'cpu->interrupt_request';
543              * reload the 'interrupt_request' value */
544             interrupt_request = cpu->interrupt_request;
545         }
546         if (interrupt_request & CPU_INTERRUPT_EXITTB) {
547             cpu->interrupt_request &= ~CPU_INTERRUPT_EXITTB;
548             /* ensure that no TB jump will be modified as
549                the program flow was changed */
550             *last_tb = NULL;
551         }
552
553         /* If we exit via cpu_loop_exit/longjmp it is reset in cpu_exec */
554         qemu_mutex_unlock_iothread();
555     }
556
557     /* Finally, check if we need to exit to the main loop.  */
558     if (unlikely(atomic_read(&cpu->exit_request)
559         || (use_icount && cpu->icount_decr.u16.low + cpu->icount_extra == 0))) {
560         atomic_set(&cpu->exit_request, 0);
561         cpu->exception_index = EXCP_INTERRUPT;
562         return true;
563     }
564
565     return false;
566 }
567
568 static inline void cpu_loop_exec_tb(CPUState *cpu, TranslationBlock *tb,
569                                     TranslationBlock **last_tb, int *tb_exit)
570 {
571     uintptr_t ret;
572     int32_t insns_left;
573
574     trace_exec_tb(tb, tb->pc);
575     ret = cpu_tb_exec(cpu, tb);
576     tb = (TranslationBlock *)(ret & ~TB_EXIT_MASK);
577     *tb_exit = ret & TB_EXIT_MASK;
578     if (*tb_exit != TB_EXIT_REQUESTED) {
579         *last_tb = tb;
580         return;
581     }
582
583     *last_tb = NULL;
584     insns_left = atomic_read(&cpu->icount_decr.u32);
585     atomic_set(&cpu->icount_decr.u16.high, 0);
586     if (insns_left < 0) {
587         /* Something asked us to stop executing chained TBs; just
588          * continue round the main loop. Whatever requested the exit
589          * will also have set something else (eg exit_request or
590          * interrupt_request) which we will handle next time around
591          * the loop.  But we need to ensure the zeroing of icount_decr
592          * comes before the next read of cpu->exit_request
593          * or cpu->interrupt_request.
594          */
595         smp_mb();
596         return;
597     }
598
599     /* Instruction counter expired.  */
600     assert(use_icount);
601 #ifndef CONFIG_USER_ONLY
602     if (cpu->icount_extra) {
603         /* Refill decrementer and continue execution.  */
604         cpu->icount_extra += insns_left;
605         insns_left = MIN(0xffff, cpu->icount_extra);
606         cpu->icount_extra -= insns_left;
607         cpu->icount_decr.u16.low = insns_left;
608     } else {
609         /* Execute any remaining instructions, then let the main loop
610          * handle the next event.
611          */
612         if (insns_left > 0) {
613             cpu_exec_nocache(cpu, insns_left, tb, false);
614         }
615     }
616 #endif
617 }
618
619 /* main execution loop */
620
621 int cpu_exec(CPUState *cpu)
622 {
623     CPUClass *cc = CPU_GET_CLASS(cpu);
624     int ret;
625     SyncClocks sc = { 0 };
626
627     /* replay_interrupt may need current_cpu */
628     current_cpu = cpu;
629
630     if (cpu_handle_halt(cpu)) {
631         return EXCP_HALTED;
632     }
633
634     rcu_read_lock();
635
636     cc->cpu_exec_enter(cpu);
637
638     /* Calculate difference between guest clock and host clock.
639      * This delay includes the delay of the last cycle, so
640      * what we have to do is sleep until it is 0. As for the
641      * advance/delay we gain here, we try to fix it next time.
642      */
643     init_delay_params(&sc, cpu);
644
645     /* prepare setjmp context for exception handling */
646     if (sigsetjmp(cpu->jmp_env, 0) != 0) {
647 #if defined(__clang__) || !QEMU_GNUC_PREREQ(4, 6)
648         /* Some compilers wrongly smash all local variables after
649          * siglongjmp. There were bug reports for gcc 4.5.0 and clang.
650          * Reload essential local variables here for those compilers.
651          * Newer versions of gcc would complain about this code (-Wclobbered). */
652         cpu = current_cpu;
653         cc = CPU_GET_CLASS(cpu);
654 #else /* buggy compiler */
655         /* Assert that the compiler does not smash local variables. */
656         g_assert(cpu == current_cpu);
657         g_assert(cc == CPU_GET_CLASS(cpu));
658 #endif /* buggy compiler */
659         cpu->can_do_io = 1;
660         tb_lock_reset();
661         if (qemu_mutex_iothread_locked()) {
662             qemu_mutex_unlock_iothread();
663         }
664     }
665
666     /* if an exception is pending, we execute it here */
667     while (!cpu_handle_exception(cpu, &ret)) {
668         TranslationBlock *last_tb = NULL;
669         int tb_exit = 0;
670
671         while (!cpu_handle_interrupt(cpu, &last_tb)) {
672             TranslationBlock *tb = tb_find(cpu, last_tb, tb_exit);
673             cpu_loop_exec_tb(cpu, tb, &last_tb, &tb_exit);
674             /* Try to align the host and virtual clocks
675                if the guest is in advance */
676             align_clocks(&sc, cpu);
677         }
678     }
679
680     cc->cpu_exec_exit(cpu);
681     rcu_read_unlock();
682
683     return ret;
684 }
This page took 0.061153 seconds and 4 git commands to generate.