bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1 | /* |
陳韋任 | e965fc3 | 2012-02-06 14:02:55 +0800 | [diff] [blame] | 2 | * emulator main execution loop |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 66321a1 | 2005-04-06 20:47:48 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003-2005 Fabrice Bellard |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 5 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 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. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 10 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 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. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 15 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 16 | * You should have received a copy of the GNU Lesser General Public |
Blue Swirl | 8167ee8 | 2009-07-16 20:47:01 +0000 | [diff] [blame] | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 18 | */ |
Peter Maydell | 7b31bbc | 2016-01-26 18:16:56 +0000 | [diff] [blame] | 19 | #include "qemu/osdep.h" |
Blue Swirl | cea5f9a | 2011-05-15 16:03:25 +0000 | [diff] [blame] | 20 | #include "cpu.h" |
Yang Zhong | d9bb58e | 2017-06-02 14:06:44 +0800 | [diff] [blame] | 21 | #include "trace.h" |
Paolo Bonzini | 76cad71 | 2012-10-24 11:12:21 +0200 | [diff] [blame] | 22 | #include "disas/disas.h" |
Paolo Bonzini | 63c9155 | 2016-03-15 13:18:37 +0100 | [diff] [blame] | 23 | #include "exec/exec-all.h" |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 24 | #include "tcg.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 25 | #include "qemu/atomic.h" |
Paolo Bonzini | 9c17d61 | 2012-12-17 18:20:04 +0100 | [diff] [blame] | 26 | #include "sysemu/qtest.h" |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 27 | #include "qemu/timer.h" |
Paolo Bonzini | 9d82b5a | 2013-08-16 08:26:30 +0200 | [diff] [blame] | 28 | #include "exec/address-spaces.h" |
Paolo Bonzini | 79e2b9a | 2015-01-21 12:09:14 +0100 | [diff] [blame] | 29 | #include "qemu/rcu.h" |
Peter Crosthwaite | e1b8932 | 2015-05-30 23:11:45 -0700 | [diff] [blame] | 30 | #include "exec/tb-hash.h" |
Emilio G. Cota | f6bb84d | 2017-07-11 17:33:33 -0400 | [diff] [blame] | 31 | #include "exec/tb-lookup.h" |
Paolo Bonzini | 508127e | 2016-01-07 16:55:28 +0300 | [diff] [blame] | 32 | #include "exec/log.h" |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 33 | #include "qemu/main-loop.h" |
Pavel Dovgalyuk | 6220e90 | 2015-09-17 19:23:31 +0300 | [diff] [blame] | 34 | #if defined(TARGET_I386) && !defined(CONFIG_USER_ONLY) |
| 35 | #include "hw/i386/apic.h" |
| 36 | #endif |
Paolo Bonzini | d2528bd | 2017-03-03 12:01:16 +0100 | [diff] [blame] | 37 | #include "sysemu/cpus.h" |
Pavel Dovgalyuk | 6f06096 | 2015-09-17 19:24:16 +0300 | [diff] [blame] | 38 | #include "sysemu/replay.h" |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 39 | |
| 40 | /* -icount align implementation. */ |
| 41 | |
| 42 | typedef struct SyncClocks { |
| 43 | int64_t diff_clk; |
| 44 | int64_t last_cpu_icount; |
Sebastian Tanase | 7f7bc14 | 2014-07-25 11:56:32 +0200 | [diff] [blame] | 45 | int64_t realtime_clock; |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 46 | } SyncClocks; |
| 47 | |
| 48 | #if !defined(CONFIG_USER_ONLY) |
| 49 | /* Allow the guest to have a max 3ms advance. |
| 50 | * The difference between the 2 clocks could therefore |
| 51 | * oscillate around 0. |
| 52 | */ |
| 53 | #define VM_CLOCK_ADVANCE 3000000 |
Sebastian Tanase | 7f7bc14 | 2014-07-25 11:56:32 +0200 | [diff] [blame] | 54 | #define THRESHOLD_REDUCE 1.5 |
| 55 | #define MAX_DELAY_PRINT_RATE 2000000000LL |
| 56 | #define MAX_NB_PRINTS 100 |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 57 | |
| 58 | static void align_clocks(SyncClocks *sc, const CPUState *cpu) |
| 59 | { |
| 60 | int64_t cpu_icount; |
| 61 | |
| 62 | if (!icount_align_option) { |
| 63 | return; |
| 64 | } |
| 65 | |
| 66 | cpu_icount = cpu->icount_extra + cpu->icount_decr.u16.low; |
| 67 | sc->diff_clk += cpu_icount_to_ns(sc->last_cpu_icount - cpu_icount); |
| 68 | sc->last_cpu_icount = cpu_icount; |
| 69 | |
| 70 | if (sc->diff_clk > VM_CLOCK_ADVANCE) { |
| 71 | #ifndef _WIN32 |
| 72 | struct timespec sleep_delay, rem_delay; |
| 73 | sleep_delay.tv_sec = sc->diff_clk / 1000000000LL; |
| 74 | sleep_delay.tv_nsec = sc->diff_clk % 1000000000LL; |
| 75 | if (nanosleep(&sleep_delay, &rem_delay) < 0) { |
Paolo Bonzini | a498d0e | 2015-01-28 10:09:55 +0100 | [diff] [blame] | 76 | sc->diff_clk = rem_delay.tv_sec * 1000000000LL + rem_delay.tv_nsec; |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 77 | } else { |
| 78 | sc->diff_clk = 0; |
| 79 | } |
| 80 | #else |
| 81 | Sleep(sc->diff_clk / SCALE_MS); |
| 82 | sc->diff_clk = 0; |
| 83 | #endif |
| 84 | } |
| 85 | } |
| 86 | |
Sebastian Tanase | 7f7bc14 | 2014-07-25 11:56:32 +0200 | [diff] [blame] | 87 | static void print_delay(const SyncClocks *sc) |
| 88 | { |
| 89 | static float threshold_delay; |
| 90 | static int64_t last_realtime_clock; |
| 91 | static int nb_prints; |
| 92 | |
| 93 | if (icount_align_option && |
| 94 | sc->realtime_clock - last_realtime_clock >= MAX_DELAY_PRINT_RATE && |
| 95 | nb_prints < MAX_NB_PRINTS) { |
| 96 | if ((-sc->diff_clk / (float)1000000000LL > threshold_delay) || |
| 97 | (-sc->diff_clk / (float)1000000000LL < |
| 98 | (threshold_delay - THRESHOLD_REDUCE))) { |
| 99 | threshold_delay = (-sc->diff_clk / 1000000000LL) + 1; |
| 100 | printf("Warning: The guest is now late by %.1f to %.1f seconds\n", |
| 101 | threshold_delay - 1, |
| 102 | threshold_delay); |
| 103 | nb_prints++; |
| 104 | last_realtime_clock = sc->realtime_clock; |
| 105 | } |
| 106 | } |
| 107 | } |
| 108 | |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 109 | static void init_delay_params(SyncClocks *sc, |
| 110 | const CPUState *cpu) |
| 111 | { |
| 112 | if (!icount_align_option) { |
| 113 | return; |
| 114 | } |
Paolo Bonzini | 2e91cc6 | 2015-01-28 10:16:37 +0100 | [diff] [blame] | 115 | sc->realtime_clock = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL_RT); |
| 116 | sc->diff_clk = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) - sc->realtime_clock; |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 117 | sc->last_cpu_icount = cpu->icount_extra + cpu->icount_decr.u16.low; |
Sebastian Tanase | 27498be | 2014-07-25 11:56:33 +0200 | [diff] [blame] | 118 | if (sc->diff_clk < max_delay) { |
| 119 | max_delay = sc->diff_clk; |
| 120 | } |
| 121 | if (sc->diff_clk > max_advance) { |
| 122 | max_advance = sc->diff_clk; |
| 123 | } |
Sebastian Tanase | 7f7bc14 | 2014-07-25 11:56:32 +0200 | [diff] [blame] | 124 | |
| 125 | /* Print every 2s max if the guest is late. We limit the number |
| 126 | of printed messages to NB_PRINT_MAX(currently 100) */ |
| 127 | print_delay(sc); |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 128 | } |
| 129 | #else |
| 130 | static void align_clocks(SyncClocks *sc, const CPUState *cpu) |
| 131 | { |
| 132 | } |
| 133 | |
| 134 | static void init_delay_params(SyncClocks *sc, const CPUState *cpu) |
| 135 | { |
| 136 | } |
| 137 | #endif /* CONFIG USER ONLY */ |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 138 | |
Peter Maydell | 7721137 | 2013-02-22 18:10:02 +0000 | [diff] [blame] | 139 | /* Execute a TB, and fix up the CPU state afterwards if necessary */ |
Peter Maydell | 1a83063 | 2016-03-15 14:30:19 +0000 | [diff] [blame] | 140 | static inline tcg_target_ulong cpu_tb_exec(CPUState *cpu, TranslationBlock *itb) |
Peter Maydell | 7721137 | 2013-02-22 18:10:02 +0000 | [diff] [blame] | 141 | { |
| 142 | CPUArchState *env = cpu->env_ptr; |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 143 | uintptr_t ret; |
| 144 | TranslationBlock *last_tb; |
| 145 | int tb_exit; |
Emilio G. Cota | e7e168f | 2017-07-12 00:08:21 -0400 | [diff] [blame] | 146 | uint8_t *tb_ptr = itb->tc.ptr; |
Peter Maydell | 1a83063 | 2016-03-15 14:30:19 +0000 | [diff] [blame] | 147 | |
Alex Bennée | d977e1c | 2016-03-15 14:30:21 +0000 | [diff] [blame] | 148 | qemu_log_mask_and_addr(CPU_LOG_EXEC, itb->pc, |
Alex Bennée | 4426f83 | 2016-10-27 16:10:01 +0100 | [diff] [blame] | 149 | "Trace %p [%d: " TARGET_FMT_lx "] %s\n", |
Emilio G. Cota | e7e168f | 2017-07-12 00:08:21 -0400 | [diff] [blame] | 150 | itb->tc.ptr, cpu->cpu_index, itb->pc, |
Alex Bennée | 4426f83 | 2016-10-27 16:10:01 +0100 | [diff] [blame] | 151 | lookup_symbol(itb->pc)); |
Richard Henderson | 03afa5f | 2013-11-06 17:29:39 +1000 | [diff] [blame] | 152 | |
| 153 | #if defined(DEBUG_DISAS) |
Richard Henderson | be2208e | 2016-07-12 23:39:16 -0700 | [diff] [blame] | 154 | if (qemu_loglevel_mask(CPU_LOG_TB_CPU) |
| 155 | && qemu_log_in_addr_range(itb->pc)) { |
Richard Henderson | 1ee7321 | 2016-09-22 15:17:10 -0700 | [diff] [blame] | 156 | qemu_log_lock(); |
Richard Henderson | 03afa5f | 2013-11-06 17:29:39 +1000 | [diff] [blame] | 157 | #if defined(TARGET_I386) |
| 158 | log_cpu_state(cpu, CPU_DUMP_CCOP); |
Richard Henderson | 03afa5f | 2013-11-06 17:29:39 +1000 | [diff] [blame] | 159 | #else |
| 160 | log_cpu_state(cpu, 0); |
| 161 | #endif |
Richard Henderson | 1ee7321 | 2016-09-22 15:17:10 -0700 | [diff] [blame] | 162 | qemu_log_unlock(); |
Richard Henderson | 03afa5f | 2013-11-06 17:29:39 +1000 | [diff] [blame] | 163 | } |
| 164 | #endif /* DEBUG_DISAS */ |
| 165 | |
Paolo Bonzini | 414b15c | 2015-06-24 14:16:26 +0200 | [diff] [blame] | 166 | cpu->can_do_io = !use_icount; |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 167 | ret = tcg_qemu_tb_exec(env, tb_ptr); |
Pavel Dovgalyuk | 626cf8f | 2014-12-08 10:53:17 +0300 | [diff] [blame] | 168 | cpu->can_do_io = 1; |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 169 | last_tb = (TranslationBlock *)(ret & ~TB_EXIT_MASK); |
| 170 | tb_exit = ret & TB_EXIT_MASK; |
| 171 | trace_exec_tb_exit(last_tb, tb_exit); |
Alex Bennée | 6db8b53 | 2014-08-01 17:08:57 +0100 | [diff] [blame] | 172 | |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 173 | if (tb_exit > TB_EXIT_IDX1) { |
Peter Maydell | 7721137 | 2013-02-22 18:10:02 +0000 | [diff] [blame] | 174 | /* We didn't start executing this TB (eg because the instruction |
| 175 | * counter hit zero); we must restore the guest PC to the address |
| 176 | * of the start of the TB. |
| 177 | */ |
Andreas Färber | bdf7ae5 | 2013-06-28 19:31:32 +0200 | [diff] [blame] | 178 | CPUClass *cc = CPU_GET_CLASS(cpu); |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 179 | qemu_log_mask_and_addr(CPU_LOG_EXEC, last_tb->pc, |
Alex Bennée | d977e1c | 2016-03-15 14:30:21 +0000 | [diff] [blame] | 180 | "Stopped execution of TB chain before %p [" |
| 181 | TARGET_FMT_lx "] %s\n", |
Emilio G. Cota | e7e168f | 2017-07-12 00:08:21 -0400 | [diff] [blame] | 182 | last_tb->tc.ptr, last_tb->pc, |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 183 | lookup_symbol(last_tb->pc)); |
Andreas Färber | bdf7ae5 | 2013-06-28 19:31:32 +0200 | [diff] [blame] | 184 | if (cc->synchronize_from_tb) { |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 185 | cc->synchronize_from_tb(cpu, last_tb); |
Andreas Färber | bdf7ae5 | 2013-06-28 19:31:32 +0200 | [diff] [blame] | 186 | } else { |
| 187 | assert(cc->set_pc); |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 188 | cc->set_pc(cpu, last_tb->pc); |
Andreas Färber | bdf7ae5 | 2013-06-28 19:31:32 +0200 | [diff] [blame] | 189 | } |
Peter Maydell | 7721137 | 2013-02-22 18:10:02 +0000 | [diff] [blame] | 190 | } |
Sergey Fedorov | 819af24 | 2016-04-21 15:58:23 +0300 | [diff] [blame] | 191 | return ret; |
Peter Maydell | 7721137 | 2013-02-22 18:10:02 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Paolo Bonzini | 7687bf5 | 2015-08-11 11:05:12 +0200 | [diff] [blame] | 194 | #ifndef CONFIG_USER_ONLY |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 195 | /* Execute the code without caching the generated code. An interpreter |
| 196 | could be used if available. */ |
Peter Crosthwaite | ea3e984 | 2015-06-18 10:24:55 -0700 | [diff] [blame] | 197 | static void cpu_exec_nocache(CPUState *cpu, int max_cycles, |
Pavel Dovgalyuk | 56c0269 | 2015-09-17 19:23:59 +0300 | [diff] [blame] | 198 | TranslationBlock *orig_tb, bool ignore_icount) |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 199 | { |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 200 | TranslationBlock *tb; |
| 201 | |
| 202 | /* Should never happen. |
| 203 | We only end up here when an existing TB is too long. */ |
| 204 | if (max_cycles > CF_COUNT_MASK) |
| 205 | max_cycles = CF_COUNT_MASK; |
| 206 | |
KONRAD Frederic | a5e9982 | 2016-10-27 16:10:06 +0100 | [diff] [blame] | 207 | tb_lock(); |
Sergey Fedorov | 02d57ea | 2015-06-30 12:35:09 +0300 | [diff] [blame] | 208 | tb = tb_gen_code(cpu, orig_tb->pc, orig_tb->cs_base, orig_tb->flags, |
Pavel Dovgalyuk | 56c0269 | 2015-09-17 19:23:59 +0300 | [diff] [blame] | 209 | max_cycles | CF_NOCACHE |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 210 | | (ignore_icount ? CF_IGNORE_ICOUNT : 0) |
| 211 | | curr_cflags()); |
Sergey Fedorov | 3359baa | 2016-08-02 18:27:43 +0100 | [diff] [blame] | 212 | tb->orig_tb = orig_tb; |
KONRAD Frederic | a5e9982 | 2016-10-27 16:10:06 +0100 | [diff] [blame] | 213 | tb_unlock(); |
| 214 | |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 215 | /* execute the generated code */ |
Alex Bennée | 6db8b53 | 2014-08-01 17:08:57 +0100 | [diff] [blame] | 216 | trace_exec_tb_nocache(tb, tb->pc); |
Peter Maydell | 1a83063 | 2016-03-15 14:30:19 +0000 | [diff] [blame] | 217 | cpu_tb_exec(cpu, tb); |
KONRAD Frederic | a5e9982 | 2016-10-27 16:10:06 +0100 | [diff] [blame] | 218 | |
| 219 | tb_lock(); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 220 | tb_phys_invalidate(tb, -1); |
| 221 | tb_free(tb); |
KONRAD Frederic | a5e9982 | 2016-10-27 16:10:06 +0100 | [diff] [blame] | 222 | tb_unlock(); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 223 | } |
Paolo Bonzini | 7687bf5 | 2015-08-11 11:05:12 +0200 | [diff] [blame] | 224 | #endif |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 225 | |
Richard Henderson | fdbc2b5 | 2016-06-29 22:12:55 -0700 | [diff] [blame] | 226 | static void cpu_exec_step(CPUState *cpu) |
| 227 | { |
Pranith Kumar | 08e73c4 | 2017-02-23 18:29:15 +0000 | [diff] [blame] | 228 | CPUClass *cc = CPU_GET_CLASS(cpu); |
Richard Henderson | fdbc2b5 | 2016-06-29 22:12:55 -0700 | [diff] [blame] | 229 | TranslationBlock *tb; |
| 230 | target_ulong cs_base, pc; |
| 231 | uint32_t flags; |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 232 | uint32_t cflags = 1 | CF_IGNORE_ICOUNT; |
Richard Henderson | fdbc2b5 | 2016-06-29 22:12:55 -0700 | [diff] [blame] | 233 | |
Pranith Kumar | 08e73c4 | 2017-02-23 18:29:15 +0000 | [diff] [blame] | 234 | if (sigsetjmp(cpu->jmp_env, 0) == 0) { |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 235 | tb = tb_lookup__cpu_state(cpu, &pc, &cs_base, &flags, |
| 236 | cflags & CF_HASH_MASK); |
| 237 | if (tb == NULL) { |
| 238 | mmap_lock(); |
| 239 | tb_lock(); |
| 240 | tb = tb_gen_code(cpu, pc, cs_base, flags, cflags); |
| 241 | tb_unlock(); |
| 242 | mmap_unlock(); |
| 243 | } |
Pranith Kumar | 08e73c4 | 2017-02-23 18:29:15 +0000 | [diff] [blame] | 244 | |
| 245 | cc->cpu_exec_enter(cpu); |
| 246 | /* execute the generated code */ |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 247 | trace_exec_tb(tb, pc); |
Pranith Kumar | 08e73c4 | 2017-02-23 18:29:15 +0000 | [diff] [blame] | 248 | cpu_tb_exec(cpu, tb); |
| 249 | cc->cpu_exec_exit(cpu); |
Pranith Kumar | 08e73c4 | 2017-02-23 18:29:15 +0000 | [diff] [blame] | 250 | } else { |
| 251 | /* We may have exited due to another problem here, so we need |
| 252 | * to reset any tb_locks we may have taken but didn't release. |
| 253 | * The mmap_lock is dropped by tb_gen_code if it runs out of |
| 254 | * memory. |
| 255 | */ |
| 256 | #ifndef CONFIG_SOFTMMU |
| 257 | tcg_debug_assert(!have_mmap_lock()); |
| 258 | #endif |
| 259 | tb_lock_reset(); |
| 260 | } |
Richard Henderson | fdbc2b5 | 2016-06-29 22:12:55 -0700 | [diff] [blame] | 261 | } |
| 262 | |
| 263 | void cpu_exec_step_atomic(CPUState *cpu) |
| 264 | { |
| 265 | start_exclusive(); |
| 266 | |
| 267 | /* Since we got here, we know that parallel_cpus must be true. */ |
| 268 | parallel_cpus = false; |
| 269 | cpu_exec_step(cpu); |
| 270 | parallel_cpus = true; |
| 271 | |
| 272 | end_exclusive(); |
| 273 | } |
| 274 | |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 275 | struct tb_desc { |
| 276 | target_ulong pc; |
| 277 | target_ulong cs_base; |
| 278 | CPUArchState *env; |
| 279 | tb_page_addr_t phys_page1; |
| 280 | uint32_t flags; |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 281 | uint32_t cf_mask; |
Lluís Vilanova | 61a67f7 | 2017-07-04 10:42:32 +0200 | [diff] [blame] | 282 | uint32_t trace_vcpu_dstate; |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 283 | }; |
| 284 | |
| 285 | static bool tb_cmp(const void *p, const void *d) |
| 286 | { |
| 287 | const TranslationBlock *tb = p; |
| 288 | const struct tb_desc *desc = d; |
| 289 | |
| 290 | if (tb->pc == desc->pc && |
| 291 | tb->page_addr[0] == desc->phys_page1 && |
| 292 | tb->cs_base == desc->cs_base && |
Paolo Bonzini | 6d21e42 | 2016-07-19 08:36:18 +0200 | [diff] [blame] | 293 | tb->flags == desc->flags && |
Lluís Vilanova | 61a67f7 | 2017-07-04 10:42:32 +0200 | [diff] [blame] | 294 | tb->trace_vcpu_dstate == desc->trace_vcpu_dstate && |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 295 | (tb_cflags(tb) & (CF_HASH_MASK | CF_INVALID)) == desc->cf_mask) { |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 296 | /* check next page if needed */ |
| 297 | if (tb->page_addr[1] == -1) { |
| 298 | return true; |
| 299 | } else { |
| 300 | tb_page_addr_t phys_page2; |
| 301 | target_ulong virt_page2; |
| 302 | |
| 303 | virt_page2 = (desc->pc & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE; |
| 304 | phys_page2 = get_page_addr_code(desc->env, virt_page2); |
| 305 | if (tb->page_addr[1] == phys_page2) { |
| 306 | return true; |
| 307 | } |
| 308 | } |
| 309 | } |
| 310 | return false; |
| 311 | } |
| 312 | |
Emilio G. Cota | cedbcb0 | 2017-04-26 23:29:14 -0400 | [diff] [blame] | 313 | TranslationBlock *tb_htable_lookup(CPUState *cpu, target_ulong pc, |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 314 | target_ulong cs_base, uint32_t flags, |
| 315 | uint32_t cf_mask) |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 316 | { |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 317 | tb_page_addr_t phys_pc; |
| 318 | struct tb_desc desc; |
Emilio G. Cota | 42bd322 | 2016-06-08 14:55:25 -0400 | [diff] [blame] | 319 | uint32_t h; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 320 | |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 321 | desc.env = (CPUArchState *)cpu->env_ptr; |
| 322 | desc.cs_base = cs_base; |
| 323 | desc.flags = flags; |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 324 | desc.cf_mask = cf_mask; |
Lluís Vilanova | 61a67f7 | 2017-07-04 10:42:32 +0200 | [diff] [blame] | 325 | desc.trace_vcpu_dstate = *cpu->trace_dstate; |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 326 | desc.pc = pc; |
| 327 | phys_pc = get_page_addr_code(desc.env, pc); |
| 328 | desc.phys_page1 = phys_pc & TARGET_PAGE_MASK; |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 329 | h = tb_hash_func(phys_pc, pc, flags, cf_mask, *cpu->trace_dstate); |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 330 | return qht_lookup(&tcg_ctx.tb_ctx.htable, tb_cmp, &desc, h); |
Paolo Bonzini | 9fd1a94 | 2015-08-11 11:33:24 +0200 | [diff] [blame] | 331 | } |
| 332 | |
Richard Henderson | a858339 | 2017-07-31 22:02:31 -0700 | [diff] [blame] | 333 | void tb_set_jmp_target(TranslationBlock *tb, int n, uintptr_t addr) |
| 334 | { |
| 335 | if (TCG_TARGET_HAS_direct_jump) { |
| 336 | uintptr_t offset = tb->jmp_target_arg[n]; |
Emilio G. Cota | e7e168f | 2017-07-12 00:08:21 -0400 | [diff] [blame] | 337 | uintptr_t tc_ptr = (uintptr_t)tb->tc.ptr; |
Richard Henderson | a858339 | 2017-07-31 22:02:31 -0700 | [diff] [blame] | 338 | tb_target_set_jmp_target(tc_ptr, tc_ptr + offset, addr); |
| 339 | } else { |
| 340 | tb->jmp_target_arg[n] = addr; |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | /* Called with tb_lock held. */ |
| 345 | static inline void tb_add_jump(TranslationBlock *tb, int n, |
| 346 | TranslationBlock *tb_next) |
| 347 | { |
| 348 | assert(n < ARRAY_SIZE(tb->jmp_list_next)); |
| 349 | if (tb->jmp_list_next[n]) { |
| 350 | /* Another thread has already done this while we were |
| 351 | * outside of the lock; nothing to do in this case */ |
| 352 | return; |
| 353 | } |
| 354 | qemu_log_mask_and_addr(CPU_LOG_EXEC, tb->pc, |
| 355 | "Linking TBs %p [" TARGET_FMT_lx |
| 356 | "] index %d -> %p [" TARGET_FMT_lx "]\n", |
Emilio G. Cota | e7e168f | 2017-07-12 00:08:21 -0400 | [diff] [blame] | 357 | tb->tc.ptr, tb->pc, n, |
| 358 | tb_next->tc.ptr, tb_next->pc); |
Richard Henderson | a858339 | 2017-07-31 22:02:31 -0700 | [diff] [blame] | 359 | |
| 360 | /* patch the native jump address */ |
Emilio G. Cota | e7e168f | 2017-07-12 00:08:21 -0400 | [diff] [blame] | 361 | tb_set_jmp_target(tb, n, (uintptr_t)tb_next->tc.ptr); |
Richard Henderson | a858339 | 2017-07-31 22:02:31 -0700 | [diff] [blame] | 362 | |
| 363 | /* add in TB jmp circular list */ |
| 364 | tb->jmp_list_next[n] = tb_next->jmp_list_first; |
| 365 | tb_next->jmp_list_first = (uintptr_t)tb | n; |
| 366 | } |
| 367 | |
Sergey Fedorov | bd2710d | 2016-07-15 20:58:51 +0300 | [diff] [blame] | 368 | static inline TranslationBlock *tb_find(CPUState *cpu, |
| 369 | TranslationBlock *last_tb, |
Richard Henderson | 9b990ee | 2017-10-13 10:50:02 -0700 | [diff] [blame^] | 370 | int tb_exit, uint32_t cf_mask) |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 371 | { |
| 372 | TranslationBlock *tb; |
| 373 | target_ulong cs_base, pc; |
Emilio G. Cota | 89fee74 | 2016-04-07 13:19:22 -0400 | [diff] [blame] | 374 | uint32_t flags; |
Emilio G. Cota | 841710c | 2017-07-12 14:29:26 -0400 | [diff] [blame] | 375 | bool acquired_tb_lock = false; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 376 | |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 377 | tb = tb_lookup__cpu_state(cpu, &pc, &cs_base, &flags, cf_mask); |
Emilio G. Cota | f6bb84d | 2017-07-11 17:33:33 -0400 | [diff] [blame] | 378 | if (tb == NULL) { |
| 379 | /* mmap_lock is needed by tb_gen_code, and mmap_lock must be |
| 380 | * taken outside tb_lock. As system emulation is currently |
| 381 | * single threaded the locks are NOPs. |
| 382 | */ |
| 383 | mmap_lock(); |
| 384 | tb_lock(); |
| 385 | acquired_tb_lock = true; |
| 386 | |
| 387 | /* There's a chance that our desired tb has been translated while |
| 388 | * taking the locks so we check again inside the lock. |
| 389 | */ |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 390 | tb = tb_htable_lookup(cpu, pc, cs_base, flags, cf_mask); |
Emilio G. Cota | f6bb84d | 2017-07-11 17:33:33 -0400 | [diff] [blame] | 391 | if (likely(tb == NULL)) { |
| 392 | /* if no translated code available, then translate it now */ |
Emilio G. Cota | 4e2ca83 | 2017-07-11 14:29:37 -0400 | [diff] [blame] | 393 | tb = tb_gen_code(cpu, pc, cs_base, flags, cf_mask); |
Sergey Fedorov | bd2710d | 2016-07-15 20:58:51 +0300 | [diff] [blame] | 394 | } |
| 395 | |
Emilio G. Cota | f6bb84d | 2017-07-11 17:33:33 -0400 | [diff] [blame] | 396 | mmap_unlock(); |
Sergey Fedorov | bd2710d | 2016-07-15 20:58:51 +0300 | [diff] [blame] | 397 | /* We add the TB in the virtual pc hash table for the fast lookup */ |
| 398 | atomic_set(&cpu->tb_jmp_cache[tb_jmp_cache_hash_func(pc)], tb); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 399 | } |
Sergey Fedorov | c88c67e | 2016-05-16 16:13:00 +0300 | [diff] [blame] | 400 | #ifndef CONFIG_USER_ONLY |
| 401 | /* We don't take care of direct jumps when address mapping changes in |
| 402 | * system emulation. So it's not safe to make a direct jump to a TB |
| 403 | * spanning two pages because the mapping for the second page can change. |
| 404 | */ |
| 405 | if (tb->page_addr[1] != -1) { |
Sergey Fedorov | 4b7e695 | 2016-07-15 20:58:42 +0300 | [diff] [blame] | 406 | last_tb = NULL; |
Sergey Fedorov | c88c67e | 2016-05-16 16:13:00 +0300 | [diff] [blame] | 407 | } |
| 408 | #endif |
Sergey Fedorov | a0522c7 | 2016-04-25 18:17:30 +0300 | [diff] [blame] | 409 | /* See if we can patch the calling TB. */ |
Sergey Fedorov | 4b7e695 | 2016-07-15 20:58:42 +0300 | [diff] [blame] | 410 | if (last_tb && !qemu_loglevel_mask(CPU_LOG_TB_NOCHAIN)) { |
Emilio G. Cota | 841710c | 2017-07-12 14:29:26 -0400 | [diff] [blame] | 411 | if (!acquired_tb_lock) { |
Sergey Fedorov | 74d356d | 2016-07-15 20:58:50 +0300 | [diff] [blame] | 412 | tb_lock(); |
Emilio G. Cota | 841710c | 2017-07-12 14:29:26 -0400 | [diff] [blame] | 413 | acquired_tb_lock = true; |
Sergey Fedorov | 74d356d | 2016-07-15 20:58:50 +0300 | [diff] [blame] | 414 | } |
Emilio G. Cota | 84f1c14 | 2017-07-10 20:03:50 -0400 | [diff] [blame] | 415 | if (!(tb->cflags & CF_INVALID)) { |
Sergey Fedorov | 118b073 | 2016-07-15 20:58:44 +0300 | [diff] [blame] | 416 | tb_add_jump(last_tb, tb_exit, tb); |
| 417 | } |
Sergey Fedorov | 74d356d | 2016-07-15 20:58:50 +0300 | [diff] [blame] | 418 | } |
Emilio G. Cota | 841710c | 2017-07-12 14:29:26 -0400 | [diff] [blame] | 419 | if (acquired_tb_lock) { |
Alex Bennée | 518615c | 2016-07-15 20:58:49 +0300 | [diff] [blame] | 420 | tb_unlock(); |
Sergey Fedorov | a0522c7 | 2016-04-25 18:17:30 +0300 | [diff] [blame] | 421 | } |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 422 | return tb; |
| 423 | } |
| 424 | |
Sergey Fedorov | 8b2d34e | 2016-05-11 13:21:47 +0300 | [diff] [blame] | 425 | static inline bool cpu_handle_halt(CPUState *cpu) |
| 426 | { |
| 427 | if (cpu->halted) { |
| 428 | #if defined(TARGET_I386) && !defined(CONFIG_USER_ONLY) |
| 429 | if ((cpu->interrupt_request & CPU_INTERRUPT_POLL) |
| 430 | && replay_interrupt()) { |
| 431 | X86CPU *x86_cpu = X86_CPU(cpu); |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 432 | qemu_mutex_lock_iothread(); |
Sergey Fedorov | 8b2d34e | 2016-05-11 13:21:47 +0300 | [diff] [blame] | 433 | apic_poll_irq(x86_cpu->apic_state); |
| 434 | cpu_reset_interrupt(cpu, CPU_INTERRUPT_POLL); |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 435 | qemu_mutex_unlock_iothread(); |
Sergey Fedorov | 8b2d34e | 2016-05-11 13:21:47 +0300 | [diff] [blame] | 436 | } |
| 437 | #endif |
| 438 | if (!cpu_has_work(cpu)) { |
Sergey Fedorov | 8b2d34e | 2016-05-11 13:21:47 +0300 | [diff] [blame] | 439 | return true; |
| 440 | } |
| 441 | |
| 442 | cpu->halted = 0; |
| 443 | } |
| 444 | |
| 445 | return false; |
| 446 | } |
| 447 | |
Sergey Fedorov | ea28476 | 2016-05-11 13:21:48 +0300 | [diff] [blame] | 448 | static inline void cpu_handle_debug_exception(CPUState *cpu) |
Jan Kiszka | 1009d2e | 2011-03-15 12:26:13 +0100 | [diff] [blame] | 449 | { |
Peter Maydell | 86025ee | 2014-09-12 14:06:48 +0100 | [diff] [blame] | 450 | CPUClass *cc = CPU_GET_CLASS(cpu); |
Jan Kiszka | 1009d2e | 2011-03-15 12:26:13 +0100 | [diff] [blame] | 451 | CPUWatchpoint *wp; |
| 452 | |
Andreas Färber | ff4700b | 2013-08-26 18:23:18 +0200 | [diff] [blame] | 453 | if (!cpu->watchpoint_hit) { |
| 454 | QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) { |
Jan Kiszka | 1009d2e | 2011-03-15 12:26:13 +0100 | [diff] [blame] | 455 | wp->flags &= ~BP_WATCHPOINT_HIT; |
| 456 | } |
| 457 | } |
Peter Maydell | 86025ee | 2014-09-12 14:06:48 +0100 | [diff] [blame] | 458 | |
| 459 | cc->debug_excp_handler(cpu); |
Jan Kiszka | 1009d2e | 2011-03-15 12:26:13 +0100 | [diff] [blame] | 460 | } |
| 461 | |
Sergey Fedorov | ea28476 | 2016-05-11 13:21:48 +0300 | [diff] [blame] | 462 | static inline bool cpu_handle_exception(CPUState *cpu, int *ret) |
| 463 | { |
| 464 | if (cpu->exception_index >= 0) { |
| 465 | if (cpu->exception_index >= EXCP_INTERRUPT) { |
| 466 | /* exit request from the cpu execution loop */ |
| 467 | *ret = cpu->exception_index; |
| 468 | if (*ret == EXCP_DEBUG) { |
| 469 | cpu_handle_debug_exception(cpu); |
| 470 | } |
| 471 | cpu->exception_index = -1; |
| 472 | return true; |
| 473 | } else { |
| 474 | #if defined(CONFIG_USER_ONLY) |
| 475 | /* if user mode only, we simulate a fake exception |
| 476 | which will be handled outside the cpu execution |
| 477 | loop */ |
| 478 | #if defined(TARGET_I386) |
| 479 | CPUClass *cc = CPU_GET_CLASS(cpu); |
| 480 | cc->do_interrupt(cpu); |
| 481 | #endif |
| 482 | *ret = cpu->exception_index; |
| 483 | cpu->exception_index = -1; |
| 484 | return true; |
| 485 | #else |
| 486 | if (replay_exception()) { |
| 487 | CPUClass *cc = CPU_GET_CLASS(cpu); |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 488 | qemu_mutex_lock_iothread(); |
Sergey Fedorov | ea28476 | 2016-05-11 13:21:48 +0300 | [diff] [blame] | 489 | cc->do_interrupt(cpu); |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 490 | qemu_mutex_unlock_iothread(); |
Sergey Fedorov | ea28476 | 2016-05-11 13:21:48 +0300 | [diff] [blame] | 491 | cpu->exception_index = -1; |
| 492 | } else if (!replay_has_interrupt()) { |
| 493 | /* give a chance to iothread in replay mode */ |
| 494 | *ret = EXCP_INTERRUPT; |
| 495 | return true; |
| 496 | } |
| 497 | #endif |
| 498 | } |
| 499 | #ifndef CONFIG_USER_ONLY |
| 500 | } else if (replay_has_exception() |
| 501 | && cpu->icount_decr.u16.low + cpu->icount_extra == 0) { |
| 502 | /* try to cause an exception pending in the log */ |
Richard Henderson | 9b990ee | 2017-10-13 10:50:02 -0700 | [diff] [blame^] | 503 | cpu_exec_nocache(cpu, 1, tb_find(cpu, NULL, 0, curr_cflags()), true); |
Sergey Fedorov | ea28476 | 2016-05-11 13:21:48 +0300 | [diff] [blame] | 504 | *ret = -1; |
| 505 | return true; |
| 506 | #endif |
| 507 | } |
| 508 | |
| 509 | return false; |
| 510 | } |
| 511 | |
Paolo Bonzini | 209b71b | 2017-01-27 10:57:18 +0100 | [diff] [blame] | 512 | static inline bool cpu_handle_interrupt(CPUState *cpu, |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 513 | TranslationBlock **last_tb) |
| 514 | { |
| 515 | CPUClass *cc = CPU_GET_CLASS(cpu); |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 516 | |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 517 | if (unlikely(atomic_read(&cpu->interrupt_request))) { |
| 518 | int interrupt_request; |
| 519 | qemu_mutex_lock_iothread(); |
| 520 | interrupt_request = cpu->interrupt_request; |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 521 | if (unlikely(cpu->singlestep_enabled & SSTEP_NOIRQ)) { |
| 522 | /* Mask out external interrupts for this step. */ |
| 523 | interrupt_request &= ~CPU_INTERRUPT_SSTEP_MASK; |
| 524 | } |
| 525 | if (interrupt_request & CPU_INTERRUPT_DEBUG) { |
| 526 | cpu->interrupt_request &= ~CPU_INTERRUPT_DEBUG; |
| 527 | cpu->exception_index = EXCP_DEBUG; |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 528 | qemu_mutex_unlock_iothread(); |
Paolo Bonzini | 209b71b | 2017-01-27 10:57:18 +0100 | [diff] [blame] | 529 | return true; |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 530 | } |
| 531 | if (replay_mode == REPLAY_MODE_PLAY && !replay_has_interrupt()) { |
| 532 | /* Do nothing */ |
| 533 | } else if (interrupt_request & CPU_INTERRUPT_HALT) { |
| 534 | replay_interrupt(); |
| 535 | cpu->interrupt_request &= ~CPU_INTERRUPT_HALT; |
| 536 | cpu->halted = 1; |
| 537 | cpu->exception_index = EXCP_HLT; |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 538 | qemu_mutex_unlock_iothread(); |
Paolo Bonzini | 209b71b | 2017-01-27 10:57:18 +0100 | [diff] [blame] | 539 | return true; |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 540 | } |
| 541 | #if defined(TARGET_I386) |
| 542 | else if (interrupt_request & CPU_INTERRUPT_INIT) { |
| 543 | X86CPU *x86_cpu = X86_CPU(cpu); |
| 544 | CPUArchState *env = &x86_cpu->env; |
| 545 | replay_interrupt(); |
Paolo Bonzini | 65c9d60 | 2017-02-16 12:30:05 +0100 | [diff] [blame] | 546 | cpu_svm_check_intercept_param(env, SVM_EXIT_INIT, 0, 0); |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 547 | do_cpu_init(x86_cpu); |
| 548 | cpu->exception_index = EXCP_HALTED; |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 549 | qemu_mutex_unlock_iothread(); |
Paolo Bonzini | 209b71b | 2017-01-27 10:57:18 +0100 | [diff] [blame] | 550 | return true; |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 551 | } |
| 552 | #else |
| 553 | else if (interrupt_request & CPU_INTERRUPT_RESET) { |
| 554 | replay_interrupt(); |
| 555 | cpu_reset(cpu); |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 556 | qemu_mutex_unlock_iothread(); |
Paolo Bonzini | 209b71b | 2017-01-27 10:57:18 +0100 | [diff] [blame] | 557 | return true; |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 558 | } |
| 559 | #endif |
| 560 | /* The target hook has 3 exit conditions: |
| 561 | False when the interrupt isn't processed, |
| 562 | True when it is, and we should restart on a new TB, |
| 563 | and via longjmp via cpu_loop_exit. */ |
| 564 | else { |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 565 | if (cc->cpu_exec_interrupt(cpu, interrupt_request)) { |
Pavel Dovgalyuk | d718b14 | 2017-01-24 10:17:08 +0300 | [diff] [blame] | 566 | replay_interrupt(); |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 567 | *last_tb = NULL; |
| 568 | } |
Sergey Fedorov | 8b1fe3f | 2016-05-12 19:52:17 +0300 | [diff] [blame] | 569 | /* The target hook may have updated the 'cpu->interrupt_request'; |
| 570 | * reload the 'interrupt_request' value */ |
| 571 | interrupt_request = cpu->interrupt_request; |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 572 | } |
Sergey Fedorov | 8b1fe3f | 2016-05-12 19:52:17 +0300 | [diff] [blame] | 573 | if (interrupt_request & CPU_INTERRUPT_EXITTB) { |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 574 | cpu->interrupt_request &= ~CPU_INTERRUPT_EXITTB; |
| 575 | /* ensure that no TB jump will be modified as |
| 576 | the program flow was changed */ |
| 577 | *last_tb = NULL; |
| 578 | } |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 579 | |
| 580 | /* If we exit via cpu_loop_exit/longjmp it is reset in cpu_exec */ |
| 581 | qemu_mutex_unlock_iothread(); |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 582 | } |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 583 | |
Pavel Dovgalyuk | cfb2d02 | 2017-02-07 09:54:57 +0300 | [diff] [blame] | 584 | /* Finally, check if we need to exit to the main loop. */ |
| 585 | if (unlikely(atomic_read(&cpu->exit_request) |
| 586 | || (use_icount && cpu->icount_decr.u16.low + cpu->icount_extra == 0))) { |
Alex Bennée | 027d9a7 | 2016-09-30 22:30:59 +0100 | [diff] [blame] | 587 | atomic_set(&cpu->exit_request, 0); |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 588 | cpu->exception_index = EXCP_INTERRUPT; |
Paolo Bonzini | 209b71b | 2017-01-27 10:57:18 +0100 | [diff] [blame] | 589 | return true; |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 590 | } |
Paolo Bonzini | 209b71b | 2017-01-27 10:57:18 +0100 | [diff] [blame] | 591 | |
| 592 | return false; |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 593 | } |
| 594 | |
Sergey Fedorov | 928de9e | 2016-05-11 13:21:50 +0300 | [diff] [blame] | 595 | static inline void cpu_loop_exec_tb(CPUState *cpu, TranslationBlock *tb, |
Pavel Dovgalyuk | cfb2d02 | 2017-02-07 09:54:57 +0300 | [diff] [blame] | 596 | TranslationBlock **last_tb, int *tb_exit) |
Sergey Fedorov | 928de9e | 2016-05-11 13:21:50 +0300 | [diff] [blame] | 597 | { |
| 598 | uintptr_t ret; |
Paolo Bonzini | 1aab16c | 2017-01-27 11:25:33 +0100 | [diff] [blame] | 599 | int32_t insns_left; |
Sergey Fedorov | 928de9e | 2016-05-11 13:21:50 +0300 | [diff] [blame] | 600 | |
| 601 | trace_exec_tb(tb, tb->pc); |
| 602 | ret = cpu_tb_exec(cpu, tb); |
Paolo Bonzini | 43d70dd | 2017-01-29 12:00:59 +0100 | [diff] [blame] | 603 | tb = (TranslationBlock *)(ret & ~TB_EXIT_MASK); |
Sergey Fedorov | 928de9e | 2016-05-11 13:21:50 +0300 | [diff] [blame] | 604 | *tb_exit = ret & TB_EXIT_MASK; |
Paolo Bonzini | 1aab16c | 2017-01-27 11:25:33 +0100 | [diff] [blame] | 605 | if (*tb_exit != TB_EXIT_REQUESTED) { |
| 606 | *last_tb = tb; |
| 607 | return; |
| 608 | } |
| 609 | |
| 610 | *last_tb = NULL; |
| 611 | insns_left = atomic_read(&cpu->icount_decr.u32); |
| 612 | atomic_set(&cpu->icount_decr.u16.high, 0); |
| 613 | if (insns_left < 0) { |
Alex Bennée | e5143e3 | 2017-02-23 18:29:12 +0000 | [diff] [blame] | 614 | /* Something asked us to stop executing chained TBs; just |
| 615 | * continue round the main loop. Whatever requested the exit |
Paolo Bonzini | 30f3dda | 2017-03-03 16:39:18 +0100 | [diff] [blame] | 616 | * will also have set something else (eg exit_request or |
| 617 | * interrupt_request) which we will handle next time around |
| 618 | * the loop. But we need to ensure the zeroing of icount_decr |
Sergey Fedorov | 928de9e | 2016-05-11 13:21:50 +0300 | [diff] [blame] | 619 | * comes before the next read of cpu->exit_request |
| 620 | * or cpu->interrupt_request. |
| 621 | */ |
Paolo Bonzini | a70fe14 | 2017-01-29 12:15:15 +0100 | [diff] [blame] | 622 | smp_mb(); |
Paolo Bonzini | 1aab16c | 2017-01-27 11:25:33 +0100 | [diff] [blame] | 623 | return; |
| 624 | } |
| 625 | |
| 626 | /* Instruction counter expired. */ |
| 627 | assert(use_icount); |
| 628 | #ifndef CONFIG_USER_ONLY |
Alex Bennée | eda5f7c | 2017-04-05 12:35:48 +0100 | [diff] [blame] | 629 | /* Ensure global icount has gone forward */ |
| 630 | cpu_update_icount(cpu); |
| 631 | /* Refill decrementer and continue execution. */ |
| 632 | insns_left = MIN(0xffff, cpu->icount_budget); |
| 633 | cpu->icount_decr.u16.low = insns_left; |
| 634 | cpu->icount_extra = cpu->icount_budget - insns_left; |
| 635 | if (!cpu->icount_extra) { |
Paolo Bonzini | 1aab16c | 2017-01-27 11:25:33 +0100 | [diff] [blame] | 636 | /* Execute any remaining instructions, then let the main loop |
| 637 | * handle the next event. |
| 638 | */ |
| 639 | if (insns_left > 0) { |
| 640 | cpu_exec_nocache(cpu, insns_left, tb, false); |
Sergey Fedorov | 928de9e | 2016-05-11 13:21:50 +0300 | [diff] [blame] | 641 | } |
Paolo Bonzini | 1aab16c | 2017-01-27 11:25:33 +0100 | [diff] [blame] | 642 | } |
Sergey Fedorov | 928de9e | 2016-05-11 13:21:50 +0300 | [diff] [blame] | 643 | #endif |
Sergey Fedorov | 928de9e | 2016-05-11 13:21:50 +0300 | [diff] [blame] | 644 | } |
| 645 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 646 | /* main execution loop */ |
| 647 | |
Peter Crosthwaite | ea3e984 | 2015-06-18 10:24:55 -0700 | [diff] [blame] | 648 | int cpu_exec(CPUState *cpu) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 649 | { |
Andreas Färber | 97a8ea5 | 2013-02-02 10:57:51 +0100 | [diff] [blame] | 650 | CPUClass *cc = CPU_GET_CLASS(cpu); |
Sergey Fedorov | c385e6e | 2016-05-11 13:21:49 +0300 | [diff] [blame] | 651 | int ret; |
Pavel Dovgalyuk | cfb2d02 | 2017-02-07 09:54:57 +0300 | [diff] [blame] | 652 | SyncClocks sc = { 0 }; |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 653 | |
Pavel Dovgalyuk | 6f06096 | 2015-09-17 19:24:16 +0300 | [diff] [blame] | 654 | /* replay_interrupt may need current_cpu */ |
| 655 | current_cpu = cpu; |
| 656 | |
Sergey Fedorov | 8b2d34e | 2016-05-11 13:21:47 +0300 | [diff] [blame] | 657 | if (cpu_handle_halt(cpu)) { |
| 658 | return EXCP_HALTED; |
Paolo Bonzini | eda48c3 | 2011-03-12 17:43:56 +0100 | [diff] [blame] | 659 | } |
bellard | 5a1e3cf | 2005-11-23 21:02:53 +0000 | [diff] [blame] | 660 | |
Paolo Bonzini | 79e2b9a | 2015-01-21 12:09:14 +0100 | [diff] [blame] | 661 | rcu_read_lock(); |
| 662 | |
Richard Henderson | cffe7b3 | 2014-09-13 09:45:12 -0700 | [diff] [blame] | 663 | cc->cpu_exec_enter(cpu); |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 664 | |
Sebastian Tanase | c2aa5f8 | 2014-07-25 11:56:31 +0200 | [diff] [blame] | 665 | /* Calculate difference between guest clock and host clock. |
| 666 | * This delay includes the delay of the last cycle, so |
| 667 | * what we have to do is sleep until it is 0. As for the |
| 668 | * advance/delay we gain here, we try to fix it next time. |
| 669 | */ |
| 670 | init_delay_params(&sc, cpu); |
| 671 | |
Paolo Bonzini | 4515e58 | 2017-01-29 10:55:14 +0100 | [diff] [blame] | 672 | /* prepare setjmp context for exception handling */ |
| 673 | if (sigsetjmp(cpu->jmp_env, 0) != 0) { |
Stefan Weil | 0448f5f | 2015-09-26 13:23:26 +0200 | [diff] [blame] | 674 | #if defined(__clang__) || !QEMU_GNUC_PREREQ(4, 6) |
Paolo Bonzini | 4515e58 | 2017-01-29 10:55:14 +0100 | [diff] [blame] | 675 | /* Some compilers wrongly smash all local variables after |
| 676 | * siglongjmp. There were bug reports for gcc 4.5.0 and clang. |
| 677 | * Reload essential local variables here for those compilers. |
| 678 | * Newer versions of gcc would complain about this code (-Wclobbered). */ |
| 679 | cpu = current_cpu; |
| 680 | cc = CPU_GET_CLASS(cpu); |
Stefan Weil | 0448f5f | 2015-09-26 13:23:26 +0200 | [diff] [blame] | 681 | #else /* buggy compiler */ |
Paolo Bonzini | 4515e58 | 2017-01-29 10:55:14 +0100 | [diff] [blame] | 682 | /* Assert that the compiler does not smash local variables. */ |
| 683 | g_assert(cpu == current_cpu); |
| 684 | g_assert(cc == CPU_GET_CLASS(cpu)); |
Stefan Weil | 0448f5f | 2015-09-26 13:23:26 +0200 | [diff] [blame] | 685 | #endif /* buggy compiler */ |
Paolo Bonzini | 4515e58 | 2017-01-29 10:55:14 +0100 | [diff] [blame] | 686 | cpu->can_do_io = 1; |
| 687 | tb_lock_reset(); |
Jan Kiszka | 8d04fb5 | 2017-02-23 18:29:11 +0000 | [diff] [blame] | 688 | if (qemu_mutex_iothread_locked()) { |
| 689 | qemu_mutex_unlock_iothread(); |
| 690 | } |
Paolo Bonzini | 4515e58 | 2017-01-29 10:55:14 +0100 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | /* if an exception is pending, we execute it here */ |
| 694 | while (!cpu_handle_exception(cpu, &ret)) { |
| 695 | TranslationBlock *last_tb = NULL; |
| 696 | int tb_exit = 0; |
| 697 | |
| 698 | while (!cpu_handle_interrupt(cpu, &last_tb)) { |
Richard Henderson | 9b990ee | 2017-10-13 10:50:02 -0700 | [diff] [blame^] | 699 | uint32_t cflags = cpu->cflags_next_tb; |
| 700 | TranslationBlock *tb; |
| 701 | |
| 702 | /* When requested, use an exact setting for cflags for the next |
| 703 | execution. This is used for icount, precise smc, and stop- |
| 704 | after-access watchpoints. Since this request should never |
| 705 | have CF_INVALID set, -1 is a convenient invalid value that |
| 706 | does not require tcg headers for cpu_common_reset. */ |
| 707 | if (cflags == -1) { |
| 708 | cflags = curr_cflags(); |
| 709 | } else { |
| 710 | cpu->cflags_next_tb = -1; |
| 711 | } |
| 712 | |
| 713 | tb = tb_find(cpu, last_tb, tb_exit, cflags); |
Pavel Dovgalyuk | cfb2d02 | 2017-02-07 09:54:57 +0300 | [diff] [blame] | 714 | cpu_loop_exec_tb(cpu, tb, &last_tb, &tb_exit); |
Paolo Bonzini | 4515e58 | 2017-01-29 10:55:14 +0100 | [diff] [blame] | 715 | /* Try to align the host and virtual clocks |
| 716 | if the guest is in advance */ |
| 717 | align_clocks(&sc, cpu); |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 718 | } |
Paolo Bonzini | 4515e58 | 2017-01-29 10:55:14 +0100 | [diff] [blame] | 719 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 720 | |
Richard Henderson | cffe7b3 | 2014-09-13 09:45:12 -0700 | [diff] [blame] | 721 | cc->cpu_exec_exit(cpu); |
Paolo Bonzini | 79e2b9a | 2015-01-21 12:09:14 +0100 | [diff] [blame] | 722 | rcu_read_unlock(); |
pbrook | 1057eaa | 2007-02-04 13:37:44 +0000 | [diff] [blame] | 723 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 724 | return ret; |
| 725 | } |