bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 1 | /* |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 2 | * virtual page mapping and translated block handling |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 5493600 | 2003-05-13 00:25:15 +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 |
| 17 | * License along with this library; if not, write to the Free Software |
aurel32 | fad6cb1 | 2009-01-04 22:05:52 +0000 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 19 | */ |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 20 | #include "config.h" |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 21 | #ifdef _WIN32 |
| 22 | #include <windows.h> |
| 23 | #else |
bellard | a98d49b | 2004-11-14 16:22:05 +0000 | [diff] [blame] | 24 | #include <sys/types.h> |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 25 | #include <sys/mman.h> |
| 26 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 27 | #include <stdlib.h> |
| 28 | #include <stdio.h> |
| 29 | #include <stdarg.h> |
| 30 | #include <string.h> |
| 31 | #include <errno.h> |
| 32 | #include <unistd.h> |
| 33 | #include <inttypes.h> |
| 34 | |
bellard | 6180a18 | 2003-09-30 21:04:53 +0000 | [diff] [blame] | 35 | #include "cpu.h" |
| 36 | #include "exec-all.h" |
aurel32 | ca10f86 | 2008-04-11 21:35:42 +0000 | [diff] [blame] | 37 | #include "qemu-common.h" |
bellard | b67d9a5 | 2008-05-23 09:57:34 +0000 | [diff] [blame] | 38 | #include "tcg.h" |
pbrook | b3c7724 | 2008-06-30 16:31:04 +0000 | [diff] [blame] | 39 | #include "hw/hw.h" |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 40 | #include "osdep.h" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 41 | #include "kvm.h" |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 42 | #if defined(CONFIG_USER_ONLY) |
| 43 | #include <qemu.h> |
| 44 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 45 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 46 | //#define DEBUG_TB_INVALIDATE |
bellard | 66e85a2 | 2003-06-24 13:28:12 +0000 | [diff] [blame] | 47 | //#define DEBUG_FLUSH |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 48 | //#define DEBUG_TLB |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 49 | //#define DEBUG_UNASSIGNED |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 50 | |
| 51 | /* make various TB consistency checks */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 52 | //#define DEBUG_TB_CHECK |
| 53 | //#define DEBUG_TLB_CHECK |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 54 | |
ths | 1196be3 | 2007-03-17 15:17:58 +0000 | [diff] [blame] | 55 | //#define DEBUG_IOPORT |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 56 | //#define DEBUG_SUBPAGE |
ths | 1196be3 | 2007-03-17 15:17:58 +0000 | [diff] [blame] | 57 | |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 58 | #if !defined(CONFIG_USER_ONLY) |
| 59 | /* TB consistency checks only implemented for usermode emulation. */ |
| 60 | #undef DEBUG_TB_CHECK |
| 61 | #endif |
| 62 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 63 | #define SMC_BITMAP_USE_THRESHOLD 10 |
| 64 | |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 65 | #if defined(TARGET_SPARC64) |
| 66 | #define TARGET_PHYS_ADDR_SPACE_BITS 41 |
blueswir1 | 5dcb6b9 | 2007-05-19 12:58:30 +0000 | [diff] [blame] | 67 | #elif defined(TARGET_SPARC) |
| 68 | #define TARGET_PHYS_ADDR_SPACE_BITS 36 |
j_mayer | bedb69e | 2007-04-05 20:08:21 +0000 | [diff] [blame] | 69 | #elif defined(TARGET_ALPHA) |
| 70 | #define TARGET_PHYS_ADDR_SPACE_BITS 42 |
| 71 | #define TARGET_VIRT_ADDR_SPACE_BITS 42 |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 72 | #elif defined(TARGET_PPC64) |
| 73 | #define TARGET_PHYS_ADDR_SPACE_BITS 42 |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 74 | #elif defined(TARGET_X86_64) && !defined(CONFIG_KQEMU) |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 75 | #define TARGET_PHYS_ADDR_SPACE_BITS 42 |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 76 | #elif defined(TARGET_I386) && !defined(CONFIG_KQEMU) |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 77 | #define TARGET_PHYS_ADDR_SPACE_BITS 36 |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 78 | #else |
| 79 | /* Note: for compatibility with kqemu, we use 32 bits for x86_64 */ |
| 80 | #define TARGET_PHYS_ADDR_SPACE_BITS 32 |
| 81 | #endif |
| 82 | |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 83 | static TranslationBlock *tbs; |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 84 | int code_gen_max_blocks; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 85 | TranslationBlock *tb_phys_hash[CODE_GEN_PHYS_HASH_SIZE]; |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 86 | static int nb_tbs; |
bellard | eb51d10 | 2003-05-14 21:51:13 +0000 | [diff] [blame] | 87 | /* any access to the tbs or the page table must use this lock */ |
| 88 | spinlock_t tb_lock = SPIN_LOCK_UNLOCKED; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 89 | |
blueswir1 | 141ac46 | 2008-07-26 15:05:57 +0000 | [diff] [blame] | 90 | #if defined(__arm__) || defined(__sparc_v9__) |
| 91 | /* The prologue must be reachable with a direct jump. ARM and Sparc64 |
| 92 | have limited branch ranges (possibly also PPC) so place it in a |
blueswir1 | d03d860 | 2008-07-10 17:21:31 +0000 | [diff] [blame] | 93 | section close to code segment. */ |
| 94 | #define code_gen_section \ |
| 95 | __attribute__((__section__(".gen_code"))) \ |
| 96 | __attribute__((aligned (32))) |
| 97 | #else |
| 98 | #define code_gen_section \ |
| 99 | __attribute__((aligned (32))) |
| 100 | #endif |
| 101 | |
| 102 | uint8_t code_gen_prologue[1024] code_gen_section; |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 103 | static uint8_t *code_gen_buffer; |
| 104 | static unsigned long code_gen_buffer_size; |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 105 | /* threshold to flush the translated code buffer */ |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 106 | static unsigned long code_gen_buffer_max_size; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 107 | uint8_t *code_gen_ptr; |
| 108 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 109 | #if !defined(CONFIG_USER_ONLY) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 110 | int phys_ram_fd; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 111 | uint8_t *phys_ram_dirty; |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 112 | static int in_migration; |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 113 | |
| 114 | typedef struct RAMBlock { |
| 115 | uint8_t *host; |
| 116 | ram_addr_t offset; |
| 117 | ram_addr_t length; |
| 118 | struct RAMBlock *next; |
| 119 | } RAMBlock; |
| 120 | |
| 121 | static RAMBlock *ram_blocks; |
| 122 | /* TODO: When we implement (and use) ram deallocation (e.g. for hotplug) |
| 123 | then we can no longet assume contiguous ram offsets, and external uses |
| 124 | of this variable will break. */ |
| 125 | ram_addr_t last_ram_offset; |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 126 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 127 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 128 | CPUState *first_cpu; |
| 129 | /* current CPU in the current thread. It is only valid inside |
| 130 | cpu_exec() */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 131 | CPUState *cpu_single_env; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 132 | /* 0 = Do not count executed instructions. |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 133 | 1 = Precise instruction counting. |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 134 | 2 = Adaptive rate instruction counting. */ |
| 135 | int use_icount = 0; |
| 136 | /* Current instruction counter. While executing translated code this may |
| 137 | include some instructions that have not yet been executed. */ |
| 138 | int64_t qemu_icount; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 139 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 140 | typedef struct PageDesc { |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 141 | /* list of TBs intersecting this ram page */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 142 | TranslationBlock *first_tb; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 143 | /* in order to optimize self modifying code, we count the number |
| 144 | of lookups we do to a given page to use a bitmap */ |
| 145 | unsigned int code_write_count; |
| 146 | uint8_t *code_bitmap; |
| 147 | #if defined(CONFIG_USER_ONLY) |
| 148 | unsigned long flags; |
| 149 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 150 | } PageDesc; |
| 151 | |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 152 | typedef struct PhysPageDesc { |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 153 | /* offset in host memory of the page + io_index in the low bits */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 154 | ram_addr_t phys_offset; |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 155 | ram_addr_t region_offset; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 156 | } PhysPageDesc; |
| 157 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 158 | #define L2_BITS 10 |
j_mayer | bedb69e | 2007-04-05 20:08:21 +0000 | [diff] [blame] | 159 | #if defined(CONFIG_USER_ONLY) && defined(TARGET_VIRT_ADDR_SPACE_BITS) |
| 160 | /* XXX: this is a temporary hack for alpha target. |
| 161 | * In the future, this is to be replaced by a multi-level table |
| 162 | * to actually be able to handle the complete 64 bits address space. |
| 163 | */ |
| 164 | #define L1_BITS (TARGET_VIRT_ADDR_SPACE_BITS - L2_BITS - TARGET_PAGE_BITS) |
| 165 | #else |
aurel32 | 0387544 | 2008-04-22 20:45:18 +0000 | [diff] [blame] | 166 | #define L1_BITS (32 - L2_BITS - TARGET_PAGE_BITS) |
j_mayer | bedb69e | 2007-04-05 20:08:21 +0000 | [diff] [blame] | 167 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 168 | |
| 169 | #define L1_SIZE (1 << L1_BITS) |
| 170 | #define L2_SIZE (1 << L2_BITS) |
| 171 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 172 | unsigned long qemu_real_host_page_size; |
| 173 | unsigned long qemu_host_page_bits; |
| 174 | unsigned long qemu_host_page_size; |
| 175 | unsigned long qemu_host_page_mask; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 176 | |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 177 | /* XXX: for system emulation, it could just be an array */ |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 178 | static PageDesc *l1_map[L1_SIZE]; |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 179 | static PhysPageDesc **l1_phys_map; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 180 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 181 | #if !defined(CONFIG_USER_ONLY) |
| 182 | static void io_mem_init(void); |
| 183 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 184 | /* io memory support */ |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 185 | CPUWriteMemoryFunc *io_mem_write[IO_MEM_NB_ENTRIES][4]; |
| 186 | CPUReadMemoryFunc *io_mem_read[IO_MEM_NB_ENTRIES][4]; |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 187 | void *io_mem_opaque[IO_MEM_NB_ENTRIES]; |
blueswir1 | 511d2b1 | 2009-03-07 15:32:56 +0000 | [diff] [blame] | 188 | static char io_mem_used[IO_MEM_NB_ENTRIES]; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 189 | static int io_mem_watch; |
| 190 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 191 | |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 192 | /* log support */ |
blueswir1 | d9b630f | 2008-10-05 09:57:08 +0000 | [diff] [blame] | 193 | static const char *logfilename = "/tmp/qemu.log"; |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 194 | FILE *logfile; |
| 195 | int loglevel; |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 196 | static int log_append = 0; |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 197 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 198 | /* statistics */ |
| 199 | static int tlb_flush_count; |
| 200 | static int tb_flush_count; |
| 201 | static int tb_phys_invalidate_count; |
| 202 | |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 203 | #define SUBPAGE_IDX(addr) ((addr) & ~TARGET_PAGE_MASK) |
| 204 | typedef struct subpage_t { |
| 205 | target_phys_addr_t base; |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 206 | CPUReadMemoryFunc **mem_read[TARGET_PAGE_SIZE][4]; |
| 207 | CPUWriteMemoryFunc **mem_write[TARGET_PAGE_SIZE][4]; |
| 208 | void *opaque[TARGET_PAGE_SIZE][2][4]; |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 209 | ram_addr_t region_offset[TARGET_PAGE_SIZE][2][4]; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 210 | } subpage_t; |
| 211 | |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 212 | #ifdef _WIN32 |
| 213 | static void map_exec(void *addr, long size) |
| 214 | { |
| 215 | DWORD old_protect; |
| 216 | VirtualProtect(addr, size, |
| 217 | PAGE_EXECUTE_READWRITE, &old_protect); |
| 218 | |
| 219 | } |
| 220 | #else |
| 221 | static void map_exec(void *addr, long size) |
| 222 | { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 223 | unsigned long start, end, page_size; |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 224 | |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 225 | page_size = getpagesize(); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 226 | start = (unsigned long)addr; |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 227 | start &= ~(page_size - 1); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 228 | |
| 229 | end = (unsigned long)addr + size; |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 230 | end += page_size - 1; |
| 231 | end &= ~(page_size - 1); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 232 | |
| 233 | mprotect((void *)start, end - start, |
| 234 | PROT_READ | PROT_WRITE | PROT_EXEC); |
| 235 | } |
| 236 | #endif |
| 237 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 238 | static void page_init(void) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 239 | { |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 240 | /* NOTE: we can always suppose that qemu_host_page_size >= |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 241 | TARGET_PAGE_SIZE */ |
aliguori | c2b48b6 | 2008-11-11 22:06:42 +0000 | [diff] [blame] | 242 | #ifdef _WIN32 |
| 243 | { |
| 244 | SYSTEM_INFO system_info; |
| 245 | |
| 246 | GetSystemInfo(&system_info); |
| 247 | qemu_real_host_page_size = system_info.dwPageSize; |
| 248 | } |
| 249 | #else |
| 250 | qemu_real_host_page_size = getpagesize(); |
| 251 | #endif |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 252 | if (qemu_host_page_size == 0) |
| 253 | qemu_host_page_size = qemu_real_host_page_size; |
| 254 | if (qemu_host_page_size < TARGET_PAGE_SIZE) |
| 255 | qemu_host_page_size = TARGET_PAGE_SIZE; |
| 256 | qemu_host_page_bits = 0; |
| 257 | while ((1 << qemu_host_page_bits) < qemu_host_page_size) |
| 258 | qemu_host_page_bits++; |
| 259 | qemu_host_page_mask = ~(qemu_host_page_size - 1); |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 260 | l1_phys_map = qemu_vmalloc(L1_SIZE * sizeof(void *)); |
| 261 | memset(l1_phys_map, 0, L1_SIZE * sizeof(void *)); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 262 | |
| 263 | #if !defined(_WIN32) && defined(CONFIG_USER_ONLY) |
| 264 | { |
| 265 | long long startaddr, endaddr; |
| 266 | FILE *f; |
| 267 | int n; |
| 268 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 269 | mmap_lock(); |
pbrook | 0776590 | 2008-05-31 16:33:53 +0000 | [diff] [blame] | 270 | last_brk = (unsigned long)sbrk(0); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 271 | f = fopen("/proc/self/maps", "r"); |
| 272 | if (f) { |
| 273 | do { |
| 274 | n = fscanf (f, "%llx-%llx %*[^\n]\n", &startaddr, &endaddr); |
| 275 | if (n == 2) { |
blueswir1 | e0b8d65 | 2008-05-03 17:51:24 +0000 | [diff] [blame] | 276 | startaddr = MIN(startaddr, |
| 277 | (1ULL << TARGET_PHYS_ADDR_SPACE_BITS) - 1); |
| 278 | endaddr = MIN(endaddr, |
| 279 | (1ULL << TARGET_PHYS_ADDR_SPACE_BITS) - 1); |
pbrook | b5fc909 | 2008-05-29 13:56:10 +0000 | [diff] [blame] | 280 | page_set_flags(startaddr & TARGET_PAGE_MASK, |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 281 | TARGET_PAGE_ALIGN(endaddr), |
| 282 | PAGE_RESERVED); |
| 283 | } |
| 284 | } while (!feof(f)); |
| 285 | fclose(f); |
| 286 | } |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 287 | mmap_unlock(); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 288 | } |
| 289 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 290 | } |
| 291 | |
aliguori | 434929b | 2008-09-15 15:56:30 +0000 | [diff] [blame] | 292 | static inline PageDesc **page_l1_map(target_ulong index) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 293 | { |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 294 | #if TARGET_LONG_BITS > 32 |
| 295 | /* Host memory outside guest VM. For 32-bit targets we have already |
| 296 | excluded high addresses. */ |
ths | d8173e0 | 2008-08-29 13:10:00 +0000 | [diff] [blame] | 297 | if (index > ((target_ulong)L2_SIZE * L1_SIZE)) |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 298 | return NULL; |
| 299 | #endif |
aliguori | 434929b | 2008-09-15 15:56:30 +0000 | [diff] [blame] | 300 | return &l1_map[index >> L2_BITS]; |
| 301 | } |
| 302 | |
| 303 | static inline PageDesc *page_find_alloc(target_ulong index) |
| 304 | { |
| 305 | PageDesc **lp, *p; |
| 306 | lp = page_l1_map(index); |
| 307 | if (!lp) |
| 308 | return NULL; |
| 309 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 310 | p = *lp; |
| 311 | if (!p) { |
| 312 | /* allocate if not found */ |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 313 | #if defined(CONFIG_USER_ONLY) |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 314 | size_t len = sizeof(PageDesc) * L2_SIZE; |
| 315 | /* Don't use qemu_malloc because it may recurse. */ |
| 316 | p = mmap(0, len, PROT_READ | PROT_WRITE, |
| 317 | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 318 | *lp = p; |
aurel32 | fb1c2cd | 2008-12-08 18:12:26 +0000 | [diff] [blame] | 319 | if (h2g_valid(p)) { |
| 320 | unsigned long addr = h2g(p); |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 321 | page_set_flags(addr & TARGET_PAGE_MASK, |
| 322 | TARGET_PAGE_ALIGN(addr + len), |
| 323 | PAGE_RESERVED); |
| 324 | } |
| 325 | #else |
| 326 | p = qemu_mallocz(sizeof(PageDesc) * L2_SIZE); |
| 327 | *lp = p; |
| 328 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 329 | } |
| 330 | return p + (index & (L2_SIZE - 1)); |
| 331 | } |
| 332 | |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 333 | static inline PageDesc *page_find(target_ulong index) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 334 | { |
aliguori | 434929b | 2008-09-15 15:56:30 +0000 | [diff] [blame] | 335 | PageDesc **lp, *p; |
| 336 | lp = page_l1_map(index); |
| 337 | if (!lp) |
| 338 | return NULL; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 339 | |
aliguori | 434929b | 2008-09-15 15:56:30 +0000 | [diff] [blame] | 340 | p = *lp; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 341 | if (!p) |
| 342 | return 0; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 343 | return p + (index & (L2_SIZE - 1)); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 344 | } |
| 345 | |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 346 | static PhysPageDesc *phys_page_find_alloc(target_phys_addr_t index, int alloc) |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 347 | { |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 348 | void **lp, **p; |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 349 | PhysPageDesc *pd; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 350 | |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 351 | p = (void **)l1_phys_map; |
| 352 | #if TARGET_PHYS_ADDR_SPACE_BITS > 32 |
| 353 | |
| 354 | #if TARGET_PHYS_ADDR_SPACE_BITS > (32 + L1_BITS) |
| 355 | #error unsupported TARGET_PHYS_ADDR_SPACE_BITS |
| 356 | #endif |
| 357 | lp = p + ((index >> (L1_BITS + L2_BITS)) & (L1_SIZE - 1)); |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 358 | p = *lp; |
| 359 | if (!p) { |
| 360 | /* allocate if not found */ |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 361 | if (!alloc) |
| 362 | return NULL; |
| 363 | p = qemu_vmalloc(sizeof(void *) * L1_SIZE); |
| 364 | memset(p, 0, sizeof(void *) * L1_SIZE); |
| 365 | *lp = p; |
| 366 | } |
| 367 | #endif |
| 368 | lp = p + ((index >> L2_BITS) & (L1_SIZE - 1)); |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 369 | pd = *lp; |
| 370 | if (!pd) { |
| 371 | int i; |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 372 | /* allocate if not found */ |
| 373 | if (!alloc) |
| 374 | return NULL; |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 375 | pd = qemu_vmalloc(sizeof(PhysPageDesc) * L2_SIZE); |
| 376 | *lp = pd; |
pbrook | 67c4d23 | 2009-02-23 13:16:07 +0000 | [diff] [blame] | 377 | for (i = 0; i < L2_SIZE; i++) { |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 378 | pd[i].phys_offset = IO_MEM_UNASSIGNED; |
pbrook | 67c4d23 | 2009-02-23 13:16:07 +0000 | [diff] [blame] | 379 | pd[i].region_offset = (index + i) << TARGET_PAGE_BITS; |
| 380 | } |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 381 | } |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 382 | return ((PhysPageDesc *)pd) + (index & (L2_SIZE - 1)); |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 383 | } |
| 384 | |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 385 | static inline PhysPageDesc *phys_page_find(target_phys_addr_t index) |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 386 | { |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 387 | return phys_page_find_alloc(index, 0); |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 388 | } |
| 389 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 390 | #if !defined(CONFIG_USER_ONLY) |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 391 | static void tlb_protect_code(ram_addr_t ram_addr); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 392 | static void tlb_unprotect_code_phys(CPUState *env, ram_addr_t ram_addr, |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 393 | target_ulong vaddr); |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 394 | #define mmap_lock() do { } while(0) |
| 395 | #define mmap_unlock() do { } while(0) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 396 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 397 | |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 398 | #define DEFAULT_CODE_GEN_BUFFER_SIZE (32 * 1024 * 1024) |
| 399 | |
| 400 | #if defined(CONFIG_USER_ONLY) |
| 401 | /* Currently it is not recommanded to allocate big chunks of data in |
| 402 | user mode. It will change when a dedicated libc will be used */ |
| 403 | #define USE_STATIC_CODE_GEN_BUFFER |
| 404 | #endif |
| 405 | |
| 406 | #ifdef USE_STATIC_CODE_GEN_BUFFER |
| 407 | static uint8_t static_code_gen_buffer[DEFAULT_CODE_GEN_BUFFER_SIZE]; |
| 408 | #endif |
| 409 | |
blueswir1 | 8fcd369 | 2008-08-17 20:26:25 +0000 | [diff] [blame] | 410 | static void code_gen_alloc(unsigned long tb_size) |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 411 | { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 412 | #ifdef USE_STATIC_CODE_GEN_BUFFER |
| 413 | code_gen_buffer = static_code_gen_buffer; |
| 414 | code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; |
| 415 | map_exec(code_gen_buffer, code_gen_buffer_size); |
| 416 | #else |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 417 | code_gen_buffer_size = tb_size; |
| 418 | if (code_gen_buffer_size == 0) { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 419 | #if defined(CONFIG_USER_ONLY) |
| 420 | /* in user mode, phys_ram_size is not meaningful */ |
| 421 | code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; |
| 422 | #else |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 423 | /* XXX: needs ajustments */ |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 424 | code_gen_buffer_size = (unsigned long)(ram_size / 4); |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 425 | #endif |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 426 | } |
| 427 | if (code_gen_buffer_size < MIN_CODE_GEN_BUFFER_SIZE) |
| 428 | code_gen_buffer_size = MIN_CODE_GEN_BUFFER_SIZE; |
| 429 | /* The code gen buffer location may have constraints depending on |
| 430 | the host cpu and OS */ |
| 431 | #if defined(__linux__) |
| 432 | { |
| 433 | int flags; |
blueswir1 | 141ac46 | 2008-07-26 15:05:57 +0000 | [diff] [blame] | 434 | void *start = NULL; |
| 435 | |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 436 | flags = MAP_PRIVATE | MAP_ANONYMOUS; |
| 437 | #if defined(__x86_64__) |
| 438 | flags |= MAP_32BIT; |
| 439 | /* Cannot map more than that */ |
| 440 | if (code_gen_buffer_size > (800 * 1024 * 1024)) |
| 441 | code_gen_buffer_size = (800 * 1024 * 1024); |
blueswir1 | 141ac46 | 2008-07-26 15:05:57 +0000 | [diff] [blame] | 442 | #elif defined(__sparc_v9__) |
| 443 | // Map the buffer below 2G, so we can use direct calls and branches |
| 444 | flags |= MAP_FIXED; |
| 445 | start = (void *) 0x60000000UL; |
| 446 | if (code_gen_buffer_size > (512 * 1024 * 1024)) |
| 447 | code_gen_buffer_size = (512 * 1024 * 1024); |
balrog | 1cb0661 | 2008-12-01 02:10:17 +0000 | [diff] [blame] | 448 | #elif defined(__arm__) |
balrog | 63d4124 | 2008-12-01 02:19:41 +0000 | [diff] [blame] | 449 | /* Map the buffer below 32M, so we can use direct calls and branches */ |
balrog | 1cb0661 | 2008-12-01 02:10:17 +0000 | [diff] [blame] | 450 | flags |= MAP_FIXED; |
| 451 | start = (void *) 0x01000000UL; |
| 452 | if (code_gen_buffer_size > 16 * 1024 * 1024) |
| 453 | code_gen_buffer_size = 16 * 1024 * 1024; |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 454 | #endif |
blueswir1 | 141ac46 | 2008-07-26 15:05:57 +0000 | [diff] [blame] | 455 | code_gen_buffer = mmap(start, code_gen_buffer_size, |
| 456 | PROT_WRITE | PROT_READ | PROT_EXEC, |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 457 | flags, -1, 0); |
| 458 | if (code_gen_buffer == MAP_FAILED) { |
| 459 | fprintf(stderr, "Could not allocate dynamic translator buffer\n"); |
| 460 | exit(1); |
| 461 | } |
| 462 | } |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 463 | #elif defined(__FreeBSD__) || defined(__DragonFly__) |
aliguori | 06e67a8 | 2008-09-27 15:32:41 +0000 | [diff] [blame] | 464 | { |
| 465 | int flags; |
| 466 | void *addr = NULL; |
| 467 | flags = MAP_PRIVATE | MAP_ANONYMOUS; |
| 468 | #if defined(__x86_64__) |
| 469 | /* FreeBSD doesn't have MAP_32BIT, use MAP_FIXED and assume |
| 470 | * 0x40000000 is free */ |
| 471 | flags |= MAP_FIXED; |
| 472 | addr = (void *)0x40000000; |
| 473 | /* Cannot map more than that */ |
| 474 | if (code_gen_buffer_size > (800 * 1024 * 1024)) |
| 475 | code_gen_buffer_size = (800 * 1024 * 1024); |
| 476 | #endif |
| 477 | code_gen_buffer = mmap(addr, code_gen_buffer_size, |
| 478 | PROT_WRITE | PROT_READ | PROT_EXEC, |
| 479 | flags, -1, 0); |
| 480 | if (code_gen_buffer == MAP_FAILED) { |
| 481 | fprintf(stderr, "Could not allocate dynamic translator buffer\n"); |
| 482 | exit(1); |
| 483 | } |
| 484 | } |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 485 | #else |
| 486 | code_gen_buffer = qemu_malloc(code_gen_buffer_size); |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 487 | map_exec(code_gen_buffer, code_gen_buffer_size); |
| 488 | #endif |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 489 | #endif /* !USE_STATIC_CODE_GEN_BUFFER */ |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 490 | map_exec(code_gen_prologue, sizeof(code_gen_prologue)); |
| 491 | code_gen_buffer_max_size = code_gen_buffer_size - |
| 492 | code_gen_max_block_size(); |
| 493 | code_gen_max_blocks = code_gen_buffer_size / CODE_GEN_AVG_BLOCK_SIZE; |
| 494 | tbs = qemu_malloc(code_gen_max_blocks * sizeof(TranslationBlock)); |
| 495 | } |
| 496 | |
| 497 | /* Must be called before using the QEMU cpus. 'tb_size' is the size |
| 498 | (in bytes) allocated to the translation buffer. Zero means default |
| 499 | size. */ |
| 500 | void cpu_exec_init_all(unsigned long tb_size) |
| 501 | { |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 502 | cpu_gen_init(); |
| 503 | code_gen_alloc(tb_size); |
| 504 | code_gen_ptr = code_gen_buffer; |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 505 | page_init(); |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 506 | #if !defined(CONFIG_USER_ONLY) |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 507 | io_mem_init(); |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 508 | #endif |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 509 | } |
| 510 | |
pbrook | 9656f32 | 2008-07-01 20:01:19 +0000 | [diff] [blame] | 511 | #if defined(CPU_SAVE_VERSION) && !defined(CONFIG_USER_ONLY) |
| 512 | |
| 513 | #define CPU_COMMON_SAVE_VERSION 1 |
| 514 | |
| 515 | static void cpu_common_save(QEMUFile *f, void *opaque) |
| 516 | { |
| 517 | CPUState *env = opaque; |
| 518 | |
| 519 | qemu_put_be32s(f, &env->halted); |
| 520 | qemu_put_be32s(f, &env->interrupt_request); |
| 521 | } |
| 522 | |
| 523 | static int cpu_common_load(QEMUFile *f, void *opaque, int version_id) |
| 524 | { |
| 525 | CPUState *env = opaque; |
| 526 | |
| 527 | if (version_id != CPU_COMMON_SAVE_VERSION) |
| 528 | return -EINVAL; |
| 529 | |
| 530 | qemu_get_be32s(f, &env->halted); |
pbrook | 75f482a | 2008-07-01 21:53:33 +0000 | [diff] [blame] | 531 | qemu_get_be32s(f, &env->interrupt_request); |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 532 | /* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the |
| 533 | version_id is increased. */ |
| 534 | env->interrupt_request &= ~0x01; |
pbrook | 9656f32 | 2008-07-01 20:01:19 +0000 | [diff] [blame] | 535 | tlb_flush(env, 1); |
| 536 | |
| 537 | return 0; |
| 538 | } |
| 539 | #endif |
| 540 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 541 | void cpu_exec_init(CPUState *env) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 542 | { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 543 | CPUState **penv; |
| 544 | int cpu_index; |
| 545 | |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 546 | #if defined(CONFIG_USER_ONLY) |
| 547 | cpu_list_lock(); |
| 548 | #endif |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 549 | env->next_cpu = NULL; |
| 550 | penv = &first_cpu; |
| 551 | cpu_index = 0; |
| 552 | while (*penv != NULL) { |
| 553 | penv = (CPUState **)&(*penv)->next_cpu; |
| 554 | cpu_index++; |
| 555 | } |
| 556 | env->cpu_index = cpu_index; |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 557 | env->numa_node = 0; |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 558 | TAILQ_INIT(&env->breakpoints); |
| 559 | TAILQ_INIT(&env->watchpoints); |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 560 | *penv = env; |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 561 | #if defined(CONFIG_USER_ONLY) |
| 562 | cpu_list_unlock(); |
| 563 | #endif |
pbrook | b3c7724 | 2008-06-30 16:31:04 +0000 | [diff] [blame] | 564 | #if defined(CPU_SAVE_VERSION) && !defined(CONFIG_USER_ONLY) |
pbrook | 9656f32 | 2008-07-01 20:01:19 +0000 | [diff] [blame] | 565 | register_savevm("cpu_common", cpu_index, CPU_COMMON_SAVE_VERSION, |
| 566 | cpu_common_save, cpu_common_load, env); |
pbrook | b3c7724 | 2008-06-30 16:31:04 +0000 | [diff] [blame] | 567 | register_savevm("cpu", cpu_index, CPU_SAVE_VERSION, |
| 568 | cpu_save, cpu_load, env); |
| 569 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 570 | } |
| 571 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 572 | static inline void invalidate_page_bitmap(PageDesc *p) |
| 573 | { |
| 574 | if (p->code_bitmap) { |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 575 | qemu_free(p->code_bitmap); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 576 | p->code_bitmap = NULL; |
| 577 | } |
| 578 | p->code_write_count = 0; |
| 579 | } |
| 580 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 581 | /* set to NULL all the 'first_tb' fields in all PageDescs */ |
| 582 | static void page_flush_tb(void) |
| 583 | { |
| 584 | int i, j; |
| 585 | PageDesc *p; |
| 586 | |
| 587 | for(i = 0; i < L1_SIZE; i++) { |
| 588 | p = l1_map[i]; |
| 589 | if (p) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 590 | for(j = 0; j < L2_SIZE; j++) { |
| 591 | p->first_tb = NULL; |
| 592 | invalidate_page_bitmap(p); |
| 593 | p++; |
| 594 | } |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 595 | } |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | /* flush all the translation blocks */ |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 600 | /* XXX: tb_flush is currently not thread safe */ |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 601 | void tb_flush(CPUState *env1) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 602 | { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 603 | CPUState *env; |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 604 | #if defined(DEBUG_FLUSH) |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 605 | printf("qemu: flush code_size=%ld nb_tbs=%d avg_tb_size=%ld\n", |
| 606 | (unsigned long)(code_gen_ptr - code_gen_buffer), |
| 607 | nb_tbs, nb_tbs > 0 ? |
| 608 | ((unsigned long)(code_gen_ptr - code_gen_buffer)) / nb_tbs : 0); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 609 | #endif |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 610 | if ((unsigned long)(code_gen_ptr - code_gen_buffer) > code_gen_buffer_size) |
pbrook | a208e54 | 2008-03-31 17:07:36 +0000 | [diff] [blame] | 611 | cpu_abort(env1, "Internal error: code buffer overflow\n"); |
| 612 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 613 | nb_tbs = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 614 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 615 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 616 | memset (env->tb_jmp_cache, 0, TB_JMP_CACHE_SIZE * sizeof (void *)); |
| 617 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 618 | |
bellard | 8a8a608 | 2004-10-03 13:36:49 +0000 | [diff] [blame] | 619 | memset (tb_phys_hash, 0, CODE_GEN_PHYS_HASH_SIZE * sizeof (void *)); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 620 | page_flush_tb(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 621 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 622 | code_gen_ptr = code_gen_buffer; |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 623 | /* XXX: flush processor icache at this point if cache flush is |
| 624 | expensive */ |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 625 | tb_flush_count++; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | #ifdef DEBUG_TB_CHECK |
| 629 | |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 630 | static void tb_invalidate_check(target_ulong address) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 631 | { |
| 632 | TranslationBlock *tb; |
| 633 | int i; |
| 634 | address &= TARGET_PAGE_MASK; |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 635 | for(i = 0;i < CODE_GEN_PHYS_HASH_SIZE; i++) { |
| 636 | for(tb = tb_phys_hash[i]; tb != NULL; tb = tb->phys_hash_next) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 637 | if (!(address + TARGET_PAGE_SIZE <= tb->pc || |
| 638 | address >= tb->pc + tb->size)) { |
| 639 | printf("ERROR invalidate: address=%08lx PC=%08lx size=%04x\n", |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 640 | address, (long)tb->pc, tb->size); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 641 | } |
| 642 | } |
| 643 | } |
| 644 | } |
| 645 | |
| 646 | /* verify that all the pages have correct rights for code */ |
| 647 | static void tb_page_check(void) |
| 648 | { |
| 649 | TranslationBlock *tb; |
| 650 | int i, flags1, flags2; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 651 | |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 652 | for(i = 0;i < CODE_GEN_PHYS_HASH_SIZE; i++) { |
| 653 | for(tb = tb_phys_hash[i]; tb != NULL; tb = tb->phys_hash_next) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 654 | flags1 = page_get_flags(tb->pc); |
| 655 | flags2 = page_get_flags(tb->pc + tb->size - 1); |
| 656 | if ((flags1 & PAGE_WRITE) || (flags2 & PAGE_WRITE)) { |
| 657 | printf("ERROR page flags: PC=%08lx size=%04x f1=%x f2=%x\n", |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 658 | (long)tb->pc, tb->size, flags1, flags2); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 659 | } |
| 660 | } |
| 661 | } |
| 662 | } |
| 663 | |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 664 | static void tb_jmp_check(TranslationBlock *tb) |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 665 | { |
| 666 | TranslationBlock *tb1; |
| 667 | unsigned int n1; |
| 668 | |
| 669 | /* suppress any remaining jumps to this TB */ |
| 670 | tb1 = tb->jmp_first; |
| 671 | for(;;) { |
| 672 | n1 = (long)tb1 & 3; |
| 673 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 674 | if (n1 == 2) |
| 675 | break; |
| 676 | tb1 = tb1->jmp_next[n1]; |
| 677 | } |
| 678 | /* check end of list */ |
| 679 | if (tb1 != tb) { |
| 680 | printf("ERROR: jmp_list from 0x%08lx\n", (long)tb); |
| 681 | } |
| 682 | } |
| 683 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 684 | #endif |
| 685 | |
| 686 | /* invalidate one TB */ |
| 687 | static inline void tb_remove(TranslationBlock **ptb, TranslationBlock *tb, |
| 688 | int next_offset) |
| 689 | { |
| 690 | TranslationBlock *tb1; |
| 691 | for(;;) { |
| 692 | tb1 = *ptb; |
| 693 | if (tb1 == tb) { |
| 694 | *ptb = *(TranslationBlock **)((char *)tb1 + next_offset); |
| 695 | break; |
| 696 | } |
| 697 | ptb = (TranslationBlock **)((char *)tb1 + next_offset); |
| 698 | } |
| 699 | } |
| 700 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 701 | static inline void tb_page_remove(TranslationBlock **ptb, TranslationBlock *tb) |
| 702 | { |
| 703 | TranslationBlock *tb1; |
| 704 | unsigned int n1; |
| 705 | |
| 706 | for(;;) { |
| 707 | tb1 = *ptb; |
| 708 | n1 = (long)tb1 & 3; |
| 709 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 710 | if (tb1 == tb) { |
| 711 | *ptb = tb1->page_next[n1]; |
| 712 | break; |
| 713 | } |
| 714 | ptb = &tb1->page_next[n1]; |
| 715 | } |
| 716 | } |
| 717 | |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 718 | static inline void tb_jmp_remove(TranslationBlock *tb, int n) |
| 719 | { |
| 720 | TranslationBlock *tb1, **ptb; |
| 721 | unsigned int n1; |
| 722 | |
| 723 | ptb = &tb->jmp_next[n]; |
| 724 | tb1 = *ptb; |
| 725 | if (tb1) { |
| 726 | /* find tb(n) in circular list */ |
| 727 | for(;;) { |
| 728 | tb1 = *ptb; |
| 729 | n1 = (long)tb1 & 3; |
| 730 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 731 | if (n1 == n && tb1 == tb) |
| 732 | break; |
| 733 | if (n1 == 2) { |
| 734 | ptb = &tb1->jmp_first; |
| 735 | } else { |
| 736 | ptb = &tb1->jmp_next[n1]; |
| 737 | } |
| 738 | } |
| 739 | /* now we can suppress tb(n) from the list */ |
| 740 | *ptb = tb->jmp_next[n]; |
| 741 | |
| 742 | tb->jmp_next[n] = NULL; |
| 743 | } |
| 744 | } |
| 745 | |
| 746 | /* reset the jump entry 'n' of a TB so that it is not chained to |
| 747 | another TB */ |
| 748 | static inline void tb_reset_jump(TranslationBlock *tb, int n) |
| 749 | { |
| 750 | tb_set_jmp_target(tb, n, (unsigned long)(tb->tc_ptr + tb->tb_next_offset[n])); |
| 751 | } |
| 752 | |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 753 | void tb_phys_invalidate(TranslationBlock *tb, target_ulong page_addr) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 754 | { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 755 | CPUState *env; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 756 | PageDesc *p; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 757 | unsigned int h, n1; |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 758 | target_phys_addr_t phys_pc; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 759 | TranslationBlock *tb1, *tb2; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 760 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 761 | /* remove the TB from the hash list */ |
| 762 | phys_pc = tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); |
| 763 | h = tb_phys_hash_func(phys_pc); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 764 | tb_remove(&tb_phys_hash[h], tb, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 765 | offsetof(TranslationBlock, phys_hash_next)); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 766 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 767 | /* remove the TB from the page list */ |
| 768 | if (tb->page_addr[0] != page_addr) { |
| 769 | p = page_find(tb->page_addr[0] >> TARGET_PAGE_BITS); |
| 770 | tb_page_remove(&p->first_tb, tb); |
| 771 | invalidate_page_bitmap(p); |
| 772 | } |
| 773 | if (tb->page_addr[1] != -1 && tb->page_addr[1] != page_addr) { |
| 774 | p = page_find(tb->page_addr[1] >> TARGET_PAGE_BITS); |
| 775 | tb_page_remove(&p->first_tb, tb); |
| 776 | invalidate_page_bitmap(p); |
| 777 | } |
| 778 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 779 | tb_invalidated_flag = 1; |
| 780 | |
| 781 | /* remove the TB from the hash list */ |
| 782 | h = tb_jmp_cache_hash_func(tb->pc); |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 783 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 784 | if (env->tb_jmp_cache[h] == tb) |
| 785 | env->tb_jmp_cache[h] = NULL; |
| 786 | } |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 787 | |
| 788 | /* suppress this TB from the two jump lists */ |
| 789 | tb_jmp_remove(tb, 0); |
| 790 | tb_jmp_remove(tb, 1); |
| 791 | |
| 792 | /* suppress any remaining jumps to this TB */ |
| 793 | tb1 = tb->jmp_first; |
| 794 | for(;;) { |
| 795 | n1 = (long)tb1 & 3; |
| 796 | if (n1 == 2) |
| 797 | break; |
| 798 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 799 | tb2 = tb1->jmp_next[n1]; |
| 800 | tb_reset_jump(tb1, n1); |
| 801 | tb1->jmp_next[n1] = NULL; |
| 802 | tb1 = tb2; |
| 803 | } |
| 804 | tb->jmp_first = (TranslationBlock *)((long)tb | 2); /* fail safe */ |
| 805 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 806 | tb_phys_invalidate_count++; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | static inline void set_bits(uint8_t *tab, int start, int len) |
| 810 | { |
| 811 | int end, mask, end1; |
| 812 | |
| 813 | end = start + len; |
| 814 | tab += start >> 3; |
| 815 | mask = 0xff << (start & 7); |
| 816 | if ((start & ~7) == (end & ~7)) { |
| 817 | if (start < end) { |
| 818 | mask &= ~(0xff << (end & 7)); |
| 819 | *tab |= mask; |
| 820 | } |
| 821 | } else { |
| 822 | *tab++ |= mask; |
| 823 | start = (start + 8) & ~7; |
| 824 | end1 = end & ~7; |
| 825 | while (start < end1) { |
| 826 | *tab++ = 0xff; |
| 827 | start += 8; |
| 828 | } |
| 829 | if (start < end) { |
| 830 | mask = ~(0xff << (end & 7)); |
| 831 | *tab |= mask; |
| 832 | } |
| 833 | } |
| 834 | } |
| 835 | |
| 836 | static void build_page_bitmap(PageDesc *p) |
| 837 | { |
| 838 | int n, tb_start, tb_end; |
| 839 | TranslationBlock *tb; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 840 | |
pbrook | b2a7081 | 2008-06-09 13:57:23 +0000 | [diff] [blame] | 841 | p->code_bitmap = qemu_mallocz(TARGET_PAGE_SIZE / 8); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 842 | |
| 843 | tb = p->first_tb; |
| 844 | while (tb != NULL) { |
| 845 | n = (long)tb & 3; |
| 846 | tb = (TranslationBlock *)((long)tb & ~3); |
| 847 | /* NOTE: this is subtle as a TB may span two physical pages */ |
| 848 | if (n == 0) { |
| 849 | /* NOTE: tb_end may be after the end of the page, but |
| 850 | it is not a problem */ |
| 851 | tb_start = tb->pc & ~TARGET_PAGE_MASK; |
| 852 | tb_end = tb_start + tb->size; |
| 853 | if (tb_end > TARGET_PAGE_SIZE) |
| 854 | tb_end = TARGET_PAGE_SIZE; |
| 855 | } else { |
| 856 | tb_start = 0; |
| 857 | tb_end = ((tb->pc + tb->size) & ~TARGET_PAGE_MASK); |
| 858 | } |
| 859 | set_bits(p->code_bitmap, tb_start, tb_end - tb_start); |
| 860 | tb = tb->page_next[n]; |
| 861 | } |
| 862 | } |
| 863 | |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 864 | TranslationBlock *tb_gen_code(CPUState *env, |
| 865 | target_ulong pc, target_ulong cs_base, |
| 866 | int flags, int cflags) |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 867 | { |
| 868 | TranslationBlock *tb; |
| 869 | uint8_t *tc_ptr; |
| 870 | target_ulong phys_pc, phys_page2, virt_page2; |
| 871 | int code_gen_size; |
| 872 | |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 873 | phys_pc = get_phys_addr_code(env, pc); |
| 874 | tb = tb_alloc(pc); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 875 | if (!tb) { |
| 876 | /* flush must be done */ |
| 877 | tb_flush(env); |
| 878 | /* cannot fail at this point */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 879 | tb = tb_alloc(pc); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 880 | /* Don't forget to invalidate previous TB info. */ |
| 881 | tb_invalidated_flag = 1; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 882 | } |
| 883 | tc_ptr = code_gen_ptr; |
| 884 | tb->tc_ptr = tc_ptr; |
| 885 | tb->cs_base = cs_base; |
| 886 | tb->flags = flags; |
| 887 | tb->cflags = cflags; |
blueswir1 | d07bde8 | 2007-12-11 19:35:45 +0000 | [diff] [blame] | 888 | cpu_gen_code(env, tb, &code_gen_size); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 889 | code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1)); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 890 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 891 | /* check next page if needed */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 892 | virt_page2 = (pc + tb->size - 1) & TARGET_PAGE_MASK; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 893 | phys_page2 = -1; |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 894 | if ((pc & TARGET_PAGE_MASK) != virt_page2) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 895 | phys_page2 = get_phys_addr_code(env, virt_page2); |
| 896 | } |
| 897 | tb_link_phys(tb, phys_pc, phys_page2); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 898 | return tb; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 899 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 900 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 901 | /* invalidate all TBs which intersect with the target physical page |
| 902 | starting in range [start;end[. NOTE: start and end must refer to |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 903 | the same physical page. 'is_cpu_write_access' should be true if called |
| 904 | from a real cpu write access: the virtual CPU will exit the current |
| 905 | TB if code is modified inside this TB. */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 906 | void tb_invalidate_phys_page_range(target_phys_addr_t start, target_phys_addr_t end, |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 907 | int is_cpu_write_access) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 908 | { |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 909 | TranslationBlock *tb, *tb_next, *saved_tb; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 910 | CPUState *env = cpu_single_env; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 911 | target_ulong tb_start, tb_end; |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 912 | PageDesc *p; |
| 913 | int n; |
| 914 | #ifdef TARGET_HAS_PRECISE_SMC |
| 915 | int current_tb_not_found = is_cpu_write_access; |
| 916 | TranslationBlock *current_tb = NULL; |
| 917 | int current_tb_modified = 0; |
| 918 | target_ulong current_pc = 0; |
| 919 | target_ulong current_cs_base = 0; |
| 920 | int current_flags = 0; |
| 921 | #endif /* TARGET_HAS_PRECISE_SMC */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 922 | |
| 923 | p = page_find(start >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 924 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 925 | return; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 926 | if (!p->code_bitmap && |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 927 | ++p->code_write_count >= SMC_BITMAP_USE_THRESHOLD && |
| 928 | is_cpu_write_access) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 929 | /* build code bitmap */ |
| 930 | build_page_bitmap(p); |
| 931 | } |
| 932 | |
| 933 | /* we remove all the TBs in the range [start, end[ */ |
| 934 | /* XXX: see if in some cases it could be faster to invalidate all the code */ |
| 935 | tb = p->first_tb; |
| 936 | while (tb != NULL) { |
| 937 | n = (long)tb & 3; |
| 938 | tb = (TranslationBlock *)((long)tb & ~3); |
| 939 | tb_next = tb->page_next[n]; |
| 940 | /* NOTE: this is subtle as a TB may span two physical pages */ |
| 941 | if (n == 0) { |
| 942 | /* NOTE: tb_end may be after the end of the page, but |
| 943 | it is not a problem */ |
| 944 | tb_start = tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); |
| 945 | tb_end = tb_start + tb->size; |
| 946 | } else { |
| 947 | tb_start = tb->page_addr[1]; |
| 948 | tb_end = tb_start + ((tb->pc + tb->size) & ~TARGET_PAGE_MASK); |
| 949 | } |
| 950 | if (!(tb_end <= start || tb_start >= end)) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 951 | #ifdef TARGET_HAS_PRECISE_SMC |
| 952 | if (current_tb_not_found) { |
| 953 | current_tb_not_found = 0; |
| 954 | current_tb = NULL; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 955 | if (env->mem_io_pc) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 956 | /* now we have a real cpu fault */ |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 957 | current_tb = tb_find_pc(env->mem_io_pc); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 958 | } |
| 959 | } |
| 960 | if (current_tb == tb && |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 961 | (current_tb->cflags & CF_COUNT_MASK) != 1) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 962 | /* If we are modifying the current TB, we must stop |
| 963 | its execution. We could be more precise by checking |
| 964 | that the modification is after the current PC, but it |
| 965 | would require a specialized function to partially |
| 966 | restore the CPU state */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 967 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 968 | current_tb_modified = 1; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 969 | cpu_restore_state(current_tb, env, |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 970 | env->mem_io_pc, NULL); |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 971 | cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, |
| 972 | ¤t_flags); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 973 | } |
| 974 | #endif /* TARGET_HAS_PRECISE_SMC */ |
bellard | 6f5a9f7 | 2005-11-26 20:12:28 +0000 | [diff] [blame] | 975 | /* we need to do that to handle the case where a signal |
| 976 | occurs while doing tb_phys_invalidate() */ |
| 977 | saved_tb = NULL; |
| 978 | if (env) { |
| 979 | saved_tb = env->current_tb; |
| 980 | env->current_tb = NULL; |
| 981 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 982 | tb_phys_invalidate(tb, -1); |
bellard | 6f5a9f7 | 2005-11-26 20:12:28 +0000 | [diff] [blame] | 983 | if (env) { |
| 984 | env->current_tb = saved_tb; |
| 985 | if (env->interrupt_request && env->current_tb) |
| 986 | cpu_interrupt(env, env->interrupt_request); |
| 987 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 988 | } |
| 989 | tb = tb_next; |
| 990 | } |
| 991 | #if !defined(CONFIG_USER_ONLY) |
| 992 | /* if no code remaining, no need to continue to use slow writes */ |
| 993 | if (!p->first_tb) { |
| 994 | invalidate_page_bitmap(p); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 995 | if (is_cpu_write_access) { |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 996 | tlb_unprotect_code_phys(env, start, env->mem_io_vaddr); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 997 | } |
| 998 | } |
| 999 | #endif |
| 1000 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1001 | if (current_tb_modified) { |
| 1002 | /* we generate a block containing just the instruction |
| 1003 | modifying the memory. It will ensure that it cannot modify |
| 1004 | itself */ |
bellard | ea1c180 | 2004-06-14 18:56:36 +0000 | [diff] [blame] | 1005 | env->current_tb = NULL; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1006 | tb_gen_code(env, current_pc, current_cs_base, current_flags, 1); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1007 | cpu_resume_from_signal(env, NULL); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1008 | } |
| 1009 | #endif |
| 1010 | } |
| 1011 | |
| 1012 | /* len must be <= 8 and start must be a multiple of len */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 1013 | static inline void tb_invalidate_phys_page_fast(target_phys_addr_t start, int len) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1014 | { |
| 1015 | PageDesc *p; |
| 1016 | int offset, b; |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1017 | #if 0 |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 1018 | if (1) { |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1019 | qemu_log("modifying code at 0x%x size=%d EIP=%x PC=%08x\n", |
| 1020 | cpu_single_env->mem_io_vaddr, len, |
| 1021 | cpu_single_env->eip, |
| 1022 | cpu_single_env->eip + (long)cpu_single_env->segs[R_CS].base); |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1023 | } |
| 1024 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1025 | p = page_find(start >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1026 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1027 | return; |
| 1028 | if (p->code_bitmap) { |
| 1029 | offset = start & ~TARGET_PAGE_MASK; |
| 1030 | b = p->code_bitmap[offset >> 3] >> (offset & 7); |
| 1031 | if (b & ((1 << len) - 1)) |
| 1032 | goto do_invalidate; |
| 1033 | } else { |
| 1034 | do_invalidate: |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1035 | tb_invalidate_phys_page_range(start, start + len, 1); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1036 | } |
| 1037 | } |
| 1038 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1039 | #if !defined(CONFIG_SOFTMMU) |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 1040 | static void tb_invalidate_phys_page(target_phys_addr_t addr, |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1041 | unsigned long pc, void *puc) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1042 | { |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1043 | TranslationBlock *tb; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1044 | PageDesc *p; |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1045 | int n; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1046 | #ifdef TARGET_HAS_PRECISE_SMC |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1047 | TranslationBlock *current_tb = NULL; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1048 | CPUState *env = cpu_single_env; |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1049 | int current_tb_modified = 0; |
| 1050 | target_ulong current_pc = 0; |
| 1051 | target_ulong current_cs_base = 0; |
| 1052 | int current_flags = 0; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1053 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1054 | |
| 1055 | addr &= TARGET_PAGE_MASK; |
| 1056 | p = page_find(addr >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1057 | if (!p) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1058 | return; |
| 1059 | tb = p->first_tb; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1060 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1061 | if (tb && pc != 0) { |
| 1062 | current_tb = tb_find_pc(pc); |
| 1063 | } |
| 1064 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1065 | while (tb != NULL) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1066 | n = (long)tb & 3; |
| 1067 | tb = (TranslationBlock *)((long)tb & ~3); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1068 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1069 | if (current_tb == tb && |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1070 | (current_tb->cflags & CF_COUNT_MASK) != 1) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1071 | /* If we are modifying the current TB, we must stop |
| 1072 | its execution. We could be more precise by checking |
| 1073 | that the modification is after the current PC, but it |
| 1074 | would require a specialized function to partially |
| 1075 | restore the CPU state */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1076 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1077 | current_tb_modified = 1; |
| 1078 | cpu_restore_state(current_tb, env, pc, puc); |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1079 | cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, |
| 1080 | ¤t_flags); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1081 | } |
| 1082 | #endif /* TARGET_HAS_PRECISE_SMC */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1083 | tb_phys_invalidate(tb, addr); |
| 1084 | tb = tb->page_next[n]; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1085 | } |
| 1086 | p->first_tb = NULL; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1087 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1088 | if (current_tb_modified) { |
| 1089 | /* we generate a block containing just the instruction |
| 1090 | modifying the memory. It will ensure that it cannot modify |
| 1091 | itself */ |
bellard | ea1c180 | 2004-06-14 18:56:36 +0000 | [diff] [blame] | 1092 | env->current_tb = NULL; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1093 | tb_gen_code(env, current_pc, current_cs_base, current_flags, 1); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1094 | cpu_resume_from_signal(env, puc); |
| 1095 | } |
| 1096 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1097 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1098 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1099 | |
| 1100 | /* add the tb in the target page and protect it if necessary */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1101 | static inline void tb_alloc_page(TranslationBlock *tb, |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1102 | unsigned int n, target_ulong page_addr) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1103 | { |
| 1104 | PageDesc *p; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1105 | TranslationBlock *last_first_tb; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1106 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1107 | tb->page_addr[n] = page_addr; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1108 | p = page_find_alloc(page_addr >> TARGET_PAGE_BITS); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1109 | tb->page_next[n] = p->first_tb; |
| 1110 | last_first_tb = p->first_tb; |
| 1111 | p->first_tb = (TranslationBlock *)((long)tb | n); |
| 1112 | invalidate_page_bitmap(p); |
| 1113 | |
bellard | 107db44 | 2004-06-22 18:48:46 +0000 | [diff] [blame] | 1114 | #if defined(TARGET_HAS_SMC) || 1 |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1115 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1116 | #if defined(CONFIG_USER_ONLY) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1117 | if (p->flags & PAGE_WRITE) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1118 | target_ulong addr; |
| 1119 | PageDesc *p2; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1120 | int prot; |
| 1121 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1122 | /* force the host page as non writable (writes will have a |
| 1123 | page fault + mprotect overhead) */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1124 | page_addr &= qemu_host_page_mask; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1125 | prot = 0; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1126 | for(addr = page_addr; addr < page_addr + qemu_host_page_size; |
| 1127 | addr += TARGET_PAGE_SIZE) { |
| 1128 | |
| 1129 | p2 = page_find (addr >> TARGET_PAGE_BITS); |
| 1130 | if (!p2) |
| 1131 | continue; |
| 1132 | prot |= p2->flags; |
| 1133 | p2->flags &= ~PAGE_WRITE; |
| 1134 | page_get_flags(addr); |
| 1135 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1136 | mprotect(g2h(page_addr), qemu_host_page_size, |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1137 | (prot & PAGE_BITS) & ~PAGE_WRITE); |
| 1138 | #ifdef DEBUG_TB_INVALIDATE |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 1139 | printf("protecting code page: 0x" TARGET_FMT_lx "\n", |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1140 | page_addr); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1141 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1142 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1143 | #else |
| 1144 | /* if some code is already present, then the pages are already |
| 1145 | protected. So we handle the case where only the first TB is |
| 1146 | allocated in a physical page */ |
| 1147 | if (!last_first_tb) { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1148 | tlb_protect_code(page_addr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1149 | } |
| 1150 | #endif |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1151 | |
| 1152 | #endif /* TARGET_HAS_SMC */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1153 | } |
| 1154 | |
| 1155 | /* Allocate a new translation block. Flush the translation buffer if |
| 1156 | too many translation blocks or too much generated code. */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1157 | TranslationBlock *tb_alloc(target_ulong pc) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1158 | { |
| 1159 | TranslationBlock *tb; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1160 | |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 1161 | if (nb_tbs >= code_gen_max_blocks || |
| 1162 | (code_gen_ptr - code_gen_buffer) >= code_gen_buffer_max_size) |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1163 | return NULL; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1164 | tb = &tbs[nb_tbs++]; |
| 1165 | tb->pc = pc; |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 1166 | tb->cflags = 0; |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1167 | return tb; |
| 1168 | } |
| 1169 | |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1170 | void tb_free(TranslationBlock *tb) |
| 1171 | { |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 1172 | /* In practice this is mostly used for single use temporary TB |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1173 | Ignore the hard cases and just back up if this TB happens to |
| 1174 | be the last one generated. */ |
| 1175 | if (nb_tbs > 0 && tb == &tbs[nb_tbs - 1]) { |
| 1176 | code_gen_ptr = tb->tc_ptr; |
| 1177 | nb_tbs--; |
| 1178 | } |
| 1179 | } |
| 1180 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1181 | /* add a new TB and link it to the physical page tables. phys_page2 is |
| 1182 | (-1) to indicate that only one page contains the TB. */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1183 | void tb_link_phys(TranslationBlock *tb, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1184 | target_ulong phys_pc, target_ulong phys_page2) |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1185 | { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1186 | unsigned int h; |
| 1187 | TranslationBlock **ptb; |
| 1188 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 1189 | /* Grab the mmap lock to stop another thread invalidating this TB |
| 1190 | before we are done. */ |
| 1191 | mmap_lock(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1192 | /* add in the physical hash table */ |
| 1193 | h = tb_phys_hash_func(phys_pc); |
| 1194 | ptb = &tb_phys_hash[h]; |
| 1195 | tb->phys_hash_next = *ptb; |
| 1196 | *ptb = tb; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1197 | |
| 1198 | /* add in the page list */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1199 | tb_alloc_page(tb, 0, phys_pc & TARGET_PAGE_MASK); |
| 1200 | if (phys_page2 != -1) |
| 1201 | tb_alloc_page(tb, 1, phys_page2); |
| 1202 | else |
| 1203 | tb->page_addr[1] = -1; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1204 | |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1205 | tb->jmp_first = (TranslationBlock *)((long)tb | 2); |
| 1206 | tb->jmp_next[0] = NULL; |
| 1207 | tb->jmp_next[1] = NULL; |
| 1208 | |
| 1209 | /* init original jump addresses */ |
| 1210 | if (tb->tb_next_offset[0] != 0xffff) |
| 1211 | tb_reset_jump(tb, 0); |
| 1212 | if (tb->tb_next_offset[1] != 0xffff) |
| 1213 | tb_reset_jump(tb, 1); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 1214 | |
| 1215 | #ifdef DEBUG_TB_CHECK |
| 1216 | tb_page_check(); |
| 1217 | #endif |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 1218 | mmap_unlock(); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1219 | } |
| 1220 | |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1221 | /* find the TB 'tb' such that tb[0].tc_ptr <= tc_ptr < |
| 1222 | tb[1].tc_ptr. Return NULL if not found */ |
| 1223 | TranslationBlock *tb_find_pc(unsigned long tc_ptr) |
| 1224 | { |
| 1225 | int m_min, m_max, m; |
| 1226 | unsigned long v; |
| 1227 | TranslationBlock *tb; |
| 1228 | |
| 1229 | if (nb_tbs <= 0) |
| 1230 | return NULL; |
| 1231 | if (tc_ptr < (unsigned long)code_gen_buffer || |
| 1232 | tc_ptr >= (unsigned long)code_gen_ptr) |
| 1233 | return NULL; |
| 1234 | /* binary search (cf Knuth) */ |
| 1235 | m_min = 0; |
| 1236 | m_max = nb_tbs - 1; |
| 1237 | while (m_min <= m_max) { |
| 1238 | m = (m_min + m_max) >> 1; |
| 1239 | tb = &tbs[m]; |
| 1240 | v = (unsigned long)tb->tc_ptr; |
| 1241 | if (v == tc_ptr) |
| 1242 | return tb; |
| 1243 | else if (tc_ptr < v) { |
| 1244 | m_max = m - 1; |
| 1245 | } else { |
| 1246 | m_min = m + 1; |
| 1247 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1248 | } |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1249 | return &tbs[m_max]; |
| 1250 | } |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1251 | |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1252 | static void tb_reset_jump_recursive(TranslationBlock *tb); |
| 1253 | |
| 1254 | static inline void tb_reset_jump_recursive2(TranslationBlock *tb, int n) |
| 1255 | { |
| 1256 | TranslationBlock *tb1, *tb_next, **ptb; |
| 1257 | unsigned int n1; |
| 1258 | |
| 1259 | tb1 = tb->jmp_next[n]; |
| 1260 | if (tb1 != NULL) { |
| 1261 | /* find head of list */ |
| 1262 | for(;;) { |
| 1263 | n1 = (long)tb1 & 3; |
| 1264 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 1265 | if (n1 == 2) |
| 1266 | break; |
| 1267 | tb1 = tb1->jmp_next[n1]; |
| 1268 | } |
| 1269 | /* we are now sure now that tb jumps to tb1 */ |
| 1270 | tb_next = tb1; |
| 1271 | |
| 1272 | /* remove tb from the jmp_first list */ |
| 1273 | ptb = &tb_next->jmp_first; |
| 1274 | for(;;) { |
| 1275 | tb1 = *ptb; |
| 1276 | n1 = (long)tb1 & 3; |
| 1277 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 1278 | if (n1 == n && tb1 == tb) |
| 1279 | break; |
| 1280 | ptb = &tb1->jmp_next[n1]; |
| 1281 | } |
| 1282 | *ptb = tb->jmp_next[n]; |
| 1283 | tb->jmp_next[n] = NULL; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1284 | |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1285 | /* suppress the jump to next tb in generated code */ |
| 1286 | tb_reset_jump(tb, n); |
| 1287 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1288 | /* suppress jumps in the tb on which we could have jumped */ |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1289 | tb_reset_jump_recursive(tb_next); |
| 1290 | } |
| 1291 | } |
| 1292 | |
| 1293 | static void tb_reset_jump_recursive(TranslationBlock *tb) |
| 1294 | { |
| 1295 | tb_reset_jump_recursive2(tb, 0); |
| 1296 | tb_reset_jump_recursive2(tb, 1); |
| 1297 | } |
| 1298 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1299 | #if defined(TARGET_HAS_ICE) |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1300 | static void breakpoint_invalidate(CPUState *env, target_ulong pc) |
| 1301 | { |
j_mayer | 9b3c35e | 2007-04-07 11:21:28 +0000 | [diff] [blame] | 1302 | target_phys_addr_t addr; |
| 1303 | target_ulong pd; |
pbrook | c2f07f8 | 2006-04-08 17:14:56 +0000 | [diff] [blame] | 1304 | ram_addr_t ram_addr; |
| 1305 | PhysPageDesc *p; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1306 | |
pbrook | c2f07f8 | 2006-04-08 17:14:56 +0000 | [diff] [blame] | 1307 | addr = cpu_get_phys_page_debug(env, pc); |
| 1308 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 1309 | if (!p) { |
| 1310 | pd = IO_MEM_UNASSIGNED; |
| 1311 | } else { |
| 1312 | pd = p->phys_offset; |
| 1313 | } |
| 1314 | ram_addr = (pd & TARGET_PAGE_MASK) | (pc & ~TARGET_PAGE_MASK); |
pbrook | 706cd4b | 2006-04-08 17:36:21 +0000 | [diff] [blame] | 1315 | tb_invalidate_phys_page_range(ram_addr, ram_addr + 1, 0); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1316 | } |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1317 | #endif |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1318 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1319 | /* Add a watchpoint. */ |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1320 | int cpu_watchpoint_insert(CPUState *env, target_ulong addr, target_ulong len, |
| 1321 | int flags, CPUWatchpoint **watchpoint) |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1322 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1323 | target_ulong len_mask = ~(len - 1); |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1324 | CPUWatchpoint *wp; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1325 | |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1326 | /* sanity checks: allow power-of-2 lengths, deny unaligned watchpoints */ |
| 1327 | if ((len != 1 && len != 2 && len != 4 && len != 8) || (addr & ~len_mask)) { |
| 1328 | fprintf(stderr, "qemu: tried to set invalid watchpoint at " |
| 1329 | TARGET_FMT_lx ", len=" TARGET_FMT_lu "\n", addr, len); |
| 1330 | return -EINVAL; |
| 1331 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1332 | wp = qemu_malloc(sizeof(*wp)); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1333 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1334 | wp->vaddr = addr; |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1335 | wp->len_mask = len_mask; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1336 | wp->flags = flags; |
| 1337 | |
aliguori | 2dc9f41 | 2008-11-18 20:56:59 +0000 | [diff] [blame] | 1338 | /* keep all GDB-injected watchpoints in front */ |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1339 | if (flags & BP_GDB) |
| 1340 | TAILQ_INSERT_HEAD(&env->watchpoints, wp, entry); |
| 1341 | else |
| 1342 | TAILQ_INSERT_TAIL(&env->watchpoints, wp, entry); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1343 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1344 | tlb_flush_page(env, addr); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1345 | |
| 1346 | if (watchpoint) |
| 1347 | *watchpoint = wp; |
| 1348 | return 0; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1349 | } |
| 1350 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1351 | /* Remove a specific watchpoint. */ |
| 1352 | int cpu_watchpoint_remove(CPUState *env, target_ulong addr, target_ulong len, |
| 1353 | int flags) |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1354 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1355 | target_ulong len_mask = ~(len - 1); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1356 | CPUWatchpoint *wp; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1357 | |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1358 | TAILQ_FOREACH(wp, &env->watchpoints, entry) { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1359 | if (addr == wp->vaddr && len_mask == wp->len_mask |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 1360 | && flags == (wp->flags & ~BP_WATCHPOINT_HIT)) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1361 | cpu_watchpoint_remove_by_ref(env, wp); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1362 | return 0; |
| 1363 | } |
| 1364 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1365 | return -ENOENT; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1366 | } |
| 1367 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1368 | /* Remove a specific watchpoint by reference. */ |
| 1369 | void cpu_watchpoint_remove_by_ref(CPUState *env, CPUWatchpoint *watchpoint) |
| 1370 | { |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1371 | TAILQ_REMOVE(&env->watchpoints, watchpoint, entry); |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 1372 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1373 | tlb_flush_page(env, watchpoint->vaddr); |
| 1374 | |
| 1375 | qemu_free(watchpoint); |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 1376 | } |
| 1377 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1378 | /* Remove all matching watchpoints. */ |
| 1379 | void cpu_watchpoint_remove_all(CPUState *env, int mask) |
| 1380 | { |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1381 | CPUWatchpoint *wp, *next; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1382 | |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1383 | TAILQ_FOREACH_SAFE(wp, &env->watchpoints, entry, next) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1384 | if (wp->flags & mask) |
| 1385 | cpu_watchpoint_remove_by_ref(env, wp); |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1386 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1387 | } |
| 1388 | |
| 1389 | /* Add a breakpoint. */ |
| 1390 | int cpu_breakpoint_insert(CPUState *env, target_ulong pc, int flags, |
| 1391 | CPUBreakpoint **breakpoint) |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1392 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1393 | #if defined(TARGET_HAS_ICE) |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1394 | CPUBreakpoint *bp; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1395 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1396 | bp = qemu_malloc(sizeof(*bp)); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1397 | |
| 1398 | bp->pc = pc; |
| 1399 | bp->flags = flags; |
| 1400 | |
aliguori | 2dc9f41 | 2008-11-18 20:56:59 +0000 | [diff] [blame] | 1401 | /* keep all GDB-injected breakpoints in front */ |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1402 | if (flags & BP_GDB) |
| 1403 | TAILQ_INSERT_HEAD(&env->breakpoints, bp, entry); |
| 1404 | else |
| 1405 | TAILQ_INSERT_TAIL(&env->breakpoints, bp, entry); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1406 | |
| 1407 | breakpoint_invalidate(env, pc); |
| 1408 | |
| 1409 | if (breakpoint) |
| 1410 | *breakpoint = bp; |
| 1411 | return 0; |
| 1412 | #else |
| 1413 | return -ENOSYS; |
| 1414 | #endif |
| 1415 | } |
| 1416 | |
| 1417 | /* Remove a specific breakpoint. */ |
| 1418 | int cpu_breakpoint_remove(CPUState *env, target_ulong pc, int flags) |
| 1419 | { |
| 1420 | #if defined(TARGET_HAS_ICE) |
| 1421 | CPUBreakpoint *bp; |
| 1422 | |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1423 | TAILQ_FOREACH(bp, &env->breakpoints, entry) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1424 | if (bp->pc == pc && bp->flags == flags) { |
| 1425 | cpu_breakpoint_remove_by_ref(env, bp); |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1426 | return 0; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1427 | } |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1428 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1429 | return -ENOENT; |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1430 | #else |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1431 | return -ENOSYS; |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1432 | #endif |
| 1433 | } |
| 1434 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1435 | /* Remove a specific breakpoint by reference. */ |
| 1436 | void cpu_breakpoint_remove_by_ref(CPUState *env, CPUBreakpoint *breakpoint) |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1437 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1438 | #if defined(TARGET_HAS_ICE) |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1439 | TAILQ_REMOVE(&env->breakpoints, breakpoint, entry); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1440 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1441 | breakpoint_invalidate(env, breakpoint->pc); |
| 1442 | |
| 1443 | qemu_free(breakpoint); |
| 1444 | #endif |
| 1445 | } |
| 1446 | |
| 1447 | /* Remove all matching breakpoints. */ |
| 1448 | void cpu_breakpoint_remove_all(CPUState *env, int mask) |
| 1449 | { |
| 1450 | #if defined(TARGET_HAS_ICE) |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1451 | CPUBreakpoint *bp, *next; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1452 | |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1453 | TAILQ_FOREACH_SAFE(bp, &env->breakpoints, entry, next) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1454 | if (bp->flags & mask) |
| 1455 | cpu_breakpoint_remove_by_ref(env, bp); |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1456 | } |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1457 | #endif |
| 1458 | } |
| 1459 | |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1460 | /* enable or disable single step mode. EXCP_DEBUG is returned by the |
| 1461 | CPU loop after each instruction */ |
| 1462 | void cpu_single_step(CPUState *env, int enabled) |
| 1463 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1464 | #if defined(TARGET_HAS_ICE) |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1465 | if (env->singlestep_enabled != enabled) { |
| 1466 | env->singlestep_enabled = enabled; |
aliguori | e22a25c | 2009-03-12 20:12:48 +0000 | [diff] [blame] | 1467 | if (kvm_enabled()) |
| 1468 | kvm_update_guest_debug(env, 0); |
| 1469 | else { |
| 1470 | /* must flush all the translated code to avoid inconsistancies */ |
| 1471 | /* XXX: only flush what is necessary */ |
| 1472 | tb_flush(env); |
| 1473 | } |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1474 | } |
| 1475 | #endif |
| 1476 | } |
| 1477 | |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1478 | /* enable or disable low levels log */ |
| 1479 | void cpu_set_log(int log_flags) |
| 1480 | { |
| 1481 | loglevel = log_flags; |
| 1482 | if (loglevel && !logfile) { |
pbrook | 11fcfab | 2007-07-01 18:21:11 +0000 | [diff] [blame] | 1483 | logfile = fopen(logfilename, log_append ? "a" : "w"); |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1484 | if (!logfile) { |
| 1485 | perror(logfilename); |
| 1486 | _exit(1); |
| 1487 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1488 | #if !defined(CONFIG_SOFTMMU) |
| 1489 | /* must avoid mmap() usage of glibc by setting a buffer "by hand" */ |
| 1490 | { |
blueswir1 | b55266b | 2008-09-20 08:07:15 +0000 | [diff] [blame] | 1491 | static char logfile_buf[4096]; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1492 | setvbuf(logfile, logfile_buf, _IOLBF, sizeof(logfile_buf)); |
| 1493 | } |
| 1494 | #else |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1495 | setvbuf(logfile, NULL, _IOLBF, 0); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1496 | #endif |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 1497 | log_append = 1; |
| 1498 | } |
| 1499 | if (!loglevel && logfile) { |
| 1500 | fclose(logfile); |
| 1501 | logfile = NULL; |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1502 | } |
| 1503 | } |
| 1504 | |
| 1505 | void cpu_set_log_filename(const char *filename) |
| 1506 | { |
| 1507 | logfilename = strdup(filename); |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 1508 | if (logfile) { |
| 1509 | fclose(logfile); |
| 1510 | logfile = NULL; |
| 1511 | } |
| 1512 | cpu_set_log(loglevel); |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1513 | } |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1514 | |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1515 | static void cpu_unlink_tb(CPUState *env) |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1516 | { |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 1517 | #if defined(USE_NPTL) |
| 1518 | /* FIXME: TB unchaining isn't SMP safe. For now just ignore the |
| 1519 | problem and hope the cpu will stop of its own accord. For userspace |
| 1520 | emulation this often isn't actually as bad as it sounds. Often |
| 1521 | signals are used primarily to interrupt blocking syscalls. */ |
| 1522 | #else |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1523 | TranslationBlock *tb; |
| 1524 | static spinlock_t interrupt_lock = SPIN_LOCK_UNLOCKED; |
| 1525 | |
| 1526 | tb = env->current_tb; |
| 1527 | /* if the cpu is currently executing code, we must unlink it and |
| 1528 | all the potentially executing TB */ |
| 1529 | if (tb && !testandset(&interrupt_lock)) { |
| 1530 | env->current_tb = NULL; |
| 1531 | tb_reset_jump_recursive(tb); |
| 1532 | resetlock(&interrupt_lock); |
| 1533 | } |
| 1534 | #endif |
| 1535 | } |
| 1536 | |
| 1537 | /* mask must never be zero, except for A20 change call */ |
| 1538 | void cpu_interrupt(CPUState *env, int mask) |
| 1539 | { |
| 1540 | int old_mask; |
| 1541 | |
| 1542 | old_mask = env->interrupt_request; |
| 1543 | env->interrupt_request |= mask; |
| 1544 | |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1545 | if (use_icount) { |
pbrook | 266910c | 2008-07-09 15:31:50 +0000 | [diff] [blame] | 1546 | env->icount_decr.u16.high = 0xffff; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1547 | #ifndef CONFIG_USER_ONLY |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1548 | if (!can_do_io(env) |
aurel32 | be214e6 | 2009-03-06 21:48:00 +0000 | [diff] [blame] | 1549 | && (mask & ~old_mask) != 0) { |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1550 | cpu_abort(env, "Raised interrupt while not in I/O function"); |
| 1551 | } |
| 1552 | #endif |
| 1553 | } else { |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1554 | cpu_unlink_tb(env); |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1555 | } |
| 1556 | } |
| 1557 | |
bellard | b54ad04 | 2004-05-20 13:42:52 +0000 | [diff] [blame] | 1558 | void cpu_reset_interrupt(CPUState *env, int mask) |
| 1559 | { |
| 1560 | env->interrupt_request &= ~mask; |
| 1561 | } |
| 1562 | |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1563 | void cpu_exit(CPUState *env) |
| 1564 | { |
| 1565 | env->exit_request = 1; |
| 1566 | cpu_unlink_tb(env); |
| 1567 | } |
| 1568 | |
blueswir1 | c7cd6a3 | 2008-10-02 18:27:46 +0000 | [diff] [blame] | 1569 | const CPULogItem cpu_log_items[] = { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1570 | { CPU_LOG_TB_OUT_ASM, "out_asm", |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1571 | "show generated host assembly code for each compiled TB" }, |
| 1572 | { CPU_LOG_TB_IN_ASM, "in_asm", |
| 1573 | "show target assembly code for each compiled TB" }, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1574 | { CPU_LOG_TB_OP, "op", |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 1575 | "show micro ops for each compiled TB" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1576 | { CPU_LOG_TB_OP_OPT, "op_opt", |
blueswir1 | e01a115 | 2008-03-14 17:37:11 +0000 | [diff] [blame] | 1577 | "show micro ops " |
| 1578 | #ifdef TARGET_I386 |
| 1579 | "before eflags optimization and " |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1580 | #endif |
blueswir1 | e01a115 | 2008-03-14 17:37:11 +0000 | [diff] [blame] | 1581 | "after liveness analysis" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1582 | { CPU_LOG_INT, "int", |
| 1583 | "show interrupts/exceptions in short format" }, |
| 1584 | { CPU_LOG_EXEC, "exec", |
| 1585 | "show trace before each executed TB (lots of logs)" }, |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1586 | { CPU_LOG_TB_CPU, "cpu", |
ths | e91c8a7 | 2007-06-03 13:35:16 +0000 | [diff] [blame] | 1587 | "show CPU state before block translation" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1588 | #ifdef TARGET_I386 |
| 1589 | { CPU_LOG_PCALL, "pcall", |
| 1590 | "show protected mode far calls/returns/exceptions" }, |
aliguori | eca1bdf | 2009-01-26 19:54:31 +0000 | [diff] [blame] | 1591 | { CPU_LOG_RESET, "cpu_reset", |
| 1592 | "show CPU state before CPU resets" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1593 | #endif |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1594 | #ifdef DEBUG_IOPORT |
bellard | fd87259 | 2004-05-12 19:11:15 +0000 | [diff] [blame] | 1595 | { CPU_LOG_IOPORT, "ioport", |
| 1596 | "show all i/o ports accesses" }, |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1597 | #endif |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1598 | { 0, NULL, NULL }, |
| 1599 | }; |
| 1600 | |
| 1601 | static int cmp1(const char *s1, int n, const char *s2) |
| 1602 | { |
| 1603 | if (strlen(s2) != n) |
| 1604 | return 0; |
| 1605 | return memcmp(s1, s2, n) == 0; |
| 1606 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1607 | |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1608 | /* takes a comma separated list of log masks. Return 0 if error. */ |
| 1609 | int cpu_str_to_log_mask(const char *str) |
| 1610 | { |
blueswir1 | c7cd6a3 | 2008-10-02 18:27:46 +0000 | [diff] [blame] | 1611 | const CPULogItem *item; |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1612 | int mask; |
| 1613 | const char *p, *p1; |
| 1614 | |
| 1615 | p = str; |
| 1616 | mask = 0; |
| 1617 | for(;;) { |
| 1618 | p1 = strchr(p, ','); |
| 1619 | if (!p1) |
| 1620 | p1 = p + strlen(p); |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1621 | if(cmp1(p,p1-p,"all")) { |
| 1622 | for(item = cpu_log_items; item->mask != 0; item++) { |
| 1623 | mask |= item->mask; |
| 1624 | } |
| 1625 | } else { |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1626 | for(item = cpu_log_items; item->mask != 0; item++) { |
| 1627 | if (cmp1(p, p1 - p, item->name)) |
| 1628 | goto found; |
| 1629 | } |
| 1630 | return 0; |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1631 | } |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1632 | found: |
| 1633 | mask |= item->mask; |
| 1634 | if (*p1 != ',') |
| 1635 | break; |
| 1636 | p = p1 + 1; |
| 1637 | } |
| 1638 | return mask; |
| 1639 | } |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1640 | |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1641 | void cpu_abort(CPUState *env, const char *fmt, ...) |
| 1642 | { |
| 1643 | va_list ap; |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1644 | va_list ap2; |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1645 | |
| 1646 | va_start(ap, fmt); |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1647 | va_copy(ap2, ap); |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1648 | fprintf(stderr, "qemu: fatal: "); |
| 1649 | vfprintf(stderr, fmt, ap); |
| 1650 | fprintf(stderr, "\n"); |
| 1651 | #ifdef TARGET_I386 |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 1652 | cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU | X86_DUMP_CCOP); |
| 1653 | #else |
| 1654 | cpu_dump_state(env, stderr, fprintf, 0); |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1655 | #endif |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1656 | if (qemu_log_enabled()) { |
| 1657 | qemu_log("qemu: fatal: "); |
| 1658 | qemu_log_vprintf(fmt, ap2); |
| 1659 | qemu_log("\n"); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1660 | #ifdef TARGET_I386 |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1661 | log_cpu_state(env, X86_DUMP_FPU | X86_DUMP_CCOP); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1662 | #else |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1663 | log_cpu_state(env, 0); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1664 | #endif |
aliguori | 31b1a7b | 2009-01-15 22:35:09 +0000 | [diff] [blame] | 1665 | qemu_log_flush(); |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1666 | qemu_log_close(); |
balrog | 924edca | 2007-06-10 14:07:13 +0000 | [diff] [blame] | 1667 | } |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1668 | va_end(ap2); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1669 | va_end(ap); |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1670 | abort(); |
| 1671 | } |
| 1672 | |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1673 | CPUState *cpu_copy(CPUState *env) |
| 1674 | { |
ths | 01ba981 | 2007-12-09 02:22:57 +0000 | [diff] [blame] | 1675 | CPUState *new_env = cpu_init(env->cpu_model_str); |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1676 | CPUState *next_cpu = new_env->next_cpu; |
| 1677 | int cpu_index = new_env->cpu_index; |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1678 | #if defined(TARGET_HAS_ICE) |
| 1679 | CPUBreakpoint *bp; |
| 1680 | CPUWatchpoint *wp; |
| 1681 | #endif |
| 1682 | |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1683 | memcpy(new_env, env, sizeof(CPUState)); |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1684 | |
| 1685 | /* Preserve chaining and index. */ |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1686 | new_env->next_cpu = next_cpu; |
| 1687 | new_env->cpu_index = cpu_index; |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1688 | |
| 1689 | /* Clone all break/watchpoints. |
| 1690 | Note: Once we support ptrace with hw-debug register access, make sure |
| 1691 | BP_CPU break/watchpoints are handled correctly on clone. */ |
| 1692 | TAILQ_INIT(&env->breakpoints); |
| 1693 | TAILQ_INIT(&env->watchpoints); |
| 1694 | #if defined(TARGET_HAS_ICE) |
| 1695 | TAILQ_FOREACH(bp, &env->breakpoints, entry) { |
| 1696 | cpu_breakpoint_insert(new_env, bp->pc, bp->flags, NULL); |
| 1697 | } |
| 1698 | TAILQ_FOREACH(wp, &env->watchpoints, entry) { |
| 1699 | cpu_watchpoint_insert(new_env, wp->vaddr, (~wp->len_mask) + 1, |
| 1700 | wp->flags, NULL); |
| 1701 | } |
| 1702 | #endif |
| 1703 | |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1704 | return new_env; |
| 1705 | } |
| 1706 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1707 | #if !defined(CONFIG_USER_ONLY) |
| 1708 | |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 1709 | static inline void tlb_flush_jmp_cache(CPUState *env, target_ulong addr) |
| 1710 | { |
| 1711 | unsigned int i; |
| 1712 | |
| 1713 | /* Discard jump cache entries for any tb which might potentially |
| 1714 | overlap the flushed page. */ |
| 1715 | i = tb_jmp_cache_hash_page(addr - TARGET_PAGE_SIZE); |
| 1716 | memset (&env->tb_jmp_cache[i], 0, |
| 1717 | TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *)); |
| 1718 | |
| 1719 | i = tb_jmp_cache_hash_page(addr); |
| 1720 | memset (&env->tb_jmp_cache[i], 0, |
| 1721 | TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *)); |
| 1722 | } |
| 1723 | |
bellard | ee8b702 | 2004-02-03 23:35:10 +0000 | [diff] [blame] | 1724 | /* NOTE: if flush_global is true, also flush global entries (not |
| 1725 | implemented yet) */ |
| 1726 | void tlb_flush(CPUState *env, int flush_global) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1727 | { |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1728 | int i; |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1729 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1730 | #if defined(DEBUG_TLB) |
| 1731 | printf("tlb_flush:\n"); |
| 1732 | #endif |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1733 | /* must reset current TB so that interrupts cannot modify the |
| 1734 | links while we are modifying them */ |
| 1735 | env->current_tb = NULL; |
| 1736 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1737 | for(i = 0; i < CPU_TLB_SIZE; i++) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1738 | env->tlb_table[0][i].addr_read = -1; |
| 1739 | env->tlb_table[0][i].addr_write = -1; |
| 1740 | env->tlb_table[0][i].addr_code = -1; |
| 1741 | env->tlb_table[1][i].addr_read = -1; |
| 1742 | env->tlb_table[1][i].addr_write = -1; |
| 1743 | env->tlb_table[1][i].addr_code = -1; |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1744 | #if (NB_MMU_MODES >= 3) |
| 1745 | env->tlb_table[2][i].addr_read = -1; |
| 1746 | env->tlb_table[2][i].addr_write = -1; |
| 1747 | env->tlb_table[2][i].addr_code = -1; |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1748 | #endif |
| 1749 | #if (NB_MMU_MODES >= 4) |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1750 | env->tlb_table[3][i].addr_read = -1; |
| 1751 | env->tlb_table[3][i].addr_write = -1; |
| 1752 | env->tlb_table[3][i].addr_code = -1; |
| 1753 | #endif |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1754 | #if (NB_MMU_MODES >= 5) |
| 1755 | env->tlb_table[4][i].addr_read = -1; |
| 1756 | env->tlb_table[4][i].addr_write = -1; |
| 1757 | env->tlb_table[4][i].addr_code = -1; |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1758 | #endif |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1759 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1760 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1761 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 1762 | memset (env->tb_jmp_cache, 0, TB_JMP_CACHE_SIZE * sizeof (void *)); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1763 | |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 1764 | #ifdef CONFIG_KQEMU |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1765 | if (env->kqemu_enabled) { |
| 1766 | kqemu_flush(env, flush_global); |
| 1767 | } |
| 1768 | #endif |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 1769 | tlb_flush_count++; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1770 | } |
| 1771 | |
bellard | 274da6b | 2004-05-20 21:56:27 +0000 | [diff] [blame] | 1772 | static inline void tlb_flush_entry(CPUTLBEntry *tlb_entry, target_ulong addr) |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1773 | { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1774 | if (addr == (tlb_entry->addr_read & |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1775 | (TARGET_PAGE_MASK | TLB_INVALID_MASK)) || |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1776 | addr == (tlb_entry->addr_write & |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1777 | (TARGET_PAGE_MASK | TLB_INVALID_MASK)) || |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1778 | addr == (tlb_entry->addr_code & |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1779 | (TARGET_PAGE_MASK | TLB_INVALID_MASK))) { |
| 1780 | tlb_entry->addr_read = -1; |
| 1781 | tlb_entry->addr_write = -1; |
| 1782 | tlb_entry->addr_code = -1; |
| 1783 | } |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1784 | } |
| 1785 | |
bellard | 2e12669 | 2004-04-25 21:28:44 +0000 | [diff] [blame] | 1786 | void tlb_flush_page(CPUState *env, target_ulong addr) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1787 | { |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 1788 | int i; |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1789 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1790 | #if defined(DEBUG_TLB) |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 1791 | printf("tlb_flush_page: " TARGET_FMT_lx "\n", addr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1792 | #endif |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1793 | /* must reset current TB so that interrupts cannot modify the |
| 1794 | links while we are modifying them */ |
| 1795 | env->current_tb = NULL; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1796 | |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1797 | addr &= TARGET_PAGE_MASK; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1798 | i = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1); |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1799 | tlb_flush_entry(&env->tlb_table[0][i], addr); |
| 1800 | tlb_flush_entry(&env->tlb_table[1][i], addr); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1801 | #if (NB_MMU_MODES >= 3) |
| 1802 | tlb_flush_entry(&env->tlb_table[2][i], addr); |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1803 | #endif |
| 1804 | #if (NB_MMU_MODES >= 4) |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1805 | tlb_flush_entry(&env->tlb_table[3][i], addr); |
| 1806 | #endif |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1807 | #if (NB_MMU_MODES >= 5) |
| 1808 | tlb_flush_entry(&env->tlb_table[4][i], addr); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1809 | #endif |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1810 | |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 1811 | tlb_flush_jmp_cache(env, addr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1812 | |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 1813 | #ifdef CONFIG_KQEMU |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1814 | if (env->kqemu_enabled) { |
| 1815 | kqemu_flush_page(env, addr); |
| 1816 | } |
| 1817 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1818 | } |
| 1819 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1820 | /* update the TLBs so that writes to code in the virtual page 'addr' |
| 1821 | can be detected */ |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1822 | static void tlb_protect_code(ram_addr_t ram_addr) |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1823 | { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1824 | cpu_physical_memory_reset_dirty(ram_addr, |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1825 | ram_addr + TARGET_PAGE_SIZE, |
| 1826 | CODE_DIRTY_FLAG); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1827 | } |
| 1828 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1829 | /* update the TLB so that writes in physical page 'phys_addr' are no longer |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1830 | tested for self modifying code */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1831 | static void tlb_unprotect_code_phys(CPUState *env, ram_addr_t ram_addr, |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1832 | target_ulong vaddr) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1833 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1834 | phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] |= CODE_DIRTY_FLAG; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1835 | } |
| 1836 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1837 | static inline void tlb_reset_dirty_range(CPUTLBEntry *tlb_entry, |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1838 | unsigned long start, unsigned long length) |
| 1839 | { |
| 1840 | unsigned long addr; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1841 | if ((tlb_entry->addr_write & ~TARGET_PAGE_MASK) == IO_MEM_RAM) { |
| 1842 | addr = (tlb_entry->addr_write & TARGET_PAGE_MASK) + tlb_entry->addend; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1843 | if ((addr - start) < length) { |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1844 | tlb_entry->addr_write = (tlb_entry->addr_write & TARGET_PAGE_MASK) | TLB_NOTDIRTY; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1845 | } |
| 1846 | } |
| 1847 | } |
| 1848 | |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 1849 | /* Note: start and end must be within the same ram block. */ |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1850 | void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end, |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1851 | int dirty_flags) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1852 | { |
| 1853 | CPUState *env; |
bellard | 4f2ac23 | 2004-04-26 19:44:02 +0000 | [diff] [blame] | 1854 | unsigned long length, start1; |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1855 | int i, mask, len; |
| 1856 | uint8_t *p; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1857 | |
| 1858 | start &= TARGET_PAGE_MASK; |
| 1859 | end = TARGET_PAGE_ALIGN(end); |
| 1860 | |
| 1861 | length = end - start; |
| 1862 | if (length == 0) |
| 1863 | return; |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1864 | len = length >> TARGET_PAGE_BITS; |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 1865 | #ifdef CONFIG_KQEMU |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1866 | /* XXX: should not depend on cpu context */ |
| 1867 | env = first_cpu; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1868 | if (env->kqemu_enabled) { |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 1869 | ram_addr_t addr; |
| 1870 | addr = start; |
| 1871 | for(i = 0; i < len; i++) { |
| 1872 | kqemu_set_notdirty(env, addr); |
| 1873 | addr += TARGET_PAGE_SIZE; |
| 1874 | } |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1875 | } |
| 1876 | #endif |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 1877 | mask = ~dirty_flags; |
| 1878 | p = phys_ram_dirty + (start >> TARGET_PAGE_BITS); |
| 1879 | for(i = 0; i < len; i++) |
| 1880 | p[i] &= mask; |
| 1881 | |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1882 | /* we modify the TLB cache so that the dirty bit will be set again |
| 1883 | when accessing the range */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 1884 | start1 = (unsigned long)qemu_get_ram_ptr(start); |
| 1885 | /* Chek that we don't span multiple blocks - this breaks the |
| 1886 | address comparisons below. */ |
| 1887 | if ((unsigned long)qemu_get_ram_ptr(end - 1) - start1 |
| 1888 | != (end - 1) - start) { |
| 1889 | abort(); |
| 1890 | } |
| 1891 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1892 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 1893 | for(i = 0; i < CPU_TLB_SIZE; i++) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1894 | tlb_reset_dirty_range(&env->tlb_table[0][i], start1, length); |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1895 | for(i = 0; i < CPU_TLB_SIZE; i++) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1896 | tlb_reset_dirty_range(&env->tlb_table[1][i], start1, length); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1897 | #if (NB_MMU_MODES >= 3) |
| 1898 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1899 | tlb_reset_dirty_range(&env->tlb_table[2][i], start1, length); |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1900 | #endif |
| 1901 | #if (NB_MMU_MODES >= 4) |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1902 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1903 | tlb_reset_dirty_range(&env->tlb_table[3][i], start1, length); |
| 1904 | #endif |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1905 | #if (NB_MMU_MODES >= 5) |
| 1906 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1907 | tlb_reset_dirty_range(&env->tlb_table[4][i], start1, length); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1908 | #endif |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1909 | } |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1910 | } |
| 1911 | |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 1912 | int cpu_physical_memory_set_dirty_tracking(int enable) |
| 1913 | { |
| 1914 | in_migration = enable; |
| 1915 | return 0; |
| 1916 | } |
| 1917 | |
| 1918 | int cpu_physical_memory_get_dirty_tracking(void) |
| 1919 | { |
| 1920 | return in_migration; |
| 1921 | } |
| 1922 | |
aliguori | 2bec46d | 2008-11-24 20:21:41 +0000 | [diff] [blame] | 1923 | void cpu_physical_sync_dirty_bitmap(target_phys_addr_t start_addr, target_phys_addr_t end_addr) |
| 1924 | { |
| 1925 | if (kvm_enabled()) |
| 1926 | kvm_physical_sync_dirty_bitmap(start_addr, end_addr); |
| 1927 | } |
| 1928 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1929 | static inline void tlb_update_dirty(CPUTLBEntry *tlb_entry) |
| 1930 | { |
| 1931 | ram_addr_t ram_addr; |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 1932 | void *p; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1933 | |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1934 | if ((tlb_entry->addr_write & ~TARGET_PAGE_MASK) == IO_MEM_RAM) { |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 1935 | p = (void *)(unsigned long)((tlb_entry->addr_write & TARGET_PAGE_MASK) |
| 1936 | + tlb_entry->addend); |
| 1937 | ram_addr = qemu_ram_addr_from_host(p); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1938 | if (!cpu_physical_memory_is_dirty(ram_addr)) { |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1939 | tlb_entry->addr_write |= TLB_NOTDIRTY; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1940 | } |
| 1941 | } |
| 1942 | } |
| 1943 | |
| 1944 | /* update the TLB according to the current state of the dirty bits */ |
| 1945 | void cpu_tlb_update_dirty(CPUState *env) |
| 1946 | { |
| 1947 | int i; |
| 1948 | for(i = 0; i < CPU_TLB_SIZE; i++) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1949 | tlb_update_dirty(&env->tlb_table[0][i]); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1950 | for(i = 0; i < CPU_TLB_SIZE; i++) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1951 | tlb_update_dirty(&env->tlb_table[1][i]); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1952 | #if (NB_MMU_MODES >= 3) |
| 1953 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1954 | tlb_update_dirty(&env->tlb_table[2][i]); |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1955 | #endif |
| 1956 | #if (NB_MMU_MODES >= 4) |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1957 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1958 | tlb_update_dirty(&env->tlb_table[3][i]); |
| 1959 | #endif |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1960 | #if (NB_MMU_MODES >= 5) |
| 1961 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1962 | tlb_update_dirty(&env->tlb_table[4][i]); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1963 | #endif |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1964 | } |
| 1965 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1966 | static inline void tlb_set_dirty1(CPUTLBEntry *tlb_entry, target_ulong vaddr) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1967 | { |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1968 | if (tlb_entry->addr_write == (vaddr | TLB_NOTDIRTY)) |
| 1969 | tlb_entry->addr_write = vaddr; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1970 | } |
| 1971 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1972 | /* update the TLB corresponding to virtual page vaddr |
| 1973 | so that it is no longer dirty */ |
| 1974 | static inline void tlb_set_dirty(CPUState *env, target_ulong vaddr) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1975 | { |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1976 | int i; |
| 1977 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1978 | vaddr &= TARGET_PAGE_MASK; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1979 | i = (vaddr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1); |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1980 | tlb_set_dirty1(&env->tlb_table[0][i], vaddr); |
| 1981 | tlb_set_dirty1(&env->tlb_table[1][i], vaddr); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1982 | #if (NB_MMU_MODES >= 3) |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1983 | tlb_set_dirty1(&env->tlb_table[2][i], vaddr); |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1984 | #endif |
| 1985 | #if (NB_MMU_MODES >= 4) |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 1986 | tlb_set_dirty1(&env->tlb_table[3][i], vaddr); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1987 | #endif |
aurel32 | e37e6ee | 2009-04-07 21:47:27 +0000 | [diff] [blame] | 1988 | #if (NB_MMU_MODES >= 5) |
| 1989 | tlb_set_dirty1(&env->tlb_table[4][i], vaddr); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1990 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1991 | } |
| 1992 | |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1993 | /* add a new TLB entry. At most one entry for a given virtual address |
| 1994 | is permitted. Return 0 if OK or 2 if the page could not be mapped |
| 1995 | (can only happen in non SOFTMMU mode for I/O pages or pages |
| 1996 | conflicting with the host address space). */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1997 | int tlb_set_page_exec(CPUState *env, target_ulong vaddr, |
| 1998 | target_phys_addr_t paddr, int prot, |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1999 | int mmu_idx, int is_softmmu) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2000 | { |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 2001 | PhysPageDesc *p; |
bellard | 4f2ac23 | 2004-04-26 19:44:02 +0000 | [diff] [blame] | 2002 | unsigned long pd; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2003 | unsigned int index; |
bellard | 4f2ac23 | 2004-04-26 19:44:02 +0000 | [diff] [blame] | 2004 | target_ulong address; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2005 | target_ulong code_address; |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 2006 | target_phys_addr_t addend; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2007 | int ret; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 2008 | CPUTLBEntry *te; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 2009 | CPUWatchpoint *wp; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2010 | target_phys_addr_t iotlb; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2011 | |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 2012 | p = phys_page_find(paddr >> TARGET_PAGE_BITS); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2013 | if (!p) { |
| 2014 | pd = IO_MEM_UNASSIGNED; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2015 | } else { |
| 2016 | pd = p->phys_offset; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2017 | } |
| 2018 | #if defined(DEBUG_TLB) |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 2019 | printf("tlb_set_page: vaddr=" TARGET_FMT_lx " paddr=0x%08x prot=%x idx=%d smmu=%d pd=0x%08lx\n", |
| 2020 | vaddr, (int)paddr, prot, mmu_idx, is_softmmu, pd); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2021 | #endif |
| 2022 | |
| 2023 | ret = 0; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2024 | address = vaddr; |
| 2025 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM && !(pd & IO_MEM_ROMD)) { |
| 2026 | /* IO memory case (romd handled later) */ |
| 2027 | address |= TLB_MMIO; |
| 2028 | } |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2029 | addend = (unsigned long)qemu_get_ram_ptr(pd & TARGET_PAGE_MASK); |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2030 | if ((pd & ~TARGET_PAGE_MASK) <= IO_MEM_ROM) { |
| 2031 | /* Normal RAM. */ |
| 2032 | iotlb = pd & TARGET_PAGE_MASK; |
| 2033 | if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_RAM) |
| 2034 | iotlb |= IO_MEM_NOTDIRTY; |
| 2035 | else |
| 2036 | iotlb |= IO_MEM_ROM; |
| 2037 | } else { |
| 2038 | /* IO handlers are currently passed a phsical address. |
| 2039 | It would be nice to pass an offset from the base address |
| 2040 | of that region. This would avoid having to special case RAM, |
| 2041 | and avoid full address decoding in every device. |
| 2042 | We can't use the high bits of pd for this because |
| 2043 | IO_MEM_ROMD uses these as a ram address. */ |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2044 | iotlb = (pd & ~TARGET_PAGE_MASK); |
| 2045 | if (p) { |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2046 | iotlb += p->region_offset; |
| 2047 | } else { |
| 2048 | iotlb += paddr; |
| 2049 | } |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2050 | } |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2051 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2052 | code_address = address; |
| 2053 | /* Make accesses to pages with watchpoints go via the |
| 2054 | watchpoint trap routines. */ |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 2055 | TAILQ_FOREACH(wp, &env->watchpoints, entry) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 2056 | if (vaddr == (wp->vaddr & TARGET_PAGE_MASK)) { |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2057 | iotlb = io_mem_watch + paddr; |
| 2058 | /* TODO: The memory case can be optimized by not trapping |
| 2059 | reads of pages with a write breakpoint. */ |
| 2060 | address |= TLB_MMIO; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2061 | } |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2062 | } |
balrog | d79acba | 2007-06-26 20:01:13 +0000 | [diff] [blame] | 2063 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2064 | index = (vaddr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1); |
| 2065 | env->iotlb[mmu_idx][index] = iotlb - vaddr; |
| 2066 | te = &env->tlb_table[mmu_idx][index]; |
| 2067 | te->addend = addend - vaddr; |
| 2068 | if (prot & PAGE_READ) { |
| 2069 | te->addr_read = address; |
| 2070 | } else { |
| 2071 | te->addr_read = -1; |
| 2072 | } |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 2073 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2074 | if (prot & PAGE_EXEC) { |
| 2075 | te->addr_code = code_address; |
| 2076 | } else { |
| 2077 | te->addr_code = -1; |
| 2078 | } |
| 2079 | if (prot & PAGE_WRITE) { |
| 2080 | if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_ROM || |
| 2081 | (pd & IO_MEM_ROMD)) { |
| 2082 | /* Write access calls the I/O callback. */ |
| 2083 | te->addr_write = address | TLB_MMIO; |
| 2084 | } else if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_RAM && |
| 2085 | !cpu_physical_memory_is_dirty(pd)) { |
| 2086 | te->addr_write = address | TLB_NOTDIRTY; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 2087 | } else { |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2088 | te->addr_write = address; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2089 | } |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2090 | } else { |
| 2091 | te->addr_write = -1; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2092 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2093 | return ret; |
| 2094 | } |
| 2095 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 2096 | #else |
| 2097 | |
bellard | ee8b702 | 2004-02-03 23:35:10 +0000 | [diff] [blame] | 2098 | void tlb_flush(CPUState *env, int flush_global) |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 2099 | { |
| 2100 | } |
| 2101 | |
bellard | 2e12669 | 2004-04-25 21:28:44 +0000 | [diff] [blame] | 2102 | void tlb_flush_page(CPUState *env, target_ulong addr) |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 2103 | { |
| 2104 | } |
| 2105 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2106 | int tlb_set_page_exec(CPUState *env, target_ulong vaddr, |
| 2107 | target_phys_addr_t paddr, int prot, |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 2108 | int mmu_idx, int is_softmmu) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2109 | { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2110 | return 0; |
| 2111 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2112 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2113 | /* dump memory mappings */ |
| 2114 | void page_dump(FILE *f) |
| 2115 | { |
| 2116 | unsigned long start, end; |
| 2117 | int i, j, prot, prot1; |
| 2118 | PageDesc *p; |
| 2119 | |
| 2120 | fprintf(f, "%-8s %-8s %-8s %s\n", |
| 2121 | "start", "end", "size", "prot"); |
| 2122 | start = -1; |
| 2123 | end = -1; |
| 2124 | prot = 0; |
| 2125 | for(i = 0; i <= L1_SIZE; i++) { |
| 2126 | if (i < L1_SIZE) |
| 2127 | p = l1_map[i]; |
| 2128 | else |
| 2129 | p = NULL; |
| 2130 | for(j = 0;j < L2_SIZE; j++) { |
| 2131 | if (!p) |
| 2132 | prot1 = 0; |
| 2133 | else |
| 2134 | prot1 = p[j].flags; |
| 2135 | if (prot1 != prot) { |
| 2136 | end = (i << (32 - L1_BITS)) | (j << TARGET_PAGE_BITS); |
| 2137 | if (start != -1) { |
| 2138 | fprintf(f, "%08lx-%08lx %08lx %c%c%c\n", |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2139 | start, end, end - start, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2140 | prot & PAGE_READ ? 'r' : '-', |
| 2141 | prot & PAGE_WRITE ? 'w' : '-', |
| 2142 | prot & PAGE_EXEC ? 'x' : '-'); |
| 2143 | } |
| 2144 | if (prot1 != 0) |
| 2145 | start = end; |
| 2146 | else |
| 2147 | start = -1; |
| 2148 | prot = prot1; |
| 2149 | } |
| 2150 | if (!p) |
| 2151 | break; |
| 2152 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2153 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2154 | } |
| 2155 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2156 | int page_get_flags(target_ulong address) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2157 | { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2158 | PageDesc *p; |
| 2159 | |
| 2160 | p = page_find(address >> TARGET_PAGE_BITS); |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2161 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2162 | return 0; |
| 2163 | return p->flags; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2164 | } |
| 2165 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2166 | /* modify the flags of a page and invalidate the code if |
| 2167 | necessary. The flag PAGE_WRITE_ORG is positionned automatically |
| 2168 | depending on PAGE_WRITE */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2169 | void page_set_flags(target_ulong start, target_ulong end, int flags) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2170 | { |
| 2171 | PageDesc *p; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2172 | target_ulong addr; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2173 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2174 | /* mmap_lock should already be held. */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2175 | start = start & TARGET_PAGE_MASK; |
| 2176 | end = TARGET_PAGE_ALIGN(end); |
| 2177 | if (flags & PAGE_WRITE) |
| 2178 | flags |= PAGE_WRITE_ORG; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2179 | for(addr = start; addr < end; addr += TARGET_PAGE_SIZE) { |
| 2180 | p = page_find_alloc(addr >> TARGET_PAGE_BITS); |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 2181 | /* We may be called for host regions that are outside guest |
| 2182 | address space. */ |
| 2183 | if (!p) |
| 2184 | return; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2185 | /* if the write protection is set, then we invalidate the code |
| 2186 | inside */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2187 | if (!(p->flags & PAGE_WRITE) && |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2188 | (flags & PAGE_WRITE) && |
| 2189 | p->first_tb) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 2190 | tb_invalidate_phys_page(addr, 0, NULL); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2191 | } |
| 2192 | p->flags = flags; |
| 2193 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2194 | } |
| 2195 | |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2196 | int page_check_range(target_ulong start, target_ulong len, int flags) |
| 2197 | { |
| 2198 | PageDesc *p; |
| 2199 | target_ulong end; |
| 2200 | target_ulong addr; |
| 2201 | |
balrog | 55f280c | 2008-10-28 10:24:11 +0000 | [diff] [blame] | 2202 | if (start + len < start) |
| 2203 | /* we've wrapped around */ |
| 2204 | return -1; |
| 2205 | |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2206 | end = TARGET_PAGE_ALIGN(start+len); /* must do before we loose bits in the next step */ |
| 2207 | start = start & TARGET_PAGE_MASK; |
| 2208 | |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2209 | for(addr = start; addr < end; addr += TARGET_PAGE_SIZE) { |
| 2210 | p = page_find(addr >> TARGET_PAGE_BITS); |
| 2211 | if( !p ) |
| 2212 | return -1; |
| 2213 | if( !(p->flags & PAGE_VALID) ) |
| 2214 | return -1; |
| 2215 | |
bellard | dae3270 | 2007-11-14 10:51:00 +0000 | [diff] [blame] | 2216 | if ((flags & PAGE_READ) && !(p->flags & PAGE_READ)) |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2217 | return -1; |
bellard | dae3270 | 2007-11-14 10:51:00 +0000 | [diff] [blame] | 2218 | if (flags & PAGE_WRITE) { |
| 2219 | if (!(p->flags & PAGE_WRITE_ORG)) |
| 2220 | return -1; |
| 2221 | /* unprotect the page if it was put read-only because it |
| 2222 | contains translated code */ |
| 2223 | if (!(p->flags & PAGE_WRITE)) { |
| 2224 | if (!page_unprotect(addr, 0, NULL)) |
| 2225 | return -1; |
| 2226 | } |
| 2227 | return 0; |
| 2228 | } |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2229 | } |
| 2230 | return 0; |
| 2231 | } |
| 2232 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2233 | /* called from signal handler: invalidate the code and unprotect the |
| 2234 | page. Return TRUE if the fault was succesfully handled. */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2235 | int page_unprotect(target_ulong address, unsigned long pc, void *puc) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2236 | { |
| 2237 | unsigned int page_index, prot, pindex; |
| 2238 | PageDesc *p, *p1; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2239 | target_ulong host_start, host_end, addr; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2240 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2241 | /* Technically this isn't safe inside a signal handler. However we |
| 2242 | know this only ever happens in a synchronous SEGV handler, so in |
| 2243 | practice it seems to be ok. */ |
| 2244 | mmap_lock(); |
| 2245 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2246 | host_start = address & qemu_host_page_mask; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2247 | page_index = host_start >> TARGET_PAGE_BITS; |
| 2248 | p1 = page_find(page_index); |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2249 | if (!p1) { |
| 2250 | mmap_unlock(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2251 | return 0; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2252 | } |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2253 | host_end = host_start + qemu_host_page_size; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2254 | p = p1; |
| 2255 | prot = 0; |
| 2256 | for(addr = host_start;addr < host_end; addr += TARGET_PAGE_SIZE) { |
| 2257 | prot |= p->flags; |
| 2258 | p++; |
| 2259 | } |
| 2260 | /* if the page was really writable, then we change its |
| 2261 | protection back to writable */ |
| 2262 | if (prot & PAGE_WRITE_ORG) { |
| 2263 | pindex = (address - host_start) >> TARGET_PAGE_BITS; |
| 2264 | if (!(p1[pindex].flags & PAGE_WRITE)) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2265 | mprotect((void *)g2h(host_start), qemu_host_page_size, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2266 | (prot & PAGE_BITS) | PAGE_WRITE); |
| 2267 | p1[pindex].flags |= PAGE_WRITE; |
| 2268 | /* and since the content will be modified, we must invalidate |
| 2269 | the corresponding translated code. */ |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 2270 | tb_invalidate_phys_page(address, pc, puc); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2271 | #ifdef DEBUG_TB_CHECK |
| 2272 | tb_invalidate_check(address); |
| 2273 | #endif |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2274 | mmap_unlock(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2275 | return 1; |
| 2276 | } |
| 2277 | } |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2278 | mmap_unlock(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2279 | return 0; |
| 2280 | } |
| 2281 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 2282 | static inline void tlb_set_dirty(CPUState *env, |
| 2283 | unsigned long addr, target_ulong vaddr) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2284 | { |
| 2285 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2286 | #endif /* defined(CONFIG_USER_ONLY) */ |
| 2287 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 2288 | #if !defined(CONFIG_USER_ONLY) |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2289 | |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2290 | static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end, |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2291 | ram_addr_t memory, ram_addr_t region_offset); |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2292 | static void *subpage_init (target_phys_addr_t base, ram_addr_t *phys, |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2293 | ram_addr_t orig_memory, ram_addr_t region_offset); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2294 | #define CHECK_SUBPAGE(addr, start_addr, start_addr2, end_addr, end_addr2, \ |
| 2295 | need_subpage) \ |
| 2296 | do { \ |
| 2297 | if (addr > start_addr) \ |
| 2298 | start_addr2 = 0; \ |
| 2299 | else { \ |
| 2300 | start_addr2 = start_addr & ~TARGET_PAGE_MASK; \ |
| 2301 | if (start_addr2 > 0) \ |
| 2302 | need_subpage = 1; \ |
| 2303 | } \ |
| 2304 | \ |
blueswir1 | 49e9fba | 2007-05-30 17:25:06 +0000 | [diff] [blame] | 2305 | if ((start_addr + orig_size) - addr >= TARGET_PAGE_SIZE) \ |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2306 | end_addr2 = TARGET_PAGE_SIZE - 1; \ |
| 2307 | else { \ |
| 2308 | end_addr2 = (start_addr + orig_size - 1) & ~TARGET_PAGE_MASK; \ |
| 2309 | if (end_addr2 < TARGET_PAGE_SIZE - 1) \ |
| 2310 | need_subpage = 1; \ |
| 2311 | } \ |
| 2312 | } while (0) |
| 2313 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2314 | /* register physical memory. 'size' must be a multiple of the target |
| 2315 | page size. If (phys_offset & ~TARGET_PAGE_MASK) != 0, then it is an |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2316 | io memory page. The address used when calling the IO function is |
| 2317 | the offset from the start of the region, plus region_offset. Both |
| 2318 | start_region and regon_offset are rounded down to a page boundary |
| 2319 | before calculating this offset. This should not be a problem unless |
| 2320 | the low bits of start_addr and region_offset differ. */ |
| 2321 | void cpu_register_physical_memory_offset(target_phys_addr_t start_addr, |
| 2322 | ram_addr_t size, |
| 2323 | ram_addr_t phys_offset, |
| 2324 | ram_addr_t region_offset) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2325 | { |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 2326 | target_phys_addr_t addr, end_addr; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 2327 | PhysPageDesc *p; |
bellard | 9d42037 | 2006-06-25 22:25:22 +0000 | [diff] [blame] | 2328 | CPUState *env; |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2329 | ram_addr_t orig_size = size; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2330 | void *subpage; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2331 | |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2332 | #ifdef CONFIG_KQEMU |
bellard | da26024 | 2008-05-30 20:48:25 +0000 | [diff] [blame] | 2333 | /* XXX: should not depend on cpu context */ |
| 2334 | env = first_cpu; |
| 2335 | if (env->kqemu_enabled) { |
| 2336 | kqemu_set_phys_mem(start_addr, size, phys_offset); |
| 2337 | } |
| 2338 | #endif |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 2339 | if (kvm_enabled()) |
| 2340 | kvm_set_phys_mem(start_addr, size, phys_offset); |
| 2341 | |
pbrook | 67c4d23 | 2009-02-23 13:16:07 +0000 | [diff] [blame] | 2342 | if (phys_offset == IO_MEM_UNASSIGNED) { |
| 2343 | region_offset = start_addr; |
| 2344 | } |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2345 | region_offset &= TARGET_PAGE_MASK; |
bellard | 5fd386f | 2004-05-23 21:11:22 +0000 | [diff] [blame] | 2346 | size = (size + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK; |
blueswir1 | 49e9fba | 2007-05-30 17:25:06 +0000 | [diff] [blame] | 2347 | end_addr = start_addr + (target_phys_addr_t)size; |
| 2348 | for(addr = start_addr; addr != end_addr; addr += TARGET_PAGE_SIZE) { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2349 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2350 | if (p && p->phys_offset != IO_MEM_UNASSIGNED) { |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2351 | ram_addr_t orig_memory = p->phys_offset; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2352 | target_phys_addr_t start_addr2, end_addr2; |
| 2353 | int need_subpage = 0; |
| 2354 | |
| 2355 | CHECK_SUBPAGE(addr, start_addr, start_addr2, end_addr, end_addr2, |
| 2356 | need_subpage); |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2357 | if (need_subpage || phys_offset & IO_MEM_SUBWIDTH) { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2358 | if (!(orig_memory & IO_MEM_SUBPAGE)) { |
| 2359 | subpage = subpage_init((addr & TARGET_PAGE_MASK), |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2360 | &p->phys_offset, orig_memory, |
| 2361 | p->region_offset); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2362 | } else { |
| 2363 | subpage = io_mem_opaque[(orig_memory & ~TARGET_PAGE_MASK) |
| 2364 | >> IO_MEM_SHIFT]; |
| 2365 | } |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2366 | subpage_register(subpage, start_addr2, end_addr2, phys_offset, |
| 2367 | region_offset); |
| 2368 | p->region_offset = 0; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2369 | } else { |
| 2370 | p->phys_offset = phys_offset; |
| 2371 | if ((phys_offset & ~TARGET_PAGE_MASK) <= IO_MEM_ROM || |
| 2372 | (phys_offset & IO_MEM_ROMD)) |
| 2373 | phys_offset += TARGET_PAGE_SIZE; |
| 2374 | } |
| 2375 | } else { |
| 2376 | p = phys_page_find_alloc(addr >> TARGET_PAGE_BITS, 1); |
| 2377 | p->phys_offset = phys_offset; |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2378 | p->region_offset = region_offset; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2379 | if ((phys_offset & ~TARGET_PAGE_MASK) <= IO_MEM_ROM || |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2380 | (phys_offset & IO_MEM_ROMD)) { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2381 | phys_offset += TARGET_PAGE_SIZE; |
pbrook | 0e8f096 | 2008-12-02 09:02:15 +0000 | [diff] [blame] | 2382 | } else { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2383 | target_phys_addr_t start_addr2, end_addr2; |
| 2384 | int need_subpage = 0; |
| 2385 | |
| 2386 | CHECK_SUBPAGE(addr, start_addr, start_addr2, end_addr, |
| 2387 | end_addr2, need_subpage); |
| 2388 | |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2389 | if (need_subpage || phys_offset & IO_MEM_SUBWIDTH) { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2390 | subpage = subpage_init((addr & TARGET_PAGE_MASK), |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2391 | &p->phys_offset, IO_MEM_UNASSIGNED, |
pbrook | 67c4d23 | 2009-02-23 13:16:07 +0000 | [diff] [blame] | 2392 | addr & TARGET_PAGE_MASK); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2393 | subpage_register(subpage, start_addr2, end_addr2, |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2394 | phys_offset, region_offset); |
| 2395 | p->region_offset = 0; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2396 | } |
| 2397 | } |
| 2398 | } |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2399 | region_offset += TARGET_PAGE_SIZE; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2400 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2401 | |
bellard | 9d42037 | 2006-06-25 22:25:22 +0000 | [diff] [blame] | 2402 | /* since each CPU stores ram addresses in its TLB cache, we must |
| 2403 | reset the modified entries */ |
| 2404 | /* XXX: slow ! */ |
| 2405 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 2406 | tlb_flush(env, 1); |
| 2407 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2408 | } |
| 2409 | |
bellard | ba86345 | 2006-09-24 18:41:10 +0000 | [diff] [blame] | 2410 | /* XXX: temporary until new memory mapping API */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2411 | ram_addr_t cpu_get_physical_page_desc(target_phys_addr_t addr) |
bellard | ba86345 | 2006-09-24 18:41:10 +0000 | [diff] [blame] | 2412 | { |
| 2413 | PhysPageDesc *p; |
| 2414 | |
| 2415 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2416 | if (!p) |
| 2417 | return IO_MEM_UNASSIGNED; |
| 2418 | return p->phys_offset; |
| 2419 | } |
| 2420 | |
aliguori | f65ed4c | 2008-12-09 20:09:57 +0000 | [diff] [blame] | 2421 | void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size) |
| 2422 | { |
| 2423 | if (kvm_enabled()) |
| 2424 | kvm_coalesce_mmio_region(addr, size); |
| 2425 | } |
| 2426 | |
| 2427 | void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size) |
| 2428 | { |
| 2429 | if (kvm_enabled()) |
| 2430 | kvm_uncoalesce_mmio_region(addr, size); |
| 2431 | } |
| 2432 | |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2433 | #ifdef CONFIG_KQEMU |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2434 | /* XXX: better than nothing */ |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2435 | static ram_addr_t kqemu_ram_alloc(ram_addr_t size) |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2436 | { |
| 2437 | ram_addr_t addr; |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2438 | if ((last_ram_offset + size) > kqemu_phys_ram_size) { |
ths | 012a704 | 2008-10-02 17:34:21 +0000 | [diff] [blame] | 2439 | fprintf(stderr, "Not enough memory (requested_size = %" PRIu64 ", max memory = %" PRIu64 ")\n", |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2440 | (uint64_t)size, (uint64_t)kqemu_phys_ram_size); |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2441 | abort(); |
| 2442 | } |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2443 | addr = last_ram_offset; |
| 2444 | last_ram_offset = TARGET_PAGE_ALIGN(last_ram_offset + size); |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2445 | return addr; |
| 2446 | } |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2447 | #endif |
| 2448 | |
| 2449 | ram_addr_t qemu_ram_alloc(ram_addr_t size) |
| 2450 | { |
| 2451 | RAMBlock *new_block; |
| 2452 | |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2453 | #ifdef CONFIG_KQEMU |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2454 | if (kqemu_phys_ram_base) { |
| 2455 | return kqemu_ram_alloc(size); |
| 2456 | } |
| 2457 | #endif |
| 2458 | |
| 2459 | size = TARGET_PAGE_ALIGN(size); |
| 2460 | new_block = qemu_malloc(sizeof(*new_block)); |
| 2461 | |
| 2462 | new_block->host = qemu_vmalloc(size); |
| 2463 | new_block->offset = last_ram_offset; |
| 2464 | new_block->length = size; |
| 2465 | |
| 2466 | new_block->next = ram_blocks; |
| 2467 | ram_blocks = new_block; |
| 2468 | |
| 2469 | phys_ram_dirty = qemu_realloc(phys_ram_dirty, |
| 2470 | (last_ram_offset + size) >> TARGET_PAGE_BITS); |
| 2471 | memset(phys_ram_dirty + (last_ram_offset >> TARGET_PAGE_BITS), |
| 2472 | 0xff, size >> TARGET_PAGE_BITS); |
| 2473 | |
| 2474 | last_ram_offset += size; |
| 2475 | |
| 2476 | return new_block->offset; |
| 2477 | } |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2478 | |
| 2479 | void qemu_ram_free(ram_addr_t addr) |
| 2480 | { |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2481 | /* TODO: implement this. */ |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2482 | } |
| 2483 | |
pbrook | dc828ca | 2009-04-09 22:21:07 +0000 | [diff] [blame] | 2484 | /* Return a host pointer to ram allocated with qemu_ram_alloc. |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2485 | With the exception of the softmmu code in this file, this should |
| 2486 | only be used for local memory (e.g. video ram) that the device owns, |
| 2487 | and knows it isn't going to access beyond the end of the block. |
| 2488 | |
| 2489 | It should not be used for general purpose DMA. |
| 2490 | Use cpu_physical_memory_map/cpu_physical_memory_rw instead. |
| 2491 | */ |
pbrook | dc828ca | 2009-04-09 22:21:07 +0000 | [diff] [blame] | 2492 | void *qemu_get_ram_ptr(ram_addr_t addr) |
| 2493 | { |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2494 | RAMBlock *prev; |
| 2495 | RAMBlock **prevp; |
| 2496 | RAMBlock *block; |
| 2497 | |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2498 | #ifdef CONFIG_KQEMU |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2499 | if (kqemu_phys_ram_base) { |
| 2500 | return kqemu_phys_ram_base + addr; |
| 2501 | } |
| 2502 | #endif |
| 2503 | |
| 2504 | prev = NULL; |
| 2505 | prevp = &ram_blocks; |
| 2506 | block = ram_blocks; |
| 2507 | while (block && (block->offset > addr |
| 2508 | || block->offset + block->length <= addr)) { |
| 2509 | if (prev) |
| 2510 | prevp = &prev->next; |
| 2511 | prev = block; |
| 2512 | block = block->next; |
| 2513 | } |
| 2514 | if (!block) { |
| 2515 | fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr); |
| 2516 | abort(); |
| 2517 | } |
| 2518 | /* Move this entry to to start of the list. */ |
| 2519 | if (prev) { |
| 2520 | prev->next = block->next; |
| 2521 | block->next = *prevp; |
| 2522 | *prevp = block; |
| 2523 | } |
| 2524 | return block->host + (addr - block->offset); |
pbrook | dc828ca | 2009-04-09 22:21:07 +0000 | [diff] [blame] | 2525 | } |
| 2526 | |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2527 | /* Some of the softmmu routines need to translate from a host pointer |
| 2528 | (typically a TLB entry) back to a ram offset. */ |
| 2529 | ram_addr_t qemu_ram_addr_from_host(void *ptr) |
| 2530 | { |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2531 | RAMBlock *prev; |
| 2532 | RAMBlock **prevp; |
| 2533 | RAMBlock *block; |
| 2534 | uint8_t *host = ptr; |
| 2535 | |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2536 | #ifdef CONFIG_KQEMU |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2537 | if (kqemu_phys_ram_base) { |
| 2538 | return host - kqemu_phys_ram_base; |
| 2539 | } |
| 2540 | #endif |
| 2541 | |
| 2542 | prev = NULL; |
| 2543 | prevp = &ram_blocks; |
| 2544 | block = ram_blocks; |
| 2545 | while (block && (block->host > host |
| 2546 | || block->host + block->length <= host)) { |
| 2547 | if (prev) |
| 2548 | prevp = &prev->next; |
| 2549 | prev = block; |
| 2550 | block = block->next; |
| 2551 | } |
| 2552 | if (!block) { |
| 2553 | fprintf(stderr, "Bad ram pointer %p\n", ptr); |
| 2554 | abort(); |
| 2555 | } |
| 2556 | return block->offset + (host - block->host); |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2557 | } |
| 2558 | |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2559 | static uint32_t unassigned_mem_readb(void *opaque, target_phys_addr_t addr) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2560 | { |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2561 | #ifdef DEBUG_UNASSIGNED |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 2562 | printf("Unassigned mem read " TARGET_FMT_plx "\n", addr); |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2563 | #endif |
edgar_igl | 0a6f8a6 | 2008-12-29 14:39:57 +0000 | [diff] [blame] | 2564 | #if defined(TARGET_SPARC) |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2565 | do_unassigned_access(addr, 0, 0, 0, 1); |
| 2566 | #endif |
| 2567 | return 0; |
| 2568 | } |
| 2569 | |
| 2570 | static uint32_t unassigned_mem_readw(void *opaque, target_phys_addr_t addr) |
| 2571 | { |
| 2572 | #ifdef DEBUG_UNASSIGNED |
| 2573 | printf("Unassigned mem read " TARGET_FMT_plx "\n", addr); |
| 2574 | #endif |
edgar_igl | 0a6f8a6 | 2008-12-29 14:39:57 +0000 | [diff] [blame] | 2575 | #if defined(TARGET_SPARC) |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2576 | do_unassigned_access(addr, 0, 0, 0, 2); |
| 2577 | #endif |
| 2578 | return 0; |
| 2579 | } |
| 2580 | |
| 2581 | static uint32_t unassigned_mem_readl(void *opaque, target_phys_addr_t addr) |
| 2582 | { |
| 2583 | #ifdef DEBUG_UNASSIGNED |
| 2584 | printf("Unassigned mem read " TARGET_FMT_plx "\n", addr); |
| 2585 | #endif |
edgar_igl | 0a6f8a6 | 2008-12-29 14:39:57 +0000 | [diff] [blame] | 2586 | #if defined(TARGET_SPARC) |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2587 | do_unassigned_access(addr, 0, 0, 0, 4); |
blueswir1 | b4f0a31 | 2007-05-06 17:59:24 +0000 | [diff] [blame] | 2588 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2589 | return 0; |
| 2590 | } |
| 2591 | |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2592 | static void unassigned_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2593 | { |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2594 | #ifdef DEBUG_UNASSIGNED |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 2595 | printf("Unassigned mem write " TARGET_FMT_plx " = 0x%x\n", addr, val); |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2596 | #endif |
edgar_igl | 0a6f8a6 | 2008-12-29 14:39:57 +0000 | [diff] [blame] | 2597 | #if defined(TARGET_SPARC) |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2598 | do_unassigned_access(addr, 1, 0, 0, 1); |
| 2599 | #endif |
| 2600 | } |
| 2601 | |
| 2602 | static void unassigned_mem_writew(void *opaque, target_phys_addr_t addr, uint32_t val) |
| 2603 | { |
| 2604 | #ifdef DEBUG_UNASSIGNED |
| 2605 | printf("Unassigned mem write " TARGET_FMT_plx " = 0x%x\n", addr, val); |
| 2606 | #endif |
edgar_igl | 0a6f8a6 | 2008-12-29 14:39:57 +0000 | [diff] [blame] | 2607 | #if defined(TARGET_SPARC) |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2608 | do_unassigned_access(addr, 1, 0, 0, 2); |
| 2609 | #endif |
| 2610 | } |
| 2611 | |
| 2612 | static void unassigned_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val) |
| 2613 | { |
| 2614 | #ifdef DEBUG_UNASSIGNED |
| 2615 | printf("Unassigned mem write " TARGET_FMT_plx " = 0x%x\n", addr, val); |
| 2616 | #endif |
edgar_igl | 0a6f8a6 | 2008-12-29 14:39:57 +0000 | [diff] [blame] | 2617 | #if defined(TARGET_SPARC) |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2618 | do_unassigned_access(addr, 1, 0, 0, 4); |
blueswir1 | b4f0a31 | 2007-05-06 17:59:24 +0000 | [diff] [blame] | 2619 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2620 | } |
| 2621 | |
| 2622 | static CPUReadMemoryFunc *unassigned_mem_read[3] = { |
| 2623 | unassigned_mem_readb, |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2624 | unassigned_mem_readw, |
| 2625 | unassigned_mem_readl, |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2626 | }; |
| 2627 | |
| 2628 | static CPUWriteMemoryFunc *unassigned_mem_write[3] = { |
| 2629 | unassigned_mem_writeb, |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2630 | unassigned_mem_writew, |
| 2631 | unassigned_mem_writel, |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2632 | }; |
| 2633 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2634 | static void notdirty_mem_writeb(void *opaque, target_phys_addr_t ram_addr, |
| 2635 | uint32_t val) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2636 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2637 | int dirty_flags; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2638 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2639 | if (!(dirty_flags & CODE_DIRTY_FLAG)) { |
| 2640 | #if !defined(CONFIG_USER_ONLY) |
| 2641 | tb_invalidate_phys_page_fast(ram_addr, 1); |
| 2642 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2643 | #endif |
| 2644 | } |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2645 | stb_p(qemu_get_ram_ptr(ram_addr), val); |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2646 | #ifdef CONFIG_KQEMU |
bellard | f32fc64 | 2006-02-08 22:43:39 +0000 | [diff] [blame] | 2647 | if (cpu_single_env->kqemu_enabled && |
| 2648 | (dirty_flags & KQEMU_MODIFY_PAGE_MASK) != KQEMU_MODIFY_PAGE_MASK) |
| 2649 | kqemu_modify_page(cpu_single_env, ram_addr); |
| 2650 | #endif |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 2651 | dirty_flags |= (0xff & ~CODE_DIRTY_FLAG); |
| 2652 | phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] = dirty_flags; |
| 2653 | /* we remove the notdirty callback only if the code has been |
| 2654 | flushed */ |
| 2655 | if (dirty_flags == 0xff) |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 2656 | tlb_set_dirty(cpu_single_env, cpu_single_env->mem_io_vaddr); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2657 | } |
| 2658 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2659 | static void notdirty_mem_writew(void *opaque, target_phys_addr_t ram_addr, |
| 2660 | uint32_t val) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2661 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2662 | int dirty_flags; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2663 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2664 | if (!(dirty_flags & CODE_DIRTY_FLAG)) { |
| 2665 | #if !defined(CONFIG_USER_ONLY) |
| 2666 | tb_invalidate_phys_page_fast(ram_addr, 2); |
| 2667 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2668 | #endif |
| 2669 | } |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2670 | stw_p(qemu_get_ram_ptr(ram_addr), val); |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2671 | #ifdef CONFIG_KQEMU |
bellard | f32fc64 | 2006-02-08 22:43:39 +0000 | [diff] [blame] | 2672 | if (cpu_single_env->kqemu_enabled && |
| 2673 | (dirty_flags & KQEMU_MODIFY_PAGE_MASK) != KQEMU_MODIFY_PAGE_MASK) |
| 2674 | kqemu_modify_page(cpu_single_env, ram_addr); |
| 2675 | #endif |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 2676 | dirty_flags |= (0xff & ~CODE_DIRTY_FLAG); |
| 2677 | phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] = dirty_flags; |
| 2678 | /* we remove the notdirty callback only if the code has been |
| 2679 | flushed */ |
| 2680 | if (dirty_flags == 0xff) |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 2681 | tlb_set_dirty(cpu_single_env, cpu_single_env->mem_io_vaddr); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2682 | } |
| 2683 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2684 | static void notdirty_mem_writel(void *opaque, target_phys_addr_t ram_addr, |
| 2685 | uint32_t val) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2686 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2687 | int dirty_flags; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2688 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2689 | if (!(dirty_flags & CODE_DIRTY_FLAG)) { |
| 2690 | #if !defined(CONFIG_USER_ONLY) |
| 2691 | tb_invalidate_phys_page_fast(ram_addr, 4); |
| 2692 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2693 | #endif |
| 2694 | } |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2695 | stl_p(qemu_get_ram_ptr(ram_addr), val); |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2696 | #ifdef CONFIG_KQEMU |
bellard | f32fc64 | 2006-02-08 22:43:39 +0000 | [diff] [blame] | 2697 | if (cpu_single_env->kqemu_enabled && |
| 2698 | (dirty_flags & KQEMU_MODIFY_PAGE_MASK) != KQEMU_MODIFY_PAGE_MASK) |
| 2699 | kqemu_modify_page(cpu_single_env, ram_addr); |
| 2700 | #endif |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 2701 | dirty_flags |= (0xff & ~CODE_DIRTY_FLAG); |
| 2702 | phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] = dirty_flags; |
| 2703 | /* we remove the notdirty callback only if the code has been |
| 2704 | flushed */ |
| 2705 | if (dirty_flags == 0xff) |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 2706 | tlb_set_dirty(cpu_single_env, cpu_single_env->mem_io_vaddr); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2707 | } |
| 2708 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2709 | static CPUReadMemoryFunc *error_mem_read[3] = { |
| 2710 | NULL, /* never used */ |
| 2711 | NULL, /* never used */ |
| 2712 | NULL, /* never used */ |
| 2713 | }; |
| 2714 | |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2715 | static CPUWriteMemoryFunc *notdirty_mem_write[3] = { |
| 2716 | notdirty_mem_writeb, |
| 2717 | notdirty_mem_writew, |
| 2718 | notdirty_mem_writel, |
| 2719 | }; |
| 2720 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2721 | /* Generate a debug exception if a watchpoint has been hit. */ |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 2722 | static void check_watchpoint(int offset, int len_mask, int flags) |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2723 | { |
| 2724 | CPUState *env = cpu_single_env; |
aliguori | 06d55cc | 2008-11-18 20:24:06 +0000 | [diff] [blame] | 2725 | target_ulong pc, cs_base; |
| 2726 | TranslationBlock *tb; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2727 | target_ulong vaddr; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 2728 | CPUWatchpoint *wp; |
aliguori | 06d55cc | 2008-11-18 20:24:06 +0000 | [diff] [blame] | 2729 | int cpu_flags; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2730 | |
aliguori | 06d55cc | 2008-11-18 20:24:06 +0000 | [diff] [blame] | 2731 | if (env->watchpoint_hit) { |
| 2732 | /* We re-entered the check after replacing the TB. Now raise |
| 2733 | * the debug interrupt so that is will trigger after the |
| 2734 | * current instruction. */ |
| 2735 | cpu_interrupt(env, CPU_INTERRUPT_DEBUG); |
| 2736 | return; |
| 2737 | } |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 2738 | vaddr = (env->mem_io_vaddr & TARGET_PAGE_MASK) + offset; |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 2739 | TAILQ_FOREACH(wp, &env->watchpoints, entry) { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 2740 | if ((vaddr == (wp->vaddr & len_mask) || |
| 2741 | (vaddr & wp->len_mask) == wp->vaddr) && (wp->flags & flags)) { |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 2742 | wp->flags |= BP_WATCHPOINT_HIT; |
| 2743 | if (!env->watchpoint_hit) { |
| 2744 | env->watchpoint_hit = wp; |
| 2745 | tb = tb_find_pc(env->mem_io_pc); |
| 2746 | if (!tb) { |
| 2747 | cpu_abort(env, "check_watchpoint: could not find TB for " |
| 2748 | "pc=%p", (void *)env->mem_io_pc); |
| 2749 | } |
| 2750 | cpu_restore_state(tb, env, env->mem_io_pc, NULL); |
| 2751 | tb_phys_invalidate(tb, -1); |
| 2752 | if (wp->flags & BP_STOP_BEFORE_ACCESS) { |
| 2753 | env->exception_index = EXCP_DEBUG; |
| 2754 | } else { |
| 2755 | cpu_get_tb_cpu_state(env, &pc, &cs_base, &cpu_flags); |
| 2756 | tb_gen_code(env, pc, cs_base, cpu_flags, 1); |
| 2757 | } |
| 2758 | cpu_resume_from_signal(env, NULL); |
aliguori | 06d55cc | 2008-11-18 20:24:06 +0000 | [diff] [blame] | 2759 | } |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 2760 | } else { |
| 2761 | wp->flags &= ~BP_WATCHPOINT_HIT; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2762 | } |
| 2763 | } |
| 2764 | } |
| 2765 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2766 | /* Watchpoint access routines. Watchpoints are inserted using TLB tricks, |
| 2767 | so these check for a hit then pass through to the normal out-of-line |
| 2768 | phys routines. */ |
| 2769 | static uint32_t watch_mem_readb(void *opaque, target_phys_addr_t addr) |
| 2770 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 2771 | check_watchpoint(addr & ~TARGET_PAGE_MASK, ~0x0, BP_MEM_READ); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2772 | return ldub_phys(addr); |
| 2773 | } |
| 2774 | |
| 2775 | static uint32_t watch_mem_readw(void *opaque, target_phys_addr_t addr) |
| 2776 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 2777 | check_watchpoint(addr & ~TARGET_PAGE_MASK, ~0x1, BP_MEM_READ); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2778 | return lduw_phys(addr); |
| 2779 | } |
| 2780 | |
| 2781 | static uint32_t watch_mem_readl(void *opaque, target_phys_addr_t addr) |
| 2782 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 2783 | check_watchpoint(addr & ~TARGET_PAGE_MASK, ~0x3, BP_MEM_READ); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2784 | return ldl_phys(addr); |
| 2785 | } |
| 2786 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2787 | static void watch_mem_writeb(void *opaque, target_phys_addr_t addr, |
| 2788 | uint32_t val) |
| 2789 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 2790 | check_watchpoint(addr & ~TARGET_PAGE_MASK, ~0x0, BP_MEM_WRITE); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2791 | stb_phys(addr, val); |
| 2792 | } |
| 2793 | |
| 2794 | static void watch_mem_writew(void *opaque, target_phys_addr_t addr, |
| 2795 | uint32_t val) |
| 2796 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 2797 | check_watchpoint(addr & ~TARGET_PAGE_MASK, ~0x1, BP_MEM_WRITE); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2798 | stw_phys(addr, val); |
| 2799 | } |
| 2800 | |
| 2801 | static void watch_mem_writel(void *opaque, target_phys_addr_t addr, |
| 2802 | uint32_t val) |
| 2803 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 2804 | check_watchpoint(addr & ~TARGET_PAGE_MASK, ~0x3, BP_MEM_WRITE); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2805 | stl_phys(addr, val); |
| 2806 | } |
| 2807 | |
| 2808 | static CPUReadMemoryFunc *watch_mem_read[3] = { |
| 2809 | watch_mem_readb, |
| 2810 | watch_mem_readw, |
| 2811 | watch_mem_readl, |
| 2812 | }; |
| 2813 | |
| 2814 | static CPUWriteMemoryFunc *watch_mem_write[3] = { |
| 2815 | watch_mem_writeb, |
| 2816 | watch_mem_writew, |
| 2817 | watch_mem_writel, |
| 2818 | }; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2819 | |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2820 | static inline uint32_t subpage_readlen (subpage_t *mmio, target_phys_addr_t addr, |
| 2821 | unsigned int len) |
| 2822 | { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2823 | uint32_t ret; |
| 2824 | unsigned int idx; |
| 2825 | |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2826 | idx = SUBPAGE_IDX(addr); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2827 | #if defined(DEBUG_SUBPAGE) |
| 2828 | printf("%s: subpage %p len %d addr " TARGET_FMT_plx " idx %d\n", __func__, |
| 2829 | mmio, len, addr, idx); |
| 2830 | #endif |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2831 | ret = (**mmio->mem_read[idx][len])(mmio->opaque[idx][0][len], |
| 2832 | addr + mmio->region_offset[idx][0][len]); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2833 | |
| 2834 | return ret; |
| 2835 | } |
| 2836 | |
| 2837 | static inline void subpage_writelen (subpage_t *mmio, target_phys_addr_t addr, |
| 2838 | uint32_t value, unsigned int len) |
| 2839 | { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2840 | unsigned int idx; |
| 2841 | |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2842 | idx = SUBPAGE_IDX(addr); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2843 | #if defined(DEBUG_SUBPAGE) |
| 2844 | printf("%s: subpage %p len %d addr " TARGET_FMT_plx " idx %d value %08x\n", __func__, |
| 2845 | mmio, len, addr, idx, value); |
| 2846 | #endif |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2847 | (**mmio->mem_write[idx][len])(mmio->opaque[idx][1][len], |
| 2848 | addr + mmio->region_offset[idx][1][len], |
| 2849 | value); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2850 | } |
| 2851 | |
| 2852 | static uint32_t subpage_readb (void *opaque, target_phys_addr_t addr) |
| 2853 | { |
| 2854 | #if defined(DEBUG_SUBPAGE) |
| 2855 | printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); |
| 2856 | #endif |
| 2857 | |
| 2858 | return subpage_readlen(opaque, addr, 0); |
| 2859 | } |
| 2860 | |
| 2861 | static void subpage_writeb (void *opaque, target_phys_addr_t addr, |
| 2862 | uint32_t value) |
| 2863 | { |
| 2864 | #if defined(DEBUG_SUBPAGE) |
| 2865 | printf("%s: addr " TARGET_FMT_plx " val %08x\n", __func__, addr, value); |
| 2866 | #endif |
| 2867 | subpage_writelen(opaque, addr, value, 0); |
| 2868 | } |
| 2869 | |
| 2870 | static uint32_t subpage_readw (void *opaque, target_phys_addr_t addr) |
| 2871 | { |
| 2872 | #if defined(DEBUG_SUBPAGE) |
| 2873 | printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); |
| 2874 | #endif |
| 2875 | |
| 2876 | return subpage_readlen(opaque, addr, 1); |
| 2877 | } |
| 2878 | |
| 2879 | static void subpage_writew (void *opaque, target_phys_addr_t addr, |
| 2880 | uint32_t value) |
| 2881 | { |
| 2882 | #if defined(DEBUG_SUBPAGE) |
| 2883 | printf("%s: addr " TARGET_FMT_plx " val %08x\n", __func__, addr, value); |
| 2884 | #endif |
| 2885 | subpage_writelen(opaque, addr, value, 1); |
| 2886 | } |
| 2887 | |
| 2888 | static uint32_t subpage_readl (void *opaque, target_phys_addr_t addr) |
| 2889 | { |
| 2890 | #if defined(DEBUG_SUBPAGE) |
| 2891 | printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); |
| 2892 | #endif |
| 2893 | |
| 2894 | return subpage_readlen(opaque, addr, 2); |
| 2895 | } |
| 2896 | |
| 2897 | static void subpage_writel (void *opaque, |
| 2898 | target_phys_addr_t addr, uint32_t value) |
| 2899 | { |
| 2900 | #if defined(DEBUG_SUBPAGE) |
| 2901 | printf("%s: addr " TARGET_FMT_plx " val %08x\n", __func__, addr, value); |
| 2902 | #endif |
| 2903 | subpage_writelen(opaque, addr, value, 2); |
| 2904 | } |
| 2905 | |
| 2906 | static CPUReadMemoryFunc *subpage_read[] = { |
| 2907 | &subpage_readb, |
| 2908 | &subpage_readw, |
| 2909 | &subpage_readl, |
| 2910 | }; |
| 2911 | |
| 2912 | static CPUWriteMemoryFunc *subpage_write[] = { |
| 2913 | &subpage_writeb, |
| 2914 | &subpage_writew, |
| 2915 | &subpage_writel, |
| 2916 | }; |
| 2917 | |
| 2918 | static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end, |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2919 | ram_addr_t memory, ram_addr_t region_offset) |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2920 | { |
| 2921 | int idx, eidx; |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2922 | unsigned int i; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2923 | |
| 2924 | if (start >= TARGET_PAGE_SIZE || end >= TARGET_PAGE_SIZE) |
| 2925 | return -1; |
| 2926 | idx = SUBPAGE_IDX(start); |
| 2927 | eidx = SUBPAGE_IDX(end); |
| 2928 | #if defined(DEBUG_SUBPAGE) |
| 2929 | printf("%s: %p start %08x end %08x idx %08x eidx %08x mem %d\n", __func__, |
| 2930 | mmio, start, end, idx, eidx, memory); |
| 2931 | #endif |
| 2932 | memory >>= IO_MEM_SHIFT; |
| 2933 | for (; idx <= eidx; idx++) { |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2934 | for (i = 0; i < 4; i++) { |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 2935 | if (io_mem_read[memory][i]) { |
| 2936 | mmio->mem_read[idx][i] = &io_mem_read[memory][i]; |
| 2937 | mmio->opaque[idx][0][i] = io_mem_opaque[memory]; |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2938 | mmio->region_offset[idx][0][i] = region_offset; |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 2939 | } |
| 2940 | if (io_mem_write[memory][i]) { |
| 2941 | mmio->mem_write[idx][i] = &io_mem_write[memory][i]; |
| 2942 | mmio->opaque[idx][1][i] = io_mem_opaque[memory]; |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2943 | mmio->region_offset[idx][1][i] = region_offset; |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 2944 | } |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2945 | } |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2946 | } |
| 2947 | |
| 2948 | return 0; |
| 2949 | } |
| 2950 | |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2951 | static void *subpage_init (target_phys_addr_t base, ram_addr_t *phys, |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2952 | ram_addr_t orig_memory, ram_addr_t region_offset) |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2953 | { |
| 2954 | subpage_t *mmio; |
| 2955 | int subpage_memory; |
| 2956 | |
| 2957 | mmio = qemu_mallocz(sizeof(subpage_t)); |
aliguori | 1eec614 | 2009-02-05 22:06:18 +0000 | [diff] [blame] | 2958 | |
| 2959 | mmio->base = base; |
| 2960 | subpage_memory = cpu_register_io_memory(0, subpage_read, subpage_write, mmio); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2961 | #if defined(DEBUG_SUBPAGE) |
aliguori | 1eec614 | 2009-02-05 22:06:18 +0000 | [diff] [blame] | 2962 | printf("%s: %p base " TARGET_FMT_plx " len %08x %d\n", __func__, |
| 2963 | mmio, base, TARGET_PAGE_SIZE, subpage_memory); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2964 | #endif |
aliguori | 1eec614 | 2009-02-05 22:06:18 +0000 | [diff] [blame] | 2965 | *phys = subpage_memory | IO_MEM_SUBPAGE; |
| 2966 | subpage_register(mmio, 0, TARGET_PAGE_SIZE - 1, orig_memory, |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2967 | region_offset); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2968 | |
| 2969 | return mmio; |
| 2970 | } |
| 2971 | |
aliguori | 8871565 | 2009-02-11 15:20:58 +0000 | [diff] [blame] | 2972 | static int get_free_io_mem_idx(void) |
| 2973 | { |
| 2974 | int i; |
| 2975 | |
| 2976 | for (i = 0; i<IO_MEM_NB_ENTRIES; i++) |
| 2977 | if (!io_mem_used[i]) { |
| 2978 | io_mem_used[i] = 1; |
| 2979 | return i; |
| 2980 | } |
| 2981 | |
| 2982 | return -1; |
| 2983 | } |
| 2984 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2985 | static void io_mem_init(void) |
| 2986 | { |
aliguori | 8871565 | 2009-02-11 15:20:58 +0000 | [diff] [blame] | 2987 | int i; |
| 2988 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2989 | cpu_register_io_memory(IO_MEM_ROM >> IO_MEM_SHIFT, error_mem_read, unassigned_mem_write, NULL); |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2990 | cpu_register_io_memory(IO_MEM_UNASSIGNED >> IO_MEM_SHIFT, unassigned_mem_read, unassigned_mem_write, NULL); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2991 | cpu_register_io_memory(IO_MEM_NOTDIRTY >> IO_MEM_SHIFT, error_mem_read, notdirty_mem_write, NULL); |
aliguori | 8871565 | 2009-02-11 15:20:58 +0000 | [diff] [blame] | 2992 | for (i=0; i<5; i++) |
| 2993 | io_mem_used[i] = 1; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2994 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 2995 | io_mem_watch = cpu_register_io_memory(0, watch_mem_read, |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2996 | watch_mem_write, NULL); |
blueswir1 | 640f42e | 2009-04-19 10:18:01 +0000 | [diff] [blame] | 2997 | #ifdef CONFIG_KQEMU |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2998 | if (kqemu_phys_ram_base) { |
| 2999 | /* alloc dirty bits array */ |
| 3000 | phys_ram_dirty = qemu_vmalloc(kqemu_phys_ram_size >> TARGET_PAGE_BITS); |
| 3001 | memset(phys_ram_dirty, 0xff, kqemu_phys_ram_size >> TARGET_PAGE_BITS); |
| 3002 | } |
| 3003 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 3004 | } |
| 3005 | |
| 3006 | /* mem_read and mem_write are arrays of functions containing the |
| 3007 | function to access byte (index 0), word (index 1) and dword (index |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 3008 | 2). Functions can be omitted with a NULL function pointer. The |
| 3009 | registered functions may be modified dynamically later. |
| 3010 | If io_index is non zero, the corresponding io zone is |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 3011 | modified. If it is zero, a new io zone is allocated. The return |
| 3012 | value can be used with cpu_register_physical_memory(). (-1) is |
| 3013 | returned if error. */ |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 3014 | int cpu_register_io_memory(int io_index, |
| 3015 | CPUReadMemoryFunc **mem_read, |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 3016 | CPUWriteMemoryFunc **mem_write, |
| 3017 | void *opaque) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 3018 | { |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 3019 | int i, subwidth = 0; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 3020 | |
| 3021 | if (io_index <= 0) { |
aliguori | 8871565 | 2009-02-11 15:20:58 +0000 | [diff] [blame] | 3022 | io_index = get_free_io_mem_idx(); |
| 3023 | if (io_index == -1) |
| 3024 | return io_index; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 3025 | } else { |
| 3026 | if (io_index >= IO_MEM_NB_ENTRIES) |
| 3027 | return -1; |
| 3028 | } |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 3029 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 3030 | for(i = 0;i < 3; i++) { |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 3031 | if (!mem_read[i] || !mem_write[i]) |
| 3032 | subwidth = IO_MEM_SUBWIDTH; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 3033 | io_mem_read[io_index][i] = mem_read[i]; |
| 3034 | io_mem_write[io_index][i] = mem_write[i]; |
| 3035 | } |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 3036 | io_mem_opaque[io_index] = opaque; |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 3037 | return (io_index << IO_MEM_SHIFT) | subwidth; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 3038 | } |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 3039 | |
aliguori | 8871565 | 2009-02-11 15:20:58 +0000 | [diff] [blame] | 3040 | void cpu_unregister_io_memory(int io_table_address) |
| 3041 | { |
| 3042 | int i; |
| 3043 | int io_index = io_table_address >> IO_MEM_SHIFT; |
| 3044 | |
| 3045 | for (i=0;i < 3; i++) { |
| 3046 | io_mem_read[io_index][i] = unassigned_mem_read[i]; |
| 3047 | io_mem_write[io_index][i] = unassigned_mem_write[i]; |
| 3048 | } |
| 3049 | io_mem_opaque[io_index] = NULL; |
| 3050 | io_mem_used[io_index] = 0; |
| 3051 | } |
| 3052 | |
bellard | 8926b51 | 2004-10-10 15:14:20 +0000 | [diff] [blame] | 3053 | CPUWriteMemoryFunc **cpu_get_io_memory_write(int io_index) |
| 3054 | { |
| 3055 | return io_mem_write[io_index >> IO_MEM_SHIFT]; |
| 3056 | } |
| 3057 | |
| 3058 | CPUReadMemoryFunc **cpu_get_io_memory_read(int io_index) |
| 3059 | { |
| 3060 | return io_mem_read[io_index >> IO_MEM_SHIFT]; |
| 3061 | } |
| 3062 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 3063 | #endif /* !defined(CONFIG_USER_ONLY) */ |
| 3064 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3065 | /* physical memory access (slow version, mainly for debug) */ |
| 3066 | #if defined(CONFIG_USER_ONLY) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3067 | void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf, |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3068 | int len, int is_write) |
| 3069 | { |
| 3070 | int l, flags; |
| 3071 | target_ulong page; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 3072 | void * p; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3073 | |
| 3074 | while (len > 0) { |
| 3075 | page = addr & TARGET_PAGE_MASK; |
| 3076 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3077 | if (l > len) |
| 3078 | l = len; |
| 3079 | flags = page_get_flags(page); |
| 3080 | if (!(flags & PAGE_VALID)) |
| 3081 | return; |
| 3082 | if (is_write) { |
| 3083 | if (!(flags & PAGE_WRITE)) |
| 3084 | return; |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 3085 | /* XXX: this code should not depend on lock_user */ |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 3086 | if (!(p = lock_user(VERIFY_WRITE, addr, l, 0))) |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 3087 | /* FIXME - should this return an error rather than just fail? */ |
| 3088 | return; |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 3089 | memcpy(p, buf, l); |
| 3090 | unlock_user(p, addr, l); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3091 | } else { |
| 3092 | if (!(flags & PAGE_READ)) |
| 3093 | return; |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 3094 | /* XXX: this code should not depend on lock_user */ |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 3095 | if (!(p = lock_user(VERIFY_READ, addr, l, 1))) |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 3096 | /* FIXME - should this return an error rather than just fail? */ |
| 3097 | return; |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 3098 | memcpy(buf, p, l); |
aurel32 | 5b25757 | 2008-04-28 08:54:59 +0000 | [diff] [blame] | 3099 | unlock_user(p, addr, 0); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3100 | } |
| 3101 | len -= l; |
| 3102 | buf += l; |
| 3103 | addr += l; |
| 3104 | } |
| 3105 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3106 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3107 | #else |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3108 | void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf, |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3109 | int len, int is_write) |
| 3110 | { |
| 3111 | int l, io_index; |
| 3112 | uint8_t *ptr; |
| 3113 | uint32_t val; |
bellard | 2e12669 | 2004-04-25 21:28:44 +0000 | [diff] [blame] | 3114 | target_phys_addr_t page; |
| 3115 | unsigned long pd; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 3116 | PhysPageDesc *p; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3117 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3118 | while (len > 0) { |
| 3119 | page = addr & TARGET_PAGE_MASK; |
| 3120 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3121 | if (l > len) |
| 3122 | l = len; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 3123 | p = phys_page_find(page >> TARGET_PAGE_BITS); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3124 | if (!p) { |
| 3125 | pd = IO_MEM_UNASSIGNED; |
| 3126 | } else { |
| 3127 | pd = p->phys_offset; |
| 3128 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3129 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3130 | if (is_write) { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3131 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3132 | target_phys_addr_t addr1 = addr; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3133 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 3134 | if (p) |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3135 | addr1 = (addr & ~TARGET_PAGE_MASK) + p->region_offset; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 3136 | /* XXX: could force cpu_single_env to NULL to avoid |
| 3137 | potential bugs */ |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3138 | if (l >= 4 && ((addr1 & 3) == 0)) { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 3139 | /* 32 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3140 | val = ldl_p(buf); |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3141 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr1, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3142 | l = 4; |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3143 | } else if (l >= 2 && ((addr1 & 1) == 0)) { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 3144 | /* 16 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3145 | val = lduw_p(buf); |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3146 | io_mem_write[io_index][1](io_mem_opaque[io_index], addr1, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3147 | l = 2; |
| 3148 | } else { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 3149 | /* 8 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3150 | val = ldub_p(buf); |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3151 | io_mem_write[io_index][0](io_mem_opaque[io_index], addr1, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3152 | l = 1; |
| 3153 | } |
| 3154 | } else { |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 3155 | unsigned long addr1; |
| 3156 | addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3157 | /* RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3158 | ptr = qemu_get_ram_ptr(addr1); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3159 | memcpy(ptr, buf, l); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3160 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 3161 | /* invalidate code */ |
| 3162 | tb_invalidate_phys_page_range(addr1, addr1 + l, 0); |
| 3163 | /* set dirty bit */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3164 | phys_ram_dirty[addr1 >> TARGET_PAGE_BITS] |= |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 3165 | (0xff & ~CODE_DIRTY_FLAG); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3166 | } |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3167 | } |
| 3168 | } else { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3169 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM && |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 3170 | !(pd & IO_MEM_ROMD)) { |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3171 | target_phys_addr_t addr1 = addr; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3172 | /* I/O case */ |
| 3173 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 3174 | if (p) |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3175 | addr1 = (addr & ~TARGET_PAGE_MASK) + p->region_offset; |
| 3176 | if (l >= 4 && ((addr1 & 3) == 0)) { |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3177 | /* 32 bit read access */ |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3178 | val = io_mem_read[io_index][2](io_mem_opaque[io_index], addr1); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3179 | stl_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3180 | l = 4; |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3181 | } else if (l >= 2 && ((addr1 & 1) == 0)) { |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3182 | /* 16 bit read access */ |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3183 | val = io_mem_read[io_index][1](io_mem_opaque[io_index], addr1); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3184 | stw_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3185 | l = 2; |
| 3186 | } else { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 3187 | /* 8 bit read access */ |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3188 | val = io_mem_read[io_index][0](io_mem_opaque[io_index], addr1); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3189 | stb_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3190 | l = 1; |
| 3191 | } |
| 3192 | } else { |
| 3193 | /* RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3194 | ptr = qemu_get_ram_ptr(pd & TARGET_PAGE_MASK) + |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3195 | (addr & ~TARGET_PAGE_MASK); |
| 3196 | memcpy(buf, ptr, l); |
| 3197 | } |
| 3198 | } |
| 3199 | len -= l; |
| 3200 | buf += l; |
| 3201 | addr += l; |
| 3202 | } |
| 3203 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3204 | |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3205 | /* used for ROM loading : can write in RAM and ROM */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3206 | void cpu_physical_memory_write_rom(target_phys_addr_t addr, |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3207 | const uint8_t *buf, int len) |
| 3208 | { |
| 3209 | int l; |
| 3210 | uint8_t *ptr; |
| 3211 | target_phys_addr_t page; |
| 3212 | unsigned long pd; |
| 3213 | PhysPageDesc *p; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3214 | |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3215 | while (len > 0) { |
| 3216 | page = addr & TARGET_PAGE_MASK; |
| 3217 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3218 | if (l > len) |
| 3219 | l = len; |
| 3220 | p = phys_page_find(page >> TARGET_PAGE_BITS); |
| 3221 | if (!p) { |
| 3222 | pd = IO_MEM_UNASSIGNED; |
| 3223 | } else { |
| 3224 | pd = p->phys_offset; |
| 3225 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3226 | |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3227 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM && |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 3228 | (pd & ~TARGET_PAGE_MASK) != IO_MEM_ROM && |
| 3229 | !(pd & IO_MEM_ROMD)) { |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3230 | /* do nothing */ |
| 3231 | } else { |
| 3232 | unsigned long addr1; |
| 3233 | addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK); |
| 3234 | /* ROM/RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3235 | ptr = qemu_get_ram_ptr(addr1); |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3236 | memcpy(ptr, buf, l); |
| 3237 | } |
| 3238 | len -= l; |
| 3239 | buf += l; |
| 3240 | addr += l; |
| 3241 | } |
| 3242 | } |
| 3243 | |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3244 | typedef struct { |
| 3245 | void *buffer; |
| 3246 | target_phys_addr_t addr; |
| 3247 | target_phys_addr_t len; |
| 3248 | } BounceBuffer; |
| 3249 | |
| 3250 | static BounceBuffer bounce; |
| 3251 | |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3252 | typedef struct MapClient { |
| 3253 | void *opaque; |
| 3254 | void (*callback)(void *opaque); |
| 3255 | LIST_ENTRY(MapClient) link; |
| 3256 | } MapClient; |
| 3257 | |
| 3258 | static LIST_HEAD(map_client_list, MapClient) map_client_list |
| 3259 | = LIST_HEAD_INITIALIZER(map_client_list); |
| 3260 | |
| 3261 | void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque)) |
| 3262 | { |
| 3263 | MapClient *client = qemu_malloc(sizeof(*client)); |
| 3264 | |
| 3265 | client->opaque = opaque; |
| 3266 | client->callback = callback; |
| 3267 | LIST_INSERT_HEAD(&map_client_list, client, link); |
| 3268 | return client; |
| 3269 | } |
| 3270 | |
| 3271 | void cpu_unregister_map_client(void *_client) |
| 3272 | { |
| 3273 | MapClient *client = (MapClient *)_client; |
| 3274 | |
| 3275 | LIST_REMOVE(client, link); |
| 3276 | } |
| 3277 | |
| 3278 | static void cpu_notify_map_clients(void) |
| 3279 | { |
| 3280 | MapClient *client; |
| 3281 | |
| 3282 | while (!LIST_EMPTY(&map_client_list)) { |
| 3283 | client = LIST_FIRST(&map_client_list); |
| 3284 | client->callback(client->opaque); |
| 3285 | LIST_REMOVE(client, link); |
| 3286 | } |
| 3287 | } |
| 3288 | |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3289 | /* Map a physical memory region into a host virtual address. |
| 3290 | * May map a subset of the requested range, given by and returned in *plen. |
| 3291 | * May return NULL if resources needed to perform the mapping are exhausted. |
| 3292 | * Use only for reads OR writes - not for read-modify-write operations. |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3293 | * Use cpu_register_map_client() to know when retrying the map operation is |
| 3294 | * likely to succeed. |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3295 | */ |
| 3296 | void *cpu_physical_memory_map(target_phys_addr_t addr, |
| 3297 | target_phys_addr_t *plen, |
| 3298 | int is_write) |
| 3299 | { |
| 3300 | target_phys_addr_t len = *plen; |
| 3301 | target_phys_addr_t done = 0; |
| 3302 | int l; |
| 3303 | uint8_t *ret = NULL; |
| 3304 | uint8_t *ptr; |
| 3305 | target_phys_addr_t page; |
| 3306 | unsigned long pd; |
| 3307 | PhysPageDesc *p; |
| 3308 | unsigned long addr1; |
| 3309 | |
| 3310 | while (len > 0) { |
| 3311 | page = addr & TARGET_PAGE_MASK; |
| 3312 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3313 | if (l > len) |
| 3314 | l = len; |
| 3315 | p = phys_page_find(page >> TARGET_PAGE_BITS); |
| 3316 | if (!p) { |
| 3317 | pd = IO_MEM_UNASSIGNED; |
| 3318 | } else { |
| 3319 | pd = p->phys_offset; |
| 3320 | } |
| 3321 | |
| 3322 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
| 3323 | if (done || bounce.buffer) { |
| 3324 | break; |
| 3325 | } |
| 3326 | bounce.buffer = qemu_memalign(TARGET_PAGE_SIZE, TARGET_PAGE_SIZE); |
| 3327 | bounce.addr = addr; |
| 3328 | bounce.len = l; |
| 3329 | if (!is_write) { |
| 3330 | cpu_physical_memory_rw(addr, bounce.buffer, l, 0); |
| 3331 | } |
| 3332 | ptr = bounce.buffer; |
| 3333 | } else { |
| 3334 | addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK); |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3335 | ptr = qemu_get_ram_ptr(addr1); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3336 | } |
| 3337 | if (!done) { |
| 3338 | ret = ptr; |
| 3339 | } else if (ret + done != ptr) { |
| 3340 | break; |
| 3341 | } |
| 3342 | |
| 3343 | len -= l; |
| 3344 | addr += l; |
| 3345 | done += l; |
| 3346 | } |
| 3347 | *plen = done; |
| 3348 | return ret; |
| 3349 | } |
| 3350 | |
| 3351 | /* Unmaps a memory region previously mapped by cpu_physical_memory_map(). |
| 3352 | * Will also mark the memory as dirty if is_write == 1. access_len gives |
| 3353 | * the amount of memory that was actually read or written by the caller. |
| 3354 | */ |
| 3355 | void cpu_physical_memory_unmap(void *buffer, target_phys_addr_t len, |
| 3356 | int is_write, target_phys_addr_t access_len) |
| 3357 | { |
| 3358 | if (buffer != bounce.buffer) { |
| 3359 | if (is_write) { |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3360 | ram_addr_t addr1 = qemu_ram_addr_from_host(buffer); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3361 | while (access_len) { |
| 3362 | unsigned l; |
| 3363 | l = TARGET_PAGE_SIZE; |
| 3364 | if (l > access_len) |
| 3365 | l = access_len; |
| 3366 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 3367 | /* invalidate code */ |
| 3368 | tb_invalidate_phys_page_range(addr1, addr1 + l, 0); |
| 3369 | /* set dirty bit */ |
| 3370 | phys_ram_dirty[addr1 >> TARGET_PAGE_BITS] |= |
| 3371 | (0xff & ~CODE_DIRTY_FLAG); |
| 3372 | } |
| 3373 | addr1 += l; |
| 3374 | access_len -= l; |
| 3375 | } |
| 3376 | } |
| 3377 | return; |
| 3378 | } |
| 3379 | if (is_write) { |
| 3380 | cpu_physical_memory_write(bounce.addr, bounce.buffer, access_len); |
| 3381 | } |
| 3382 | qemu_free(bounce.buffer); |
| 3383 | bounce.buffer = NULL; |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3384 | cpu_notify_map_clients(); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3385 | } |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3386 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3387 | /* warning: addr must be aligned */ |
| 3388 | uint32_t ldl_phys(target_phys_addr_t addr) |
| 3389 | { |
| 3390 | int io_index; |
| 3391 | uint8_t *ptr; |
| 3392 | uint32_t val; |
| 3393 | unsigned long pd; |
| 3394 | PhysPageDesc *p; |
| 3395 | |
| 3396 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 3397 | if (!p) { |
| 3398 | pd = IO_MEM_UNASSIGNED; |
| 3399 | } else { |
| 3400 | pd = p->phys_offset; |
| 3401 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3402 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3403 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM && |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 3404 | !(pd & IO_MEM_ROMD)) { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3405 | /* I/O case */ |
| 3406 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 3407 | if (p) |
| 3408 | addr = (addr & ~TARGET_PAGE_MASK) + p->region_offset; |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3409 | val = io_mem_read[io_index][2](io_mem_opaque[io_index], addr); |
| 3410 | } else { |
| 3411 | /* RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3412 | ptr = qemu_get_ram_ptr(pd & TARGET_PAGE_MASK) + |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3413 | (addr & ~TARGET_PAGE_MASK); |
| 3414 | val = ldl_p(ptr); |
| 3415 | } |
| 3416 | return val; |
| 3417 | } |
| 3418 | |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3419 | /* warning: addr must be aligned */ |
| 3420 | uint64_t ldq_phys(target_phys_addr_t addr) |
| 3421 | { |
| 3422 | int io_index; |
| 3423 | uint8_t *ptr; |
| 3424 | uint64_t val; |
| 3425 | unsigned long pd; |
| 3426 | PhysPageDesc *p; |
| 3427 | |
| 3428 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 3429 | if (!p) { |
| 3430 | pd = IO_MEM_UNASSIGNED; |
| 3431 | } else { |
| 3432 | pd = p->phys_offset; |
| 3433 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3434 | |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 3435 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM && |
| 3436 | !(pd & IO_MEM_ROMD)) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3437 | /* I/O case */ |
| 3438 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 3439 | if (p) |
| 3440 | addr = (addr & ~TARGET_PAGE_MASK) + p->region_offset; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3441 | #ifdef TARGET_WORDS_BIGENDIAN |
| 3442 | val = (uint64_t)io_mem_read[io_index][2](io_mem_opaque[io_index], addr) << 32; |
| 3443 | val |= io_mem_read[io_index][2](io_mem_opaque[io_index], addr + 4); |
| 3444 | #else |
| 3445 | val = io_mem_read[io_index][2](io_mem_opaque[io_index], addr); |
| 3446 | val |= (uint64_t)io_mem_read[io_index][2](io_mem_opaque[io_index], addr + 4) << 32; |
| 3447 | #endif |
| 3448 | } else { |
| 3449 | /* RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3450 | ptr = qemu_get_ram_ptr(pd & TARGET_PAGE_MASK) + |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3451 | (addr & ~TARGET_PAGE_MASK); |
| 3452 | val = ldq_p(ptr); |
| 3453 | } |
| 3454 | return val; |
| 3455 | } |
| 3456 | |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 3457 | /* XXX: optimize */ |
| 3458 | uint32_t ldub_phys(target_phys_addr_t addr) |
| 3459 | { |
| 3460 | uint8_t val; |
| 3461 | cpu_physical_memory_read(addr, &val, 1); |
| 3462 | return val; |
| 3463 | } |
| 3464 | |
| 3465 | /* XXX: optimize */ |
| 3466 | uint32_t lduw_phys(target_phys_addr_t addr) |
| 3467 | { |
| 3468 | uint16_t val; |
| 3469 | cpu_physical_memory_read(addr, (uint8_t *)&val, 2); |
| 3470 | return tswap16(val); |
| 3471 | } |
| 3472 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3473 | /* warning: addr must be aligned. The ram page is not masked as dirty |
| 3474 | and the code inside is not invalidated. It is useful if the dirty |
| 3475 | bits are used to track modified PTEs */ |
| 3476 | void stl_phys_notdirty(target_phys_addr_t addr, uint32_t val) |
| 3477 | { |
| 3478 | int io_index; |
| 3479 | uint8_t *ptr; |
| 3480 | unsigned long pd; |
| 3481 | PhysPageDesc *p; |
| 3482 | |
| 3483 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 3484 | if (!p) { |
| 3485 | pd = IO_MEM_UNASSIGNED; |
| 3486 | } else { |
| 3487 | pd = p->phys_offset; |
| 3488 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3489 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3490 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3491 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 3492 | if (p) |
| 3493 | addr = (addr & ~TARGET_PAGE_MASK) + p->region_offset; |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3494 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val); |
| 3495 | } else { |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 3496 | unsigned long addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK); |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3497 | ptr = qemu_get_ram_ptr(addr1); |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3498 | stl_p(ptr, val); |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 3499 | |
| 3500 | if (unlikely(in_migration)) { |
| 3501 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 3502 | /* invalidate code */ |
| 3503 | tb_invalidate_phys_page_range(addr1, addr1 + 4, 0); |
| 3504 | /* set dirty bit */ |
| 3505 | phys_ram_dirty[addr1 >> TARGET_PAGE_BITS] |= |
| 3506 | (0xff & ~CODE_DIRTY_FLAG); |
| 3507 | } |
| 3508 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3509 | } |
| 3510 | } |
| 3511 | |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 3512 | void stq_phys_notdirty(target_phys_addr_t addr, uint64_t val) |
| 3513 | { |
| 3514 | int io_index; |
| 3515 | uint8_t *ptr; |
| 3516 | unsigned long pd; |
| 3517 | PhysPageDesc *p; |
| 3518 | |
| 3519 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 3520 | if (!p) { |
| 3521 | pd = IO_MEM_UNASSIGNED; |
| 3522 | } else { |
| 3523 | pd = p->phys_offset; |
| 3524 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3525 | |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 3526 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
| 3527 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 3528 | if (p) |
| 3529 | addr = (addr & ~TARGET_PAGE_MASK) + p->region_offset; |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 3530 | #ifdef TARGET_WORDS_BIGENDIAN |
| 3531 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val >> 32); |
| 3532 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr + 4, val); |
| 3533 | #else |
| 3534 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val); |
| 3535 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr + 4, val >> 32); |
| 3536 | #endif |
| 3537 | } else { |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3538 | ptr = qemu_get_ram_ptr(pd & TARGET_PAGE_MASK) + |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 3539 | (addr & ~TARGET_PAGE_MASK); |
| 3540 | stq_p(ptr, val); |
| 3541 | } |
| 3542 | } |
| 3543 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3544 | /* warning: addr must be aligned */ |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3545 | void stl_phys(target_phys_addr_t addr, uint32_t val) |
| 3546 | { |
| 3547 | int io_index; |
| 3548 | uint8_t *ptr; |
| 3549 | unsigned long pd; |
| 3550 | PhysPageDesc *p; |
| 3551 | |
| 3552 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 3553 | if (!p) { |
| 3554 | pd = IO_MEM_UNASSIGNED; |
| 3555 | } else { |
| 3556 | pd = p->phys_offset; |
| 3557 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3558 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3559 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3560 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 3561 | if (p) |
| 3562 | addr = (addr & ~TARGET_PAGE_MASK) + p->region_offset; |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3563 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val); |
| 3564 | } else { |
| 3565 | unsigned long addr1; |
| 3566 | addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK); |
| 3567 | /* RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3568 | ptr = qemu_get_ram_ptr(addr1); |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3569 | stl_p(ptr, val); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3570 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 3571 | /* invalidate code */ |
| 3572 | tb_invalidate_phys_page_range(addr1, addr1 + 4, 0); |
| 3573 | /* set dirty bit */ |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 3574 | phys_ram_dirty[addr1 >> TARGET_PAGE_BITS] |= |
| 3575 | (0xff & ~CODE_DIRTY_FLAG); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3576 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3577 | } |
| 3578 | } |
| 3579 | |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 3580 | /* XXX: optimize */ |
| 3581 | void stb_phys(target_phys_addr_t addr, uint32_t val) |
| 3582 | { |
| 3583 | uint8_t v = val; |
| 3584 | cpu_physical_memory_write(addr, &v, 1); |
| 3585 | } |
| 3586 | |
| 3587 | /* XXX: optimize */ |
| 3588 | void stw_phys(target_phys_addr_t addr, uint32_t val) |
| 3589 | { |
| 3590 | uint16_t v = tswap16(val); |
| 3591 | cpu_physical_memory_write(addr, (const uint8_t *)&v, 2); |
| 3592 | } |
| 3593 | |
| 3594 | /* XXX: optimize */ |
| 3595 | void stq_phys(target_phys_addr_t addr, uint64_t val) |
| 3596 | { |
| 3597 | val = tswap64(val); |
| 3598 | cpu_physical_memory_write(addr, (const uint8_t *)&val, 8); |
| 3599 | } |
| 3600 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3601 | #endif |
| 3602 | |
aliguori | 5e2972f | 2009-03-28 17:51:36 +0000 | [diff] [blame] | 3603 | /* virtual memory access for debug (includes writing to ROM) */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3604 | int cpu_memory_rw_debug(CPUState *env, target_ulong addr, |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 3605 | uint8_t *buf, int len, int is_write) |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3606 | { |
| 3607 | int l; |
j_mayer | 9b3c35e | 2007-04-07 11:21:28 +0000 | [diff] [blame] | 3608 | target_phys_addr_t phys_addr; |
| 3609 | target_ulong page; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3610 | |
| 3611 | while (len > 0) { |
| 3612 | page = addr & TARGET_PAGE_MASK; |
| 3613 | phys_addr = cpu_get_phys_page_debug(env, page); |
| 3614 | /* if no physical page mapped, return an error */ |
| 3615 | if (phys_addr == -1) |
| 3616 | return -1; |
| 3617 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3618 | if (l > len) |
| 3619 | l = len; |
aliguori | 5e2972f | 2009-03-28 17:51:36 +0000 | [diff] [blame] | 3620 | phys_addr += (addr & ~TARGET_PAGE_MASK); |
| 3621 | #if !defined(CONFIG_USER_ONLY) |
| 3622 | if (is_write) |
| 3623 | cpu_physical_memory_write_rom(phys_addr, buf, l); |
| 3624 | else |
| 3625 | #endif |
| 3626 | cpu_physical_memory_rw(phys_addr, buf, l, is_write); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3627 | len -= l; |
| 3628 | buf += l; |
| 3629 | addr += l; |
| 3630 | } |
| 3631 | return 0; |
| 3632 | } |
| 3633 | |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 3634 | /* in deterministic execution mode, instructions doing device I/Os |
| 3635 | must be at the end of the TB */ |
| 3636 | void cpu_io_recompile(CPUState *env, void *retaddr) |
| 3637 | { |
| 3638 | TranslationBlock *tb; |
| 3639 | uint32_t n, cflags; |
| 3640 | target_ulong pc, cs_base; |
| 3641 | uint64_t flags; |
| 3642 | |
| 3643 | tb = tb_find_pc((unsigned long)retaddr); |
| 3644 | if (!tb) { |
| 3645 | cpu_abort(env, "cpu_io_recompile: could not find TB for pc=%p", |
| 3646 | retaddr); |
| 3647 | } |
| 3648 | n = env->icount_decr.u16.low + tb->icount; |
| 3649 | cpu_restore_state(tb, env, (unsigned long)retaddr, NULL); |
| 3650 | /* Calculate how many instructions had been executed before the fault |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 3651 | occurred. */ |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 3652 | n = n - env->icount_decr.u16.low; |
| 3653 | /* Generate a new TB ending on the I/O insn. */ |
| 3654 | n++; |
| 3655 | /* On MIPS and SH, delay slot instructions can only be restarted if |
| 3656 | they were already the first instruction in the TB. If this is not |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 3657 | the first instruction in a TB then re-execute the preceding |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 3658 | branch. */ |
| 3659 | #if defined(TARGET_MIPS) |
| 3660 | if ((env->hflags & MIPS_HFLAG_BMASK) != 0 && n > 1) { |
| 3661 | env->active_tc.PC -= 4; |
| 3662 | env->icount_decr.u16.low++; |
| 3663 | env->hflags &= ~MIPS_HFLAG_BMASK; |
| 3664 | } |
| 3665 | #elif defined(TARGET_SH4) |
| 3666 | if ((env->flags & ((DELAY_SLOT | DELAY_SLOT_CONDITIONAL))) != 0 |
| 3667 | && n > 1) { |
| 3668 | env->pc -= 2; |
| 3669 | env->icount_decr.u16.low++; |
| 3670 | env->flags &= ~(DELAY_SLOT | DELAY_SLOT_CONDITIONAL); |
| 3671 | } |
| 3672 | #endif |
| 3673 | /* This should never happen. */ |
| 3674 | if (n > CF_COUNT_MASK) |
| 3675 | cpu_abort(env, "TB too big during recompile"); |
| 3676 | |
| 3677 | cflags = n | CF_LAST_IO; |
| 3678 | pc = tb->pc; |
| 3679 | cs_base = tb->cs_base; |
| 3680 | flags = tb->flags; |
| 3681 | tb_phys_invalidate(tb, -1); |
| 3682 | /* FIXME: In theory this could raise an exception. In practice |
| 3683 | we have already translated the block once so it's probably ok. */ |
| 3684 | tb_gen_code(env, pc, cs_base, flags, cflags); |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 3685 | /* TODO: If env->pc != tb->pc (i.e. the faulting instruction was not |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 3686 | the first in the TB) then we end up generating a whole new TB and |
| 3687 | repeating the fault, which is horribly inefficient. |
| 3688 | Better would be to execute just this insn uncached, or generate a |
| 3689 | second new TB. */ |
| 3690 | cpu_resume_from_signal(env, NULL); |
| 3691 | } |
| 3692 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3693 | void dump_exec_info(FILE *f, |
| 3694 | int (*cpu_fprintf)(FILE *f, const char *fmt, ...)) |
| 3695 | { |
| 3696 | int i, target_code_size, max_target_code_size; |
| 3697 | int direct_jmp_count, direct_jmp2_count, cross_page; |
| 3698 | TranslationBlock *tb; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3699 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3700 | target_code_size = 0; |
| 3701 | max_target_code_size = 0; |
| 3702 | cross_page = 0; |
| 3703 | direct_jmp_count = 0; |
| 3704 | direct_jmp2_count = 0; |
| 3705 | for(i = 0; i < nb_tbs; i++) { |
| 3706 | tb = &tbs[i]; |
| 3707 | target_code_size += tb->size; |
| 3708 | if (tb->size > max_target_code_size) |
| 3709 | max_target_code_size = tb->size; |
| 3710 | if (tb->page_addr[1] != -1) |
| 3711 | cross_page++; |
| 3712 | if (tb->tb_next_offset[0] != 0xffff) { |
| 3713 | direct_jmp_count++; |
| 3714 | if (tb->tb_next_offset[1] != 0xffff) { |
| 3715 | direct_jmp2_count++; |
| 3716 | } |
| 3717 | } |
| 3718 | } |
| 3719 | /* XXX: avoid using doubles ? */ |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 3720 | cpu_fprintf(f, "Translation buffer state:\n"); |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 3721 | cpu_fprintf(f, "gen code size %ld/%ld\n", |
| 3722 | code_gen_ptr - code_gen_buffer, code_gen_buffer_max_size); |
| 3723 | cpu_fprintf(f, "TB count %d/%d\n", |
| 3724 | nb_tbs, code_gen_max_blocks); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3725 | cpu_fprintf(f, "TB avg target size %d max=%d bytes\n", |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3726 | nb_tbs ? target_code_size / nb_tbs : 0, |
| 3727 | max_target_code_size); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3728 | cpu_fprintf(f, "TB avg host size %d bytes (expansion ratio: %0.1f)\n", |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3729 | nb_tbs ? (code_gen_ptr - code_gen_buffer) / nb_tbs : 0, |
| 3730 | target_code_size ? (double) (code_gen_ptr - code_gen_buffer) / target_code_size : 0); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3731 | cpu_fprintf(f, "cross page TB count %d (%d%%)\n", |
| 3732 | cross_page, |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3733 | nb_tbs ? (cross_page * 100) / nb_tbs : 0); |
| 3734 | cpu_fprintf(f, "direct jump count %d (%d%%) (2 jumps=%d %d%%)\n", |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3735 | direct_jmp_count, |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3736 | nb_tbs ? (direct_jmp_count * 100) / nb_tbs : 0, |
| 3737 | direct_jmp2_count, |
| 3738 | nb_tbs ? (direct_jmp2_count * 100) / nb_tbs : 0); |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 3739 | cpu_fprintf(f, "\nStatistics:\n"); |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3740 | cpu_fprintf(f, "TB flush count %d\n", tb_flush_count); |
| 3741 | cpu_fprintf(f, "TB invalidate count %d\n", tb_phys_invalidate_count); |
| 3742 | cpu_fprintf(f, "TLB flush count %d\n", tlb_flush_count); |
bellard | b67d9a5 | 2008-05-23 09:57:34 +0000 | [diff] [blame] | 3743 | tcg_dump_info(f, cpu_fprintf); |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3744 | } |
| 3745 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3746 | #if !defined(CONFIG_USER_ONLY) |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 3747 | |
| 3748 | #define MMUSUFFIX _cmmu |
| 3749 | #define GETPC() NULL |
| 3750 | #define env cpu_single_env |
bellard | b769d8f | 2004-10-03 15:07:13 +0000 | [diff] [blame] | 3751 | #define SOFTMMU_CODE_ACCESS |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 3752 | |
| 3753 | #define SHIFT 0 |
| 3754 | #include "softmmu_template.h" |
| 3755 | |
| 3756 | #define SHIFT 1 |
| 3757 | #include "softmmu_template.h" |
| 3758 | |
| 3759 | #define SHIFT 2 |
| 3760 | #include "softmmu_template.h" |
| 3761 | |
| 3762 | #define SHIFT 3 |
| 3763 | #include "softmmu_template.h" |
| 3764 | |
| 3765 | #undef env |
| 3766 | |
| 3767 | #endif |