bellard | d19893d | 2003-06-15 19:58:51 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Host code generation |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | d19893d | 2003-06-15 19:58:51 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003 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 |
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 | d19893d | 2003-06-15 19:58:51 +0000 | [diff] [blame] | 18 | */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 19 | #ifdef _WIN32 |
| 20 | #include <windows.h> |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 21 | #endif |
Peter Maydell | 7b31bbc | 2016-01-26 18:16:56 +0000 | [diff] [blame] | 22 | #include "qemu/osdep.h" |
bellard | d19893d | 2003-06-15 19:58:51 +0000 | [diff] [blame] | 23 | |
bellard | 2054396 | 2003-06-15 23:28:43 +0000 | [diff] [blame] | 24 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 25 | #include "qemu-common.h" |
bellard | af5ad10 | 2004-01-04 23:28:12 +0000 | [diff] [blame] | 26 | #define NO_CPU_IO_DEFS |
bellard | d3eead2 | 2003-09-30 20:59:51 +0000 | [diff] [blame] | 27 | #include "cpu.h" |
Alex Bennée | 6db8b53 | 2014-08-01 17:08:57 +0100 | [diff] [blame] | 28 | #include "trace.h" |
Paolo Bonzini | 76cad71 | 2012-10-24 11:12:21 +0200 | [diff] [blame] | 29 | #include "disas/disas.h" |
Paolo Bonzini | 63c9155 | 2016-03-15 13:18:37 +0100 | [diff] [blame] | 30 | #include "exec/exec-all.h" |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 31 | #include "tcg.h" |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 32 | #if defined(CONFIG_USER_ONLY) |
| 33 | #include "qemu.h" |
| 34 | #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) |
| 35 | #include <sys/param.h> |
| 36 | #if __FreeBSD_version >= 700104 |
| 37 | #define HAVE_KINFO_GETVMMAP |
| 38 | #define sigqueue sigqueue_freebsd /* avoid redefinition */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 39 | #include <sys/proc.h> |
| 40 | #include <machine/profile.h> |
| 41 | #define _KERNEL |
| 42 | #include <sys/user.h> |
| 43 | #undef _KERNEL |
| 44 | #undef sigqueue |
| 45 | #include <libutil.h> |
| 46 | #endif |
| 47 | #endif |
Paolo Bonzini | 0bc3cd6 | 2013-04-08 17:29:59 +0200 | [diff] [blame] | 48 | #else |
| 49 | #include "exec/address-spaces.h" |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 50 | #endif |
| 51 | |
Paolo Bonzini | 022c62c | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 52 | #include "exec/cputlb.h" |
Peter Crosthwaite | e1b8932 | 2015-05-30 23:11:45 -0700 | [diff] [blame] | 53 | #include "exec/tb-hash.h" |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 54 | #include "translate-all.h" |
Emilio G. Cota | 510a647 | 2015-04-22 17:50:52 -0400 | [diff] [blame] | 55 | #include "qemu/bitmap.h" |
Alexey Kardashevskiy | 0aa0989 | 2013-04-22 17:42:50 +1000 | [diff] [blame] | 56 | #include "qemu/timer.h" |
Paolo Bonzini | 508127e | 2016-01-07 16:55:28 +0300 | [diff] [blame] | 57 | #include "exec/log.h" |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 58 | |
| 59 | //#define DEBUG_TB_INVALIDATE |
| 60 | //#define DEBUG_FLUSH |
| 61 | /* make various TB consistency checks */ |
| 62 | //#define DEBUG_TB_CHECK |
| 63 | |
| 64 | #if !defined(CONFIG_USER_ONLY) |
| 65 | /* TB consistency checks only implemented for usermode emulation. */ |
| 66 | #undef DEBUG_TB_CHECK |
| 67 | #endif |
| 68 | |
| 69 | #define SMC_BITMAP_USE_THRESHOLD 10 |
| 70 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 71 | typedef struct PageDesc { |
| 72 | /* list of TBs intersecting this ram page */ |
| 73 | TranslationBlock *first_tb; |
Paolo Bonzini | 6fad459 | 2015-08-11 12:42:55 +0200 | [diff] [blame] | 74 | #ifdef CONFIG_SOFTMMU |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 75 | /* in order to optimize self modifying code, we count the number |
| 76 | of lookups we do to a given page to use a bitmap */ |
| 77 | unsigned int code_write_count; |
Emilio G. Cota | 510a647 | 2015-04-22 17:50:52 -0400 | [diff] [blame] | 78 | unsigned long *code_bitmap; |
Paolo Bonzini | 6fad459 | 2015-08-11 12:42:55 +0200 | [diff] [blame] | 79 | #else |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 80 | unsigned long flags; |
| 81 | #endif |
| 82 | } PageDesc; |
| 83 | |
| 84 | /* In system mode we want L1_MAP to be based on ram offsets, |
| 85 | while in user mode we want it to be based on virtual addresses. */ |
| 86 | #if !defined(CONFIG_USER_ONLY) |
| 87 | #if HOST_LONG_BITS < TARGET_PHYS_ADDR_SPACE_BITS |
| 88 | # define L1_MAP_ADDR_SPACE_BITS HOST_LONG_BITS |
| 89 | #else |
| 90 | # define L1_MAP_ADDR_SPACE_BITS TARGET_PHYS_ADDR_SPACE_BITS |
| 91 | #endif |
| 92 | #else |
| 93 | # define L1_MAP_ADDR_SPACE_BITS TARGET_VIRT_ADDR_SPACE_BITS |
| 94 | #endif |
| 95 | |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 96 | /* Size of the L2 (and L3, etc) page tables. */ |
| 97 | #define V_L2_BITS 10 |
| 98 | #define V_L2_SIZE (1 << V_L2_BITS) |
| 99 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 100 | /* The bits remaining after N lower levels of page tables. */ |
| 101 | #define V_L1_BITS_REM \ |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 102 | ((L1_MAP_ADDR_SPACE_BITS - TARGET_PAGE_BITS) % V_L2_BITS) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 103 | |
| 104 | #if V_L1_BITS_REM < 4 |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 105 | #define V_L1_BITS (V_L1_BITS_REM + V_L2_BITS) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 106 | #else |
| 107 | #define V_L1_BITS V_L1_BITS_REM |
| 108 | #endif |
| 109 | |
| 110 | #define V_L1_SIZE ((target_ulong)1 << V_L1_BITS) |
| 111 | |
| 112 | #define V_L1_SHIFT (L1_MAP_ADDR_SPACE_BITS - TARGET_PAGE_BITS - V_L1_BITS) |
| 113 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 114 | uintptr_t qemu_host_page_size; |
Paolo Bonzini | 0c2d70c | 2015-12-02 13:00:54 +0100 | [diff] [blame] | 115 | intptr_t qemu_host_page_mask; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 116 | |
Emilio G. Cota | d1142fb | 2015-08-23 20:23:39 -0400 | [diff] [blame] | 117 | /* The bottom level has pointers to PageDesc */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 118 | static void *l1_map[V_L1_SIZE]; |
| 119 | |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 120 | /* code generation context */ |
| 121 | TCGContext tcg_ctx; |
bellard | d19893d | 2003-06-15 19:58:51 +0000 | [diff] [blame] | 122 | |
KONRAD Frederic | 677ef62 | 2015-08-10 17:27:02 +0200 | [diff] [blame] | 123 | /* translation block context */ |
| 124 | #ifdef CONFIG_USER_ONLY |
| 125 | __thread int have_tb_lock; |
| 126 | #endif |
| 127 | |
| 128 | void tb_lock(void) |
| 129 | { |
| 130 | #ifdef CONFIG_USER_ONLY |
| 131 | assert(!have_tb_lock); |
| 132 | qemu_mutex_lock(&tcg_ctx.tb_ctx.tb_lock); |
| 133 | have_tb_lock++; |
| 134 | #endif |
| 135 | } |
| 136 | |
| 137 | void tb_unlock(void) |
| 138 | { |
| 139 | #ifdef CONFIG_USER_ONLY |
| 140 | assert(have_tb_lock); |
| 141 | have_tb_lock--; |
| 142 | qemu_mutex_unlock(&tcg_ctx.tb_ctx.tb_lock); |
| 143 | #endif |
| 144 | } |
| 145 | |
| 146 | void tb_lock_reset(void) |
| 147 | { |
| 148 | #ifdef CONFIG_USER_ONLY |
| 149 | if (have_tb_lock) { |
| 150 | qemu_mutex_unlock(&tcg_ctx.tb_ctx.tb_lock); |
| 151 | have_tb_lock = 0; |
| 152 | } |
| 153 | #endif |
| 154 | } |
| 155 | |
Blue Swirl | a8a826a | 2012-12-04 20:16:07 +0000 | [diff] [blame] | 156 | static TranslationBlock *tb_find_pc(uintptr_t tc_ptr); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 157 | |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 158 | void cpu_gen_init(void) |
| 159 | { |
| 160 | tcg_context_init(&tcg_ctx); |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 163 | /* Encode VAL as a signed leb128 sequence at P. |
| 164 | Return P incremented past the encoded value. */ |
| 165 | static uint8_t *encode_sleb128(uint8_t *p, target_long val) |
| 166 | { |
| 167 | int more, byte; |
| 168 | |
| 169 | do { |
| 170 | byte = val & 0x7f; |
| 171 | val >>= 7; |
| 172 | more = !((val == 0 && (byte & 0x40) == 0) |
| 173 | || (val == -1 && (byte & 0x40) != 0)); |
| 174 | if (more) { |
| 175 | byte |= 0x80; |
| 176 | } |
| 177 | *p++ = byte; |
| 178 | } while (more); |
| 179 | |
| 180 | return p; |
| 181 | } |
| 182 | |
| 183 | /* Decode a signed leb128 sequence at *PP; increment *PP past the |
| 184 | decoded value. Return the decoded value. */ |
| 185 | static target_long decode_sleb128(uint8_t **pp) |
| 186 | { |
| 187 | uint8_t *p = *pp; |
| 188 | target_long val = 0; |
| 189 | int byte, shift = 0; |
| 190 | |
| 191 | do { |
| 192 | byte = *p++; |
| 193 | val |= (target_ulong)(byte & 0x7f) << shift; |
| 194 | shift += 7; |
| 195 | } while (byte & 0x80); |
| 196 | if (shift < TARGET_LONG_BITS && (byte & 0x40)) { |
| 197 | val |= -(target_ulong)1 << shift; |
| 198 | } |
| 199 | |
| 200 | *pp = p; |
| 201 | return val; |
| 202 | } |
| 203 | |
| 204 | /* Encode the data collected about the instructions while compiling TB. |
| 205 | Place the data at BLOCK, and return the number of bytes consumed. |
| 206 | |
| 207 | The logical table consisits of TARGET_INSN_START_WORDS target_ulong's, |
| 208 | which come from the target's insn_start data, followed by a uintptr_t |
| 209 | which comes from the host pc of the end of the code implementing the insn. |
| 210 | |
| 211 | Each line of the table is encoded as sleb128 deltas from the previous |
| 212 | line. The seed for the first line is { tb->pc, 0..., tb->tc_ptr }. |
| 213 | That is, the first column is seeded with the guest pc, the last column |
| 214 | with the host pc, and the middle columns with zeros. */ |
| 215 | |
| 216 | static int encode_search(TranslationBlock *tb, uint8_t *block) |
| 217 | { |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 218 | uint8_t *highwater = tcg_ctx.code_gen_highwater; |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 219 | uint8_t *p = block; |
| 220 | int i, j, n; |
| 221 | |
| 222 | tb->tc_search = block; |
| 223 | |
| 224 | for (i = 0, n = tb->icount; i < n; ++i) { |
| 225 | target_ulong prev; |
| 226 | |
| 227 | for (j = 0; j < TARGET_INSN_START_WORDS; ++j) { |
| 228 | if (i == 0) { |
| 229 | prev = (j == 0 ? tb->pc : 0); |
| 230 | } else { |
| 231 | prev = tcg_ctx.gen_insn_data[i - 1][j]; |
| 232 | } |
| 233 | p = encode_sleb128(p, tcg_ctx.gen_insn_data[i][j] - prev); |
| 234 | } |
| 235 | prev = (i == 0 ? 0 : tcg_ctx.gen_insn_end_off[i - 1]); |
| 236 | p = encode_sleb128(p, tcg_ctx.gen_insn_end_off[i] - prev); |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 237 | |
| 238 | /* Test for (pending) buffer overflow. The assumption is that any |
| 239 | one row beginning below the high water mark cannot overrun |
| 240 | the buffer completely. Thus we can test for overflow after |
| 241 | encoding a row without having to check during encoding. */ |
| 242 | if (unlikely(p > highwater)) { |
| 243 | return -1; |
| 244 | } |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | return p - block; |
| 248 | } |
| 249 | |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 250 | /* The cpu state corresponding to 'searched_pc' is restored. */ |
Andreas Färber | 74f1051 | 2013-09-01 17:02:58 +0200 | [diff] [blame] | 251 | static int cpu_restore_state_from_tb(CPUState *cpu, TranslationBlock *tb, |
Blue Swirl | a8a826a | 2012-12-04 20:16:07 +0000 | [diff] [blame] | 252 | uintptr_t searched_pc) |
bellard | d19893d | 2003-06-15 19:58:51 +0000 | [diff] [blame] | 253 | { |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 254 | target_ulong data[TARGET_INSN_START_WORDS] = { tb->pc }; |
| 255 | uintptr_t host_pc = (uintptr_t)tb->tc_ptr; |
Andreas Färber | 74f1051 | 2013-09-01 17:02:58 +0200 | [diff] [blame] | 256 | CPUArchState *env = cpu->env_ptr; |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 257 | uint8_t *p = tb->tc_search; |
| 258 | int i, j, num_insns = tb->icount; |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 259 | #ifdef CONFIG_PROFILER |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 260 | int64_t ti = profile_getclock(); |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 261 | #endif |
| 262 | |
Richard Henderson | 01ecaf4 | 2016-07-26 06:09:16 +0530 | [diff] [blame] | 263 | searched_pc -= GETPC_ADJ; |
| 264 | |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 265 | if (searched_pc < host_pc) { |
| 266 | return -1; |
| 267 | } |
bellard | d19893d | 2003-06-15 19:58:51 +0000 | [diff] [blame] | 268 | |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 269 | /* Reconstruct the stored insn data while looking for the point at |
| 270 | which the end of the insn exceeds the searched_pc. */ |
| 271 | for (i = 0; i < num_insns; ++i) { |
| 272 | for (j = 0; j < TARGET_INSN_START_WORDS; ++j) { |
| 273 | data[j] += decode_sleb128(&p); |
| 274 | } |
| 275 | host_pc += decode_sleb128(&p); |
| 276 | if (host_pc > searched_pc) { |
| 277 | goto found; |
| 278 | } |
| 279 | } |
| 280 | return -1; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 281 | |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 282 | found: |
Paolo Bonzini | bd79255 | 2014-11-26 13:39:59 +0300 | [diff] [blame] | 283 | if (tb->cflags & CF_USE_ICOUNT) { |
Paolo Bonzini | 414b15c | 2015-06-24 14:16:26 +0200 | [diff] [blame] | 284 | assert(use_icount); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 285 | /* Reset the cycle counter to the start of the block. */ |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 286 | cpu->icount_decr.u16.low += num_insns; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 287 | /* Clear the IO flag. */ |
Andreas Färber | 99df7dc | 2013-08-26 05:15:23 +0200 | [diff] [blame] | 288 | cpu->can_do_io = 0; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 289 | } |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 290 | cpu->icount_decr.u16.low -= i; |
| 291 | restore_state_to_opc(env, tb, data); |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 292 | |
| 293 | #ifdef CONFIG_PROFILER |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 294 | tcg_ctx.restore_time += profile_getclock() - ti; |
| 295 | tcg_ctx.restore_count++; |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 296 | #endif |
bellard | d19893d | 2003-06-15 19:58:51 +0000 | [diff] [blame] | 297 | return 0; |
| 298 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 299 | |
Andreas Färber | 3f38f30 | 2013-09-01 16:51:34 +0200 | [diff] [blame] | 300 | bool cpu_restore_state(CPUState *cpu, uintptr_t retaddr) |
Blue Swirl | a8a826a | 2012-12-04 20:16:07 +0000 | [diff] [blame] | 301 | { |
| 302 | TranslationBlock *tb; |
| 303 | |
| 304 | tb = tb_find_pc(retaddr); |
| 305 | if (tb) { |
Andreas Färber | 74f1051 | 2013-09-01 17:02:58 +0200 | [diff] [blame] | 306 | cpu_restore_state_from_tb(cpu, tb, retaddr); |
Pavel Dovgalyuk | d8a499f | 2014-11-26 13:40:16 +0300 | [diff] [blame] | 307 | if (tb->cflags & CF_NOCACHE) { |
| 308 | /* one-shot translation, invalidate it immediately */ |
Pavel Dovgalyuk | d8a499f | 2014-11-26 13:40:16 +0300 | [diff] [blame] | 309 | tb_phys_invalidate(tb, -1); |
| 310 | tb_free(tb); |
| 311 | } |
Blue Swirl | a8a826a | 2012-12-04 20:16:07 +0000 | [diff] [blame] | 312 | return true; |
| 313 | } |
| 314 | return false; |
| 315 | } |
| 316 | |
Alexey Kardashevskiy | 47c16ed | 2014-01-17 11:12:07 -0700 | [diff] [blame] | 317 | void page_size_init(void) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 318 | { |
| 319 | /* NOTE: we can always suppose that qemu_host_page_size >= |
| 320 | TARGET_PAGE_SIZE */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 321 | qemu_real_host_page_size = getpagesize(); |
Paolo Bonzini | 0c2d70c | 2015-12-02 13:00:54 +0100 | [diff] [blame] | 322 | qemu_real_host_page_mask = -(intptr_t)qemu_real_host_page_size; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 323 | if (qemu_host_page_size == 0) { |
| 324 | qemu_host_page_size = qemu_real_host_page_size; |
| 325 | } |
| 326 | if (qemu_host_page_size < TARGET_PAGE_SIZE) { |
| 327 | qemu_host_page_size = TARGET_PAGE_SIZE; |
| 328 | } |
Paolo Bonzini | 0c2d70c | 2015-12-02 13:00:54 +0100 | [diff] [blame] | 329 | qemu_host_page_mask = -(intptr_t)qemu_host_page_size; |
Alexey Kardashevskiy | 47c16ed | 2014-01-17 11:12:07 -0700 | [diff] [blame] | 330 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 331 | |
Alexey Kardashevskiy | 47c16ed | 2014-01-17 11:12:07 -0700 | [diff] [blame] | 332 | static void page_init(void) |
| 333 | { |
| 334 | page_size_init(); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 335 | #if defined(CONFIG_BSD) && defined(CONFIG_USER_ONLY) |
| 336 | { |
| 337 | #ifdef HAVE_KINFO_GETVMMAP |
| 338 | struct kinfo_vmentry *freep; |
| 339 | int i, cnt; |
| 340 | |
| 341 | freep = kinfo_getvmmap(getpid(), &cnt); |
| 342 | if (freep) { |
| 343 | mmap_lock(); |
| 344 | for (i = 0; i < cnt; i++) { |
| 345 | unsigned long startaddr, endaddr; |
| 346 | |
| 347 | startaddr = freep[i].kve_start; |
| 348 | endaddr = freep[i].kve_end; |
| 349 | if (h2g_valid(startaddr)) { |
| 350 | startaddr = h2g(startaddr) & TARGET_PAGE_MASK; |
| 351 | |
| 352 | if (h2g_valid(endaddr)) { |
| 353 | endaddr = h2g(endaddr); |
| 354 | page_set_flags(startaddr, endaddr, PAGE_RESERVED); |
| 355 | } else { |
| 356 | #if TARGET_ABI_BITS <= L1_MAP_ADDR_SPACE_BITS |
| 357 | endaddr = ~0ul; |
| 358 | page_set_flags(startaddr, endaddr, PAGE_RESERVED); |
| 359 | #endif |
| 360 | } |
| 361 | } |
| 362 | } |
| 363 | free(freep); |
| 364 | mmap_unlock(); |
| 365 | } |
| 366 | #else |
| 367 | FILE *f; |
| 368 | |
| 369 | last_brk = (unsigned long)sbrk(0); |
| 370 | |
| 371 | f = fopen("/compat/linux/proc/self/maps", "r"); |
| 372 | if (f) { |
| 373 | mmap_lock(); |
| 374 | |
| 375 | do { |
| 376 | unsigned long startaddr, endaddr; |
| 377 | int n; |
| 378 | |
| 379 | n = fscanf(f, "%lx-%lx %*[^\n]\n", &startaddr, &endaddr); |
| 380 | |
| 381 | if (n == 2 && h2g_valid(startaddr)) { |
| 382 | startaddr = h2g(startaddr) & TARGET_PAGE_MASK; |
| 383 | |
| 384 | if (h2g_valid(endaddr)) { |
| 385 | endaddr = h2g(endaddr); |
| 386 | } else { |
| 387 | endaddr = ~0ul; |
| 388 | } |
| 389 | page_set_flags(startaddr, endaddr, PAGE_RESERVED); |
| 390 | } |
| 391 | } while (!feof(f)); |
| 392 | |
| 393 | fclose(f); |
| 394 | mmap_unlock(); |
| 395 | } |
| 396 | #endif |
| 397 | } |
| 398 | #endif |
| 399 | } |
| 400 | |
Paolo Bonzini | 7569208 | 2015-08-11 10:59:50 +0200 | [diff] [blame] | 401 | /* If alloc=1: |
| 402 | * Called with mmap_lock held for user-mode emulation. |
| 403 | */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 404 | static PageDesc *page_find_alloc(tb_page_addr_t index, int alloc) |
| 405 | { |
| 406 | PageDesc *pd; |
| 407 | void **lp; |
| 408 | int i; |
| 409 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 410 | /* Level 1. Always allocated. */ |
| 411 | lp = l1_map + ((index >> V_L1_SHIFT) & (V_L1_SIZE - 1)); |
| 412 | |
| 413 | /* Level 2..N-1. */ |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 414 | for (i = V_L1_SHIFT / V_L2_BITS - 1; i > 0; i--) { |
Paolo Bonzini | 6940fab | 2015-08-12 09:41:40 +0200 | [diff] [blame] | 415 | void **p = atomic_rcu_read(lp); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 416 | |
| 417 | if (p == NULL) { |
| 418 | if (!alloc) { |
| 419 | return NULL; |
| 420 | } |
Emilio G. Cota | e3a0abf | 2015-04-09 16:07:33 -0400 | [diff] [blame] | 421 | p = g_new0(void *, V_L2_SIZE); |
Paolo Bonzini | 6940fab | 2015-08-12 09:41:40 +0200 | [diff] [blame] | 422 | atomic_rcu_set(lp, p); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 423 | } |
| 424 | |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 425 | lp = p + ((index >> (i * V_L2_BITS)) & (V_L2_SIZE - 1)); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 426 | } |
| 427 | |
Paolo Bonzini | 6940fab | 2015-08-12 09:41:40 +0200 | [diff] [blame] | 428 | pd = atomic_rcu_read(lp); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 429 | if (pd == NULL) { |
| 430 | if (!alloc) { |
| 431 | return NULL; |
| 432 | } |
Emilio G. Cota | e3a0abf | 2015-04-09 16:07:33 -0400 | [diff] [blame] | 433 | pd = g_new0(PageDesc, V_L2_SIZE); |
Paolo Bonzini | 6940fab | 2015-08-12 09:41:40 +0200 | [diff] [blame] | 434 | atomic_rcu_set(lp, pd); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 435 | } |
| 436 | |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 437 | return pd + (index & (V_L2_SIZE - 1)); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | static inline PageDesc *page_find(tb_page_addr_t index) |
| 441 | { |
| 442 | return page_find_alloc(index, 0); |
| 443 | } |
| 444 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 445 | #if defined(CONFIG_USER_ONLY) |
| 446 | /* Currently it is not recommended to allocate big chunks of data in |
| 447 | user mode. It will change when a dedicated libc will be used. */ |
| 448 | /* ??? 64-bit hosts ought to have no problem mmaping data outside the |
| 449 | region in which the guest needs to run. Revisit this. */ |
| 450 | #define USE_STATIC_CODE_GEN_BUFFER |
| 451 | #endif |
| 452 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 453 | /* Minimum size of the code gen buffer. This number is randomly chosen, |
| 454 | but not so small that we can't have a fair number of TB's live. */ |
| 455 | #define MIN_CODE_GEN_BUFFER_SIZE (1024u * 1024) |
| 456 | |
| 457 | /* Maximum size of the code gen buffer we'd like to use. Unless otherwise |
| 458 | indicated, this is constrained by the range of direct branches on the |
| 459 | host cpu, as used by the TCG implementation of goto_tb. */ |
| 460 | #if defined(__x86_64__) |
| 461 | # define MAX_CODE_GEN_BUFFER_SIZE (2ul * 1024 * 1024 * 1024) |
| 462 | #elif defined(__sparc__) |
| 463 | # define MAX_CODE_GEN_BUFFER_SIZE (2ul * 1024 * 1024 * 1024) |
Richard Henderson | 5bfd75a | 2015-10-02 22:25:28 +0000 | [diff] [blame] | 464 | #elif defined(__powerpc64__) |
| 465 | # define MAX_CODE_GEN_BUFFER_SIZE (2ul * 1024 * 1024 * 1024) |
Sergey Fedorov | 399f164 | 2016-04-22 19:08:46 +0300 | [diff] [blame] | 466 | #elif defined(__powerpc__) |
| 467 | # define MAX_CODE_GEN_BUFFER_SIZE (32u * 1024 * 1024) |
Claudio Fontana | 4a136e0 | 2013-06-12 16:20:22 +0100 | [diff] [blame] | 468 | #elif defined(__aarch64__) |
| 469 | # define MAX_CODE_GEN_BUFFER_SIZE (128ul * 1024 * 1024) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 470 | #elif defined(__arm__) |
| 471 | # define MAX_CODE_GEN_BUFFER_SIZE (16u * 1024 * 1024) |
| 472 | #elif defined(__s390x__) |
| 473 | /* We have a +- 4GB range on the branches; leave some slop. */ |
| 474 | # define MAX_CODE_GEN_BUFFER_SIZE (3ul * 1024 * 1024 * 1024) |
Richard Henderson | 479eb12 | 2014-04-24 08:25:03 -0700 | [diff] [blame] | 475 | #elif defined(__mips__) |
| 476 | /* We have a 256MB branch region, but leave room to make sure the |
| 477 | main executable is also within that region. */ |
| 478 | # define MAX_CODE_GEN_BUFFER_SIZE (128ul * 1024 * 1024) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 479 | #else |
| 480 | # define MAX_CODE_GEN_BUFFER_SIZE ((size_t)-1) |
| 481 | #endif |
| 482 | |
| 483 | #define DEFAULT_CODE_GEN_BUFFER_SIZE_1 (32u * 1024 * 1024) |
| 484 | |
| 485 | #define DEFAULT_CODE_GEN_BUFFER_SIZE \ |
| 486 | (DEFAULT_CODE_GEN_BUFFER_SIZE_1 < MAX_CODE_GEN_BUFFER_SIZE \ |
| 487 | ? DEFAULT_CODE_GEN_BUFFER_SIZE_1 : MAX_CODE_GEN_BUFFER_SIZE) |
| 488 | |
| 489 | static inline size_t size_code_gen_buffer(size_t tb_size) |
| 490 | { |
| 491 | /* Size the buffer. */ |
| 492 | if (tb_size == 0) { |
| 493 | #ifdef USE_STATIC_CODE_GEN_BUFFER |
| 494 | tb_size = DEFAULT_CODE_GEN_BUFFER_SIZE; |
| 495 | #else |
| 496 | /* ??? Needs adjustments. */ |
| 497 | /* ??? If we relax the requirement that CONFIG_USER_ONLY use the |
| 498 | static buffer, we could size this on RESERVED_VA, on the text |
| 499 | segment size of the executable, or continue to use the default. */ |
| 500 | tb_size = (unsigned long)(ram_size / 4); |
| 501 | #endif |
| 502 | } |
| 503 | if (tb_size < MIN_CODE_GEN_BUFFER_SIZE) { |
| 504 | tb_size = MIN_CODE_GEN_BUFFER_SIZE; |
| 505 | } |
| 506 | if (tb_size > MAX_CODE_GEN_BUFFER_SIZE) { |
| 507 | tb_size = MAX_CODE_GEN_BUFFER_SIZE; |
| 508 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 509 | return tb_size; |
| 510 | } |
| 511 | |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 512 | #ifdef __mips__ |
| 513 | /* In order to use J and JAL within the code_gen_buffer, we require |
| 514 | that the buffer not cross a 256MB boundary. */ |
| 515 | static inline bool cross_256mb(void *addr, size_t size) |
| 516 | { |
Richard Henderson | 7ba6a51 | 2016-04-24 15:55:29 -0700 | [diff] [blame] | 517 | return ((uintptr_t)addr ^ ((uintptr_t)addr + size)) & ~0x0ffffffful; |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | /* We weren't able to allocate a buffer without crossing that boundary, |
| 521 | so make do with the larger portion of the buffer that doesn't cross. |
| 522 | Returns the new base of the buffer, and adjusts code_gen_buffer_size. */ |
| 523 | static inline void *split_cross_256mb(void *buf1, size_t size1) |
| 524 | { |
Richard Henderson | 7ba6a51 | 2016-04-24 15:55:29 -0700 | [diff] [blame] | 525 | void *buf2 = (void *)(((uintptr_t)buf1 + size1) & ~0x0ffffffful); |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 526 | size_t size2 = buf1 + size1 - buf2; |
| 527 | |
| 528 | size1 = buf2 - buf1; |
| 529 | if (size1 < size2) { |
| 530 | size1 = size2; |
| 531 | buf1 = buf2; |
| 532 | } |
| 533 | |
| 534 | tcg_ctx.code_gen_buffer_size = size1; |
| 535 | return buf1; |
| 536 | } |
| 537 | #endif |
| 538 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 539 | #ifdef USE_STATIC_CODE_GEN_BUFFER |
| 540 | static uint8_t static_code_gen_buffer[DEFAULT_CODE_GEN_BUFFER_SIZE] |
| 541 | __attribute__((aligned(CODE_GEN_ALIGN))); |
| 542 | |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 543 | # ifdef _WIN32 |
| 544 | static inline void do_protect(void *addr, long size, int prot) |
| 545 | { |
| 546 | DWORD old_protect; |
| 547 | VirtualProtect(addr, size, prot, &old_protect); |
| 548 | } |
| 549 | |
| 550 | static inline void map_exec(void *addr, long size) |
| 551 | { |
| 552 | do_protect(addr, size, PAGE_EXECUTE_READWRITE); |
| 553 | } |
| 554 | |
| 555 | static inline void map_none(void *addr, long size) |
| 556 | { |
| 557 | do_protect(addr, size, PAGE_NOACCESS); |
| 558 | } |
| 559 | # else |
| 560 | static inline void do_protect(void *addr, long size, int prot) |
| 561 | { |
| 562 | uintptr_t start, end; |
| 563 | |
| 564 | start = (uintptr_t)addr; |
| 565 | start &= qemu_real_host_page_mask; |
| 566 | |
| 567 | end = (uintptr_t)addr + size; |
| 568 | end = ROUND_UP(end, qemu_real_host_page_size); |
| 569 | |
| 570 | mprotect((void *)start, end - start, prot); |
| 571 | } |
| 572 | |
| 573 | static inline void map_exec(void *addr, long size) |
| 574 | { |
| 575 | do_protect(addr, size, PROT_READ | PROT_WRITE | PROT_EXEC); |
| 576 | } |
| 577 | |
| 578 | static inline void map_none(void *addr, long size) |
| 579 | { |
| 580 | do_protect(addr, size, PROT_NONE); |
| 581 | } |
| 582 | # endif /* WIN32 */ |
| 583 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 584 | static inline void *alloc_code_gen_buffer(void) |
| 585 | { |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 586 | void *buf = static_code_gen_buffer; |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 587 | size_t full_size, size; |
| 588 | |
| 589 | /* The size of the buffer, rounded down to end on a page boundary. */ |
| 590 | full_size = (((uintptr_t)buf + sizeof(static_code_gen_buffer)) |
| 591 | & qemu_real_host_page_mask) - (uintptr_t)buf; |
| 592 | |
| 593 | /* Reserve a guard page. */ |
| 594 | size = full_size - qemu_real_host_page_size; |
| 595 | |
| 596 | /* Honor a command-line option limiting the size of the buffer. */ |
| 597 | if (size > tcg_ctx.code_gen_buffer_size) { |
| 598 | size = (((uintptr_t)buf + tcg_ctx.code_gen_buffer_size) |
| 599 | & qemu_real_host_page_mask) - (uintptr_t)buf; |
| 600 | } |
| 601 | tcg_ctx.code_gen_buffer_size = size; |
| 602 | |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 603 | #ifdef __mips__ |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 604 | if (cross_256mb(buf, size)) { |
| 605 | buf = split_cross_256mb(buf, size); |
| 606 | size = tcg_ctx.code_gen_buffer_size; |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 607 | } |
| 608 | #endif |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 609 | |
| 610 | map_exec(buf, size); |
| 611 | map_none(buf + size, qemu_real_host_page_size); |
| 612 | qemu_madvise(buf, size, QEMU_MADV_HUGEPAGE); |
| 613 | |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 614 | return buf; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 615 | } |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 616 | #elif defined(_WIN32) |
| 617 | static inline void *alloc_code_gen_buffer(void) |
| 618 | { |
| 619 | size_t size = tcg_ctx.code_gen_buffer_size; |
| 620 | void *buf1, *buf2; |
| 621 | |
| 622 | /* Perform the allocation in two steps, so that the guard page |
| 623 | is reserved but uncommitted. */ |
| 624 | buf1 = VirtualAlloc(NULL, size + qemu_real_host_page_size, |
| 625 | MEM_RESERVE, PAGE_NOACCESS); |
| 626 | if (buf1 != NULL) { |
| 627 | buf2 = VirtualAlloc(buf1, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE); |
| 628 | assert(buf1 == buf2); |
| 629 | } |
| 630 | |
| 631 | return buf1; |
| 632 | } |
| 633 | #else |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 634 | static inline void *alloc_code_gen_buffer(void) |
| 635 | { |
| 636 | int flags = MAP_PRIVATE | MAP_ANONYMOUS; |
| 637 | uintptr_t start = 0; |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 638 | size_t size = tcg_ctx.code_gen_buffer_size; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 639 | void *buf; |
| 640 | |
| 641 | /* Constrain the position of the buffer based on the host cpu. |
| 642 | Note that these addresses are chosen in concert with the |
| 643 | addresses assigned in the relevant linker script file. */ |
| 644 | # if defined(__PIE__) || defined(__PIC__) |
| 645 | /* Don't bother setting a preferred location if we're building |
| 646 | a position-independent executable. We're more likely to get |
| 647 | an address near the main executable if we let the kernel |
| 648 | choose the address. */ |
| 649 | # elif defined(__x86_64__) && defined(MAP_32BIT) |
| 650 | /* Force the memory down into low memory with the executable. |
| 651 | Leave the choice of exact location with the kernel. */ |
| 652 | flags |= MAP_32BIT; |
| 653 | /* Cannot expect to map more than 800MB in low memory. */ |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 654 | if (size > 800u * 1024 * 1024) { |
| 655 | tcg_ctx.code_gen_buffer_size = size = 800u * 1024 * 1024; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 656 | } |
| 657 | # elif defined(__sparc__) |
| 658 | start = 0x40000000ul; |
| 659 | # elif defined(__s390x__) |
| 660 | start = 0x90000000ul; |
Richard Henderson | 479eb12 | 2014-04-24 08:25:03 -0700 | [diff] [blame] | 661 | # elif defined(__mips__) |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 662 | # if _MIPS_SIM == _ABI64 |
Richard Henderson | 479eb12 | 2014-04-24 08:25:03 -0700 | [diff] [blame] | 663 | start = 0x128000000ul; |
| 664 | # else |
| 665 | start = 0x08000000ul; |
| 666 | # endif |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 667 | # endif |
| 668 | |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 669 | buf = mmap((void *)start, size + qemu_real_host_page_size, |
| 670 | PROT_NONE, flags, -1, 0); |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 671 | if (buf == MAP_FAILED) { |
| 672 | return NULL; |
| 673 | } |
| 674 | |
| 675 | #ifdef __mips__ |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 676 | if (cross_256mb(buf, size)) { |
Stefan Weil | 5d831be | 2014-06-13 20:42:57 +0200 | [diff] [blame] | 677 | /* Try again, with the original still mapped, to avoid re-acquiring |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 678 | that 256mb crossing. This time don't specify an address. */ |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 679 | size_t size2; |
| 680 | void *buf2 = mmap(NULL, size + qemu_real_host_page_size, |
| 681 | PROT_NONE, flags, -1, 0); |
| 682 | switch (buf2 != MAP_FAILED) { |
| 683 | case 1: |
| 684 | if (!cross_256mb(buf2, size)) { |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 685 | /* Success! Use the new buffer. */ |
Emilio G. Cota | 8bdf499 | 2016-04-21 20:01:54 -0400 | [diff] [blame] | 686 | munmap(buf, size + qemu_real_host_page_size); |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 687 | break; |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 688 | } |
| 689 | /* Failure. Work with what we had. */ |
Emilio G. Cota | 8bdf499 | 2016-04-21 20:01:54 -0400 | [diff] [blame] | 690 | munmap(buf2, size + qemu_real_host_page_size); |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 691 | /* fallthru */ |
| 692 | default: |
| 693 | /* Split the original buffer. Free the smaller half. */ |
| 694 | buf2 = split_cross_256mb(buf, size); |
| 695 | size2 = tcg_ctx.code_gen_buffer_size; |
| 696 | if (buf == buf2) { |
| 697 | munmap(buf + size2 + qemu_real_host_page_size, size - size2); |
| 698 | } else { |
| 699 | munmap(buf, size - size2); |
| 700 | } |
| 701 | size = size2; |
| 702 | break; |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 703 | } |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 704 | buf = buf2; |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 705 | } |
| 706 | #endif |
| 707 | |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 708 | /* Make the final buffer accessible. The guard page at the end |
| 709 | will remain inaccessible with PROT_NONE. */ |
| 710 | mprotect(buf, size, PROT_WRITE | PROT_READ | PROT_EXEC); |
| 711 | |
| 712 | /* Request large pages for the buffer. */ |
| 713 | qemu_madvise(buf, size, QEMU_MADV_HUGEPAGE); |
| 714 | |
Richard Henderson | 483c76e | 2014-04-24 09:16:07 -0700 | [diff] [blame] | 715 | return buf; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 716 | } |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 717 | #endif /* USE_STATIC_CODE_GEN_BUFFER, WIN32, POSIX */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 718 | |
| 719 | static inline void code_gen_alloc(size_t tb_size) |
| 720 | { |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 721 | tcg_ctx.code_gen_buffer_size = size_code_gen_buffer(tb_size); |
| 722 | tcg_ctx.code_gen_buffer = alloc_code_gen_buffer(); |
| 723 | if (tcg_ctx.code_gen_buffer == NULL) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 724 | fprintf(stderr, "Could not allocate dynamic translator buffer\n"); |
| 725 | exit(1); |
| 726 | } |
| 727 | |
Richard Henderson | 8163b74 | 2015-09-18 23:43:05 -0700 | [diff] [blame] | 728 | /* Estimate a good size for the number of TBs we can support. We |
| 729 | still haven't deducted the prologue from the buffer size here, |
| 730 | but that's minimal and won't affect the estimate much. */ |
| 731 | tcg_ctx.code_gen_max_blocks |
| 732 | = tcg_ctx.code_gen_buffer_size / CODE_GEN_AVG_BLOCK_SIZE; |
| 733 | tcg_ctx.tb_ctx.tbs = g_new(TranslationBlock, tcg_ctx.code_gen_max_blocks); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 734 | |
KONRAD Frederic | 677ef62 | 2015-08-10 17:27:02 +0200 | [diff] [blame] | 735 | qemu_mutex_init(&tcg_ctx.tb_ctx.tb_lock); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 736 | } |
| 737 | |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 738 | static void tb_htable_init(void) |
| 739 | { |
| 740 | unsigned int mode = QHT_MODE_AUTO_RESIZE; |
| 741 | |
| 742 | qht_init(&tcg_ctx.tb_ctx.htable, CODE_GEN_HTABLE_SIZE, mode); |
| 743 | } |
| 744 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 745 | /* Must be called before using the QEMU cpus. 'tb_size' is the size |
| 746 | (in bytes) allocated to the translation buffer. Zero means default |
| 747 | size. */ |
| 748 | void tcg_exec_init(unsigned long tb_size) |
| 749 | { |
| 750 | cpu_gen_init(); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 751 | page_init(); |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 752 | tb_htable_init(); |
Richard Henderson | f293709 | 2015-09-19 12:03:15 -0700 | [diff] [blame] | 753 | code_gen_alloc(tb_size); |
Laurent Vivier | 4cbea59 | 2015-08-24 01:42:07 +0200 | [diff] [blame] | 754 | #if defined(CONFIG_SOFTMMU) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 755 | /* There's no guest base to take into account, so go ahead and |
| 756 | initialize the prologue now. */ |
| 757 | tcg_prologue_init(&tcg_ctx); |
| 758 | #endif |
| 759 | } |
| 760 | |
| 761 | bool tcg_enabled(void) |
| 762 | { |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 763 | return tcg_ctx.code_gen_buffer != NULL; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | /* Allocate a new translation block. Flush the translation buffer if |
| 767 | too many translation blocks or too much generated code. */ |
| 768 | static TranslationBlock *tb_alloc(target_ulong pc) |
| 769 | { |
| 770 | TranslationBlock *tb; |
| 771 | |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 772 | if (tcg_ctx.tb_ctx.nb_tbs >= tcg_ctx.code_gen_max_blocks) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 773 | return NULL; |
| 774 | } |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 775 | tb = &tcg_ctx.tb_ctx.tbs[tcg_ctx.tb_ctx.nb_tbs++]; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 776 | tb->pc = pc; |
| 777 | tb->cflags = 0; |
Paolo Bonzini | 6d21e42 | 2016-07-19 08:36:18 +0200 | [diff] [blame] | 778 | tb->invalid = false; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 779 | return tb; |
| 780 | } |
| 781 | |
| 782 | void tb_free(TranslationBlock *tb) |
| 783 | { |
| 784 | /* In practice this is mostly used for single use temporary TB |
| 785 | Ignore the hard cases and just back up if this TB happens to |
| 786 | be the last one generated. */ |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 787 | if (tcg_ctx.tb_ctx.nb_tbs > 0 && |
| 788 | tb == &tcg_ctx.tb_ctx.tbs[tcg_ctx.tb_ctx.nb_tbs - 1]) { |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 789 | tcg_ctx.code_gen_ptr = tb->tc_ptr; |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 790 | tcg_ctx.tb_ctx.nb_tbs--; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 791 | } |
| 792 | } |
| 793 | |
| 794 | static inline void invalidate_page_bitmap(PageDesc *p) |
| 795 | { |
Paolo Bonzini | 6fad459 | 2015-08-11 12:42:55 +0200 | [diff] [blame] | 796 | #ifdef CONFIG_SOFTMMU |
Markus Armbruster | 012aef0 | 2015-08-26 14:02:53 +0200 | [diff] [blame] | 797 | g_free(p->code_bitmap); |
| 798 | p->code_bitmap = NULL; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 799 | p->code_write_count = 0; |
Paolo Bonzini | 6fad459 | 2015-08-11 12:42:55 +0200 | [diff] [blame] | 800 | #endif |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 801 | } |
| 802 | |
| 803 | /* Set to NULL all the 'first_tb' fields in all PageDescs. */ |
| 804 | static void page_flush_tb_1(int level, void **lp) |
| 805 | { |
| 806 | int i; |
| 807 | |
| 808 | if (*lp == NULL) { |
| 809 | return; |
| 810 | } |
| 811 | if (level == 0) { |
| 812 | PageDesc *pd = *lp; |
| 813 | |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 814 | for (i = 0; i < V_L2_SIZE; ++i) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 815 | pd[i].first_tb = NULL; |
| 816 | invalidate_page_bitmap(pd + i); |
| 817 | } |
| 818 | } else { |
| 819 | void **pp = *lp; |
| 820 | |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 821 | for (i = 0; i < V_L2_SIZE; ++i) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 822 | page_flush_tb_1(level - 1, pp + i); |
| 823 | } |
| 824 | } |
| 825 | } |
| 826 | |
| 827 | static void page_flush_tb(void) |
| 828 | { |
| 829 | int i; |
| 830 | |
| 831 | for (i = 0; i < V_L1_SIZE; i++) { |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 832 | page_flush_tb_1(V_L1_SHIFT / V_L2_BITS - 1, l1_map + i); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 833 | } |
| 834 | } |
| 835 | |
| 836 | /* flush all the translation blocks */ |
| 837 | /* XXX: tb_flush is currently not thread safe */ |
Peter Crosthwaite | bbd77c1 | 2015-06-23 19:31:15 -0700 | [diff] [blame] | 838 | void tb_flush(CPUState *cpu) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 839 | { |
Christian Borntraeger | 135a972 | 2016-08-25 20:11:26 +0200 | [diff] [blame] | 840 | if (!tcg_enabled()) { |
| 841 | return; |
| 842 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 843 | #if defined(DEBUG_FLUSH) |
| 844 | printf("qemu: flush code_size=%ld nb_tbs=%d avg_tb_size=%ld\n", |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 845 | (unsigned long)(tcg_ctx.code_gen_ptr - tcg_ctx.code_gen_buffer), |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 846 | tcg_ctx.tb_ctx.nb_tbs, tcg_ctx.tb_ctx.nb_tbs > 0 ? |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 847 | ((unsigned long)(tcg_ctx.code_gen_ptr - tcg_ctx.code_gen_buffer)) / |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 848 | tcg_ctx.tb_ctx.nb_tbs : 0); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 849 | #endif |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 850 | if ((unsigned long)(tcg_ctx.code_gen_ptr - tcg_ctx.code_gen_buffer) |
| 851 | > tcg_ctx.code_gen_buffer_size) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 852 | cpu_abort(cpu, "Internal error: code buffer overflow\n"); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 853 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 854 | |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 855 | CPU_FOREACH(cpu) { |
Sergey Fedorov | 89a16b1 | 2016-07-15 20:58:43 +0300 | [diff] [blame] | 856 | int i; |
| 857 | |
| 858 | for (i = 0; i < TB_JMP_CACHE_SIZE; ++i) { |
| 859 | atomic_set(&cpu->tb_jmp_cache[i], NULL); |
| 860 | } |
Sergey Fedorov | 118b073 | 2016-07-15 20:58:44 +0300 | [diff] [blame] | 861 | atomic_mb_set(&cpu->tb_flushed, true); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 862 | } |
| 863 | |
Sergey Fedorov | 118b073 | 2016-07-15 20:58:44 +0300 | [diff] [blame] | 864 | tcg_ctx.tb_ctx.nb_tbs = 0; |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 865 | qht_reset_size(&tcg_ctx.tb_ctx.htable, CODE_GEN_HTABLE_SIZE); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 866 | page_flush_tb(); |
| 867 | |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 868 | tcg_ctx.code_gen_ptr = tcg_ctx.code_gen_buffer; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 869 | /* XXX: flush processor icache at this point if cache flush is |
| 870 | expensive */ |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 871 | tcg_ctx.tb_ctx.tb_flush_count++; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 872 | } |
| 873 | |
| 874 | #ifdef DEBUG_TB_CHECK |
| 875 | |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 876 | static void |
| 877 | do_tb_invalidate_check(struct qht *ht, void *p, uint32_t hash, void *userp) |
| 878 | { |
| 879 | TranslationBlock *tb = p; |
| 880 | target_ulong addr = *(target_ulong *)userp; |
| 881 | |
| 882 | if (!(addr + TARGET_PAGE_SIZE <= tb->pc || addr >= tb->pc + tb->size)) { |
| 883 | printf("ERROR invalidate: address=" TARGET_FMT_lx |
| 884 | " PC=%08lx size=%04x\n", addr, (long)tb->pc, tb->size); |
| 885 | } |
| 886 | } |
| 887 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 888 | static void tb_invalidate_check(target_ulong address) |
| 889 | { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 890 | address &= TARGET_PAGE_MASK; |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 891 | qht_iter(&tcg_ctx.tb_ctx.htable, do_tb_invalidate_check, &address); |
| 892 | } |
| 893 | |
| 894 | static void |
| 895 | do_tb_page_check(struct qht *ht, void *p, uint32_t hash, void *userp) |
| 896 | { |
| 897 | TranslationBlock *tb = p; |
| 898 | int flags1, flags2; |
| 899 | |
| 900 | flags1 = page_get_flags(tb->pc); |
| 901 | flags2 = page_get_flags(tb->pc + tb->size - 1); |
| 902 | if ((flags1 & PAGE_WRITE) || (flags2 & PAGE_WRITE)) { |
| 903 | printf("ERROR page flags: PC=%08lx size=%04x f1=%x f2=%x\n", |
| 904 | (long)tb->pc, tb->size, flags1, flags2); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 905 | } |
| 906 | } |
| 907 | |
| 908 | /* verify that all the pages have correct rights for code */ |
| 909 | static void tb_page_check(void) |
| 910 | { |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 911 | qht_iter(&tcg_ctx.tb_ctx.htable, do_tb_page_check, NULL); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | #endif |
| 915 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 916 | static inline void tb_page_remove(TranslationBlock **ptb, TranslationBlock *tb) |
| 917 | { |
| 918 | TranslationBlock *tb1; |
| 919 | unsigned int n1; |
| 920 | |
| 921 | for (;;) { |
| 922 | tb1 = *ptb; |
| 923 | n1 = (uintptr_t)tb1 & 3; |
| 924 | tb1 = (TranslationBlock *)((uintptr_t)tb1 & ~3); |
| 925 | if (tb1 == tb) { |
| 926 | *ptb = tb1->page_next[n1]; |
| 927 | break; |
| 928 | } |
| 929 | ptb = &tb1->page_next[n1]; |
| 930 | } |
| 931 | } |
| 932 | |
Sergey Fedorov | 1336267 | 2016-03-23 18:30:16 +0300 | [diff] [blame] | 933 | /* remove the TB from a list of TBs jumping to the n-th jump target of the TB */ |
| 934 | static inline void tb_remove_from_jmp_list(TranslationBlock *tb, int n) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 935 | { |
Sergey Fedorov | c37e6d7 | 2016-03-21 23:11:00 +0300 | [diff] [blame] | 936 | TranslationBlock *tb1; |
| 937 | uintptr_t *ptb, ntb; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 938 | unsigned int n1; |
| 939 | |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 940 | ptb = &tb->jmp_list_next[n]; |
Sergey Fedorov | c37e6d7 | 2016-03-21 23:11:00 +0300 | [diff] [blame] | 941 | if (*ptb) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 942 | /* find tb(n) in circular list */ |
| 943 | for (;;) { |
Sergey Fedorov | c37e6d7 | 2016-03-21 23:11:00 +0300 | [diff] [blame] | 944 | ntb = *ptb; |
| 945 | n1 = ntb & 3; |
| 946 | tb1 = (TranslationBlock *)(ntb & ~3); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 947 | if (n1 == n && tb1 == tb) { |
| 948 | break; |
| 949 | } |
| 950 | if (n1 == 2) { |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 951 | ptb = &tb1->jmp_list_first; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 952 | } else { |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 953 | ptb = &tb1->jmp_list_next[n1]; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 954 | } |
| 955 | } |
| 956 | /* now we can suppress tb(n) from the list */ |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 957 | *ptb = tb->jmp_list_next[n]; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 958 | |
Sergey Fedorov | c37e6d7 | 2016-03-21 23:11:00 +0300 | [diff] [blame] | 959 | tb->jmp_list_next[n] = (uintptr_t)NULL; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 960 | } |
| 961 | } |
| 962 | |
| 963 | /* reset the jump entry 'n' of a TB so that it is not chained to |
| 964 | another TB */ |
| 965 | static inline void tb_reset_jump(TranslationBlock *tb, int n) |
| 966 | { |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 967 | uintptr_t addr = (uintptr_t)(tb->tc_ptr + tb->jmp_reset_offset[n]); |
| 968 | tb_set_jmp_target(tb, n, addr); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 969 | } |
| 970 | |
Sergey Fedorov | 89bba49 | 2016-03-23 18:36:31 +0300 | [diff] [blame] | 971 | /* remove any jumps to the TB */ |
| 972 | static inline void tb_jmp_unlink(TranslationBlock *tb) |
| 973 | { |
Sergey Fedorov | f9c5b66 | 2016-03-23 21:47:33 +0300 | [diff] [blame] | 974 | TranslationBlock *tb1; |
| 975 | uintptr_t *ptb, ntb; |
Sergey Fedorov | 89bba49 | 2016-03-23 18:36:31 +0300 | [diff] [blame] | 976 | unsigned int n1; |
| 977 | |
Sergey Fedorov | f9c5b66 | 2016-03-23 21:47:33 +0300 | [diff] [blame] | 978 | ptb = &tb->jmp_list_first; |
Sergey Fedorov | 89bba49 | 2016-03-23 18:36:31 +0300 | [diff] [blame] | 979 | for (;;) { |
Sergey Fedorov | f9c5b66 | 2016-03-23 21:47:33 +0300 | [diff] [blame] | 980 | ntb = *ptb; |
| 981 | n1 = ntb & 3; |
| 982 | tb1 = (TranslationBlock *)(ntb & ~3); |
Sergey Fedorov | 89bba49 | 2016-03-23 18:36:31 +0300 | [diff] [blame] | 983 | if (n1 == 2) { |
| 984 | break; |
| 985 | } |
Sergey Fedorov | f9c5b66 | 2016-03-23 21:47:33 +0300 | [diff] [blame] | 986 | tb_reset_jump(tb1, n1); |
| 987 | *ptb = tb1->jmp_list_next[n1]; |
| 988 | tb1->jmp_list_next[n1] = (uintptr_t)NULL; |
Sergey Fedorov | 89bba49 | 2016-03-23 18:36:31 +0300 | [diff] [blame] | 989 | } |
Sergey Fedorov | 89bba49 | 2016-03-23 18:36:31 +0300 | [diff] [blame] | 990 | } |
| 991 | |
陳韋任 (Wei-Ren Chen) | 0c884d1 | 2012-12-20 09:39:16 +0800 | [diff] [blame] | 992 | /* invalidate one TB */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 993 | void tb_phys_invalidate(TranslationBlock *tb, tb_page_addr_t page_addr) |
| 994 | { |
Andreas Färber | 182735e | 2013-05-29 22:29:20 +0200 | [diff] [blame] | 995 | CPUState *cpu; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 996 | PageDesc *p; |
Emilio G. Cota | 42bd322 | 2016-06-08 14:55:25 -0400 | [diff] [blame] | 997 | uint32_t h; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 998 | tb_page_addr_t phys_pc; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 999 | |
Paolo Bonzini | 6d21e42 | 2016-07-19 08:36:18 +0200 | [diff] [blame] | 1000 | atomic_set(&tb->invalid, true); |
| 1001 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1002 | /* remove the TB from the hash list */ |
| 1003 | phys_pc = tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); |
Emilio G. Cota | 42bd322 | 2016-06-08 14:55:25 -0400 | [diff] [blame] | 1004 | h = tb_hash_func(phys_pc, tb->pc, tb->flags); |
Emilio G. Cota | 909eaac | 2016-06-08 14:55:32 -0400 | [diff] [blame] | 1005 | qht_remove(&tcg_ctx.tb_ctx.htable, tb, h); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1006 | |
| 1007 | /* remove the TB from the page list */ |
| 1008 | if (tb->page_addr[0] != page_addr) { |
| 1009 | p = page_find(tb->page_addr[0] >> TARGET_PAGE_BITS); |
| 1010 | tb_page_remove(&p->first_tb, tb); |
| 1011 | invalidate_page_bitmap(p); |
| 1012 | } |
| 1013 | if (tb->page_addr[1] != -1 && tb->page_addr[1] != page_addr) { |
| 1014 | p = page_find(tb->page_addr[1] >> TARGET_PAGE_BITS); |
| 1015 | tb_page_remove(&p->first_tb, tb); |
| 1016 | invalidate_page_bitmap(p); |
| 1017 | } |
| 1018 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1019 | /* remove the TB from the hash list */ |
| 1020 | h = tb_jmp_cache_hash_func(tb->pc); |
Andreas Färber | bdc4464 | 2013-06-24 23:50:24 +0200 | [diff] [blame] | 1021 | CPU_FOREACH(cpu) { |
Sergey Fedorov | 89a16b1 | 2016-07-15 20:58:43 +0300 | [diff] [blame] | 1022 | if (atomic_read(&cpu->tb_jmp_cache[h]) == tb) { |
| 1023 | atomic_set(&cpu->tb_jmp_cache[h], NULL); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1024 | } |
| 1025 | } |
| 1026 | |
| 1027 | /* suppress this TB from the two jump lists */ |
Sergey Fedorov | 1336267 | 2016-03-23 18:30:16 +0300 | [diff] [blame] | 1028 | tb_remove_from_jmp_list(tb, 0); |
| 1029 | tb_remove_from_jmp_list(tb, 1); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1030 | |
| 1031 | /* suppress any remaining jumps to this TB */ |
Sergey Fedorov | 89bba49 | 2016-03-23 18:36:31 +0300 | [diff] [blame] | 1032 | tb_jmp_unlink(tb); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1033 | |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1034 | tcg_ctx.tb_ctx.tb_phys_invalidate_count++; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1035 | } |
| 1036 | |
Paolo Bonzini | 6fad459 | 2015-08-11 12:42:55 +0200 | [diff] [blame] | 1037 | #ifdef CONFIG_SOFTMMU |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1038 | static void build_page_bitmap(PageDesc *p) |
| 1039 | { |
| 1040 | int n, tb_start, tb_end; |
| 1041 | TranslationBlock *tb; |
| 1042 | |
Emilio G. Cota | 510a647 | 2015-04-22 17:50:52 -0400 | [diff] [blame] | 1043 | p->code_bitmap = bitmap_new(TARGET_PAGE_SIZE); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1044 | |
| 1045 | tb = p->first_tb; |
| 1046 | while (tb != NULL) { |
| 1047 | n = (uintptr_t)tb & 3; |
| 1048 | tb = (TranslationBlock *)((uintptr_t)tb & ~3); |
| 1049 | /* NOTE: this is subtle as a TB may span two physical pages */ |
| 1050 | if (n == 0) { |
| 1051 | /* NOTE: tb_end may be after the end of the page, but |
| 1052 | it is not a problem */ |
| 1053 | tb_start = tb->pc & ~TARGET_PAGE_MASK; |
| 1054 | tb_end = tb_start + tb->size; |
| 1055 | if (tb_end > TARGET_PAGE_SIZE) { |
| 1056 | tb_end = TARGET_PAGE_SIZE; |
| 1057 | } |
| 1058 | } else { |
| 1059 | tb_start = 0; |
| 1060 | tb_end = ((tb->pc + tb->size) & ~TARGET_PAGE_MASK); |
| 1061 | } |
Emilio G. Cota | 510a647 | 2015-04-22 17:50:52 -0400 | [diff] [blame] | 1062 | bitmap_set(p->code_bitmap, tb_start, tb_end - tb_start); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1063 | tb = tb->page_next[n]; |
| 1064 | } |
| 1065 | } |
Paolo Bonzini | 6fad459 | 2015-08-11 12:42:55 +0200 | [diff] [blame] | 1066 | #endif |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1067 | |
Sergey Fedorov | e90d96b | 2016-03-22 18:47:54 +0300 | [diff] [blame] | 1068 | /* add the tb in the target page and protect it if necessary |
| 1069 | * |
| 1070 | * Called with mmap_lock held for user-mode emulation. |
| 1071 | */ |
| 1072 | static inline void tb_alloc_page(TranslationBlock *tb, |
| 1073 | unsigned int n, tb_page_addr_t page_addr) |
| 1074 | { |
| 1075 | PageDesc *p; |
| 1076 | #ifndef CONFIG_USER_ONLY |
| 1077 | bool page_already_protected; |
| 1078 | #endif |
| 1079 | |
| 1080 | tb->page_addr[n] = page_addr; |
| 1081 | p = page_find_alloc(page_addr >> TARGET_PAGE_BITS, 1); |
| 1082 | tb->page_next[n] = p->first_tb; |
| 1083 | #ifndef CONFIG_USER_ONLY |
| 1084 | page_already_protected = p->first_tb != NULL; |
| 1085 | #endif |
| 1086 | p->first_tb = (TranslationBlock *)((uintptr_t)tb | n); |
| 1087 | invalidate_page_bitmap(p); |
| 1088 | |
| 1089 | #if defined(CONFIG_USER_ONLY) |
| 1090 | if (p->flags & PAGE_WRITE) { |
| 1091 | target_ulong addr; |
| 1092 | PageDesc *p2; |
| 1093 | int prot; |
| 1094 | |
| 1095 | /* force the host page as non writable (writes will have a |
| 1096 | page fault + mprotect overhead) */ |
| 1097 | page_addr &= qemu_host_page_mask; |
| 1098 | prot = 0; |
| 1099 | for (addr = page_addr; addr < page_addr + qemu_host_page_size; |
| 1100 | addr += TARGET_PAGE_SIZE) { |
| 1101 | |
| 1102 | p2 = page_find(addr >> TARGET_PAGE_BITS); |
| 1103 | if (!p2) { |
| 1104 | continue; |
| 1105 | } |
| 1106 | prot |= p2->flags; |
| 1107 | p2->flags &= ~PAGE_WRITE; |
| 1108 | } |
| 1109 | mprotect(g2h(page_addr), qemu_host_page_size, |
| 1110 | (prot & PAGE_BITS) & ~PAGE_WRITE); |
| 1111 | #ifdef DEBUG_TB_INVALIDATE |
| 1112 | printf("protecting code page: 0x" TARGET_FMT_lx "\n", |
| 1113 | page_addr); |
| 1114 | #endif |
| 1115 | } |
| 1116 | #else |
| 1117 | /* if some code is already present, then the pages are already |
| 1118 | protected. So we handle the case where only the first TB is |
| 1119 | allocated in a physical page */ |
| 1120 | if (!page_already_protected) { |
| 1121 | tlb_protect_code(page_addr); |
| 1122 | } |
| 1123 | #endif |
| 1124 | } |
| 1125 | |
| 1126 | /* add a new TB and link it to the physical page tables. phys_page2 is |
| 1127 | * (-1) to indicate that only one page contains the TB. |
| 1128 | * |
| 1129 | * Called with mmap_lock held for user-mode emulation. |
| 1130 | */ |
| 1131 | static void tb_link_page(TranslationBlock *tb, tb_page_addr_t phys_pc, |
| 1132 | tb_page_addr_t phys_page2) |
| 1133 | { |
Emilio G. Cota | 42bd322 | 2016-06-08 14:55:25 -0400 | [diff] [blame] | 1134 | uint32_t h; |
Sergey Fedorov | e90d96b | 2016-03-22 18:47:54 +0300 | [diff] [blame] | 1135 | |
Sergey Fedorov | e90d96b | 2016-03-22 18:47:54 +0300 | [diff] [blame] | 1136 | /* add in the page list */ |
| 1137 | tb_alloc_page(tb, 0, phys_pc & TARGET_PAGE_MASK); |
| 1138 | if (phys_page2 != -1) { |
| 1139 | tb_alloc_page(tb, 1, phys_page2); |
| 1140 | } else { |
| 1141 | tb->page_addr[1] = -1; |
| 1142 | } |
| 1143 | |
Alex Bennée | 2e1ae44 | 2016-07-15 20:58:48 +0300 | [diff] [blame] | 1144 | /* add in the hash table */ |
| 1145 | h = tb_hash_func(phys_pc, tb->pc, tb->flags); |
| 1146 | qht_insert(&tcg_ctx.tb_ctx.htable, tb, h); |
| 1147 | |
Sergey Fedorov | e90d96b | 2016-03-22 18:47:54 +0300 | [diff] [blame] | 1148 | #ifdef DEBUG_TB_CHECK |
| 1149 | tb_page_check(); |
| 1150 | #endif |
| 1151 | } |
| 1152 | |
Paolo Bonzini | 7569208 | 2015-08-11 10:59:50 +0200 | [diff] [blame] | 1153 | /* Called with mmap_lock held for user mode emulation. */ |
Andreas Färber | 648f034 | 2013-09-01 17:43:17 +0200 | [diff] [blame] | 1154 | TranslationBlock *tb_gen_code(CPUState *cpu, |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1155 | target_ulong pc, target_ulong cs_base, |
Emilio G. Cota | 89fee74 | 2016-04-07 13:19:22 -0400 | [diff] [blame] | 1156 | uint32_t flags, int cflags) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1157 | { |
Andreas Färber | 648f034 | 2013-09-01 17:43:17 +0200 | [diff] [blame] | 1158 | CPUArchState *env = cpu->env_ptr; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1159 | TranslationBlock *tb; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1160 | tb_page_addr_t phys_pc, phys_page2; |
| 1161 | target_ulong virt_page2; |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1162 | tcg_insn_unit *gen_code_buf; |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 1163 | int gen_code_size, search_size; |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1164 | #ifdef CONFIG_PROFILER |
| 1165 | int64_t ti; |
| 1166 | #endif |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1167 | |
| 1168 | phys_pc = get_page_addr_code(env, pc); |
Pavel Dovgalyuk | 56c0269 | 2015-09-17 19:23:59 +0300 | [diff] [blame] | 1169 | if (use_icount && !(cflags & CF_IGNORE_ICOUNT)) { |
Paolo Bonzini | 0266359 | 2014-11-26 13:39:53 +0300 | [diff] [blame] | 1170 | cflags |= CF_USE_ICOUNT; |
| 1171 | } |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 1172 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1173 | tb = tb_alloc(pc); |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 1174 | if (unlikely(!tb)) { |
| 1175 | buffer_overflow: |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1176 | /* flush must be done */ |
Peter Crosthwaite | bbd77c1 | 2015-06-23 19:31:15 -0700 | [diff] [blame] | 1177 | tb_flush(cpu); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1178 | /* cannot fail at this point */ |
| 1179 | tb = tb_alloc(pc); |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 1180 | assert(tb != NULL); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1181 | } |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1182 | |
| 1183 | gen_code_buf = tcg_ctx.code_gen_ptr; |
| 1184 | tb->tc_ptr = gen_code_buf; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1185 | tb->cs_base = cs_base; |
| 1186 | tb->flags = flags; |
| 1187 | tb->cflags = cflags; |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1188 | |
| 1189 | #ifdef CONFIG_PROFILER |
| 1190 | tcg_ctx.tb_count1++; /* includes aborted translations because of |
| 1191 | exceptions */ |
| 1192 | ti = profile_getclock(); |
| 1193 | #endif |
| 1194 | |
| 1195 | tcg_func_start(&tcg_ctx); |
| 1196 | |
LluĂs Vilanova | 7c25504 | 2016-06-09 19:31:41 +0200 | [diff] [blame] | 1197 | tcg_ctx.cpu = ENV_GET_CPU(env); |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1198 | gen_intermediate_code(env, tb); |
LluĂs Vilanova | 7c25504 | 2016-06-09 19:31:41 +0200 | [diff] [blame] | 1199 | tcg_ctx.cpu = NULL; |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1200 | |
| 1201 | trace_translate_block(tb, tb->pc, tb->tc_ptr); |
| 1202 | |
| 1203 | /* generate machine code */ |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 1204 | tb->jmp_reset_offset[0] = TB_JMP_RESET_OFFSET_INVALID; |
| 1205 | tb->jmp_reset_offset[1] = TB_JMP_RESET_OFFSET_INVALID; |
| 1206 | tcg_ctx.tb_jmp_reset_offset = tb->jmp_reset_offset; |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1207 | #ifdef USE_DIRECT_JUMP |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 1208 | tcg_ctx.tb_jmp_insn_offset = tb->jmp_insn_offset; |
| 1209 | tcg_ctx.tb_jmp_target_addr = NULL; |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1210 | #else |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 1211 | tcg_ctx.tb_jmp_insn_offset = NULL; |
| 1212 | tcg_ctx.tb_jmp_target_addr = tb->jmp_target_addr; |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1213 | #endif |
| 1214 | |
| 1215 | #ifdef CONFIG_PROFILER |
| 1216 | tcg_ctx.tb_count++; |
| 1217 | tcg_ctx.interm_time += profile_getclock() - ti; |
| 1218 | tcg_ctx.code_time -= profile_getclock(); |
| 1219 | #endif |
| 1220 | |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 1221 | /* ??? Overflow could be handled better here. In particular, we |
| 1222 | don't need to re-do gen_intermediate_code, nor should we re-do |
| 1223 | the tcg optimization currently hidden inside tcg_gen_code. All |
| 1224 | that should be required is to flush the TBs, allocate a new TB, |
| 1225 | re-initialize it per above, and re-do the actual code generation. */ |
Alex Bennée | 5bd2ec3 | 2016-03-15 14:30:16 +0000 | [diff] [blame] | 1226 | gen_code_size = tcg_gen_code(&tcg_ctx, tb); |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 1227 | if (unlikely(gen_code_size < 0)) { |
| 1228 | goto buffer_overflow; |
| 1229 | } |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 1230 | search_size = encode_search(tb, (void *)gen_code_buf + gen_code_size); |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 1231 | if (unlikely(search_size < 0)) { |
| 1232 | goto buffer_overflow; |
| 1233 | } |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1234 | |
| 1235 | #ifdef CONFIG_PROFILER |
| 1236 | tcg_ctx.code_time += profile_getclock(); |
| 1237 | tcg_ctx.code_in_len += tb->size; |
| 1238 | tcg_ctx.code_out_len += gen_code_size; |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 1239 | tcg_ctx.search_out_len += search_size; |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1240 | #endif |
| 1241 | |
| 1242 | #ifdef DEBUG_DISAS |
Alex Bennée | d977e1c | 2016-03-15 14:30:21 +0000 | [diff] [blame] | 1243 | if (qemu_loglevel_mask(CPU_LOG_TB_OUT_ASM) && |
| 1244 | qemu_log_in_addr_range(tb->pc)) { |
Richard Henderson | fec88f6 | 2015-08-27 18:17:40 -0700 | [diff] [blame] | 1245 | qemu_log("OUT: [size=%d]\n", gen_code_size); |
| 1246 | log_disas(tb->tc_ptr, gen_code_size); |
| 1247 | qemu_log("\n"); |
| 1248 | qemu_log_flush(); |
| 1249 | } |
| 1250 | #endif |
| 1251 | |
Richard Henderson | fca8a50 | 2015-09-01 19:11:45 -0700 | [diff] [blame] | 1252 | tcg_ctx.code_gen_ptr = (void *) |
| 1253 | ROUND_UP((uintptr_t)gen_code_buf + gen_code_size + search_size, |
| 1254 | CODE_GEN_ALIGN); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1255 | |
Sergey Fedorov | 901bc3d | 2016-03-22 19:00:12 +0300 | [diff] [blame] | 1256 | /* init jump list */ |
| 1257 | assert(((uintptr_t)tb & 3) == 0); |
| 1258 | tb->jmp_list_first = (uintptr_t)tb | 2; |
| 1259 | tb->jmp_list_next[0] = (uintptr_t)NULL; |
| 1260 | tb->jmp_list_next[1] = (uintptr_t)NULL; |
| 1261 | |
| 1262 | /* init original jump addresses wich has been set during tcg_gen_code() */ |
| 1263 | if (tb->jmp_reset_offset[0] != TB_JMP_RESET_OFFSET_INVALID) { |
| 1264 | tb_reset_jump(tb, 0); |
| 1265 | } |
| 1266 | if (tb->jmp_reset_offset[1] != TB_JMP_RESET_OFFSET_INVALID) { |
| 1267 | tb_reset_jump(tb, 1); |
| 1268 | } |
| 1269 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1270 | /* check next page if needed */ |
| 1271 | virt_page2 = (pc + tb->size - 1) & TARGET_PAGE_MASK; |
| 1272 | phys_page2 = -1; |
| 1273 | if ((pc & TARGET_PAGE_MASK) != virt_page2) { |
| 1274 | phys_page2 = get_page_addr_code(env, virt_page2); |
| 1275 | } |
Sergey Fedorov | 901bc3d | 2016-03-22 19:00:12 +0300 | [diff] [blame] | 1276 | /* As long as consistency of the TB stuff is provided by tb_lock in user |
| 1277 | * mode and is implicit in single-threaded softmmu emulation, no explicit |
| 1278 | * memory barrier is required before tb_link_page() makes the TB visible |
| 1279 | * through the physical hash table and physical page list. |
| 1280 | */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1281 | tb_link_page(tb, phys_pc, phys_page2); |
| 1282 | return tb; |
| 1283 | } |
| 1284 | |
| 1285 | /* |
| 1286 | * Invalidate all TBs which intersect with the target physical address range |
| 1287 | * [start;end[. NOTE: start and end may refer to *different* physical pages. |
| 1288 | * 'is_cpu_write_access' should be true if called from a real cpu write |
| 1289 | * access: the virtual CPU will exit the current TB if code is modified inside |
| 1290 | * this TB. |
Paolo Bonzini | 7569208 | 2015-08-11 10:59:50 +0200 | [diff] [blame] | 1291 | * |
| 1292 | * Called with mmap_lock held for user-mode emulation |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1293 | */ |
Paolo Bonzini | 3586533 | 2015-04-22 14:20:35 +0200 | [diff] [blame] | 1294 | void tb_invalidate_phys_range(tb_page_addr_t start, tb_page_addr_t end) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1295 | { |
| 1296 | while (start < end) { |
Paolo Bonzini | 3586533 | 2015-04-22 14:20:35 +0200 | [diff] [blame] | 1297 | tb_invalidate_phys_page_range(start, end, 0); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1298 | start &= TARGET_PAGE_MASK; |
| 1299 | start += TARGET_PAGE_SIZE; |
| 1300 | } |
| 1301 | } |
| 1302 | |
| 1303 | /* |
| 1304 | * Invalidate all TBs which intersect with the target physical address range |
| 1305 | * [start;end[. NOTE: start and end must refer to the *same* physical page. |
| 1306 | * 'is_cpu_write_access' should be true if called from a real cpu write |
| 1307 | * access: the virtual CPU will exit the current TB if code is modified inside |
| 1308 | * this TB. |
Paolo Bonzini | 7569208 | 2015-08-11 10:59:50 +0200 | [diff] [blame] | 1309 | * |
| 1310 | * Called with mmap_lock held for user-mode emulation |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1311 | */ |
| 1312 | void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end, |
| 1313 | int is_cpu_write_access) |
| 1314 | { |
Sergey Fedorov | 3213525 | 2016-05-03 14:04:22 +0300 | [diff] [blame] | 1315 | TranslationBlock *tb, *tb_next; |
Andreas Färber | baea4fa | 2013-09-03 10:51:26 +0200 | [diff] [blame] | 1316 | #if defined(TARGET_HAS_PRECISE_SMC) |
Sergey Fedorov | 3213525 | 2016-05-03 14:04:22 +0300 | [diff] [blame] | 1317 | CPUState *cpu = current_cpu; |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 1318 | CPUArchState *env = NULL; |
| 1319 | #endif |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1320 | tb_page_addr_t tb_start, tb_end; |
| 1321 | PageDesc *p; |
| 1322 | int n; |
| 1323 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1324 | int current_tb_not_found = is_cpu_write_access; |
| 1325 | TranslationBlock *current_tb = NULL; |
| 1326 | int current_tb_modified = 0; |
| 1327 | target_ulong current_pc = 0; |
| 1328 | target_ulong current_cs_base = 0; |
Emilio G. Cota | 89fee74 | 2016-04-07 13:19:22 -0400 | [diff] [blame] | 1329 | uint32_t current_flags = 0; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1330 | #endif /* TARGET_HAS_PRECISE_SMC */ |
| 1331 | |
| 1332 | p = page_find(start >> TARGET_PAGE_BITS); |
| 1333 | if (!p) { |
| 1334 | return; |
| 1335 | } |
Andreas Färber | baea4fa | 2013-09-03 10:51:26 +0200 | [diff] [blame] | 1336 | #if defined(TARGET_HAS_PRECISE_SMC) |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 1337 | if (cpu != NULL) { |
| 1338 | env = cpu->env_ptr; |
Andreas Färber | d77953b | 2013-01-16 19:29:31 +0100 | [diff] [blame] | 1339 | } |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 1340 | #endif |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1341 | |
| 1342 | /* we remove all the TBs in the range [start, end[ */ |
| 1343 | /* XXX: see if in some cases it could be faster to invalidate all |
| 1344 | the code */ |
| 1345 | tb = p->first_tb; |
| 1346 | while (tb != NULL) { |
| 1347 | n = (uintptr_t)tb & 3; |
| 1348 | tb = (TranslationBlock *)((uintptr_t)tb & ~3); |
| 1349 | tb_next = tb->page_next[n]; |
| 1350 | /* NOTE: this is subtle as a TB may span two physical pages */ |
| 1351 | if (n == 0) { |
| 1352 | /* NOTE: tb_end may be after the end of the page, but |
| 1353 | it is not a problem */ |
| 1354 | tb_start = tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); |
| 1355 | tb_end = tb_start + tb->size; |
| 1356 | } else { |
| 1357 | tb_start = tb->page_addr[1]; |
| 1358 | tb_end = tb_start + ((tb->pc + tb->size) & ~TARGET_PAGE_MASK); |
| 1359 | } |
| 1360 | if (!(tb_end <= start || tb_start >= end)) { |
| 1361 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1362 | if (current_tb_not_found) { |
| 1363 | current_tb_not_found = 0; |
| 1364 | current_tb = NULL; |
Andreas Färber | 93afead | 2013-08-26 03:41:01 +0200 | [diff] [blame] | 1365 | if (cpu->mem_io_pc) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1366 | /* now we have a real cpu fault */ |
Andreas Färber | 93afead | 2013-08-26 03:41:01 +0200 | [diff] [blame] | 1367 | current_tb = tb_find_pc(cpu->mem_io_pc); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1368 | } |
| 1369 | } |
| 1370 | if (current_tb == tb && |
| 1371 | (current_tb->cflags & CF_COUNT_MASK) != 1) { |
| 1372 | /* If we are modifying the current TB, we must stop |
| 1373 | its execution. We could be more precise by checking |
| 1374 | that the modification is after the current PC, but it |
| 1375 | would require a specialized function to partially |
| 1376 | restore the CPU state */ |
| 1377 | |
| 1378 | current_tb_modified = 1; |
Andreas Färber | 74f1051 | 2013-09-01 17:02:58 +0200 | [diff] [blame] | 1379 | cpu_restore_state_from_tb(cpu, current_tb, cpu->mem_io_pc); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1380 | cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, |
| 1381 | ¤t_flags); |
| 1382 | } |
| 1383 | #endif /* TARGET_HAS_PRECISE_SMC */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1384 | tb_phys_invalidate(tb, -1); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1385 | } |
| 1386 | tb = tb_next; |
| 1387 | } |
| 1388 | #if !defined(CONFIG_USER_ONLY) |
| 1389 | /* if no code remaining, no need to continue to use slow writes */ |
| 1390 | if (!p->first_tb) { |
| 1391 | invalidate_page_bitmap(p); |
Paolo Bonzini | fc377bc | 2015-04-22 14:20:35 +0200 | [diff] [blame] | 1392 | tlb_unprotect_code(start); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1393 | } |
| 1394 | #endif |
| 1395 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1396 | if (current_tb_modified) { |
| 1397 | /* we generate a block containing just the instruction |
| 1398 | modifying the memory. It will ensure that it cannot modify |
| 1399 | itself */ |
Andreas Färber | 648f034 | 2013-09-01 17:43:17 +0200 | [diff] [blame] | 1400 | tb_gen_code(cpu, current_pc, current_cs_base, current_flags, 1); |
Peter Maydell | 6886b98 | 2016-05-17 15:18:04 +0100 | [diff] [blame] | 1401 | cpu_loop_exit_noexc(cpu); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1402 | } |
| 1403 | #endif |
| 1404 | } |
| 1405 | |
Paolo Bonzini | 6fad459 | 2015-08-11 12:42:55 +0200 | [diff] [blame] | 1406 | #ifdef CONFIG_SOFTMMU |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1407 | /* len must be <= 8 and start must be a multiple of len */ |
| 1408 | void tb_invalidate_phys_page_fast(tb_page_addr_t start, int len) |
| 1409 | { |
| 1410 | PageDesc *p; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1411 | |
| 1412 | #if 0 |
| 1413 | if (1) { |
| 1414 | qemu_log("modifying code at 0x%x size=%d EIP=%x PC=%08x\n", |
| 1415 | cpu_single_env->mem_io_vaddr, len, |
| 1416 | cpu_single_env->eip, |
| 1417 | cpu_single_env->eip + |
| 1418 | (intptr_t)cpu_single_env->segs[R_CS].base); |
| 1419 | } |
| 1420 | #endif |
| 1421 | p = page_find(start >> TARGET_PAGE_BITS); |
| 1422 | if (!p) { |
| 1423 | return; |
| 1424 | } |
Paolo Bonzini | fc377bc | 2015-04-22 14:20:35 +0200 | [diff] [blame] | 1425 | if (!p->code_bitmap && |
| 1426 | ++p->code_write_count >= SMC_BITMAP_USE_THRESHOLD) { |
| 1427 | /* build code bitmap */ |
| 1428 | build_page_bitmap(p); |
| 1429 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1430 | if (p->code_bitmap) { |
Emilio G. Cota | 510a647 | 2015-04-22 17:50:52 -0400 | [diff] [blame] | 1431 | unsigned int nr; |
| 1432 | unsigned long b; |
| 1433 | |
| 1434 | nr = start & ~TARGET_PAGE_MASK; |
| 1435 | b = p->code_bitmap[BIT_WORD(nr)] >> (nr & (BITS_PER_LONG - 1)); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1436 | if (b & ((1 << len) - 1)) { |
| 1437 | goto do_invalidate; |
| 1438 | } |
| 1439 | } else { |
| 1440 | do_invalidate: |
| 1441 | tb_invalidate_phys_page_range(start, start + len, 1); |
| 1442 | } |
| 1443 | } |
Paolo Bonzini | 6fad459 | 2015-08-11 12:42:55 +0200 | [diff] [blame] | 1444 | #else |
Peter Maydell | 7580922 | 2016-05-17 15:18:02 +0100 | [diff] [blame] | 1445 | /* Called with mmap_lock held. If pc is not 0 then it indicates the |
| 1446 | * host PC of the faulting store instruction that caused this invalidate. |
| 1447 | * Returns true if the caller needs to abort execution of the current |
| 1448 | * TB (because it was modified by this store and the guest CPU has |
| 1449 | * precise-SMC semantics). |
| 1450 | */ |
| 1451 | static bool tb_invalidate_phys_page(tb_page_addr_t addr, uintptr_t pc) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1452 | { |
| 1453 | TranslationBlock *tb; |
| 1454 | PageDesc *p; |
| 1455 | int n; |
| 1456 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1457 | TranslationBlock *current_tb = NULL; |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 1458 | CPUState *cpu = current_cpu; |
| 1459 | CPUArchState *env = NULL; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1460 | int current_tb_modified = 0; |
| 1461 | target_ulong current_pc = 0; |
| 1462 | target_ulong current_cs_base = 0; |
Emilio G. Cota | 89fee74 | 2016-04-07 13:19:22 -0400 | [diff] [blame] | 1463 | uint32_t current_flags = 0; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1464 | #endif |
| 1465 | |
| 1466 | addr &= TARGET_PAGE_MASK; |
| 1467 | p = page_find(addr >> TARGET_PAGE_BITS); |
| 1468 | if (!p) { |
Peter Maydell | 7580922 | 2016-05-17 15:18:02 +0100 | [diff] [blame] | 1469 | return false; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1470 | } |
| 1471 | tb = p->first_tb; |
| 1472 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1473 | if (tb && pc != 0) { |
| 1474 | current_tb = tb_find_pc(pc); |
| 1475 | } |
Andreas Färber | 4917cf4 | 2013-05-27 05:17:50 +0200 | [diff] [blame] | 1476 | if (cpu != NULL) { |
| 1477 | env = cpu->env_ptr; |
Andreas Färber | d77953b | 2013-01-16 19:29:31 +0100 | [diff] [blame] | 1478 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1479 | #endif |
| 1480 | while (tb != NULL) { |
| 1481 | n = (uintptr_t)tb & 3; |
| 1482 | tb = (TranslationBlock *)((uintptr_t)tb & ~3); |
| 1483 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1484 | if (current_tb == tb && |
| 1485 | (current_tb->cflags & CF_COUNT_MASK) != 1) { |
| 1486 | /* If we are modifying the current TB, we must stop |
| 1487 | its execution. We could be more precise by checking |
| 1488 | that the modification is after the current PC, but it |
| 1489 | would require a specialized function to partially |
| 1490 | restore the CPU state */ |
| 1491 | |
| 1492 | current_tb_modified = 1; |
Andreas Färber | 74f1051 | 2013-09-01 17:02:58 +0200 | [diff] [blame] | 1493 | cpu_restore_state_from_tb(cpu, current_tb, pc); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1494 | cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, |
| 1495 | ¤t_flags); |
| 1496 | } |
| 1497 | #endif /* TARGET_HAS_PRECISE_SMC */ |
| 1498 | tb_phys_invalidate(tb, addr); |
| 1499 | tb = tb->page_next[n]; |
| 1500 | } |
| 1501 | p->first_tb = NULL; |
| 1502 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1503 | if (current_tb_modified) { |
| 1504 | /* we generate a block containing just the instruction |
| 1505 | modifying the memory. It will ensure that it cannot modify |
| 1506 | itself */ |
Andreas Färber | 648f034 | 2013-09-01 17:43:17 +0200 | [diff] [blame] | 1507 | tb_gen_code(cpu, current_pc, current_cs_base, current_flags, 1); |
Peter Maydell | 7580922 | 2016-05-17 15:18:02 +0100 | [diff] [blame] | 1508 | return true; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1509 | } |
| 1510 | #endif |
Peter Maydell | 7580922 | 2016-05-17 15:18:02 +0100 | [diff] [blame] | 1511 | return false; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1512 | } |
| 1513 | #endif |
| 1514 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1515 | /* find the TB 'tb' such that tb[0].tc_ptr <= tc_ptr < |
| 1516 | tb[1].tc_ptr. Return NULL if not found */ |
Blue Swirl | a8a826a | 2012-12-04 20:16:07 +0000 | [diff] [blame] | 1517 | static TranslationBlock *tb_find_pc(uintptr_t tc_ptr) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1518 | { |
| 1519 | int m_min, m_max, m; |
| 1520 | uintptr_t v; |
| 1521 | TranslationBlock *tb; |
| 1522 | |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1523 | if (tcg_ctx.tb_ctx.nb_tbs <= 0) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1524 | return NULL; |
| 1525 | } |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 1526 | if (tc_ptr < (uintptr_t)tcg_ctx.code_gen_buffer || |
| 1527 | tc_ptr >= (uintptr_t)tcg_ctx.code_gen_ptr) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1528 | return NULL; |
| 1529 | } |
| 1530 | /* binary search (cf Knuth) */ |
| 1531 | m_min = 0; |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1532 | m_max = tcg_ctx.tb_ctx.nb_tbs - 1; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1533 | while (m_min <= m_max) { |
| 1534 | m = (m_min + m_max) >> 1; |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1535 | tb = &tcg_ctx.tb_ctx.tbs[m]; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1536 | v = (uintptr_t)tb->tc_ptr; |
| 1537 | if (v == tc_ptr) { |
| 1538 | return tb; |
| 1539 | } else if (tc_ptr < v) { |
| 1540 | m_max = m - 1; |
| 1541 | } else { |
| 1542 | m_min = m + 1; |
| 1543 | } |
| 1544 | } |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1545 | return &tcg_ctx.tb_ctx.tbs[m_max]; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1546 | } |
| 1547 | |
Peter Maydell | ec53b45 | 2015-01-20 15:19:32 +0000 | [diff] [blame] | 1548 | #if !defined(CONFIG_USER_ONLY) |
Edgar E. Iglesias | 29d8ec7 | 2013-11-07 19:43:10 +0100 | [diff] [blame] | 1549 | void tb_invalidate_phys_addr(AddressSpace *as, hwaddr addr) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1550 | { |
| 1551 | ram_addr_t ram_addr; |
Paolo Bonzini | 5c8a00c | 2013-05-29 12:42:00 +0200 | [diff] [blame] | 1552 | MemoryRegion *mr; |
Paolo Bonzini | 149f54b | 2013-05-24 12:59:37 +0200 | [diff] [blame] | 1553 | hwaddr l = 1; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1554 | |
Paolo Bonzini | 41063e1 | 2015-03-18 14:21:43 +0100 | [diff] [blame] | 1555 | rcu_read_lock(); |
Edgar E. Iglesias | 29d8ec7 | 2013-11-07 19:43:10 +0100 | [diff] [blame] | 1556 | mr = address_space_translate(as, addr, &addr, &l, false); |
Paolo Bonzini | 5c8a00c | 2013-05-29 12:42:00 +0200 | [diff] [blame] | 1557 | if (!(memory_region_is_ram(mr) |
| 1558 | || memory_region_is_romd(mr))) { |
Paolo Bonzini | 41063e1 | 2015-03-18 14:21:43 +0100 | [diff] [blame] | 1559 | rcu_read_unlock(); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1560 | return; |
| 1561 | } |
Paolo Bonzini | e4e6979 | 2016-03-01 10:44:50 +0100 | [diff] [blame] | 1562 | ram_addr = memory_region_get_ram_addr(mr) + addr; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1563 | tb_invalidate_phys_page_range(ram_addr, ram_addr + 1, 0); |
Paolo Bonzini | 41063e1 | 2015-03-18 14:21:43 +0100 | [diff] [blame] | 1564 | rcu_read_unlock(); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1565 | } |
Peter Maydell | ec53b45 | 2015-01-20 15:19:32 +0000 | [diff] [blame] | 1566 | #endif /* !defined(CONFIG_USER_ONLY) */ |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1567 | |
Andreas Färber | 239c51a | 2013-09-01 17:12:23 +0200 | [diff] [blame] | 1568 | void tb_check_watchpoint(CPUState *cpu) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1569 | { |
| 1570 | TranslationBlock *tb; |
| 1571 | |
Andreas Färber | 93afead | 2013-08-26 03:41:01 +0200 | [diff] [blame] | 1572 | tb = tb_find_pc(cpu->mem_io_pc); |
Aurelien Jarno | 8d302e7 | 2015-06-13 00:45:59 +0200 | [diff] [blame] | 1573 | if (tb) { |
| 1574 | /* We can use retranslation to find the PC. */ |
| 1575 | cpu_restore_state_from_tb(cpu, tb, cpu->mem_io_pc); |
| 1576 | tb_phys_invalidate(tb, -1); |
| 1577 | } else { |
| 1578 | /* The exception probably happened in a helper. The CPU state should |
| 1579 | have been saved before calling it. Fetch the PC from there. */ |
| 1580 | CPUArchState *env = cpu->env_ptr; |
| 1581 | target_ulong pc, cs_base; |
| 1582 | tb_page_addr_t addr; |
Emilio G. Cota | 89fee74 | 2016-04-07 13:19:22 -0400 | [diff] [blame] | 1583 | uint32_t flags; |
Aurelien Jarno | 8d302e7 | 2015-06-13 00:45:59 +0200 | [diff] [blame] | 1584 | |
| 1585 | cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags); |
| 1586 | addr = get_page_addr_code(env, pc); |
| 1587 | tb_invalidate_phys_range(addr, addr + 1); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1588 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1589 | } |
| 1590 | |
| 1591 | #ifndef CONFIG_USER_ONLY |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1592 | /* in deterministic execution mode, instructions doing device I/Os |
| 1593 | must be at the end of the TB */ |
Andreas Färber | 90b40a6 | 2013-09-01 17:21:47 +0200 | [diff] [blame] | 1594 | void cpu_io_recompile(CPUState *cpu, uintptr_t retaddr) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1595 | { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 1596 | #if defined(TARGET_MIPS) || defined(TARGET_SH4) |
Andreas Färber | 90b40a6 | 2013-09-01 17:21:47 +0200 | [diff] [blame] | 1597 | CPUArchState *env = cpu->env_ptr; |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 1598 | #endif |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1599 | TranslationBlock *tb; |
| 1600 | uint32_t n, cflags; |
| 1601 | target_ulong pc, cs_base; |
Emilio G. Cota | 89fee74 | 2016-04-07 13:19:22 -0400 | [diff] [blame] | 1602 | uint32_t flags; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1603 | |
| 1604 | tb = tb_find_pc(retaddr); |
| 1605 | if (!tb) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 1606 | cpu_abort(cpu, "cpu_io_recompile: could not find TB for pc=%p", |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1607 | (void *)retaddr); |
| 1608 | } |
Andreas Färber | 28ecfd7 | 2013-08-26 05:51:49 +0200 | [diff] [blame] | 1609 | n = cpu->icount_decr.u16.low + tb->icount; |
Andreas Färber | 74f1051 | 2013-09-01 17:02:58 +0200 | [diff] [blame] | 1610 | cpu_restore_state_from_tb(cpu, tb, retaddr); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1611 | /* Calculate how many instructions had been executed before the fault |
| 1612 | occurred. */ |
Andreas Färber | 28ecfd7 | 2013-08-26 05:51:49 +0200 | [diff] [blame] | 1613 | n = n - cpu->icount_decr.u16.low; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1614 | /* Generate a new TB ending on the I/O insn. */ |
| 1615 | n++; |
| 1616 | /* On MIPS and SH, delay slot instructions can only be restarted if |
| 1617 | they were already the first instruction in the TB. If this is not |
| 1618 | the first instruction in a TB then re-execute the preceding |
| 1619 | branch. */ |
| 1620 | #if defined(TARGET_MIPS) |
| 1621 | if ((env->hflags & MIPS_HFLAG_BMASK) != 0 && n > 1) { |
Maciej W. Rozycki | c357747 | 2014-11-07 20:05:35 +0000 | [diff] [blame] | 1622 | env->active_tc.PC -= (env->hflags & MIPS_HFLAG_B16 ? 2 : 4); |
Andreas Färber | 28ecfd7 | 2013-08-26 05:51:49 +0200 | [diff] [blame] | 1623 | cpu->icount_decr.u16.low++; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1624 | env->hflags &= ~MIPS_HFLAG_BMASK; |
| 1625 | } |
| 1626 | #elif defined(TARGET_SH4) |
| 1627 | if ((env->flags & ((DELAY_SLOT | DELAY_SLOT_CONDITIONAL))) != 0 |
| 1628 | && n > 1) { |
| 1629 | env->pc -= 2; |
Andreas Färber | 28ecfd7 | 2013-08-26 05:51:49 +0200 | [diff] [blame] | 1630 | cpu->icount_decr.u16.low++; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1631 | env->flags &= ~(DELAY_SLOT | DELAY_SLOT_CONDITIONAL); |
| 1632 | } |
| 1633 | #endif |
| 1634 | /* This should never happen. */ |
| 1635 | if (n > CF_COUNT_MASK) { |
Andreas Färber | a47dddd | 2013-09-03 17:38:47 +0200 | [diff] [blame] | 1636 | cpu_abort(cpu, "TB too big during recompile"); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1637 | } |
| 1638 | |
| 1639 | cflags = n | CF_LAST_IO; |
| 1640 | pc = tb->pc; |
| 1641 | cs_base = tb->cs_base; |
| 1642 | flags = tb->flags; |
| 1643 | tb_phys_invalidate(tb, -1); |
Sergey Fedorov | 02d57ea | 2015-06-30 12:35:09 +0300 | [diff] [blame] | 1644 | if (tb->cflags & CF_NOCACHE) { |
| 1645 | if (tb->orig_tb) { |
| 1646 | /* Invalidate original TB if this TB was generated in |
| 1647 | * cpu_exec_nocache() */ |
| 1648 | tb_phys_invalidate(tb->orig_tb, -1); |
| 1649 | } |
| 1650 | tb_free(tb); |
| 1651 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1652 | /* FIXME: In theory this could raise an exception. In practice |
| 1653 | we have already translated the block once so it's probably ok. */ |
Andreas Färber | 648f034 | 2013-09-01 17:43:17 +0200 | [diff] [blame] | 1654 | tb_gen_code(cpu, pc, cs_base, flags, cflags); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1655 | /* TODO: If env->pc != tb->pc (i.e. the faulting instruction was not |
| 1656 | the first in the TB) then we end up generating a whole new TB and |
| 1657 | repeating the fault, which is horribly inefficient. |
| 1658 | Better would be to execute just this insn uncached, or generate a |
| 1659 | second new TB. */ |
Peter Maydell | 6886b98 | 2016-05-17 15:18:04 +0100 | [diff] [blame] | 1660 | cpu_loop_exit_noexc(cpu); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1661 | } |
| 1662 | |
Andreas Färber | 611d4f9 | 2013-09-01 17:52:07 +0200 | [diff] [blame] | 1663 | void tb_flush_jmp_cache(CPUState *cpu, target_ulong addr) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1664 | { |
| 1665 | unsigned int i; |
| 1666 | |
| 1667 | /* Discard jump cache entries for any tb which might potentially |
| 1668 | overlap the flushed page. */ |
| 1669 | i = tb_jmp_cache_hash_page(addr - TARGET_PAGE_SIZE); |
Andreas Färber | 8cd7043 | 2013-08-26 06:03:38 +0200 | [diff] [blame] | 1670 | memset(&cpu->tb_jmp_cache[i], 0, |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1671 | TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *)); |
| 1672 | |
| 1673 | i = tb_jmp_cache_hash_page(addr); |
Andreas Färber | 8cd7043 | 2013-08-26 06:03:38 +0200 | [diff] [blame] | 1674 | memset(&cpu->tb_jmp_cache[i], 0, |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1675 | TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *)); |
| 1676 | } |
| 1677 | |
Emilio G. Cota | 7266ae9 | 2016-07-22 12:36:30 -0400 | [diff] [blame] | 1678 | static void print_qht_statistics(FILE *f, fprintf_function cpu_fprintf, |
| 1679 | struct qht_stats hst) |
| 1680 | { |
| 1681 | uint32_t hgram_opts; |
| 1682 | size_t hgram_bins; |
| 1683 | char *hgram; |
| 1684 | |
| 1685 | if (!hst.head_buckets) { |
| 1686 | return; |
| 1687 | } |
| 1688 | cpu_fprintf(f, "TB hash buckets %zu/%zu (%0.2f%% head buckets used)\n", |
| 1689 | hst.used_head_buckets, hst.head_buckets, |
| 1690 | (double)hst.used_head_buckets / hst.head_buckets * 100); |
| 1691 | |
| 1692 | hgram_opts = QDIST_PR_BORDER | QDIST_PR_LABELS; |
| 1693 | hgram_opts |= QDIST_PR_100X | QDIST_PR_PERCENT; |
| 1694 | if (qdist_xmax(&hst.occupancy) - qdist_xmin(&hst.occupancy) == 1) { |
| 1695 | hgram_opts |= QDIST_PR_NODECIMAL; |
| 1696 | } |
| 1697 | hgram = qdist_pr(&hst.occupancy, 10, hgram_opts); |
| 1698 | cpu_fprintf(f, "TB hash occupancy %0.2f%% avg chain occ. Histogram: %s\n", |
| 1699 | qdist_avg(&hst.occupancy) * 100, hgram); |
| 1700 | g_free(hgram); |
| 1701 | |
| 1702 | hgram_opts = QDIST_PR_BORDER | QDIST_PR_LABELS; |
| 1703 | hgram_bins = qdist_xmax(&hst.chain) - qdist_xmin(&hst.chain); |
| 1704 | if (hgram_bins > 10) { |
| 1705 | hgram_bins = 10; |
| 1706 | } else { |
| 1707 | hgram_bins = 0; |
| 1708 | hgram_opts |= QDIST_PR_NODECIMAL | QDIST_PR_NOBINRANGE; |
| 1709 | } |
| 1710 | hgram = qdist_pr(&hst.chain, hgram_bins, hgram_opts); |
| 1711 | cpu_fprintf(f, "TB hash avg chain %0.3f buckets. Histogram: %s\n", |
| 1712 | qdist_avg(&hst.chain), hgram); |
| 1713 | g_free(hgram); |
| 1714 | } |
| 1715 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1716 | void dump_exec_info(FILE *f, fprintf_function cpu_fprintf) |
| 1717 | { |
| 1718 | int i, target_code_size, max_target_code_size; |
| 1719 | int direct_jmp_count, direct_jmp2_count, cross_page; |
| 1720 | TranslationBlock *tb; |
Emilio G. Cota | 329844d | 2016-06-08 14:55:33 -0400 | [diff] [blame] | 1721 | struct qht_stats hst; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1722 | |
| 1723 | target_code_size = 0; |
| 1724 | max_target_code_size = 0; |
| 1725 | cross_page = 0; |
| 1726 | direct_jmp_count = 0; |
| 1727 | direct_jmp2_count = 0; |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1728 | for (i = 0; i < tcg_ctx.tb_ctx.nb_tbs; i++) { |
| 1729 | tb = &tcg_ctx.tb_ctx.tbs[i]; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1730 | target_code_size += tb->size; |
| 1731 | if (tb->size > max_target_code_size) { |
| 1732 | max_target_code_size = tb->size; |
| 1733 | } |
| 1734 | if (tb->page_addr[1] != -1) { |
| 1735 | cross_page++; |
| 1736 | } |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 1737 | if (tb->jmp_reset_offset[0] != TB_JMP_RESET_OFFSET_INVALID) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1738 | direct_jmp_count++; |
Sergey Fedorov | f309101 | 2016-04-10 23:35:45 +0300 | [diff] [blame] | 1739 | if (tb->jmp_reset_offset[1] != TB_JMP_RESET_OFFSET_INVALID) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1740 | direct_jmp2_count++; |
| 1741 | } |
| 1742 | } |
| 1743 | } |
| 1744 | /* XXX: avoid using doubles ? */ |
| 1745 | cpu_fprintf(f, "Translation buffer state:\n"); |
| 1746 | cpu_fprintf(f, "gen code size %td/%zd\n", |
Evgeny Voevodin | 0b0d332 | 2013-02-01 01:47:22 +0700 | [diff] [blame] | 1747 | tcg_ctx.code_gen_ptr - tcg_ctx.code_gen_buffer, |
Richard Henderson | b125f9d | 2015-09-22 13:01:15 -0700 | [diff] [blame] | 1748 | tcg_ctx.code_gen_highwater - tcg_ctx.code_gen_buffer); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1749 | cpu_fprintf(f, "TB count %d/%d\n", |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1750 | tcg_ctx.tb_ctx.nb_tbs, tcg_ctx.code_gen_max_blocks); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1751 | cpu_fprintf(f, "TB avg target size %d max=%d bytes\n", |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1752 | tcg_ctx.tb_ctx.nb_tbs ? target_code_size / |
| 1753 | tcg_ctx.tb_ctx.nb_tbs : 0, |
| 1754 | max_target_code_size); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1755 | cpu_fprintf(f, "TB avg host size %td bytes (expansion ratio: %0.1f)\n", |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1756 | tcg_ctx.tb_ctx.nb_tbs ? (tcg_ctx.code_gen_ptr - |
| 1757 | tcg_ctx.code_gen_buffer) / |
| 1758 | tcg_ctx.tb_ctx.nb_tbs : 0, |
| 1759 | target_code_size ? (double) (tcg_ctx.code_gen_ptr - |
| 1760 | tcg_ctx.code_gen_buffer) / |
| 1761 | target_code_size : 0); |
| 1762 | cpu_fprintf(f, "cross page TB count %d (%d%%)\n", cross_page, |
| 1763 | tcg_ctx.tb_ctx.nb_tbs ? (cross_page * 100) / |
| 1764 | tcg_ctx.tb_ctx.nb_tbs : 0); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1765 | cpu_fprintf(f, "direct jump count %d (%d%%) (2 jumps=%d %d%%)\n", |
| 1766 | direct_jmp_count, |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1767 | tcg_ctx.tb_ctx.nb_tbs ? (direct_jmp_count * 100) / |
| 1768 | tcg_ctx.tb_ctx.nb_tbs : 0, |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1769 | direct_jmp2_count, |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1770 | tcg_ctx.tb_ctx.nb_tbs ? (direct_jmp2_count * 100) / |
| 1771 | tcg_ctx.tb_ctx.nb_tbs : 0); |
Emilio G. Cota | 329844d | 2016-06-08 14:55:33 -0400 | [diff] [blame] | 1772 | |
| 1773 | qht_statistics_init(&tcg_ctx.tb_ctx.htable, &hst); |
Emilio G. Cota | 7266ae9 | 2016-07-22 12:36:30 -0400 | [diff] [blame] | 1774 | print_qht_statistics(f, cpu_fprintf, hst); |
Emilio G. Cota | 329844d | 2016-06-08 14:55:33 -0400 | [diff] [blame] | 1775 | qht_statistics_destroy(&hst); |
| 1776 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1777 | cpu_fprintf(f, "\nStatistics:\n"); |
Evgeny Voevodin | 5e5f07e | 2013-02-01 01:47:23 +0700 | [diff] [blame] | 1778 | cpu_fprintf(f, "TB flush count %d\n", tcg_ctx.tb_ctx.tb_flush_count); |
| 1779 | cpu_fprintf(f, "TB invalidate count %d\n", |
| 1780 | tcg_ctx.tb_ctx.tb_phys_invalidate_count); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1781 | cpu_fprintf(f, "TLB flush count %d\n", tlb_flush_count); |
| 1782 | tcg_dump_info(f, cpu_fprintf); |
| 1783 | } |
| 1784 | |
Max Filippov | 246ae24 | 2014-11-02 11:04:18 +0300 | [diff] [blame] | 1785 | void dump_opcount_info(FILE *f, fprintf_function cpu_fprintf) |
| 1786 | { |
| 1787 | tcg_dump_op_count(f, cpu_fprintf); |
| 1788 | } |
| 1789 | |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1790 | #else /* CONFIG_USER_ONLY */ |
| 1791 | |
Andreas Färber | c3affe5 | 2013-01-18 15:03:43 +0100 | [diff] [blame] | 1792 | void cpu_interrupt(CPUState *cpu, int mask) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1793 | { |
Andreas Färber | 259186a | 2013-01-17 18:51:17 +0100 | [diff] [blame] | 1794 | cpu->interrupt_request |= mask; |
Peter Maydell | 378df4b | 2013-02-22 18:10:03 +0000 | [diff] [blame] | 1795 | cpu->tcg_exit_req = 1; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1796 | } |
| 1797 | |
| 1798 | /* |
| 1799 | * Walks guest process memory "regions" one by one |
| 1800 | * and calls callback function 'fn' for each region. |
| 1801 | */ |
| 1802 | struct walk_memory_regions_data { |
| 1803 | walk_memory_regions_fn fn; |
| 1804 | void *priv; |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1805 | target_ulong start; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1806 | int prot; |
| 1807 | }; |
| 1808 | |
| 1809 | static int walk_memory_regions_end(struct walk_memory_regions_data *data, |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1810 | target_ulong end, int new_prot) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1811 | { |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1812 | if (data->start != -1u) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1813 | int rc = data->fn(data->priv, data->start, end, data->prot); |
| 1814 | if (rc != 0) { |
| 1815 | return rc; |
| 1816 | } |
| 1817 | } |
| 1818 | |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1819 | data->start = (new_prot ? end : -1u); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1820 | data->prot = new_prot; |
| 1821 | |
| 1822 | return 0; |
| 1823 | } |
| 1824 | |
| 1825 | static int walk_memory_regions_1(struct walk_memory_regions_data *data, |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1826 | target_ulong base, int level, void **lp) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1827 | { |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1828 | target_ulong pa; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1829 | int i, rc; |
| 1830 | |
| 1831 | if (*lp == NULL) { |
| 1832 | return walk_memory_regions_end(data, base, 0); |
| 1833 | } |
| 1834 | |
| 1835 | if (level == 0) { |
| 1836 | PageDesc *pd = *lp; |
| 1837 | |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 1838 | for (i = 0; i < V_L2_SIZE; ++i) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1839 | int prot = pd[i].flags; |
| 1840 | |
| 1841 | pa = base | (i << TARGET_PAGE_BITS); |
| 1842 | if (prot != data->prot) { |
| 1843 | rc = walk_memory_regions_end(data, pa, prot); |
| 1844 | if (rc != 0) { |
| 1845 | return rc; |
| 1846 | } |
| 1847 | } |
| 1848 | } |
| 1849 | } else { |
| 1850 | void **pp = *lp; |
| 1851 | |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 1852 | for (i = 0; i < V_L2_SIZE; ++i) { |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1853 | pa = base | ((target_ulong)i << |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 1854 | (TARGET_PAGE_BITS + V_L2_BITS * level)); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1855 | rc = walk_memory_regions_1(data, pa, level - 1, pp + i); |
| 1856 | if (rc != 0) { |
| 1857 | return rc; |
| 1858 | } |
| 1859 | } |
| 1860 | } |
| 1861 | |
| 1862 | return 0; |
| 1863 | } |
| 1864 | |
| 1865 | int walk_memory_regions(void *priv, walk_memory_regions_fn fn) |
| 1866 | { |
| 1867 | struct walk_memory_regions_data data; |
| 1868 | uintptr_t i; |
| 1869 | |
| 1870 | data.fn = fn; |
| 1871 | data.priv = priv; |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1872 | data.start = -1u; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1873 | data.prot = 0; |
| 1874 | |
| 1875 | for (i = 0; i < V_L1_SIZE; i++) { |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1876 | int rc = walk_memory_regions_1(&data, (target_ulong)i << (V_L1_SHIFT + TARGET_PAGE_BITS), |
Paolo Bonzini | 03f4995 | 2013-11-07 17:14:36 +0100 | [diff] [blame] | 1877 | V_L1_SHIFT / V_L2_BITS - 1, l1_map + i); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1878 | if (rc != 0) { |
| 1879 | return rc; |
| 1880 | } |
| 1881 | } |
| 1882 | |
| 1883 | return walk_memory_regions_end(&data, 0, 0); |
| 1884 | } |
| 1885 | |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1886 | static int dump_region(void *priv, target_ulong start, |
| 1887 | target_ulong end, unsigned long prot) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1888 | { |
| 1889 | FILE *f = (FILE *)priv; |
| 1890 | |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1891 | (void) fprintf(f, TARGET_FMT_lx"-"TARGET_FMT_lx |
| 1892 | " "TARGET_FMT_lx" %c%c%c\n", |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1893 | start, end, end - start, |
| 1894 | ((prot & PAGE_READ) ? 'r' : '-'), |
| 1895 | ((prot & PAGE_WRITE) ? 'w' : '-'), |
| 1896 | ((prot & PAGE_EXEC) ? 'x' : '-')); |
| 1897 | |
| 1898 | return 0; |
| 1899 | } |
| 1900 | |
| 1901 | /* dump memory mappings */ |
| 1902 | void page_dump(FILE *f) |
| 1903 | { |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1904 | const int length = sizeof(target_ulong) * 2; |
Stefan Weil | 227b817 | 2013-09-12 20:09:06 +0200 | [diff] [blame] | 1905 | (void) fprintf(f, "%-*s %-*s %-*s %s\n", |
| 1906 | length, "start", length, "end", length, "size", "prot"); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1907 | walk_memory_regions(f, dump_region); |
| 1908 | } |
| 1909 | |
| 1910 | int page_get_flags(target_ulong address) |
| 1911 | { |
| 1912 | PageDesc *p; |
| 1913 | |
| 1914 | p = page_find(address >> TARGET_PAGE_BITS); |
| 1915 | if (!p) { |
| 1916 | return 0; |
| 1917 | } |
| 1918 | return p->flags; |
| 1919 | } |
| 1920 | |
| 1921 | /* Modify the flags of a page and invalidate the code if necessary. |
| 1922 | The flag PAGE_WRITE_ORG is positioned automatically depending |
| 1923 | on PAGE_WRITE. The mmap_lock should already be held. */ |
| 1924 | void page_set_flags(target_ulong start, target_ulong end, int flags) |
| 1925 | { |
| 1926 | target_ulong addr, len; |
| 1927 | |
| 1928 | /* This function should never be called with addresses outside the |
| 1929 | guest address space. If this assert fires, it probably indicates |
| 1930 | a missing call to h2g_valid. */ |
| 1931 | #if TARGET_ABI_BITS > L1_MAP_ADDR_SPACE_BITS |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1932 | assert(end < ((target_ulong)1 << L1_MAP_ADDR_SPACE_BITS)); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1933 | #endif |
| 1934 | assert(start < end); |
| 1935 | |
| 1936 | start = start & TARGET_PAGE_MASK; |
| 1937 | end = TARGET_PAGE_ALIGN(end); |
| 1938 | |
| 1939 | if (flags & PAGE_WRITE) { |
| 1940 | flags |= PAGE_WRITE_ORG; |
| 1941 | } |
| 1942 | |
| 1943 | for (addr = start, len = end - start; |
| 1944 | len != 0; |
| 1945 | len -= TARGET_PAGE_SIZE, addr += TARGET_PAGE_SIZE) { |
| 1946 | PageDesc *p = page_find_alloc(addr >> TARGET_PAGE_BITS, 1); |
| 1947 | |
| 1948 | /* If the write protection bit is set, then we invalidate |
| 1949 | the code inside. */ |
| 1950 | if (!(p->flags & PAGE_WRITE) && |
| 1951 | (flags & PAGE_WRITE) && |
| 1952 | p->first_tb) { |
Peter Maydell | 7580922 | 2016-05-17 15:18:02 +0100 | [diff] [blame] | 1953 | tb_invalidate_phys_page(addr, 0); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1954 | } |
| 1955 | p->flags = flags; |
| 1956 | } |
| 1957 | } |
| 1958 | |
| 1959 | int page_check_range(target_ulong start, target_ulong len, int flags) |
| 1960 | { |
| 1961 | PageDesc *p; |
| 1962 | target_ulong end; |
| 1963 | target_ulong addr; |
| 1964 | |
| 1965 | /* This function should never be called with addresses outside the |
| 1966 | guest address space. If this assert fires, it probably indicates |
| 1967 | a missing call to h2g_valid. */ |
| 1968 | #if TARGET_ABI_BITS > L1_MAP_ADDR_SPACE_BITS |
Mikhail Ilyin | 1a1c4db | 2014-09-08 17:28:56 +0400 | [diff] [blame] | 1969 | assert(start < ((target_ulong)1 << L1_MAP_ADDR_SPACE_BITS)); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 1970 | #endif |
| 1971 | |
| 1972 | if (len == 0) { |
| 1973 | return 0; |
| 1974 | } |
| 1975 | if (start + len - 1 < start) { |
| 1976 | /* We've wrapped around. */ |
| 1977 | return -1; |
| 1978 | } |
| 1979 | |
| 1980 | /* must do before we loose bits in the next step */ |
| 1981 | end = TARGET_PAGE_ALIGN(start + len); |
| 1982 | start = start & TARGET_PAGE_MASK; |
| 1983 | |
| 1984 | for (addr = start, len = end - start; |
| 1985 | len != 0; |
| 1986 | len -= TARGET_PAGE_SIZE, addr += TARGET_PAGE_SIZE) { |
| 1987 | p = page_find(addr >> TARGET_PAGE_BITS); |
| 1988 | if (!p) { |
| 1989 | return -1; |
| 1990 | } |
| 1991 | if (!(p->flags & PAGE_VALID)) { |
| 1992 | return -1; |
| 1993 | } |
| 1994 | |
| 1995 | if ((flags & PAGE_READ) && !(p->flags & PAGE_READ)) { |
| 1996 | return -1; |
| 1997 | } |
| 1998 | if (flags & PAGE_WRITE) { |
| 1999 | if (!(p->flags & PAGE_WRITE_ORG)) { |
| 2000 | return -1; |
| 2001 | } |
| 2002 | /* unprotect the page if it was put read-only because it |
| 2003 | contains translated code */ |
| 2004 | if (!(p->flags & PAGE_WRITE)) { |
Peter Maydell | f213e72 | 2016-05-17 15:18:03 +0100 | [diff] [blame] | 2005 | if (!page_unprotect(addr, 0)) { |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 2006 | return -1; |
| 2007 | } |
| 2008 | } |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 2009 | } |
| 2010 | } |
| 2011 | return 0; |
| 2012 | } |
| 2013 | |
| 2014 | /* called from signal handler: invalidate the code and unprotect the |
Peter Maydell | f213e72 | 2016-05-17 15:18:03 +0100 | [diff] [blame] | 2015 | * page. Return 0 if the fault was not handled, 1 if it was handled, |
| 2016 | * and 2 if it was handled but the caller must cause the TB to be |
| 2017 | * immediately exited. (We can only return 2 if the 'pc' argument is |
| 2018 | * non-zero.) |
| 2019 | */ |
| 2020 | int page_unprotect(target_ulong address, uintptr_t pc) |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 2021 | { |
| 2022 | unsigned int prot; |
Stanislav Shmarov | 7399a33 | 2016-07-07 11:33:12 +0300 | [diff] [blame] | 2023 | bool current_tb_invalidated; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 2024 | PageDesc *p; |
| 2025 | target_ulong host_start, host_end, addr; |
| 2026 | |
| 2027 | /* Technically this isn't safe inside a signal handler. However we |
| 2028 | know this only ever happens in a synchronous SEGV handler, so in |
| 2029 | practice it seems to be ok. */ |
| 2030 | mmap_lock(); |
| 2031 | |
| 2032 | p = page_find(address >> TARGET_PAGE_BITS); |
| 2033 | if (!p) { |
| 2034 | mmap_unlock(); |
| 2035 | return 0; |
| 2036 | } |
| 2037 | |
| 2038 | /* if the page was really writable, then we change its |
| 2039 | protection back to writable */ |
| 2040 | if ((p->flags & PAGE_WRITE_ORG) && !(p->flags & PAGE_WRITE)) { |
| 2041 | host_start = address & qemu_host_page_mask; |
| 2042 | host_end = host_start + qemu_host_page_size; |
| 2043 | |
| 2044 | prot = 0; |
Stanislav Shmarov | 7399a33 | 2016-07-07 11:33:12 +0300 | [diff] [blame] | 2045 | current_tb_invalidated = false; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 2046 | for (addr = host_start ; addr < host_end ; addr += TARGET_PAGE_SIZE) { |
| 2047 | p = page_find(addr >> TARGET_PAGE_BITS); |
| 2048 | p->flags |= PAGE_WRITE; |
| 2049 | prot |= p->flags; |
| 2050 | |
| 2051 | /* and since the content will be modified, we must invalidate |
| 2052 | the corresponding translated code. */ |
Stanislav Shmarov | 7399a33 | 2016-07-07 11:33:12 +0300 | [diff] [blame] | 2053 | current_tb_invalidated |= tb_invalidate_phys_page(addr, pc); |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 2054 | #ifdef DEBUG_TB_CHECK |
| 2055 | tb_invalidate_check(addr); |
| 2056 | #endif |
| 2057 | } |
| 2058 | mprotect((void *)g2h(host_start), qemu_host_page_size, |
| 2059 | prot & PAGE_BITS); |
| 2060 | |
| 2061 | mmap_unlock(); |
Stanislav Shmarov | 7399a33 | 2016-07-07 11:33:12 +0300 | [diff] [blame] | 2062 | /* If current TB was invalidated return to main loop */ |
| 2063 | return current_tb_invalidated ? 2 : 1; |
Blue Swirl | 5b6dd86 | 2012-12-02 16:04:43 +0000 | [diff] [blame] | 2064 | } |
| 2065 | mmap_unlock(); |
| 2066 | return 0; |
| 2067 | } |
| 2068 | #endif /* CONFIG_USER_ONLY */ |