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 |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 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 |
ths | 4fddf62 | 2007-12-17 04:42:29 +0000 | [diff] [blame] | 22 | #define WIN32_LEAN_AND_MEAN |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 23 | #include <windows.h> |
| 24 | #else |
bellard | a98d49b | 2004-11-14 16:22:05 +0000 | [diff] [blame] | 25 | #include <sys/types.h> |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 26 | #include <sys/mman.h> |
| 27 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 28 | #include <stdlib.h> |
| 29 | #include <stdio.h> |
| 30 | #include <stdarg.h> |
| 31 | #include <string.h> |
| 32 | #include <errno.h> |
| 33 | #include <unistd.h> |
| 34 | #include <inttypes.h> |
| 35 | |
bellard | 6180a18 | 2003-09-30 21:04:53 +0000 | [diff] [blame] | 36 | #include "cpu.h" |
| 37 | #include "exec-all.h" |
aurel32 | ca10f86 | 2008-04-11 21:35:42 +0000 | [diff] [blame] | 38 | #include "qemu-common.h" |
bellard | b67d9a5 | 2008-05-23 09:57:34 +0000 | [diff] [blame] | 39 | #include "tcg.h" |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 40 | #if defined(CONFIG_USER_ONLY) |
| 41 | #include <qemu.h> |
| 42 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 43 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 44 | //#define DEBUG_TB_INVALIDATE |
bellard | 66e85a2 | 2003-06-24 13:28:12 +0000 | [diff] [blame] | 45 | //#define DEBUG_FLUSH |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 46 | //#define DEBUG_TLB |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 47 | //#define DEBUG_UNASSIGNED |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 48 | |
| 49 | /* make various TB consistency checks */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 50 | //#define DEBUG_TB_CHECK |
| 51 | //#define DEBUG_TLB_CHECK |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 52 | |
ths | 1196be3 | 2007-03-17 15:17:58 +0000 | [diff] [blame] | 53 | //#define DEBUG_IOPORT |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 54 | //#define DEBUG_SUBPAGE |
ths | 1196be3 | 2007-03-17 15:17:58 +0000 | [diff] [blame] | 55 | |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 56 | #if !defined(CONFIG_USER_ONLY) |
| 57 | /* TB consistency checks only implemented for usermode emulation. */ |
| 58 | #undef DEBUG_TB_CHECK |
| 59 | #endif |
| 60 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 61 | #define SMC_BITMAP_USE_THRESHOLD 10 |
| 62 | |
| 63 | #define MMAP_AREA_START 0x00000000 |
| 64 | #define MMAP_AREA_END 0xa8000000 |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 65 | |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 66 | #if defined(TARGET_SPARC64) |
| 67 | #define TARGET_PHYS_ADDR_SPACE_BITS 41 |
blueswir1 | 5dcb6b9 | 2007-05-19 12:58:30 +0000 | [diff] [blame] | 68 | #elif defined(TARGET_SPARC) |
| 69 | #define TARGET_PHYS_ADDR_SPACE_BITS 36 |
j_mayer | bedb69e | 2007-04-05 20:08:21 +0000 | [diff] [blame] | 70 | #elif defined(TARGET_ALPHA) |
| 71 | #define TARGET_PHYS_ADDR_SPACE_BITS 42 |
| 72 | #define TARGET_VIRT_ADDR_SPACE_BITS 42 |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 73 | #elif defined(TARGET_PPC64) |
| 74 | #define TARGET_PHYS_ADDR_SPACE_BITS 42 |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 75 | #elif defined(TARGET_X86_64) && !defined(USE_KQEMU) |
| 76 | #define TARGET_PHYS_ADDR_SPACE_BITS 42 |
| 77 | #elif defined(TARGET_I386) && !defined(USE_KQEMU) |
| 78 | #define TARGET_PHYS_ADDR_SPACE_BITS 36 |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 79 | #else |
| 80 | /* Note: for compatibility with kqemu, we use 32 bits for x86_64 */ |
| 81 | #define TARGET_PHYS_ADDR_SPACE_BITS 32 |
| 82 | #endif |
| 83 | |
pbrook | fab94c0 | 2008-05-24 13:56:15 +0000 | [diff] [blame] | 84 | TranslationBlock *tbs; |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 85 | int code_gen_max_blocks; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 86 | TranslationBlock *tb_phys_hash[CODE_GEN_PHYS_HASH_SIZE]; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 87 | int nb_tbs; |
bellard | eb51d10 | 2003-05-14 21:51:13 +0000 | [diff] [blame] | 88 | /* any access to the tbs or the page table must use this lock */ |
| 89 | spinlock_t tb_lock = SPIN_LOCK_UNLOCKED; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 90 | |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 91 | uint8_t code_gen_prologue[1024] __attribute__((aligned (32))); |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 92 | uint8_t *code_gen_buffer; |
| 93 | unsigned long code_gen_buffer_size; |
| 94 | /* threshold to flush the translated code buffer */ |
| 95 | unsigned long code_gen_buffer_max_size; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 96 | uint8_t *code_gen_ptr; |
| 97 | |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 98 | ram_addr_t phys_ram_size; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 99 | int phys_ram_fd; |
| 100 | uint8_t *phys_ram_base; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 101 | uint8_t *phys_ram_dirty; |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 102 | static ram_addr_t phys_ram_alloc_offset = 0; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 103 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 104 | CPUState *first_cpu; |
| 105 | /* current CPU in the current thread. It is only valid inside |
| 106 | cpu_exec() */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 107 | CPUState *cpu_single_env; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 108 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 109 | typedef struct PageDesc { |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 110 | /* list of TBs intersecting this ram page */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 111 | TranslationBlock *first_tb; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 112 | /* in order to optimize self modifying code, we count the number |
| 113 | of lookups we do to a given page to use a bitmap */ |
| 114 | unsigned int code_write_count; |
| 115 | uint8_t *code_bitmap; |
| 116 | #if defined(CONFIG_USER_ONLY) |
| 117 | unsigned long flags; |
| 118 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 119 | } PageDesc; |
| 120 | |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 121 | typedef struct PhysPageDesc { |
| 122 | /* offset in host memory of the page + io_index in the low 12 bits */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 123 | ram_addr_t phys_offset; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 124 | } PhysPageDesc; |
| 125 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 126 | #define L2_BITS 10 |
j_mayer | bedb69e | 2007-04-05 20:08:21 +0000 | [diff] [blame] | 127 | #if defined(CONFIG_USER_ONLY) && defined(TARGET_VIRT_ADDR_SPACE_BITS) |
| 128 | /* XXX: this is a temporary hack for alpha target. |
| 129 | * In the future, this is to be replaced by a multi-level table |
| 130 | * to actually be able to handle the complete 64 bits address space. |
| 131 | */ |
| 132 | #define L1_BITS (TARGET_VIRT_ADDR_SPACE_BITS - L2_BITS - TARGET_PAGE_BITS) |
| 133 | #else |
aurel32 | 0387544 | 2008-04-22 20:45:18 +0000 | [diff] [blame] | 134 | #define L1_BITS (32 - L2_BITS - TARGET_PAGE_BITS) |
j_mayer | bedb69e | 2007-04-05 20:08:21 +0000 | [diff] [blame] | 135 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 136 | |
| 137 | #define L1_SIZE (1 << L1_BITS) |
| 138 | #define L2_SIZE (1 << L2_BITS) |
| 139 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 140 | static void io_mem_init(void); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 141 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 142 | unsigned long qemu_real_host_page_size; |
| 143 | unsigned long qemu_host_page_bits; |
| 144 | unsigned long qemu_host_page_size; |
| 145 | unsigned long qemu_host_page_mask; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 146 | |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 147 | /* XXX: for system emulation, it could just be an array */ |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 148 | static PageDesc *l1_map[L1_SIZE]; |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 149 | PhysPageDesc **l1_phys_map; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 150 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 151 | /* io memory support */ |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 152 | CPUWriteMemoryFunc *io_mem_write[IO_MEM_NB_ENTRIES][4]; |
| 153 | CPUReadMemoryFunc *io_mem_read[IO_MEM_NB_ENTRIES][4]; |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 154 | void *io_mem_opaque[IO_MEM_NB_ENTRIES]; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 155 | static int io_mem_nb; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 156 | #if defined(CONFIG_SOFTMMU) |
| 157 | static int io_mem_watch; |
| 158 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 159 | |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 160 | /* log support */ |
| 161 | char *logfilename = "/tmp/qemu.log"; |
| 162 | FILE *logfile; |
| 163 | int loglevel; |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 164 | static int log_append = 0; |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 165 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 166 | /* statistics */ |
| 167 | static int tlb_flush_count; |
| 168 | static int tb_flush_count; |
| 169 | static int tb_phys_invalidate_count; |
| 170 | |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 171 | #define SUBPAGE_IDX(addr) ((addr) & ~TARGET_PAGE_MASK) |
| 172 | typedef struct subpage_t { |
| 173 | target_phys_addr_t base; |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 174 | CPUReadMemoryFunc **mem_read[TARGET_PAGE_SIZE][4]; |
| 175 | CPUWriteMemoryFunc **mem_write[TARGET_PAGE_SIZE][4]; |
| 176 | void *opaque[TARGET_PAGE_SIZE][2][4]; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 177 | } subpage_t; |
| 178 | |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 179 | #ifdef _WIN32 |
| 180 | static void map_exec(void *addr, long size) |
| 181 | { |
| 182 | DWORD old_protect; |
| 183 | VirtualProtect(addr, size, |
| 184 | PAGE_EXECUTE_READWRITE, &old_protect); |
| 185 | |
| 186 | } |
| 187 | #else |
| 188 | static void map_exec(void *addr, long size) |
| 189 | { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 190 | unsigned long start, end, page_size; |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 191 | |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 192 | page_size = getpagesize(); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 193 | start = (unsigned long)addr; |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 194 | start &= ~(page_size - 1); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 195 | |
| 196 | end = (unsigned long)addr + size; |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 197 | end += page_size - 1; |
| 198 | end &= ~(page_size - 1); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 199 | |
| 200 | mprotect((void *)start, end - start, |
| 201 | PROT_READ | PROT_WRITE | PROT_EXEC); |
| 202 | } |
| 203 | #endif |
| 204 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 205 | static void page_init(void) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 206 | { |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 207 | /* NOTE: we can always suppose that qemu_host_page_size >= |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 208 | TARGET_PAGE_SIZE */ |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 209 | #ifdef _WIN32 |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 210 | { |
| 211 | SYSTEM_INFO system_info; |
| 212 | DWORD old_protect; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 213 | |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 214 | GetSystemInfo(&system_info); |
| 215 | qemu_real_host_page_size = system_info.dwPageSize; |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 216 | } |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 217 | #else |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 218 | qemu_real_host_page_size = getpagesize(); |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 219 | #endif |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 220 | if (qemu_host_page_size == 0) |
| 221 | qemu_host_page_size = qemu_real_host_page_size; |
| 222 | if (qemu_host_page_size < TARGET_PAGE_SIZE) |
| 223 | qemu_host_page_size = TARGET_PAGE_SIZE; |
| 224 | qemu_host_page_bits = 0; |
| 225 | while ((1 << qemu_host_page_bits) < qemu_host_page_size) |
| 226 | qemu_host_page_bits++; |
| 227 | qemu_host_page_mask = ~(qemu_host_page_size - 1); |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 228 | l1_phys_map = qemu_vmalloc(L1_SIZE * sizeof(void *)); |
| 229 | memset(l1_phys_map, 0, L1_SIZE * sizeof(void *)); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 230 | |
| 231 | #if !defined(_WIN32) && defined(CONFIG_USER_ONLY) |
| 232 | { |
| 233 | long long startaddr, endaddr; |
| 234 | FILE *f; |
| 235 | int n; |
| 236 | |
| 237 | f = fopen("/proc/self/maps", "r"); |
| 238 | if (f) { |
| 239 | do { |
| 240 | n = fscanf (f, "%llx-%llx %*[^\n]\n", &startaddr, &endaddr); |
| 241 | if (n == 2) { |
blueswir1 | e0b8d65 | 2008-05-03 17:51:24 +0000 | [diff] [blame] | 242 | startaddr = MIN(startaddr, |
| 243 | (1ULL << TARGET_PHYS_ADDR_SPACE_BITS) - 1); |
| 244 | endaddr = MIN(endaddr, |
| 245 | (1ULL << TARGET_PHYS_ADDR_SPACE_BITS) - 1); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 246 | page_set_flags(TARGET_PAGE_ALIGN(startaddr), |
| 247 | TARGET_PAGE_ALIGN(endaddr), |
| 248 | PAGE_RESERVED); |
| 249 | } |
| 250 | } while (!feof(f)); |
| 251 | fclose(f); |
| 252 | } |
| 253 | } |
| 254 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 255 | } |
| 256 | |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 257 | static inline PageDesc *page_find_alloc(target_ulong index) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 258 | { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 259 | PageDesc **lp, *p; |
| 260 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 261 | lp = &l1_map[index >> L2_BITS]; |
| 262 | p = *lp; |
| 263 | if (!p) { |
| 264 | /* allocate if not found */ |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 265 | p = qemu_malloc(sizeof(PageDesc) * L2_SIZE); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 266 | memset(p, 0, sizeof(PageDesc) * L2_SIZE); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 267 | *lp = p; |
| 268 | } |
| 269 | return p + (index & (L2_SIZE - 1)); |
| 270 | } |
| 271 | |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 272 | static inline PageDesc *page_find(target_ulong index) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 273 | { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 274 | PageDesc *p; |
| 275 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 276 | p = l1_map[index >> L2_BITS]; |
| 277 | if (!p) |
| 278 | return 0; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 279 | return p + (index & (L2_SIZE - 1)); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 280 | } |
| 281 | |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 282 | static PhysPageDesc *phys_page_find_alloc(target_phys_addr_t index, int alloc) |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 283 | { |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 284 | void **lp, **p; |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 285 | PhysPageDesc *pd; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 286 | |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 287 | p = (void **)l1_phys_map; |
| 288 | #if TARGET_PHYS_ADDR_SPACE_BITS > 32 |
| 289 | |
| 290 | #if TARGET_PHYS_ADDR_SPACE_BITS > (32 + L1_BITS) |
| 291 | #error unsupported TARGET_PHYS_ADDR_SPACE_BITS |
| 292 | #endif |
| 293 | lp = p + ((index >> (L1_BITS + L2_BITS)) & (L1_SIZE - 1)); |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 294 | p = *lp; |
| 295 | if (!p) { |
| 296 | /* allocate if not found */ |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 297 | if (!alloc) |
| 298 | return NULL; |
| 299 | p = qemu_vmalloc(sizeof(void *) * L1_SIZE); |
| 300 | memset(p, 0, sizeof(void *) * L1_SIZE); |
| 301 | *lp = p; |
| 302 | } |
| 303 | #endif |
| 304 | lp = p + ((index >> L2_BITS) & (L1_SIZE - 1)); |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 305 | pd = *lp; |
| 306 | if (!pd) { |
| 307 | int i; |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 308 | /* allocate if not found */ |
| 309 | if (!alloc) |
| 310 | return NULL; |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 311 | pd = qemu_vmalloc(sizeof(PhysPageDesc) * L2_SIZE); |
| 312 | *lp = pd; |
| 313 | for (i = 0; i < L2_SIZE; i++) |
| 314 | pd[i].phys_offset = IO_MEM_UNASSIGNED; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 315 | } |
pbrook | e3f4e2a | 2006-04-08 20:02:06 +0000 | [diff] [blame] | 316 | return ((PhysPageDesc *)pd) + (index & (L2_SIZE - 1)); |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 317 | } |
| 318 | |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 319 | static inline PhysPageDesc *phys_page_find(target_phys_addr_t index) |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 320 | { |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 321 | return phys_page_find_alloc(index, 0); |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 322 | } |
| 323 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 324 | #if !defined(CONFIG_USER_ONLY) |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 325 | static void tlb_protect_code(ram_addr_t ram_addr); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 326 | static void tlb_unprotect_code_phys(CPUState *env, ram_addr_t ram_addr, |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 327 | target_ulong vaddr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 328 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 329 | |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 330 | #define DEFAULT_CODE_GEN_BUFFER_SIZE (32 * 1024 * 1024) |
| 331 | |
| 332 | #if defined(CONFIG_USER_ONLY) |
| 333 | /* Currently it is not recommanded to allocate big chunks of data in |
| 334 | user mode. It will change when a dedicated libc will be used */ |
| 335 | #define USE_STATIC_CODE_GEN_BUFFER |
| 336 | #endif |
| 337 | |
| 338 | #ifdef USE_STATIC_CODE_GEN_BUFFER |
| 339 | static uint8_t static_code_gen_buffer[DEFAULT_CODE_GEN_BUFFER_SIZE]; |
| 340 | #endif |
| 341 | |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 342 | void code_gen_alloc(unsigned long tb_size) |
| 343 | { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 344 | #ifdef USE_STATIC_CODE_GEN_BUFFER |
| 345 | code_gen_buffer = static_code_gen_buffer; |
| 346 | code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; |
| 347 | map_exec(code_gen_buffer, code_gen_buffer_size); |
| 348 | #else |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 349 | code_gen_buffer_size = tb_size; |
| 350 | if (code_gen_buffer_size == 0) { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 351 | #if defined(CONFIG_USER_ONLY) |
| 352 | /* in user mode, phys_ram_size is not meaningful */ |
| 353 | code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; |
| 354 | #else |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 355 | /* XXX: needs ajustments */ |
| 356 | code_gen_buffer_size = (int)(phys_ram_size / 4); |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 357 | #endif |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 358 | } |
| 359 | if (code_gen_buffer_size < MIN_CODE_GEN_BUFFER_SIZE) |
| 360 | code_gen_buffer_size = MIN_CODE_GEN_BUFFER_SIZE; |
| 361 | /* The code gen buffer location may have constraints depending on |
| 362 | the host cpu and OS */ |
| 363 | #if defined(__linux__) |
| 364 | { |
| 365 | int flags; |
| 366 | flags = MAP_PRIVATE | MAP_ANONYMOUS; |
| 367 | #if defined(__x86_64__) |
| 368 | flags |= MAP_32BIT; |
| 369 | /* Cannot map more than that */ |
| 370 | if (code_gen_buffer_size > (800 * 1024 * 1024)) |
| 371 | code_gen_buffer_size = (800 * 1024 * 1024); |
| 372 | #endif |
| 373 | code_gen_buffer = mmap(NULL, code_gen_buffer_size, |
| 374 | PROT_WRITE | PROT_READ | PROT_EXEC, |
| 375 | flags, -1, 0); |
| 376 | if (code_gen_buffer == MAP_FAILED) { |
| 377 | fprintf(stderr, "Could not allocate dynamic translator buffer\n"); |
| 378 | exit(1); |
| 379 | } |
| 380 | } |
| 381 | #else |
| 382 | code_gen_buffer = qemu_malloc(code_gen_buffer_size); |
| 383 | if (!code_gen_buffer) { |
| 384 | fprintf(stderr, "Could not allocate dynamic translator buffer\n"); |
| 385 | exit(1); |
| 386 | } |
| 387 | map_exec(code_gen_buffer, code_gen_buffer_size); |
| 388 | #endif |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 389 | #endif /* !USE_STATIC_CODE_GEN_BUFFER */ |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 390 | map_exec(code_gen_prologue, sizeof(code_gen_prologue)); |
| 391 | code_gen_buffer_max_size = code_gen_buffer_size - |
| 392 | code_gen_max_block_size(); |
| 393 | code_gen_max_blocks = code_gen_buffer_size / CODE_GEN_AVG_BLOCK_SIZE; |
| 394 | tbs = qemu_malloc(code_gen_max_blocks * sizeof(TranslationBlock)); |
| 395 | } |
| 396 | |
| 397 | /* Must be called before using the QEMU cpus. 'tb_size' is the size |
| 398 | (in bytes) allocated to the translation buffer. Zero means default |
| 399 | size. */ |
| 400 | void cpu_exec_init_all(unsigned long tb_size) |
| 401 | { |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 402 | cpu_gen_init(); |
| 403 | code_gen_alloc(tb_size); |
| 404 | code_gen_ptr = code_gen_buffer; |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 405 | page_init(); |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 406 | io_mem_init(); |
| 407 | } |
| 408 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 409 | void cpu_exec_init(CPUState *env) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 410 | { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 411 | CPUState **penv; |
| 412 | int cpu_index; |
| 413 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 414 | env->next_cpu = NULL; |
| 415 | penv = &first_cpu; |
| 416 | cpu_index = 0; |
| 417 | while (*penv != NULL) { |
| 418 | penv = (CPUState **)&(*penv)->next_cpu; |
| 419 | cpu_index++; |
| 420 | } |
| 421 | env->cpu_index = cpu_index; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 422 | env->nb_watchpoints = 0; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 423 | *penv = env; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 424 | } |
| 425 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 426 | static inline void invalidate_page_bitmap(PageDesc *p) |
| 427 | { |
| 428 | if (p->code_bitmap) { |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 429 | qemu_free(p->code_bitmap); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 430 | p->code_bitmap = NULL; |
| 431 | } |
| 432 | p->code_write_count = 0; |
| 433 | } |
| 434 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 435 | /* set to NULL all the 'first_tb' fields in all PageDescs */ |
| 436 | static void page_flush_tb(void) |
| 437 | { |
| 438 | int i, j; |
| 439 | PageDesc *p; |
| 440 | |
| 441 | for(i = 0; i < L1_SIZE; i++) { |
| 442 | p = l1_map[i]; |
| 443 | if (p) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 444 | for(j = 0; j < L2_SIZE; j++) { |
| 445 | p->first_tb = NULL; |
| 446 | invalidate_page_bitmap(p); |
| 447 | p++; |
| 448 | } |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 449 | } |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | /* flush all the translation blocks */ |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 454 | /* XXX: tb_flush is currently not thread safe */ |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 455 | void tb_flush(CPUState *env1) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 456 | { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 457 | CPUState *env; |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 458 | #if defined(DEBUG_FLUSH) |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 459 | printf("qemu: flush code_size=%ld nb_tbs=%d avg_tb_size=%ld\n", |
| 460 | (unsigned long)(code_gen_ptr - code_gen_buffer), |
| 461 | nb_tbs, nb_tbs > 0 ? |
| 462 | ((unsigned long)(code_gen_ptr - code_gen_buffer)) / nb_tbs : 0); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 463 | #endif |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 464 | if ((unsigned long)(code_gen_ptr - code_gen_buffer) > code_gen_buffer_size) |
pbrook | a208e54 | 2008-03-31 17:07:36 +0000 | [diff] [blame] | 465 | cpu_abort(env1, "Internal error: code buffer overflow\n"); |
| 466 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 467 | nb_tbs = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 468 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 469 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 470 | memset (env->tb_jmp_cache, 0, TB_JMP_CACHE_SIZE * sizeof (void *)); |
| 471 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 472 | |
bellard | 8a8a608 | 2004-10-03 13:36:49 +0000 | [diff] [blame] | 473 | memset (tb_phys_hash, 0, CODE_GEN_PHYS_HASH_SIZE * sizeof (void *)); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 474 | page_flush_tb(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 475 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 476 | code_gen_ptr = code_gen_buffer; |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 477 | /* XXX: flush processor icache at this point if cache flush is |
| 478 | expensive */ |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 479 | tb_flush_count++; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | #ifdef DEBUG_TB_CHECK |
| 483 | |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 484 | static void tb_invalidate_check(target_ulong address) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 485 | { |
| 486 | TranslationBlock *tb; |
| 487 | int i; |
| 488 | address &= TARGET_PAGE_MASK; |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 489 | for(i = 0;i < CODE_GEN_PHYS_HASH_SIZE; i++) { |
| 490 | for(tb = tb_phys_hash[i]; tb != NULL; tb = tb->phys_hash_next) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 491 | if (!(address + TARGET_PAGE_SIZE <= tb->pc || |
| 492 | address >= tb->pc + tb->size)) { |
| 493 | printf("ERROR invalidate: address=%08lx PC=%08lx size=%04x\n", |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 494 | address, (long)tb->pc, tb->size); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 495 | } |
| 496 | } |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | /* verify that all the pages have correct rights for code */ |
| 501 | static void tb_page_check(void) |
| 502 | { |
| 503 | TranslationBlock *tb; |
| 504 | int i, flags1, flags2; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 505 | |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 506 | for(i = 0;i < CODE_GEN_PHYS_HASH_SIZE; i++) { |
| 507 | for(tb = tb_phys_hash[i]; tb != NULL; tb = tb->phys_hash_next) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 508 | flags1 = page_get_flags(tb->pc); |
| 509 | flags2 = page_get_flags(tb->pc + tb->size - 1); |
| 510 | if ((flags1 & PAGE_WRITE) || (flags2 & PAGE_WRITE)) { |
| 511 | printf("ERROR page flags: PC=%08lx size=%04x f1=%x f2=%x\n", |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 512 | (long)tb->pc, tb->size, flags1, flags2); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 513 | } |
| 514 | } |
| 515 | } |
| 516 | } |
| 517 | |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 518 | void tb_jmp_check(TranslationBlock *tb) |
| 519 | { |
| 520 | TranslationBlock *tb1; |
| 521 | unsigned int n1; |
| 522 | |
| 523 | /* suppress any remaining jumps to this TB */ |
| 524 | tb1 = tb->jmp_first; |
| 525 | for(;;) { |
| 526 | n1 = (long)tb1 & 3; |
| 527 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 528 | if (n1 == 2) |
| 529 | break; |
| 530 | tb1 = tb1->jmp_next[n1]; |
| 531 | } |
| 532 | /* check end of list */ |
| 533 | if (tb1 != tb) { |
| 534 | printf("ERROR: jmp_list from 0x%08lx\n", (long)tb); |
| 535 | } |
| 536 | } |
| 537 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 538 | #endif |
| 539 | |
| 540 | /* invalidate one TB */ |
| 541 | static inline void tb_remove(TranslationBlock **ptb, TranslationBlock *tb, |
| 542 | int next_offset) |
| 543 | { |
| 544 | TranslationBlock *tb1; |
| 545 | for(;;) { |
| 546 | tb1 = *ptb; |
| 547 | if (tb1 == tb) { |
| 548 | *ptb = *(TranslationBlock **)((char *)tb1 + next_offset); |
| 549 | break; |
| 550 | } |
| 551 | ptb = (TranslationBlock **)((char *)tb1 + next_offset); |
| 552 | } |
| 553 | } |
| 554 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 555 | static inline void tb_page_remove(TranslationBlock **ptb, TranslationBlock *tb) |
| 556 | { |
| 557 | TranslationBlock *tb1; |
| 558 | unsigned int n1; |
| 559 | |
| 560 | for(;;) { |
| 561 | tb1 = *ptb; |
| 562 | n1 = (long)tb1 & 3; |
| 563 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 564 | if (tb1 == tb) { |
| 565 | *ptb = tb1->page_next[n1]; |
| 566 | break; |
| 567 | } |
| 568 | ptb = &tb1->page_next[n1]; |
| 569 | } |
| 570 | } |
| 571 | |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 572 | static inline void tb_jmp_remove(TranslationBlock *tb, int n) |
| 573 | { |
| 574 | TranslationBlock *tb1, **ptb; |
| 575 | unsigned int n1; |
| 576 | |
| 577 | ptb = &tb->jmp_next[n]; |
| 578 | tb1 = *ptb; |
| 579 | if (tb1) { |
| 580 | /* find tb(n) in circular list */ |
| 581 | for(;;) { |
| 582 | tb1 = *ptb; |
| 583 | n1 = (long)tb1 & 3; |
| 584 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 585 | if (n1 == n && tb1 == tb) |
| 586 | break; |
| 587 | if (n1 == 2) { |
| 588 | ptb = &tb1->jmp_first; |
| 589 | } else { |
| 590 | ptb = &tb1->jmp_next[n1]; |
| 591 | } |
| 592 | } |
| 593 | /* now we can suppress tb(n) from the list */ |
| 594 | *ptb = tb->jmp_next[n]; |
| 595 | |
| 596 | tb->jmp_next[n] = NULL; |
| 597 | } |
| 598 | } |
| 599 | |
| 600 | /* reset the jump entry 'n' of a TB so that it is not chained to |
| 601 | another TB */ |
| 602 | static inline void tb_reset_jump(TranslationBlock *tb, int n) |
| 603 | { |
| 604 | tb_set_jmp_target(tb, n, (unsigned long)(tb->tc_ptr + tb->tb_next_offset[n])); |
| 605 | } |
| 606 | |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 607 | static inline void tb_phys_invalidate(TranslationBlock *tb, target_ulong page_addr) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 608 | { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 609 | CPUState *env; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 610 | PageDesc *p; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 611 | unsigned int h, n1; |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 612 | target_phys_addr_t phys_pc; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 613 | TranslationBlock *tb1, *tb2; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 614 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 615 | /* remove the TB from the hash list */ |
| 616 | phys_pc = tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); |
| 617 | h = tb_phys_hash_func(phys_pc); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 618 | tb_remove(&tb_phys_hash[h], tb, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 619 | offsetof(TranslationBlock, phys_hash_next)); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 620 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 621 | /* remove the TB from the page list */ |
| 622 | if (tb->page_addr[0] != page_addr) { |
| 623 | p = page_find(tb->page_addr[0] >> TARGET_PAGE_BITS); |
| 624 | tb_page_remove(&p->first_tb, tb); |
| 625 | invalidate_page_bitmap(p); |
| 626 | } |
| 627 | if (tb->page_addr[1] != -1 && tb->page_addr[1] != page_addr) { |
| 628 | p = page_find(tb->page_addr[1] >> TARGET_PAGE_BITS); |
| 629 | tb_page_remove(&p->first_tb, tb); |
| 630 | invalidate_page_bitmap(p); |
| 631 | } |
| 632 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 633 | tb_invalidated_flag = 1; |
| 634 | |
| 635 | /* remove the TB from the hash list */ |
| 636 | h = tb_jmp_cache_hash_func(tb->pc); |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 637 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 638 | if (env->tb_jmp_cache[h] == tb) |
| 639 | env->tb_jmp_cache[h] = NULL; |
| 640 | } |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 641 | |
| 642 | /* suppress this TB from the two jump lists */ |
| 643 | tb_jmp_remove(tb, 0); |
| 644 | tb_jmp_remove(tb, 1); |
| 645 | |
| 646 | /* suppress any remaining jumps to this TB */ |
| 647 | tb1 = tb->jmp_first; |
| 648 | for(;;) { |
| 649 | n1 = (long)tb1 & 3; |
| 650 | if (n1 == 2) |
| 651 | break; |
| 652 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 653 | tb2 = tb1->jmp_next[n1]; |
| 654 | tb_reset_jump(tb1, n1); |
| 655 | tb1->jmp_next[n1] = NULL; |
| 656 | tb1 = tb2; |
| 657 | } |
| 658 | tb->jmp_first = (TranslationBlock *)((long)tb | 2); /* fail safe */ |
| 659 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 660 | tb_phys_invalidate_count++; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 661 | } |
| 662 | |
| 663 | static inline void set_bits(uint8_t *tab, int start, int len) |
| 664 | { |
| 665 | int end, mask, end1; |
| 666 | |
| 667 | end = start + len; |
| 668 | tab += start >> 3; |
| 669 | mask = 0xff << (start & 7); |
| 670 | if ((start & ~7) == (end & ~7)) { |
| 671 | if (start < end) { |
| 672 | mask &= ~(0xff << (end & 7)); |
| 673 | *tab |= mask; |
| 674 | } |
| 675 | } else { |
| 676 | *tab++ |= mask; |
| 677 | start = (start + 8) & ~7; |
| 678 | end1 = end & ~7; |
| 679 | while (start < end1) { |
| 680 | *tab++ = 0xff; |
| 681 | start += 8; |
| 682 | } |
| 683 | if (start < end) { |
| 684 | mask = ~(0xff << (end & 7)); |
| 685 | *tab |= mask; |
| 686 | } |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | static void build_page_bitmap(PageDesc *p) |
| 691 | { |
| 692 | int n, tb_start, tb_end; |
| 693 | TranslationBlock *tb; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 694 | |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 695 | p->code_bitmap = qemu_malloc(TARGET_PAGE_SIZE / 8); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 696 | if (!p->code_bitmap) |
| 697 | return; |
| 698 | memset(p->code_bitmap, 0, TARGET_PAGE_SIZE / 8); |
| 699 | |
| 700 | tb = p->first_tb; |
| 701 | while (tb != NULL) { |
| 702 | n = (long)tb & 3; |
| 703 | tb = (TranslationBlock *)((long)tb & ~3); |
| 704 | /* NOTE: this is subtle as a TB may span two physical pages */ |
| 705 | if (n == 0) { |
| 706 | /* NOTE: tb_end may be after the end of the page, but |
| 707 | it is not a problem */ |
| 708 | tb_start = tb->pc & ~TARGET_PAGE_MASK; |
| 709 | tb_end = tb_start + tb->size; |
| 710 | if (tb_end > TARGET_PAGE_SIZE) |
| 711 | tb_end = TARGET_PAGE_SIZE; |
| 712 | } else { |
| 713 | tb_start = 0; |
| 714 | tb_end = ((tb->pc + tb->size) & ~TARGET_PAGE_MASK); |
| 715 | } |
| 716 | set_bits(p->code_bitmap, tb_start, tb_end - tb_start); |
| 717 | tb = tb->page_next[n]; |
| 718 | } |
| 719 | } |
| 720 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 721 | #ifdef TARGET_HAS_PRECISE_SMC |
| 722 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 723 | static void tb_gen_code(CPUState *env, |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 724 | target_ulong pc, target_ulong cs_base, int flags, |
| 725 | int cflags) |
| 726 | { |
| 727 | TranslationBlock *tb; |
| 728 | uint8_t *tc_ptr; |
| 729 | target_ulong phys_pc, phys_page2, virt_page2; |
| 730 | int code_gen_size; |
| 731 | |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 732 | phys_pc = get_phys_addr_code(env, pc); |
| 733 | tb = tb_alloc(pc); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 734 | if (!tb) { |
| 735 | /* flush must be done */ |
| 736 | tb_flush(env); |
| 737 | /* cannot fail at this point */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 738 | tb = tb_alloc(pc); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 739 | } |
| 740 | tc_ptr = code_gen_ptr; |
| 741 | tb->tc_ptr = tc_ptr; |
| 742 | tb->cs_base = cs_base; |
| 743 | tb->flags = flags; |
| 744 | tb->cflags = cflags; |
blueswir1 | d07bde8 | 2007-12-11 19:35:45 +0000 | [diff] [blame] | 745 | cpu_gen_code(env, tb, &code_gen_size); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 746 | 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] | 747 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 748 | /* check next page if needed */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 749 | virt_page2 = (pc + tb->size - 1) & TARGET_PAGE_MASK; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 750 | phys_page2 = -1; |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 751 | if ((pc & TARGET_PAGE_MASK) != virt_page2) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 752 | phys_page2 = get_phys_addr_code(env, virt_page2); |
| 753 | } |
| 754 | tb_link_phys(tb, phys_pc, phys_page2); |
| 755 | } |
| 756 | #endif |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 757 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 758 | /* invalidate all TBs which intersect with the target physical page |
| 759 | starting in range [start;end[. NOTE: start and end must refer to |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 760 | the same physical page. 'is_cpu_write_access' should be true if called |
| 761 | from a real cpu write access: the virtual CPU will exit the current |
| 762 | TB if code is modified inside this TB. */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 763 | 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] | 764 | int is_cpu_write_access) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 765 | { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 766 | int n, current_tb_modified, current_tb_not_found, current_flags; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 767 | CPUState *env = cpu_single_env; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 768 | PageDesc *p; |
bellard | ea1c180 | 2004-06-14 18:56:36 +0000 | [diff] [blame] | 769 | TranslationBlock *tb, *tb_next, *current_tb, *saved_tb; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 770 | target_ulong tb_start, tb_end; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 771 | target_ulong current_pc, current_cs_base; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 772 | |
| 773 | p = page_find(start >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 774 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 775 | return; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 776 | if (!p->code_bitmap && |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 777 | ++p->code_write_count >= SMC_BITMAP_USE_THRESHOLD && |
| 778 | is_cpu_write_access) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 779 | /* build code bitmap */ |
| 780 | build_page_bitmap(p); |
| 781 | } |
| 782 | |
| 783 | /* we remove all the TBs in the range [start, end[ */ |
| 784 | /* XXX: see if in some cases it could be faster to invalidate all the code */ |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 785 | current_tb_not_found = is_cpu_write_access; |
| 786 | current_tb_modified = 0; |
| 787 | current_tb = NULL; /* avoid warning */ |
| 788 | current_pc = 0; /* avoid warning */ |
| 789 | current_cs_base = 0; /* avoid warning */ |
| 790 | current_flags = 0; /* avoid warning */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 791 | tb = p->first_tb; |
| 792 | while (tb != NULL) { |
| 793 | n = (long)tb & 3; |
| 794 | tb = (TranslationBlock *)((long)tb & ~3); |
| 795 | tb_next = tb->page_next[n]; |
| 796 | /* NOTE: this is subtle as a TB may span two physical pages */ |
| 797 | if (n == 0) { |
| 798 | /* NOTE: tb_end may be after the end of the page, but |
| 799 | it is not a problem */ |
| 800 | tb_start = tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); |
| 801 | tb_end = tb_start + tb->size; |
| 802 | } else { |
| 803 | tb_start = tb->page_addr[1]; |
| 804 | tb_end = tb_start + ((tb->pc + tb->size) & ~TARGET_PAGE_MASK); |
| 805 | } |
| 806 | if (!(tb_end <= start || tb_start >= end)) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 807 | #ifdef TARGET_HAS_PRECISE_SMC |
| 808 | if (current_tb_not_found) { |
| 809 | current_tb_not_found = 0; |
| 810 | current_tb = NULL; |
| 811 | if (env->mem_write_pc) { |
| 812 | /* now we have a real cpu fault */ |
| 813 | current_tb = tb_find_pc(env->mem_write_pc); |
| 814 | } |
| 815 | } |
| 816 | if (current_tb == tb && |
| 817 | !(current_tb->cflags & CF_SINGLE_INSN)) { |
| 818 | /* If we are modifying the current TB, we must stop |
| 819 | its execution. We could be more precise by checking |
| 820 | that the modification is after the current PC, but it |
| 821 | would require a specialized function to partially |
| 822 | restore the CPU state */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 823 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 824 | current_tb_modified = 1; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 825 | cpu_restore_state(current_tb, env, |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 826 | env->mem_write_pc, NULL); |
| 827 | #if defined(TARGET_I386) |
| 828 | current_flags = env->hflags; |
| 829 | current_flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK)); |
| 830 | current_cs_base = (target_ulong)env->segs[R_CS].base; |
| 831 | current_pc = current_cs_base + env->eip; |
| 832 | #else |
| 833 | #error unsupported CPU |
| 834 | #endif |
| 835 | } |
| 836 | #endif /* TARGET_HAS_PRECISE_SMC */ |
bellard | 6f5a9f7 | 2005-11-26 20:12:28 +0000 | [diff] [blame] | 837 | /* we need to do that to handle the case where a signal |
| 838 | occurs while doing tb_phys_invalidate() */ |
| 839 | saved_tb = NULL; |
| 840 | if (env) { |
| 841 | saved_tb = env->current_tb; |
| 842 | env->current_tb = NULL; |
| 843 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 844 | tb_phys_invalidate(tb, -1); |
bellard | 6f5a9f7 | 2005-11-26 20:12:28 +0000 | [diff] [blame] | 845 | if (env) { |
| 846 | env->current_tb = saved_tb; |
| 847 | if (env->interrupt_request && env->current_tb) |
| 848 | cpu_interrupt(env, env->interrupt_request); |
| 849 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 850 | } |
| 851 | tb = tb_next; |
| 852 | } |
| 853 | #if !defined(CONFIG_USER_ONLY) |
| 854 | /* if no code remaining, no need to continue to use slow writes */ |
| 855 | if (!p->first_tb) { |
| 856 | invalidate_page_bitmap(p); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 857 | if (is_cpu_write_access) { |
| 858 | tlb_unprotect_code_phys(env, start, env->mem_write_vaddr); |
| 859 | } |
| 860 | } |
| 861 | #endif |
| 862 | #ifdef TARGET_HAS_PRECISE_SMC |
| 863 | if (current_tb_modified) { |
| 864 | /* we generate a block containing just the instruction |
| 865 | modifying the memory. It will ensure that it cannot modify |
| 866 | itself */ |
bellard | ea1c180 | 2004-06-14 18:56:36 +0000 | [diff] [blame] | 867 | env->current_tb = NULL; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 868 | tb_gen_code(env, current_pc, current_cs_base, current_flags, |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 869 | CF_SINGLE_INSN); |
| 870 | cpu_resume_from_signal(env, NULL); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 871 | } |
| 872 | #endif |
| 873 | } |
| 874 | |
| 875 | /* len must be <= 8 and start must be a multiple of len */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 876 | 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] | 877 | { |
| 878 | PageDesc *p; |
| 879 | int offset, b; |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 880 | #if 0 |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 881 | if (1) { |
| 882 | if (loglevel) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 883 | fprintf(logfile, "modifying code at 0x%x size=%d EIP=%x PC=%08x\n", |
| 884 | cpu_single_env->mem_write_vaddr, len, |
| 885 | cpu_single_env->eip, |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 886 | cpu_single_env->eip + (long)cpu_single_env->segs[R_CS].base); |
| 887 | } |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 888 | } |
| 889 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 890 | p = page_find(start >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 891 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 892 | return; |
| 893 | if (p->code_bitmap) { |
| 894 | offset = start & ~TARGET_PAGE_MASK; |
| 895 | b = p->code_bitmap[offset >> 3] >> (offset & 7); |
| 896 | if (b & ((1 << len) - 1)) |
| 897 | goto do_invalidate; |
| 898 | } else { |
| 899 | do_invalidate: |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 900 | tb_invalidate_phys_page_range(start, start + len, 1); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 901 | } |
| 902 | } |
| 903 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 904 | #if !defined(CONFIG_SOFTMMU) |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 905 | static void tb_invalidate_phys_page(target_phys_addr_t addr, |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 906 | unsigned long pc, void *puc) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 907 | { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 908 | int n, current_flags, current_tb_modified; |
| 909 | target_ulong current_pc, current_cs_base; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 910 | PageDesc *p; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 911 | TranslationBlock *tb, *current_tb; |
| 912 | #ifdef TARGET_HAS_PRECISE_SMC |
| 913 | CPUState *env = cpu_single_env; |
| 914 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 915 | |
| 916 | addr &= TARGET_PAGE_MASK; |
| 917 | p = page_find(addr >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 918 | if (!p) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 919 | return; |
| 920 | tb = p->first_tb; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 921 | current_tb_modified = 0; |
| 922 | current_tb = NULL; |
| 923 | current_pc = 0; /* avoid warning */ |
| 924 | current_cs_base = 0; /* avoid warning */ |
| 925 | current_flags = 0; /* avoid warning */ |
| 926 | #ifdef TARGET_HAS_PRECISE_SMC |
| 927 | if (tb && pc != 0) { |
| 928 | current_tb = tb_find_pc(pc); |
| 929 | } |
| 930 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 931 | while (tb != NULL) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 932 | n = (long)tb & 3; |
| 933 | tb = (TranslationBlock *)((long)tb & ~3); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 934 | #ifdef TARGET_HAS_PRECISE_SMC |
| 935 | if (current_tb == tb && |
| 936 | !(current_tb->cflags & CF_SINGLE_INSN)) { |
| 937 | /* If we are modifying the current TB, we must stop |
| 938 | its execution. We could be more precise by checking |
| 939 | that the modification is after the current PC, but it |
| 940 | would require a specialized function to partially |
| 941 | restore the CPU state */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 942 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 943 | current_tb_modified = 1; |
| 944 | cpu_restore_state(current_tb, env, pc, puc); |
| 945 | #if defined(TARGET_I386) |
| 946 | current_flags = env->hflags; |
| 947 | current_flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK)); |
| 948 | current_cs_base = (target_ulong)env->segs[R_CS].base; |
| 949 | current_pc = current_cs_base + env->eip; |
| 950 | #else |
| 951 | #error unsupported CPU |
| 952 | #endif |
| 953 | } |
| 954 | #endif /* TARGET_HAS_PRECISE_SMC */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 955 | tb_phys_invalidate(tb, addr); |
| 956 | tb = tb->page_next[n]; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 957 | } |
| 958 | p->first_tb = NULL; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 959 | #ifdef TARGET_HAS_PRECISE_SMC |
| 960 | if (current_tb_modified) { |
| 961 | /* we generate a block containing just the instruction |
| 962 | modifying the memory. It will ensure that it cannot modify |
| 963 | itself */ |
bellard | ea1c180 | 2004-06-14 18:56:36 +0000 | [diff] [blame] | 964 | env->current_tb = NULL; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 965 | tb_gen_code(env, current_pc, current_cs_base, current_flags, |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 966 | CF_SINGLE_INSN); |
| 967 | cpu_resume_from_signal(env, puc); |
| 968 | } |
| 969 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 970 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 971 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 972 | |
| 973 | /* add the tb in the target page and protect it if necessary */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 974 | static inline void tb_alloc_page(TranslationBlock *tb, |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 975 | unsigned int n, target_ulong page_addr) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 976 | { |
| 977 | PageDesc *p; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 978 | TranslationBlock *last_first_tb; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 979 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 980 | tb->page_addr[n] = page_addr; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 981 | p = page_find_alloc(page_addr >> TARGET_PAGE_BITS); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 982 | tb->page_next[n] = p->first_tb; |
| 983 | last_first_tb = p->first_tb; |
| 984 | p->first_tb = (TranslationBlock *)((long)tb | n); |
| 985 | invalidate_page_bitmap(p); |
| 986 | |
bellard | 107db44 | 2004-06-22 18:48:46 +0000 | [diff] [blame] | 987 | #if defined(TARGET_HAS_SMC) || 1 |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 988 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 989 | #if defined(CONFIG_USER_ONLY) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 990 | if (p->flags & PAGE_WRITE) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 991 | target_ulong addr; |
| 992 | PageDesc *p2; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 993 | int prot; |
| 994 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 995 | /* force the host page as non writable (writes will have a |
| 996 | page fault + mprotect overhead) */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 997 | page_addr &= qemu_host_page_mask; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 998 | prot = 0; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 999 | for(addr = page_addr; addr < page_addr + qemu_host_page_size; |
| 1000 | addr += TARGET_PAGE_SIZE) { |
| 1001 | |
| 1002 | p2 = page_find (addr >> TARGET_PAGE_BITS); |
| 1003 | if (!p2) |
| 1004 | continue; |
| 1005 | prot |= p2->flags; |
| 1006 | p2->flags &= ~PAGE_WRITE; |
| 1007 | page_get_flags(addr); |
| 1008 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1009 | mprotect(g2h(page_addr), qemu_host_page_size, |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1010 | (prot & PAGE_BITS) & ~PAGE_WRITE); |
| 1011 | #ifdef DEBUG_TB_INVALIDATE |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 1012 | printf("protecting code page: 0x" TARGET_FMT_lx "\n", |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1013 | page_addr); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1014 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1015 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1016 | #else |
| 1017 | /* if some code is already present, then the pages are already |
| 1018 | protected. So we handle the case where only the first TB is |
| 1019 | allocated in a physical page */ |
| 1020 | if (!last_first_tb) { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1021 | tlb_protect_code(page_addr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1022 | } |
| 1023 | #endif |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1024 | |
| 1025 | #endif /* TARGET_HAS_SMC */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1026 | } |
| 1027 | |
| 1028 | /* Allocate a new translation block. Flush the translation buffer if |
| 1029 | too many translation blocks or too much generated code. */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1030 | TranslationBlock *tb_alloc(target_ulong pc) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1031 | { |
| 1032 | TranslationBlock *tb; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1033 | |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 1034 | if (nb_tbs >= code_gen_max_blocks || |
| 1035 | (code_gen_ptr - code_gen_buffer) >= code_gen_buffer_max_size) |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1036 | return NULL; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1037 | tb = &tbs[nb_tbs++]; |
| 1038 | tb->pc = pc; |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 1039 | tb->cflags = 0; |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1040 | return tb; |
| 1041 | } |
| 1042 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1043 | /* add a new TB and link it to the physical page tables. phys_page2 is |
| 1044 | (-1) to indicate that only one page contains the TB. */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1045 | void tb_link_phys(TranslationBlock *tb, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1046 | target_ulong phys_pc, target_ulong phys_page2) |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1047 | { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1048 | unsigned int h; |
| 1049 | TranslationBlock **ptb; |
| 1050 | |
| 1051 | /* add in the physical hash table */ |
| 1052 | h = tb_phys_hash_func(phys_pc); |
| 1053 | ptb = &tb_phys_hash[h]; |
| 1054 | tb->phys_hash_next = *ptb; |
| 1055 | *ptb = tb; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1056 | |
| 1057 | /* add in the page list */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1058 | tb_alloc_page(tb, 0, phys_pc & TARGET_PAGE_MASK); |
| 1059 | if (phys_page2 != -1) |
| 1060 | tb_alloc_page(tb, 1, phys_page2); |
| 1061 | else |
| 1062 | tb->page_addr[1] = -1; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1063 | |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1064 | tb->jmp_first = (TranslationBlock *)((long)tb | 2); |
| 1065 | tb->jmp_next[0] = NULL; |
| 1066 | tb->jmp_next[1] = NULL; |
| 1067 | |
| 1068 | /* init original jump addresses */ |
| 1069 | if (tb->tb_next_offset[0] != 0xffff) |
| 1070 | tb_reset_jump(tb, 0); |
| 1071 | if (tb->tb_next_offset[1] != 0xffff) |
| 1072 | tb_reset_jump(tb, 1); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 1073 | |
| 1074 | #ifdef DEBUG_TB_CHECK |
| 1075 | tb_page_check(); |
| 1076 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1079 | /* find the TB 'tb' such that tb[0].tc_ptr <= tc_ptr < |
| 1080 | tb[1].tc_ptr. Return NULL if not found */ |
| 1081 | TranslationBlock *tb_find_pc(unsigned long tc_ptr) |
| 1082 | { |
| 1083 | int m_min, m_max, m; |
| 1084 | unsigned long v; |
| 1085 | TranslationBlock *tb; |
| 1086 | |
| 1087 | if (nb_tbs <= 0) |
| 1088 | return NULL; |
| 1089 | if (tc_ptr < (unsigned long)code_gen_buffer || |
| 1090 | tc_ptr >= (unsigned long)code_gen_ptr) |
| 1091 | return NULL; |
| 1092 | /* binary search (cf Knuth) */ |
| 1093 | m_min = 0; |
| 1094 | m_max = nb_tbs - 1; |
| 1095 | while (m_min <= m_max) { |
| 1096 | m = (m_min + m_max) >> 1; |
| 1097 | tb = &tbs[m]; |
| 1098 | v = (unsigned long)tb->tc_ptr; |
| 1099 | if (v == tc_ptr) |
| 1100 | return tb; |
| 1101 | else if (tc_ptr < v) { |
| 1102 | m_max = m - 1; |
| 1103 | } else { |
| 1104 | m_min = m + 1; |
| 1105 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1106 | } |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1107 | return &tbs[m_max]; |
| 1108 | } |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1109 | |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1110 | static void tb_reset_jump_recursive(TranslationBlock *tb); |
| 1111 | |
| 1112 | static inline void tb_reset_jump_recursive2(TranslationBlock *tb, int n) |
| 1113 | { |
| 1114 | TranslationBlock *tb1, *tb_next, **ptb; |
| 1115 | unsigned int n1; |
| 1116 | |
| 1117 | tb1 = tb->jmp_next[n]; |
| 1118 | if (tb1 != NULL) { |
| 1119 | /* find head of list */ |
| 1120 | for(;;) { |
| 1121 | n1 = (long)tb1 & 3; |
| 1122 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 1123 | if (n1 == 2) |
| 1124 | break; |
| 1125 | tb1 = tb1->jmp_next[n1]; |
| 1126 | } |
| 1127 | /* we are now sure now that tb jumps to tb1 */ |
| 1128 | tb_next = tb1; |
| 1129 | |
| 1130 | /* remove tb from the jmp_first list */ |
| 1131 | ptb = &tb_next->jmp_first; |
| 1132 | for(;;) { |
| 1133 | tb1 = *ptb; |
| 1134 | n1 = (long)tb1 & 3; |
| 1135 | tb1 = (TranslationBlock *)((long)tb1 & ~3); |
| 1136 | if (n1 == n && tb1 == tb) |
| 1137 | break; |
| 1138 | ptb = &tb1->jmp_next[n1]; |
| 1139 | } |
| 1140 | *ptb = tb->jmp_next[n]; |
| 1141 | tb->jmp_next[n] = NULL; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1142 | |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1143 | /* suppress the jump to next tb in generated code */ |
| 1144 | tb_reset_jump(tb, n); |
| 1145 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1146 | /* suppress jumps in the tb on which we could have jumped */ |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1147 | tb_reset_jump_recursive(tb_next); |
| 1148 | } |
| 1149 | } |
| 1150 | |
| 1151 | static void tb_reset_jump_recursive(TranslationBlock *tb) |
| 1152 | { |
| 1153 | tb_reset_jump_recursive2(tb, 0); |
| 1154 | tb_reset_jump_recursive2(tb, 1); |
| 1155 | } |
| 1156 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1157 | #if defined(TARGET_HAS_ICE) |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1158 | static void breakpoint_invalidate(CPUState *env, target_ulong pc) |
| 1159 | { |
j_mayer | 9b3c35e | 2007-04-07 11:21:28 +0000 | [diff] [blame] | 1160 | target_phys_addr_t addr; |
| 1161 | target_ulong pd; |
pbrook | c2f07f8 | 2006-04-08 17:14:56 +0000 | [diff] [blame] | 1162 | ram_addr_t ram_addr; |
| 1163 | PhysPageDesc *p; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1164 | |
pbrook | c2f07f8 | 2006-04-08 17:14:56 +0000 | [diff] [blame] | 1165 | addr = cpu_get_phys_page_debug(env, pc); |
| 1166 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 1167 | if (!p) { |
| 1168 | pd = IO_MEM_UNASSIGNED; |
| 1169 | } else { |
| 1170 | pd = p->phys_offset; |
| 1171 | } |
| 1172 | ram_addr = (pd & TARGET_PAGE_MASK) | (pc & ~TARGET_PAGE_MASK); |
pbrook | 706cd4b | 2006-04-08 17:36:21 +0000 | [diff] [blame] | 1173 | tb_invalidate_phys_page_range(ram_addr, ram_addr + 1, 0); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1174 | } |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1175 | #endif |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1176 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1177 | /* Add a watchpoint. */ |
| 1178 | int cpu_watchpoint_insert(CPUState *env, target_ulong addr) |
| 1179 | { |
| 1180 | int i; |
| 1181 | |
| 1182 | for (i = 0; i < env->nb_watchpoints; i++) { |
| 1183 | if (addr == env->watchpoint[i].vaddr) |
| 1184 | return 0; |
| 1185 | } |
| 1186 | if (env->nb_watchpoints >= MAX_WATCHPOINTS) |
| 1187 | return -1; |
| 1188 | |
| 1189 | i = env->nb_watchpoints++; |
| 1190 | env->watchpoint[i].vaddr = addr; |
| 1191 | tlb_flush_page(env, addr); |
| 1192 | /* FIXME: This flush is needed because of the hack to make memory ops |
| 1193 | terminate the TB. It can be removed once the proper IO trap and |
| 1194 | re-execute bits are in. */ |
| 1195 | tb_flush(env); |
| 1196 | return i; |
| 1197 | } |
| 1198 | |
| 1199 | /* Remove a watchpoint. */ |
| 1200 | int cpu_watchpoint_remove(CPUState *env, target_ulong addr) |
| 1201 | { |
| 1202 | int i; |
| 1203 | |
| 1204 | for (i = 0; i < env->nb_watchpoints; i++) { |
| 1205 | if (addr == env->watchpoint[i].vaddr) { |
| 1206 | env->nb_watchpoints--; |
| 1207 | env->watchpoint[i] = env->watchpoint[env->nb_watchpoints]; |
| 1208 | tlb_flush_page(env, addr); |
| 1209 | return 0; |
| 1210 | } |
| 1211 | } |
| 1212 | return -1; |
| 1213 | } |
| 1214 | |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 1215 | /* Remove all watchpoints. */ |
| 1216 | void cpu_watchpoint_remove_all(CPUState *env) { |
| 1217 | int i; |
| 1218 | |
| 1219 | for (i = 0; i < env->nb_watchpoints; i++) { |
| 1220 | tlb_flush_page(env, env->watchpoint[i].vaddr); |
| 1221 | } |
| 1222 | env->nb_watchpoints = 0; |
| 1223 | } |
| 1224 | |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1225 | /* add a breakpoint. EXCP_DEBUG is returned by the CPU loop if a |
| 1226 | breakpoint is reached */ |
bellard | 2e12669 | 2004-04-25 21:28:44 +0000 | [diff] [blame] | 1227 | int cpu_breakpoint_insert(CPUState *env, target_ulong pc) |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1228 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1229 | #if defined(TARGET_HAS_ICE) |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1230 | int i; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1231 | |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1232 | for(i = 0; i < env->nb_breakpoints; i++) { |
| 1233 | if (env->breakpoints[i] == pc) |
| 1234 | return 0; |
| 1235 | } |
| 1236 | |
| 1237 | if (env->nb_breakpoints >= MAX_BREAKPOINTS) |
| 1238 | return -1; |
| 1239 | env->breakpoints[env->nb_breakpoints++] = pc; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1240 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1241 | breakpoint_invalidate(env, pc); |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1242 | return 0; |
| 1243 | #else |
| 1244 | return -1; |
| 1245 | #endif |
| 1246 | } |
| 1247 | |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 1248 | /* remove all breakpoints */ |
| 1249 | void cpu_breakpoint_remove_all(CPUState *env) { |
| 1250 | #if defined(TARGET_HAS_ICE) |
| 1251 | int i; |
| 1252 | for(i = 0; i < env->nb_breakpoints; i++) { |
| 1253 | breakpoint_invalidate(env, env->breakpoints[i]); |
| 1254 | } |
| 1255 | env->nb_breakpoints = 0; |
| 1256 | #endif |
| 1257 | } |
| 1258 | |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1259 | /* remove a breakpoint */ |
bellard | 2e12669 | 2004-04-25 21:28:44 +0000 | [diff] [blame] | 1260 | int cpu_breakpoint_remove(CPUState *env, target_ulong pc) |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1261 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1262 | #if defined(TARGET_HAS_ICE) |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1263 | int i; |
| 1264 | for(i = 0; i < env->nb_breakpoints; i++) { |
| 1265 | if (env->breakpoints[i] == pc) |
| 1266 | goto found; |
| 1267 | } |
| 1268 | return -1; |
| 1269 | found: |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1270 | env->nb_breakpoints--; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1271 | if (i < env->nb_breakpoints) |
| 1272 | env->breakpoints[i] = env->breakpoints[env->nb_breakpoints]; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1273 | |
| 1274 | breakpoint_invalidate(env, pc); |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1275 | return 0; |
| 1276 | #else |
| 1277 | return -1; |
| 1278 | #endif |
| 1279 | } |
| 1280 | |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1281 | /* enable or disable single step mode. EXCP_DEBUG is returned by the |
| 1282 | CPU loop after each instruction */ |
| 1283 | void cpu_single_step(CPUState *env, int enabled) |
| 1284 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1285 | #if defined(TARGET_HAS_ICE) |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1286 | if (env->singlestep_enabled != enabled) { |
| 1287 | env->singlestep_enabled = enabled; |
| 1288 | /* must flush all the translated code to avoid inconsistancies */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1289 | /* XXX: only flush what is necessary */ |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1290 | tb_flush(env); |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1291 | } |
| 1292 | #endif |
| 1293 | } |
| 1294 | |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1295 | /* enable or disable low levels log */ |
| 1296 | void cpu_set_log(int log_flags) |
| 1297 | { |
| 1298 | loglevel = log_flags; |
| 1299 | if (loglevel && !logfile) { |
pbrook | 11fcfab | 2007-07-01 18:21:11 +0000 | [diff] [blame] | 1300 | logfile = fopen(logfilename, log_append ? "a" : "w"); |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1301 | if (!logfile) { |
| 1302 | perror(logfilename); |
| 1303 | _exit(1); |
| 1304 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1305 | #if !defined(CONFIG_SOFTMMU) |
| 1306 | /* must avoid mmap() usage of glibc by setting a buffer "by hand" */ |
| 1307 | { |
| 1308 | static uint8_t logfile_buf[4096]; |
| 1309 | setvbuf(logfile, logfile_buf, _IOLBF, sizeof(logfile_buf)); |
| 1310 | } |
| 1311 | #else |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1312 | setvbuf(logfile, NULL, _IOLBF, 0); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1313 | #endif |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 1314 | log_append = 1; |
| 1315 | } |
| 1316 | if (!loglevel && logfile) { |
| 1317 | fclose(logfile); |
| 1318 | logfile = NULL; |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1319 | } |
| 1320 | } |
| 1321 | |
| 1322 | void cpu_set_log_filename(const char *filename) |
| 1323 | { |
| 1324 | logfilename = strdup(filename); |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 1325 | if (logfile) { |
| 1326 | fclose(logfile); |
| 1327 | logfile = NULL; |
| 1328 | } |
| 1329 | cpu_set_log(loglevel); |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1330 | } |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1331 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1332 | /* mask must never be zero, except for A20 change call */ |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 1333 | void cpu_interrupt(CPUState *env, int mask) |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1334 | { |
| 1335 | TranslationBlock *tb; |
aurel32 | 15a5115 | 2008-03-28 22:29:15 +0000 | [diff] [blame] | 1336 | static spinlock_t interrupt_lock = SPIN_LOCK_UNLOCKED; |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1337 | |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 1338 | env->interrupt_request |= mask; |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1339 | /* if the cpu is currently executing code, we must unlink it and |
| 1340 | all the potentially executing TB */ |
| 1341 | tb = env->current_tb; |
bellard | ee8b702 | 2004-02-03 23:35:10 +0000 | [diff] [blame] | 1342 | if (tb && !testandset(&interrupt_lock)) { |
| 1343 | env->current_tb = NULL; |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1344 | tb_reset_jump_recursive(tb); |
aurel32 | 15a5115 | 2008-03-28 22:29:15 +0000 | [diff] [blame] | 1345 | resetlock(&interrupt_lock); |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1346 | } |
| 1347 | } |
| 1348 | |
bellard | b54ad04 | 2004-05-20 13:42:52 +0000 | [diff] [blame] | 1349 | void cpu_reset_interrupt(CPUState *env, int mask) |
| 1350 | { |
| 1351 | env->interrupt_request &= ~mask; |
| 1352 | } |
| 1353 | |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1354 | CPULogItem cpu_log_items[] = { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1355 | { CPU_LOG_TB_OUT_ASM, "out_asm", |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1356 | "show generated host assembly code for each compiled TB" }, |
| 1357 | { CPU_LOG_TB_IN_ASM, "in_asm", |
| 1358 | "show target assembly code for each compiled TB" }, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1359 | { CPU_LOG_TB_OP, "op", |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 1360 | "show micro ops for each compiled TB" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1361 | { CPU_LOG_TB_OP_OPT, "op_opt", |
blueswir1 | e01a115 | 2008-03-14 17:37:11 +0000 | [diff] [blame] | 1362 | "show micro ops " |
| 1363 | #ifdef TARGET_I386 |
| 1364 | "before eflags optimization and " |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1365 | #endif |
blueswir1 | e01a115 | 2008-03-14 17:37:11 +0000 | [diff] [blame] | 1366 | "after liveness analysis" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1367 | { CPU_LOG_INT, "int", |
| 1368 | "show interrupts/exceptions in short format" }, |
| 1369 | { CPU_LOG_EXEC, "exec", |
| 1370 | "show trace before each executed TB (lots of logs)" }, |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1371 | { CPU_LOG_TB_CPU, "cpu", |
ths | e91c8a7 | 2007-06-03 13:35:16 +0000 | [diff] [blame] | 1372 | "show CPU state before block translation" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1373 | #ifdef TARGET_I386 |
| 1374 | { CPU_LOG_PCALL, "pcall", |
| 1375 | "show protected mode far calls/returns/exceptions" }, |
| 1376 | #endif |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1377 | #ifdef DEBUG_IOPORT |
bellard | fd87259 | 2004-05-12 19:11:15 +0000 | [diff] [blame] | 1378 | { CPU_LOG_IOPORT, "ioport", |
| 1379 | "show all i/o ports accesses" }, |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1380 | #endif |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1381 | { 0, NULL, NULL }, |
| 1382 | }; |
| 1383 | |
| 1384 | static int cmp1(const char *s1, int n, const char *s2) |
| 1385 | { |
| 1386 | if (strlen(s2) != n) |
| 1387 | return 0; |
| 1388 | return memcmp(s1, s2, n) == 0; |
| 1389 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1390 | |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1391 | /* takes a comma separated list of log masks. Return 0 if error. */ |
| 1392 | int cpu_str_to_log_mask(const char *str) |
| 1393 | { |
| 1394 | CPULogItem *item; |
| 1395 | int mask; |
| 1396 | const char *p, *p1; |
| 1397 | |
| 1398 | p = str; |
| 1399 | mask = 0; |
| 1400 | for(;;) { |
| 1401 | p1 = strchr(p, ','); |
| 1402 | if (!p1) |
| 1403 | p1 = p + strlen(p); |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1404 | if(cmp1(p,p1-p,"all")) { |
| 1405 | for(item = cpu_log_items; item->mask != 0; item++) { |
| 1406 | mask |= item->mask; |
| 1407 | } |
| 1408 | } else { |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1409 | for(item = cpu_log_items; item->mask != 0; item++) { |
| 1410 | if (cmp1(p, p1 - p, item->name)) |
| 1411 | goto found; |
| 1412 | } |
| 1413 | return 0; |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1414 | } |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1415 | found: |
| 1416 | mask |= item->mask; |
| 1417 | if (*p1 != ',') |
| 1418 | break; |
| 1419 | p = p1 + 1; |
| 1420 | } |
| 1421 | return mask; |
| 1422 | } |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1423 | |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1424 | void cpu_abort(CPUState *env, const char *fmt, ...) |
| 1425 | { |
| 1426 | va_list ap; |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1427 | va_list ap2; |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1428 | |
| 1429 | va_start(ap, fmt); |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1430 | va_copy(ap2, ap); |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1431 | fprintf(stderr, "qemu: fatal: "); |
| 1432 | vfprintf(stderr, fmt, ap); |
| 1433 | fprintf(stderr, "\n"); |
| 1434 | #ifdef TARGET_I386 |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 1435 | cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU | X86_DUMP_CCOP); |
| 1436 | #else |
| 1437 | cpu_dump_state(env, stderr, fprintf, 0); |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1438 | #endif |
balrog | 924edca | 2007-06-10 14:07:13 +0000 | [diff] [blame] | 1439 | if (logfile) { |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1440 | fprintf(logfile, "qemu: fatal: "); |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1441 | vfprintf(logfile, fmt, ap2); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1442 | fprintf(logfile, "\n"); |
| 1443 | #ifdef TARGET_I386 |
| 1444 | cpu_dump_state(env, logfile, fprintf, X86_DUMP_FPU | X86_DUMP_CCOP); |
| 1445 | #else |
| 1446 | cpu_dump_state(env, logfile, fprintf, 0); |
| 1447 | #endif |
balrog | 924edca | 2007-06-10 14:07:13 +0000 | [diff] [blame] | 1448 | fflush(logfile); |
| 1449 | fclose(logfile); |
| 1450 | } |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1451 | va_end(ap2); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1452 | va_end(ap); |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1453 | abort(); |
| 1454 | } |
| 1455 | |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1456 | CPUState *cpu_copy(CPUState *env) |
| 1457 | { |
ths | 01ba981 | 2007-12-09 02:22:57 +0000 | [diff] [blame] | 1458 | CPUState *new_env = cpu_init(env->cpu_model_str); |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1459 | /* preserve chaining and index */ |
| 1460 | CPUState *next_cpu = new_env->next_cpu; |
| 1461 | int cpu_index = new_env->cpu_index; |
| 1462 | memcpy(new_env, env, sizeof(CPUState)); |
| 1463 | new_env->next_cpu = next_cpu; |
| 1464 | new_env->cpu_index = cpu_index; |
| 1465 | return new_env; |
| 1466 | } |
| 1467 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1468 | #if !defined(CONFIG_USER_ONLY) |
| 1469 | |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 1470 | static inline void tlb_flush_jmp_cache(CPUState *env, target_ulong addr) |
| 1471 | { |
| 1472 | unsigned int i; |
| 1473 | |
| 1474 | /* Discard jump cache entries for any tb which might potentially |
| 1475 | overlap the flushed page. */ |
| 1476 | i = tb_jmp_cache_hash_page(addr - TARGET_PAGE_SIZE); |
| 1477 | memset (&env->tb_jmp_cache[i], 0, |
| 1478 | TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *)); |
| 1479 | |
| 1480 | i = tb_jmp_cache_hash_page(addr); |
| 1481 | memset (&env->tb_jmp_cache[i], 0, |
| 1482 | TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *)); |
| 1483 | } |
| 1484 | |
bellard | ee8b702 | 2004-02-03 23:35:10 +0000 | [diff] [blame] | 1485 | /* NOTE: if flush_global is true, also flush global entries (not |
| 1486 | implemented yet) */ |
| 1487 | void tlb_flush(CPUState *env, int flush_global) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1488 | { |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1489 | int i; |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1490 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1491 | #if defined(DEBUG_TLB) |
| 1492 | printf("tlb_flush:\n"); |
| 1493 | #endif |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1494 | /* must reset current TB so that interrupts cannot modify the |
| 1495 | links while we are modifying them */ |
| 1496 | env->current_tb = NULL; |
| 1497 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1498 | for(i = 0; i < CPU_TLB_SIZE; i++) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1499 | env->tlb_table[0][i].addr_read = -1; |
| 1500 | env->tlb_table[0][i].addr_write = -1; |
| 1501 | env->tlb_table[0][i].addr_code = -1; |
| 1502 | env->tlb_table[1][i].addr_read = -1; |
| 1503 | env->tlb_table[1][i].addr_write = -1; |
| 1504 | env->tlb_table[1][i].addr_code = -1; |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1505 | #if (NB_MMU_MODES >= 3) |
| 1506 | env->tlb_table[2][i].addr_read = -1; |
| 1507 | env->tlb_table[2][i].addr_write = -1; |
| 1508 | env->tlb_table[2][i].addr_code = -1; |
| 1509 | #if (NB_MMU_MODES == 4) |
| 1510 | env->tlb_table[3][i].addr_read = -1; |
| 1511 | env->tlb_table[3][i].addr_write = -1; |
| 1512 | env->tlb_table[3][i].addr_code = -1; |
| 1513 | #endif |
| 1514 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1515 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1516 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 1517 | memset (env->tb_jmp_cache, 0, TB_JMP_CACHE_SIZE * sizeof (void *)); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1518 | |
| 1519 | #if !defined(CONFIG_SOFTMMU) |
| 1520 | munmap((void *)MMAP_AREA_START, MMAP_AREA_END - MMAP_AREA_START); |
| 1521 | #endif |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1522 | #ifdef USE_KQEMU |
| 1523 | if (env->kqemu_enabled) { |
| 1524 | kqemu_flush(env, flush_global); |
| 1525 | } |
| 1526 | #endif |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 1527 | tlb_flush_count++; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1528 | } |
| 1529 | |
bellard | 274da6b | 2004-05-20 21:56:27 +0000 | [diff] [blame] | 1530 | static inline void tlb_flush_entry(CPUTLBEntry *tlb_entry, target_ulong addr) |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1531 | { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1532 | if (addr == (tlb_entry->addr_read & |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1533 | (TARGET_PAGE_MASK | TLB_INVALID_MASK)) || |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1534 | addr == (tlb_entry->addr_write & |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1535 | (TARGET_PAGE_MASK | TLB_INVALID_MASK)) || |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1536 | addr == (tlb_entry->addr_code & |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1537 | (TARGET_PAGE_MASK | TLB_INVALID_MASK))) { |
| 1538 | tlb_entry->addr_read = -1; |
| 1539 | tlb_entry->addr_write = -1; |
| 1540 | tlb_entry->addr_code = -1; |
| 1541 | } |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1542 | } |
| 1543 | |
bellard | 2e12669 | 2004-04-25 21:28:44 +0000 | [diff] [blame] | 1544 | void tlb_flush_page(CPUState *env, target_ulong addr) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1545 | { |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 1546 | int i; |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1547 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1548 | #if defined(DEBUG_TLB) |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 1549 | printf("tlb_flush_page: " TARGET_FMT_lx "\n", addr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1550 | #endif |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1551 | /* must reset current TB so that interrupts cannot modify the |
| 1552 | links while we are modifying them */ |
| 1553 | env->current_tb = NULL; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1554 | |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1555 | addr &= TARGET_PAGE_MASK; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1556 | i = (addr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1); |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1557 | tlb_flush_entry(&env->tlb_table[0][i], addr); |
| 1558 | tlb_flush_entry(&env->tlb_table[1][i], addr); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1559 | #if (NB_MMU_MODES >= 3) |
| 1560 | tlb_flush_entry(&env->tlb_table[2][i], addr); |
| 1561 | #if (NB_MMU_MODES == 4) |
| 1562 | tlb_flush_entry(&env->tlb_table[3][i], addr); |
| 1563 | #endif |
| 1564 | #endif |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1565 | |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 1566 | tlb_flush_jmp_cache(env, addr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1567 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1568 | #if !defined(CONFIG_SOFTMMU) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1569 | if (addr < MMAP_AREA_END) |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1570 | munmap((void *)addr, TARGET_PAGE_SIZE); |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1571 | #endif |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1572 | #ifdef USE_KQEMU |
| 1573 | if (env->kqemu_enabled) { |
| 1574 | kqemu_flush_page(env, addr); |
| 1575 | } |
| 1576 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1577 | } |
| 1578 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1579 | /* update the TLBs so that writes to code in the virtual page 'addr' |
| 1580 | can be detected */ |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1581 | static void tlb_protect_code(ram_addr_t ram_addr) |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 1582 | { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1583 | cpu_physical_memory_reset_dirty(ram_addr, |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1584 | ram_addr + TARGET_PAGE_SIZE, |
| 1585 | CODE_DIRTY_FLAG); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1586 | } |
| 1587 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1588 | /* 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] | 1589 | tested for self modifying code */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1590 | static void tlb_unprotect_code_phys(CPUState *env, ram_addr_t ram_addr, |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1591 | target_ulong vaddr) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1592 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1593 | phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] |= CODE_DIRTY_FLAG; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1594 | } |
| 1595 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1596 | static inline void tlb_reset_dirty_range(CPUTLBEntry *tlb_entry, |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1597 | unsigned long start, unsigned long length) |
| 1598 | { |
| 1599 | unsigned long addr; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1600 | if ((tlb_entry->addr_write & ~TARGET_PAGE_MASK) == IO_MEM_RAM) { |
| 1601 | addr = (tlb_entry->addr_write & TARGET_PAGE_MASK) + tlb_entry->addend; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1602 | if ((addr - start) < length) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1603 | tlb_entry->addr_write = (tlb_entry->addr_write & TARGET_PAGE_MASK) | IO_MEM_NOTDIRTY; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1604 | } |
| 1605 | } |
| 1606 | } |
| 1607 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1608 | 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] | 1609 | int dirty_flags) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1610 | { |
| 1611 | CPUState *env; |
bellard | 4f2ac23 | 2004-04-26 19:44:02 +0000 | [diff] [blame] | 1612 | unsigned long length, start1; |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1613 | int i, mask, len; |
| 1614 | uint8_t *p; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1615 | |
| 1616 | start &= TARGET_PAGE_MASK; |
| 1617 | end = TARGET_PAGE_ALIGN(end); |
| 1618 | |
| 1619 | length = end - start; |
| 1620 | if (length == 0) |
| 1621 | return; |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1622 | len = length >> TARGET_PAGE_BITS; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1623 | #ifdef USE_KQEMU |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1624 | /* XXX: should not depend on cpu context */ |
| 1625 | env = first_cpu; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1626 | if (env->kqemu_enabled) { |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 1627 | ram_addr_t addr; |
| 1628 | addr = start; |
| 1629 | for(i = 0; i < len; i++) { |
| 1630 | kqemu_set_notdirty(env, addr); |
| 1631 | addr += TARGET_PAGE_SIZE; |
| 1632 | } |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1633 | } |
| 1634 | #endif |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 1635 | mask = ~dirty_flags; |
| 1636 | p = phys_ram_dirty + (start >> TARGET_PAGE_BITS); |
| 1637 | for(i = 0; i < len; i++) |
| 1638 | p[i] &= mask; |
| 1639 | |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1640 | /* we modify the TLB cache so that the dirty bit will be set again |
| 1641 | when accessing the range */ |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1642 | start1 = start + (unsigned long)phys_ram_base; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1643 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 1644 | for(i = 0; i < CPU_TLB_SIZE; i++) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1645 | tlb_reset_dirty_range(&env->tlb_table[0][i], start1, length); |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1646 | for(i = 0; i < CPU_TLB_SIZE; i++) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1647 | tlb_reset_dirty_range(&env->tlb_table[1][i], start1, length); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1648 | #if (NB_MMU_MODES >= 3) |
| 1649 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1650 | tlb_reset_dirty_range(&env->tlb_table[2][i], start1, length); |
| 1651 | #if (NB_MMU_MODES == 4) |
| 1652 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1653 | tlb_reset_dirty_range(&env->tlb_table[3][i], start1, length); |
| 1654 | #endif |
| 1655 | #endif |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1656 | } |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1657 | |
| 1658 | #if !defined(CONFIG_SOFTMMU) |
| 1659 | /* XXX: this is expensive */ |
| 1660 | { |
| 1661 | VirtPageDesc *p; |
| 1662 | int j; |
| 1663 | target_ulong addr; |
| 1664 | |
| 1665 | for(i = 0; i < L1_SIZE; i++) { |
| 1666 | p = l1_virt_map[i]; |
| 1667 | if (p) { |
| 1668 | addr = i << (TARGET_PAGE_BITS + L2_BITS); |
| 1669 | for(j = 0; j < L2_SIZE; j++) { |
| 1670 | if (p->valid_tag == virt_valid_tag && |
| 1671 | p->phys_addr >= start && p->phys_addr < end && |
| 1672 | (p->prot & PROT_WRITE)) { |
| 1673 | if (addr < MMAP_AREA_END) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1674 | mprotect((void *)addr, TARGET_PAGE_SIZE, |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1675 | p->prot & ~PROT_WRITE); |
| 1676 | } |
| 1677 | } |
| 1678 | addr += TARGET_PAGE_SIZE; |
| 1679 | p++; |
| 1680 | } |
| 1681 | } |
| 1682 | } |
| 1683 | } |
| 1684 | #endif |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1685 | } |
| 1686 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1687 | static inline void tlb_update_dirty(CPUTLBEntry *tlb_entry) |
| 1688 | { |
| 1689 | ram_addr_t ram_addr; |
| 1690 | |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1691 | if ((tlb_entry->addr_write & ~TARGET_PAGE_MASK) == IO_MEM_RAM) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1692 | ram_addr = (tlb_entry->addr_write & TARGET_PAGE_MASK) + |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1693 | tlb_entry->addend - (unsigned long)phys_ram_base; |
| 1694 | if (!cpu_physical_memory_is_dirty(ram_addr)) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1695 | tlb_entry->addr_write |= IO_MEM_NOTDIRTY; |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1696 | } |
| 1697 | } |
| 1698 | } |
| 1699 | |
| 1700 | /* update the TLB according to the current state of the dirty bits */ |
| 1701 | void cpu_tlb_update_dirty(CPUState *env) |
| 1702 | { |
| 1703 | int i; |
| 1704 | for(i = 0; i < CPU_TLB_SIZE; i++) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1705 | tlb_update_dirty(&env->tlb_table[0][i]); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1706 | for(i = 0; i < CPU_TLB_SIZE; i++) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1707 | tlb_update_dirty(&env->tlb_table[1][i]); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1708 | #if (NB_MMU_MODES >= 3) |
| 1709 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1710 | tlb_update_dirty(&env->tlb_table[2][i]); |
| 1711 | #if (NB_MMU_MODES == 4) |
| 1712 | for(i = 0; i < CPU_TLB_SIZE; i++) |
| 1713 | tlb_update_dirty(&env->tlb_table[3][i]); |
| 1714 | #endif |
| 1715 | #endif |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 1716 | } |
| 1717 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1718 | static inline void tlb_set_dirty1(CPUTLBEntry *tlb_entry, |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 1719 | unsigned long start) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1720 | { |
| 1721 | unsigned long addr; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1722 | if ((tlb_entry->addr_write & ~TARGET_PAGE_MASK) == IO_MEM_NOTDIRTY) { |
| 1723 | addr = (tlb_entry->addr_write & TARGET_PAGE_MASK) + tlb_entry->addend; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1724 | if (addr == start) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1725 | tlb_entry->addr_write = (tlb_entry->addr_write & TARGET_PAGE_MASK) | IO_MEM_RAM; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1726 | } |
| 1727 | } |
| 1728 | } |
| 1729 | |
| 1730 | /* update the TLB corresponding to virtual page vaddr and phys addr |
| 1731 | addr so that it is no longer dirty */ |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1732 | static inline void tlb_set_dirty(CPUState *env, |
| 1733 | unsigned long addr, target_ulong vaddr) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1734 | { |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1735 | int i; |
| 1736 | |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1737 | addr &= TARGET_PAGE_MASK; |
| 1738 | i = (vaddr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1); |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1739 | tlb_set_dirty1(&env->tlb_table[0][i], addr); |
| 1740 | tlb_set_dirty1(&env->tlb_table[1][i], addr); |
j_mayer | 6fa4cea | 2007-04-05 06:43:27 +0000 | [diff] [blame] | 1741 | #if (NB_MMU_MODES >= 3) |
| 1742 | tlb_set_dirty1(&env->tlb_table[2][i], addr); |
| 1743 | #if (NB_MMU_MODES == 4) |
| 1744 | tlb_set_dirty1(&env->tlb_table[3][i], addr); |
| 1745 | #endif |
| 1746 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1747 | } |
| 1748 | |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1749 | /* add a new TLB entry. At most one entry for a given virtual address |
| 1750 | is permitted. Return 0 if OK or 2 if the page could not be mapped |
| 1751 | (can only happen in non SOFTMMU mode for I/O pages or pages |
| 1752 | conflicting with the host address space). */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1753 | int tlb_set_page_exec(CPUState *env, target_ulong vaddr, |
| 1754 | target_phys_addr_t paddr, int prot, |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1755 | int mmu_idx, int is_softmmu) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1756 | { |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 1757 | PhysPageDesc *p; |
bellard | 4f2ac23 | 2004-04-26 19:44:02 +0000 | [diff] [blame] | 1758 | unsigned long pd; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1759 | unsigned int index; |
bellard | 4f2ac23 | 2004-04-26 19:44:02 +0000 | [diff] [blame] | 1760 | target_ulong address; |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 1761 | target_phys_addr_t addend; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1762 | int ret; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1763 | CPUTLBEntry *te; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1764 | int i; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1765 | |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 1766 | p = phys_page_find(paddr >> TARGET_PAGE_BITS); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1767 | if (!p) { |
| 1768 | pd = IO_MEM_UNASSIGNED; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1769 | } else { |
| 1770 | pd = p->phys_offset; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1771 | } |
| 1772 | #if defined(DEBUG_TLB) |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1773 | printf("tlb_set_page: vaddr=" TARGET_FMT_lx " paddr=0x%08x prot=%x idx=%d smmu=%d pd=0x%08lx\n", |
| 1774 | vaddr, (int)paddr, prot, mmu_idx, is_softmmu, pd); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1775 | #endif |
| 1776 | |
| 1777 | ret = 0; |
| 1778 | #if !defined(CONFIG_SOFTMMU) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1779 | if (is_softmmu) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1780 | #endif |
| 1781 | { |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 1782 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM && !(pd & IO_MEM_ROMD)) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1783 | /* IO memory case */ |
| 1784 | address = vaddr | pd; |
| 1785 | addend = paddr; |
| 1786 | } else { |
| 1787 | /* standard memory */ |
| 1788 | address = vaddr; |
| 1789 | addend = (unsigned long)phys_ram_base + (pd & TARGET_PAGE_MASK); |
| 1790 | } |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1791 | |
| 1792 | /* Make accesses to pages with watchpoints go via the |
| 1793 | watchpoint trap routines. */ |
| 1794 | for (i = 0; i < env->nb_watchpoints; i++) { |
| 1795 | if (vaddr == (env->watchpoint[i].vaddr & TARGET_PAGE_MASK)) { |
| 1796 | if (address & ~TARGET_PAGE_MASK) { |
balrog | d79acba | 2007-06-26 20:01:13 +0000 | [diff] [blame] | 1797 | env->watchpoint[i].addend = 0; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1798 | address = vaddr | io_mem_watch; |
| 1799 | } else { |
balrog | d79acba | 2007-06-26 20:01:13 +0000 | [diff] [blame] | 1800 | env->watchpoint[i].addend = pd - paddr + |
| 1801 | (unsigned long) phys_ram_base; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1802 | /* TODO: Figure out how to make read watchpoints coexist |
| 1803 | with code. */ |
| 1804 | pd = (pd & TARGET_PAGE_MASK) | io_mem_watch | IO_MEM_ROMD; |
| 1805 | } |
| 1806 | } |
| 1807 | } |
balrog | d79acba | 2007-06-26 20:01:13 +0000 | [diff] [blame] | 1808 | |
bellard | 90f1842 | 2005-07-24 10:17:31 +0000 | [diff] [blame] | 1809 | index = (vaddr >> TARGET_PAGE_BITS) & (CPU_TLB_SIZE - 1); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1810 | addend -= vaddr; |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1811 | te = &env->tlb_table[mmu_idx][index]; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1812 | te->addend = addend; |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1813 | if (prot & PAGE_READ) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1814 | te->addr_read = address; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1815 | } else { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1816 | te->addr_read = -1; |
| 1817 | } |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 1818 | |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1819 | if (prot & PAGE_EXEC) { |
| 1820 | te->addr_code = address; |
| 1821 | } else { |
| 1822 | te->addr_code = -1; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1823 | } |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1824 | if (prot & PAGE_WRITE) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1825 | if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_ROM || |
bellard | 856074e | 2006-07-04 09:47:34 +0000 | [diff] [blame] | 1826 | (pd & IO_MEM_ROMD)) { |
| 1827 | /* write access calls the I/O callback */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1828 | te->addr_write = vaddr | |
bellard | 856074e | 2006-07-04 09:47:34 +0000 | [diff] [blame] | 1829 | (pd & ~(TARGET_PAGE_MASK | IO_MEM_ROMD)); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1830 | } else if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_RAM && |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1831 | !cpu_physical_memory_is_dirty(pd)) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1832 | te->addr_write = vaddr | IO_MEM_NOTDIRTY; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1833 | } else { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1834 | te->addr_write = address; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1835 | } |
| 1836 | } else { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 1837 | te->addr_write = -1; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1838 | } |
| 1839 | } |
| 1840 | #if !defined(CONFIG_SOFTMMU) |
| 1841 | else { |
| 1842 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM) { |
| 1843 | /* IO access: no mapping is done as it will be handled by the |
| 1844 | soft MMU */ |
| 1845 | if (!(env->hflags & HF_SOFTMMU_MASK)) |
| 1846 | ret = 2; |
| 1847 | } else { |
| 1848 | void *map_addr; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1849 | |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1850 | if (vaddr >= MMAP_AREA_END) { |
| 1851 | ret = 2; |
| 1852 | } else { |
| 1853 | if (prot & PROT_WRITE) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1854 | if ((pd & ~TARGET_PAGE_MASK) == IO_MEM_ROM || |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1855 | #if defined(TARGET_HAS_SMC) || 1 |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1856 | first_tb || |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1857 | #endif |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1858 | ((pd & ~TARGET_PAGE_MASK) == IO_MEM_RAM && |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1859 | !cpu_physical_memory_is_dirty(pd))) { |
| 1860 | /* ROM: we do as if code was inside */ |
| 1861 | /* if code is present, we only map as read only and save the |
| 1862 | original mapping */ |
| 1863 | VirtPageDesc *vp; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1864 | |
bellard | 90f1842 | 2005-07-24 10:17:31 +0000 | [diff] [blame] | 1865 | vp = virt_page_find_alloc(vaddr >> TARGET_PAGE_BITS, 1); |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1866 | vp->phys_addr = pd; |
| 1867 | vp->prot = prot; |
| 1868 | vp->valid_tag = virt_valid_tag; |
| 1869 | prot &= ~PAGE_WRITE; |
| 1870 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1871 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1872 | map_addr = mmap((void *)vaddr, TARGET_PAGE_SIZE, prot, |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1873 | MAP_SHARED | MAP_FIXED, phys_ram_fd, (pd & TARGET_PAGE_MASK)); |
| 1874 | if (map_addr == MAP_FAILED) { |
| 1875 | cpu_abort(env, "mmap failed when mapped physical address 0x%08x to virtual address 0x%08x\n", |
| 1876 | paddr, vaddr); |
| 1877 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1878 | } |
| 1879 | } |
| 1880 | } |
| 1881 | #endif |
| 1882 | return ret; |
| 1883 | } |
| 1884 | |
| 1885 | /* called from signal handler: invalidate the code and unprotect the |
| 1886 | page. Return TRUE if the fault was succesfully handled. */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1887 | int page_unprotect(target_ulong addr, unsigned long pc, void *puc) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1888 | { |
| 1889 | #if !defined(CONFIG_SOFTMMU) |
| 1890 | VirtPageDesc *vp; |
| 1891 | |
| 1892 | #if defined(DEBUG_TLB) |
| 1893 | printf("page_unprotect: addr=0x%08x\n", addr); |
| 1894 | #endif |
| 1895 | addr &= TARGET_PAGE_MASK; |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1896 | |
| 1897 | /* if it is not mapped, no need to worry here */ |
| 1898 | if (addr >= MMAP_AREA_END) |
| 1899 | return 0; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1900 | vp = virt_page_find(addr >> TARGET_PAGE_BITS); |
| 1901 | if (!vp) |
| 1902 | return 0; |
| 1903 | /* NOTE: in this case, validate_tag is _not_ tested as it |
| 1904 | validates only the code TLB */ |
| 1905 | if (vp->valid_tag != virt_valid_tag) |
| 1906 | return 0; |
| 1907 | if (!(vp->prot & PAGE_WRITE)) |
| 1908 | return 0; |
| 1909 | #if defined(DEBUG_TLB) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1910 | printf("page_unprotect: addr=0x%08x phys_addr=0x%08x prot=%x\n", |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1911 | addr, vp->phys_addr, vp->prot); |
| 1912 | #endif |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1913 | if (mprotect((void *)addr, TARGET_PAGE_SIZE, vp->prot) < 0) |
| 1914 | cpu_abort(cpu_single_env, "error mprotect addr=0x%lx prot=%d\n", |
| 1915 | (unsigned long)addr, vp->prot); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1916 | /* set the dirty bit */ |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 1917 | phys_ram_dirty[vp->phys_addr >> TARGET_PAGE_BITS] = 0xff; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1918 | /* flush the code inside */ |
| 1919 | tb_invalidate_phys_page(vp->phys_addr, pc, puc); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1920 | return 1; |
| 1921 | #else |
| 1922 | return 0; |
| 1923 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1924 | } |
| 1925 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1926 | #else |
| 1927 | |
bellard | ee8b702 | 2004-02-03 23:35:10 +0000 | [diff] [blame] | 1928 | void tlb_flush(CPUState *env, int flush_global) |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1929 | { |
| 1930 | } |
| 1931 | |
bellard | 2e12669 | 2004-04-25 21:28:44 +0000 | [diff] [blame] | 1932 | void tlb_flush_page(CPUState *env, target_ulong addr) |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1933 | { |
| 1934 | } |
| 1935 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1936 | int tlb_set_page_exec(CPUState *env, target_ulong vaddr, |
| 1937 | target_phys_addr_t paddr, int prot, |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1938 | int mmu_idx, int is_softmmu) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1939 | { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1940 | return 0; |
| 1941 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1942 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1943 | /* dump memory mappings */ |
| 1944 | void page_dump(FILE *f) |
| 1945 | { |
| 1946 | unsigned long start, end; |
| 1947 | int i, j, prot, prot1; |
| 1948 | PageDesc *p; |
| 1949 | |
| 1950 | fprintf(f, "%-8s %-8s %-8s %s\n", |
| 1951 | "start", "end", "size", "prot"); |
| 1952 | start = -1; |
| 1953 | end = -1; |
| 1954 | prot = 0; |
| 1955 | for(i = 0; i <= L1_SIZE; i++) { |
| 1956 | if (i < L1_SIZE) |
| 1957 | p = l1_map[i]; |
| 1958 | else |
| 1959 | p = NULL; |
| 1960 | for(j = 0;j < L2_SIZE; j++) { |
| 1961 | if (!p) |
| 1962 | prot1 = 0; |
| 1963 | else |
| 1964 | prot1 = p[j].flags; |
| 1965 | if (prot1 != prot) { |
| 1966 | end = (i << (32 - L1_BITS)) | (j << TARGET_PAGE_BITS); |
| 1967 | if (start != -1) { |
| 1968 | fprintf(f, "%08lx-%08lx %08lx %c%c%c\n", |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1969 | start, end, end - start, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1970 | prot & PAGE_READ ? 'r' : '-', |
| 1971 | prot & PAGE_WRITE ? 'w' : '-', |
| 1972 | prot & PAGE_EXEC ? 'x' : '-'); |
| 1973 | } |
| 1974 | if (prot1 != 0) |
| 1975 | start = end; |
| 1976 | else |
| 1977 | start = -1; |
| 1978 | prot = prot1; |
| 1979 | } |
| 1980 | if (!p) |
| 1981 | break; |
| 1982 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1983 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1984 | } |
| 1985 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1986 | int page_get_flags(target_ulong address) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1987 | { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1988 | PageDesc *p; |
| 1989 | |
| 1990 | p = page_find(address >> TARGET_PAGE_BITS); |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1991 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1992 | return 0; |
| 1993 | return p->flags; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 1994 | } |
| 1995 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1996 | /* modify the flags of a page and invalidate the code if |
| 1997 | necessary. The flag PAGE_WRITE_ORG is positionned automatically |
| 1998 | depending on PAGE_WRITE */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1999 | void page_set_flags(target_ulong start, target_ulong end, int flags) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2000 | { |
| 2001 | PageDesc *p; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2002 | target_ulong addr; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2003 | |
| 2004 | start = start & TARGET_PAGE_MASK; |
| 2005 | end = TARGET_PAGE_ALIGN(end); |
| 2006 | if (flags & PAGE_WRITE) |
| 2007 | flags |= PAGE_WRITE_ORG; |
| 2008 | spin_lock(&tb_lock); |
| 2009 | for(addr = start; addr < end; addr += TARGET_PAGE_SIZE) { |
| 2010 | p = page_find_alloc(addr >> TARGET_PAGE_BITS); |
| 2011 | /* if the write protection is set, then we invalidate the code |
| 2012 | inside */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2013 | if (!(p->flags & PAGE_WRITE) && |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2014 | (flags & PAGE_WRITE) && |
| 2015 | p->first_tb) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 2016 | tb_invalidate_phys_page(addr, 0, NULL); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2017 | } |
| 2018 | p->flags = flags; |
| 2019 | } |
| 2020 | spin_unlock(&tb_lock); |
| 2021 | } |
| 2022 | |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2023 | int page_check_range(target_ulong start, target_ulong len, int flags) |
| 2024 | { |
| 2025 | PageDesc *p; |
| 2026 | target_ulong end; |
| 2027 | target_ulong addr; |
| 2028 | |
| 2029 | end = TARGET_PAGE_ALIGN(start+len); /* must do before we loose bits in the next step */ |
| 2030 | start = start & TARGET_PAGE_MASK; |
| 2031 | |
| 2032 | if( end < start ) |
| 2033 | /* we've wrapped around */ |
| 2034 | return -1; |
| 2035 | for(addr = start; addr < end; addr += TARGET_PAGE_SIZE) { |
| 2036 | p = page_find(addr >> TARGET_PAGE_BITS); |
| 2037 | if( !p ) |
| 2038 | return -1; |
| 2039 | if( !(p->flags & PAGE_VALID) ) |
| 2040 | return -1; |
| 2041 | |
bellard | dae3270 | 2007-11-14 10:51:00 +0000 | [diff] [blame] | 2042 | if ((flags & PAGE_READ) && !(p->flags & PAGE_READ)) |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2043 | return -1; |
bellard | dae3270 | 2007-11-14 10:51:00 +0000 | [diff] [blame] | 2044 | if (flags & PAGE_WRITE) { |
| 2045 | if (!(p->flags & PAGE_WRITE_ORG)) |
| 2046 | return -1; |
| 2047 | /* unprotect the page if it was put read-only because it |
| 2048 | contains translated code */ |
| 2049 | if (!(p->flags & PAGE_WRITE)) { |
| 2050 | if (!page_unprotect(addr, 0, NULL)) |
| 2051 | return -1; |
| 2052 | } |
| 2053 | return 0; |
| 2054 | } |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2055 | } |
| 2056 | return 0; |
| 2057 | } |
| 2058 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2059 | /* called from signal handler: invalidate the code and unprotect the |
| 2060 | page. Return TRUE if the fault was succesfully handled. */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2061 | int page_unprotect(target_ulong address, unsigned long pc, void *puc) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2062 | { |
| 2063 | unsigned int page_index, prot, pindex; |
| 2064 | PageDesc *p, *p1; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2065 | target_ulong host_start, host_end, addr; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2066 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2067 | host_start = address & qemu_host_page_mask; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2068 | page_index = host_start >> TARGET_PAGE_BITS; |
| 2069 | p1 = page_find(page_index); |
| 2070 | if (!p1) |
| 2071 | return 0; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2072 | host_end = host_start + qemu_host_page_size; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2073 | p = p1; |
| 2074 | prot = 0; |
| 2075 | for(addr = host_start;addr < host_end; addr += TARGET_PAGE_SIZE) { |
| 2076 | prot |= p->flags; |
| 2077 | p++; |
| 2078 | } |
| 2079 | /* if the page was really writable, then we change its |
| 2080 | protection back to writable */ |
| 2081 | if (prot & PAGE_WRITE_ORG) { |
| 2082 | pindex = (address - host_start) >> TARGET_PAGE_BITS; |
| 2083 | if (!(p1[pindex].flags & PAGE_WRITE)) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2084 | mprotect((void *)g2h(host_start), qemu_host_page_size, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2085 | (prot & PAGE_BITS) | PAGE_WRITE); |
| 2086 | p1[pindex].flags |= PAGE_WRITE; |
| 2087 | /* and since the content will be modified, we must invalidate |
| 2088 | the corresponding translated code. */ |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 2089 | tb_invalidate_phys_page(address, pc, puc); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2090 | #ifdef DEBUG_TB_CHECK |
| 2091 | tb_invalidate_check(address); |
| 2092 | #endif |
| 2093 | return 1; |
| 2094 | } |
| 2095 | } |
| 2096 | return 0; |
| 2097 | } |
| 2098 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 2099 | static inline void tlb_set_dirty(CPUState *env, |
| 2100 | unsigned long addr, target_ulong vaddr) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2101 | { |
| 2102 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2103 | #endif /* defined(CONFIG_USER_ONLY) */ |
| 2104 | |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2105 | static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end, |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2106 | ram_addr_t memory); |
| 2107 | static void *subpage_init (target_phys_addr_t base, ram_addr_t *phys, |
| 2108 | ram_addr_t orig_memory); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2109 | #define CHECK_SUBPAGE(addr, start_addr, start_addr2, end_addr, end_addr2, \ |
| 2110 | need_subpage) \ |
| 2111 | do { \ |
| 2112 | if (addr > start_addr) \ |
| 2113 | start_addr2 = 0; \ |
| 2114 | else { \ |
| 2115 | start_addr2 = start_addr & ~TARGET_PAGE_MASK; \ |
| 2116 | if (start_addr2 > 0) \ |
| 2117 | need_subpage = 1; \ |
| 2118 | } \ |
| 2119 | \ |
blueswir1 | 49e9fba | 2007-05-30 17:25:06 +0000 | [diff] [blame] | 2120 | if ((start_addr + orig_size) - addr >= TARGET_PAGE_SIZE) \ |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2121 | end_addr2 = TARGET_PAGE_SIZE - 1; \ |
| 2122 | else { \ |
| 2123 | end_addr2 = (start_addr + orig_size - 1) & ~TARGET_PAGE_MASK; \ |
| 2124 | if (end_addr2 < TARGET_PAGE_SIZE - 1) \ |
| 2125 | need_subpage = 1; \ |
| 2126 | } \ |
| 2127 | } while (0) |
| 2128 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2129 | /* register physical memory. 'size' must be a multiple of the target |
| 2130 | page size. If (phys_offset & ~TARGET_PAGE_MASK) != 0, then it is an |
| 2131 | io memory page */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2132 | void cpu_register_physical_memory(target_phys_addr_t start_addr, |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2133 | ram_addr_t size, |
| 2134 | ram_addr_t phys_offset) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2135 | { |
bellard | 108c49b | 2005-07-24 12:55:09 +0000 | [diff] [blame] | 2136 | target_phys_addr_t addr, end_addr; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 2137 | PhysPageDesc *p; |
bellard | 9d42037 | 2006-06-25 22:25:22 +0000 | [diff] [blame] | 2138 | CPUState *env; |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2139 | ram_addr_t orig_size = size; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2140 | void *subpage; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2141 | |
bellard | 5fd386f | 2004-05-23 21:11:22 +0000 | [diff] [blame] | 2142 | size = (size + TARGET_PAGE_SIZE - 1) & TARGET_PAGE_MASK; |
blueswir1 | 49e9fba | 2007-05-30 17:25:06 +0000 | [diff] [blame] | 2143 | end_addr = start_addr + (target_phys_addr_t)size; |
| 2144 | for(addr = start_addr; addr != end_addr; addr += TARGET_PAGE_SIZE) { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2145 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2146 | if (p && p->phys_offset != IO_MEM_UNASSIGNED) { |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2147 | ram_addr_t orig_memory = p->phys_offset; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2148 | target_phys_addr_t start_addr2, end_addr2; |
| 2149 | int need_subpage = 0; |
| 2150 | |
| 2151 | CHECK_SUBPAGE(addr, start_addr, start_addr2, end_addr, end_addr2, |
| 2152 | need_subpage); |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2153 | if (need_subpage || phys_offset & IO_MEM_SUBWIDTH) { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2154 | if (!(orig_memory & IO_MEM_SUBPAGE)) { |
| 2155 | subpage = subpage_init((addr & TARGET_PAGE_MASK), |
| 2156 | &p->phys_offset, orig_memory); |
| 2157 | } else { |
| 2158 | subpage = io_mem_opaque[(orig_memory & ~TARGET_PAGE_MASK) |
| 2159 | >> IO_MEM_SHIFT]; |
| 2160 | } |
| 2161 | subpage_register(subpage, start_addr2, end_addr2, phys_offset); |
| 2162 | } else { |
| 2163 | p->phys_offset = phys_offset; |
| 2164 | if ((phys_offset & ~TARGET_PAGE_MASK) <= IO_MEM_ROM || |
| 2165 | (phys_offset & IO_MEM_ROMD)) |
| 2166 | phys_offset += TARGET_PAGE_SIZE; |
| 2167 | } |
| 2168 | } else { |
| 2169 | p = phys_page_find_alloc(addr >> TARGET_PAGE_BITS, 1); |
| 2170 | p->phys_offset = phys_offset; |
| 2171 | if ((phys_offset & ~TARGET_PAGE_MASK) <= IO_MEM_ROM || |
| 2172 | (phys_offset & IO_MEM_ROMD)) |
| 2173 | phys_offset += TARGET_PAGE_SIZE; |
| 2174 | else { |
| 2175 | target_phys_addr_t start_addr2, end_addr2; |
| 2176 | int need_subpage = 0; |
| 2177 | |
| 2178 | CHECK_SUBPAGE(addr, start_addr, start_addr2, end_addr, |
| 2179 | end_addr2, need_subpage); |
| 2180 | |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2181 | if (need_subpage || phys_offset & IO_MEM_SUBWIDTH) { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2182 | subpage = subpage_init((addr & TARGET_PAGE_MASK), |
| 2183 | &p->phys_offset, IO_MEM_UNASSIGNED); |
| 2184 | subpage_register(subpage, start_addr2, end_addr2, |
| 2185 | phys_offset); |
| 2186 | } |
| 2187 | } |
| 2188 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2189 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2190 | |
bellard | 9d42037 | 2006-06-25 22:25:22 +0000 | [diff] [blame] | 2191 | /* since each CPU stores ram addresses in its TLB cache, we must |
| 2192 | reset the modified entries */ |
| 2193 | /* XXX: slow ! */ |
| 2194 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 2195 | tlb_flush(env, 1); |
| 2196 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2197 | } |
| 2198 | |
bellard | ba86345 | 2006-09-24 18:41:10 +0000 | [diff] [blame] | 2199 | /* XXX: temporary until new memory mapping API */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2200 | ram_addr_t cpu_get_physical_page_desc(target_phys_addr_t addr) |
bellard | ba86345 | 2006-09-24 18:41:10 +0000 | [diff] [blame] | 2201 | { |
| 2202 | PhysPageDesc *p; |
| 2203 | |
| 2204 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2205 | if (!p) |
| 2206 | return IO_MEM_UNASSIGNED; |
| 2207 | return p->phys_offset; |
| 2208 | } |
| 2209 | |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2210 | /* XXX: better than nothing */ |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2211 | ram_addr_t qemu_ram_alloc(ram_addr_t size) |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2212 | { |
| 2213 | ram_addr_t addr; |
balrog | 7fb4fdc | 2008-04-24 17:59:27 +0000 | [diff] [blame] | 2214 | if ((phys_ram_alloc_offset + size) > phys_ram_size) { |
bellard | ed44146 | 2008-05-23 11:56:45 +0000 | [diff] [blame] | 2215 | fprintf(stderr, "Not enough memory (requested_size = %" PRIu64 ", max memory = %" PRIu64 "\n", |
| 2216 | (uint64_t)size, (uint64_t)phys_ram_size); |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2217 | abort(); |
| 2218 | } |
| 2219 | addr = phys_ram_alloc_offset; |
| 2220 | phys_ram_alloc_offset = TARGET_PAGE_ALIGN(phys_ram_alloc_offset + size); |
| 2221 | return addr; |
| 2222 | } |
| 2223 | |
| 2224 | void qemu_ram_free(ram_addr_t addr) |
| 2225 | { |
| 2226 | } |
| 2227 | |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2228 | static uint32_t unassigned_mem_readb(void *opaque, target_phys_addr_t addr) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2229 | { |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2230 | #ifdef DEBUG_UNASSIGNED |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 2231 | printf("Unassigned mem read " TARGET_FMT_plx "\n", addr); |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2232 | #endif |
blueswir1 | b4f0a31 | 2007-05-06 17:59:24 +0000 | [diff] [blame] | 2233 | #ifdef TARGET_SPARC |
blueswir1 | 6c36d3f | 2007-05-17 19:30:10 +0000 | [diff] [blame] | 2234 | do_unassigned_access(addr, 0, 0, 0); |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 2235 | #elif TARGET_CRIS |
| 2236 | do_unassigned_access(addr, 0, 0, 0); |
blueswir1 | b4f0a31 | 2007-05-06 17:59:24 +0000 | [diff] [blame] | 2237 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2238 | return 0; |
| 2239 | } |
| 2240 | |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2241 | 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] | 2242 | { |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2243 | #ifdef DEBUG_UNASSIGNED |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 2244 | printf("Unassigned mem write " TARGET_FMT_plx " = 0x%x\n", addr, val); |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2245 | #endif |
blueswir1 | b4f0a31 | 2007-05-06 17:59:24 +0000 | [diff] [blame] | 2246 | #ifdef TARGET_SPARC |
blueswir1 | 6c36d3f | 2007-05-17 19:30:10 +0000 | [diff] [blame] | 2247 | do_unassigned_access(addr, 1, 0, 0); |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 2248 | #elif TARGET_CRIS |
| 2249 | do_unassigned_access(addr, 1, 0, 0); |
blueswir1 | b4f0a31 | 2007-05-06 17:59:24 +0000 | [diff] [blame] | 2250 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2251 | } |
| 2252 | |
| 2253 | static CPUReadMemoryFunc *unassigned_mem_read[3] = { |
| 2254 | unassigned_mem_readb, |
| 2255 | unassigned_mem_readb, |
| 2256 | unassigned_mem_readb, |
| 2257 | }; |
| 2258 | |
| 2259 | static CPUWriteMemoryFunc *unassigned_mem_write[3] = { |
| 2260 | unassigned_mem_writeb, |
| 2261 | unassigned_mem_writeb, |
| 2262 | unassigned_mem_writeb, |
| 2263 | }; |
| 2264 | |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2265 | static void notdirty_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_t val) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2266 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2267 | unsigned long ram_addr; |
| 2268 | int dirty_flags; |
| 2269 | ram_addr = addr - (unsigned long)phys_ram_base; |
| 2270 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2271 | if (!(dirty_flags & CODE_DIRTY_FLAG)) { |
| 2272 | #if !defined(CONFIG_USER_ONLY) |
| 2273 | tb_invalidate_phys_page_fast(ram_addr, 1); |
| 2274 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2275 | #endif |
| 2276 | } |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2277 | stb_p((uint8_t *)(long)addr, val); |
bellard | f32fc64 | 2006-02-08 22:43:39 +0000 | [diff] [blame] | 2278 | #ifdef USE_KQEMU |
| 2279 | if (cpu_single_env->kqemu_enabled && |
| 2280 | (dirty_flags & KQEMU_MODIFY_PAGE_MASK) != KQEMU_MODIFY_PAGE_MASK) |
| 2281 | kqemu_modify_page(cpu_single_env, ram_addr); |
| 2282 | #endif |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 2283 | dirty_flags |= (0xff & ~CODE_DIRTY_FLAG); |
| 2284 | phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] = dirty_flags; |
| 2285 | /* we remove the notdirty callback only if the code has been |
| 2286 | flushed */ |
| 2287 | if (dirty_flags == 0xff) |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 2288 | tlb_set_dirty(cpu_single_env, addr, cpu_single_env->mem_write_vaddr); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2289 | } |
| 2290 | |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2291 | static void notdirty_mem_writew(void *opaque, target_phys_addr_t addr, uint32_t val) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2292 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2293 | unsigned long ram_addr; |
| 2294 | int dirty_flags; |
| 2295 | ram_addr = addr - (unsigned long)phys_ram_base; |
| 2296 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2297 | if (!(dirty_flags & CODE_DIRTY_FLAG)) { |
| 2298 | #if !defined(CONFIG_USER_ONLY) |
| 2299 | tb_invalidate_phys_page_fast(ram_addr, 2); |
| 2300 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2301 | #endif |
| 2302 | } |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2303 | stw_p((uint8_t *)(long)addr, val); |
bellard | f32fc64 | 2006-02-08 22:43:39 +0000 | [diff] [blame] | 2304 | #ifdef USE_KQEMU |
| 2305 | if (cpu_single_env->kqemu_enabled && |
| 2306 | (dirty_flags & KQEMU_MODIFY_PAGE_MASK) != KQEMU_MODIFY_PAGE_MASK) |
| 2307 | kqemu_modify_page(cpu_single_env, ram_addr); |
| 2308 | #endif |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 2309 | dirty_flags |= (0xff & ~CODE_DIRTY_FLAG); |
| 2310 | phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] = dirty_flags; |
| 2311 | /* we remove the notdirty callback only if the code has been |
| 2312 | flushed */ |
| 2313 | if (dirty_flags == 0xff) |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 2314 | tlb_set_dirty(cpu_single_env, addr, cpu_single_env->mem_write_vaddr); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2315 | } |
| 2316 | |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2317 | static void notdirty_mem_writel(void *opaque, target_phys_addr_t addr, uint32_t val) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2318 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2319 | unsigned long ram_addr; |
| 2320 | int dirty_flags; |
| 2321 | ram_addr = addr - (unsigned long)phys_ram_base; |
| 2322 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2323 | if (!(dirty_flags & CODE_DIRTY_FLAG)) { |
| 2324 | #if !defined(CONFIG_USER_ONLY) |
| 2325 | tb_invalidate_phys_page_fast(ram_addr, 4); |
| 2326 | dirty_flags = phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS]; |
| 2327 | #endif |
| 2328 | } |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2329 | stl_p((uint8_t *)(long)addr, val); |
bellard | f32fc64 | 2006-02-08 22:43:39 +0000 | [diff] [blame] | 2330 | #ifdef USE_KQEMU |
| 2331 | if (cpu_single_env->kqemu_enabled && |
| 2332 | (dirty_flags & KQEMU_MODIFY_PAGE_MASK) != KQEMU_MODIFY_PAGE_MASK) |
| 2333 | kqemu_modify_page(cpu_single_env, ram_addr); |
| 2334 | #endif |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 2335 | dirty_flags |= (0xff & ~CODE_DIRTY_FLAG); |
| 2336 | phys_ram_dirty[ram_addr >> TARGET_PAGE_BITS] = dirty_flags; |
| 2337 | /* we remove the notdirty callback only if the code has been |
| 2338 | flushed */ |
| 2339 | if (dirty_flags == 0xff) |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 2340 | tlb_set_dirty(cpu_single_env, addr, cpu_single_env->mem_write_vaddr); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2341 | } |
| 2342 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2343 | static CPUReadMemoryFunc *error_mem_read[3] = { |
| 2344 | NULL, /* never used */ |
| 2345 | NULL, /* never used */ |
| 2346 | NULL, /* never used */ |
| 2347 | }; |
| 2348 | |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2349 | static CPUWriteMemoryFunc *notdirty_mem_write[3] = { |
| 2350 | notdirty_mem_writeb, |
| 2351 | notdirty_mem_writew, |
| 2352 | notdirty_mem_writel, |
| 2353 | }; |
| 2354 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2355 | #if defined(CONFIG_SOFTMMU) |
| 2356 | /* Watchpoint access routines. Watchpoints are inserted using TLB tricks, |
| 2357 | so these check for a hit then pass through to the normal out-of-line |
| 2358 | phys routines. */ |
| 2359 | static uint32_t watch_mem_readb(void *opaque, target_phys_addr_t addr) |
| 2360 | { |
| 2361 | return ldub_phys(addr); |
| 2362 | } |
| 2363 | |
| 2364 | static uint32_t watch_mem_readw(void *opaque, target_phys_addr_t addr) |
| 2365 | { |
| 2366 | return lduw_phys(addr); |
| 2367 | } |
| 2368 | |
| 2369 | static uint32_t watch_mem_readl(void *opaque, target_phys_addr_t addr) |
| 2370 | { |
| 2371 | return ldl_phys(addr); |
| 2372 | } |
| 2373 | |
| 2374 | /* Generate a debug exception if a watchpoint has been hit. |
| 2375 | Returns the real physical address of the access. addr will be a host |
balrog | d79acba | 2007-06-26 20:01:13 +0000 | [diff] [blame] | 2376 | address in case of a RAM location. */ |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2377 | static target_ulong check_watchpoint(target_phys_addr_t addr) |
| 2378 | { |
| 2379 | CPUState *env = cpu_single_env; |
| 2380 | target_ulong watch; |
| 2381 | target_ulong retaddr; |
| 2382 | int i; |
| 2383 | |
| 2384 | retaddr = addr; |
| 2385 | for (i = 0; i < env->nb_watchpoints; i++) { |
| 2386 | watch = env->watchpoint[i].vaddr; |
| 2387 | if (((env->mem_write_vaddr ^ watch) & TARGET_PAGE_MASK) == 0) { |
balrog | d79acba | 2007-06-26 20:01:13 +0000 | [diff] [blame] | 2388 | retaddr = addr - env->watchpoint[i].addend; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2389 | if (((addr ^ watch) & ~TARGET_PAGE_MASK) == 0) { |
| 2390 | cpu_single_env->watchpoint_hit = i + 1; |
| 2391 | cpu_interrupt(cpu_single_env, CPU_INTERRUPT_DEBUG); |
| 2392 | break; |
| 2393 | } |
| 2394 | } |
| 2395 | } |
| 2396 | return retaddr; |
| 2397 | } |
| 2398 | |
| 2399 | static void watch_mem_writeb(void *opaque, target_phys_addr_t addr, |
| 2400 | uint32_t val) |
| 2401 | { |
| 2402 | addr = check_watchpoint(addr); |
| 2403 | stb_phys(addr, val); |
| 2404 | } |
| 2405 | |
| 2406 | static void watch_mem_writew(void *opaque, target_phys_addr_t addr, |
| 2407 | uint32_t val) |
| 2408 | { |
| 2409 | addr = check_watchpoint(addr); |
| 2410 | stw_phys(addr, val); |
| 2411 | } |
| 2412 | |
| 2413 | static void watch_mem_writel(void *opaque, target_phys_addr_t addr, |
| 2414 | uint32_t val) |
| 2415 | { |
| 2416 | addr = check_watchpoint(addr); |
| 2417 | stl_phys(addr, val); |
| 2418 | } |
| 2419 | |
| 2420 | static CPUReadMemoryFunc *watch_mem_read[3] = { |
| 2421 | watch_mem_readb, |
| 2422 | watch_mem_readw, |
| 2423 | watch_mem_readl, |
| 2424 | }; |
| 2425 | |
| 2426 | static CPUWriteMemoryFunc *watch_mem_write[3] = { |
| 2427 | watch_mem_writeb, |
| 2428 | watch_mem_writew, |
| 2429 | watch_mem_writel, |
| 2430 | }; |
| 2431 | #endif |
| 2432 | |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2433 | static inline uint32_t subpage_readlen (subpage_t *mmio, target_phys_addr_t addr, |
| 2434 | unsigned int len) |
| 2435 | { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2436 | uint32_t ret; |
| 2437 | unsigned int idx; |
| 2438 | |
| 2439 | idx = SUBPAGE_IDX(addr - mmio->base); |
| 2440 | #if defined(DEBUG_SUBPAGE) |
| 2441 | printf("%s: subpage %p len %d addr " TARGET_FMT_plx " idx %d\n", __func__, |
| 2442 | mmio, len, addr, idx); |
| 2443 | #endif |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 2444 | ret = (**mmio->mem_read[idx][len])(mmio->opaque[idx][0][len], addr); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2445 | |
| 2446 | return ret; |
| 2447 | } |
| 2448 | |
| 2449 | static inline void subpage_writelen (subpage_t *mmio, target_phys_addr_t addr, |
| 2450 | uint32_t value, unsigned int len) |
| 2451 | { |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2452 | unsigned int idx; |
| 2453 | |
| 2454 | idx = SUBPAGE_IDX(addr - mmio->base); |
| 2455 | #if defined(DEBUG_SUBPAGE) |
| 2456 | printf("%s: subpage %p len %d addr " TARGET_FMT_plx " idx %d value %08x\n", __func__, |
| 2457 | mmio, len, addr, idx, value); |
| 2458 | #endif |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 2459 | (**mmio->mem_write[idx][len])(mmio->opaque[idx][1][len], addr, value); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2460 | } |
| 2461 | |
| 2462 | static uint32_t subpage_readb (void *opaque, target_phys_addr_t addr) |
| 2463 | { |
| 2464 | #if defined(DEBUG_SUBPAGE) |
| 2465 | printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); |
| 2466 | #endif |
| 2467 | |
| 2468 | return subpage_readlen(opaque, addr, 0); |
| 2469 | } |
| 2470 | |
| 2471 | static void subpage_writeb (void *opaque, target_phys_addr_t addr, |
| 2472 | uint32_t value) |
| 2473 | { |
| 2474 | #if defined(DEBUG_SUBPAGE) |
| 2475 | printf("%s: addr " TARGET_FMT_plx " val %08x\n", __func__, addr, value); |
| 2476 | #endif |
| 2477 | subpage_writelen(opaque, addr, value, 0); |
| 2478 | } |
| 2479 | |
| 2480 | static uint32_t subpage_readw (void *opaque, target_phys_addr_t addr) |
| 2481 | { |
| 2482 | #if defined(DEBUG_SUBPAGE) |
| 2483 | printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); |
| 2484 | #endif |
| 2485 | |
| 2486 | return subpage_readlen(opaque, addr, 1); |
| 2487 | } |
| 2488 | |
| 2489 | static void subpage_writew (void *opaque, target_phys_addr_t addr, |
| 2490 | uint32_t value) |
| 2491 | { |
| 2492 | #if defined(DEBUG_SUBPAGE) |
| 2493 | printf("%s: addr " TARGET_FMT_plx " val %08x\n", __func__, addr, value); |
| 2494 | #endif |
| 2495 | subpage_writelen(opaque, addr, value, 1); |
| 2496 | } |
| 2497 | |
| 2498 | static uint32_t subpage_readl (void *opaque, target_phys_addr_t addr) |
| 2499 | { |
| 2500 | #if defined(DEBUG_SUBPAGE) |
| 2501 | printf("%s: addr " TARGET_FMT_plx "\n", __func__, addr); |
| 2502 | #endif |
| 2503 | |
| 2504 | return subpage_readlen(opaque, addr, 2); |
| 2505 | } |
| 2506 | |
| 2507 | static void subpage_writel (void *opaque, |
| 2508 | target_phys_addr_t addr, uint32_t value) |
| 2509 | { |
| 2510 | #if defined(DEBUG_SUBPAGE) |
| 2511 | printf("%s: addr " TARGET_FMT_plx " val %08x\n", __func__, addr, value); |
| 2512 | #endif |
| 2513 | subpage_writelen(opaque, addr, value, 2); |
| 2514 | } |
| 2515 | |
| 2516 | static CPUReadMemoryFunc *subpage_read[] = { |
| 2517 | &subpage_readb, |
| 2518 | &subpage_readw, |
| 2519 | &subpage_readl, |
| 2520 | }; |
| 2521 | |
| 2522 | static CPUWriteMemoryFunc *subpage_write[] = { |
| 2523 | &subpage_writeb, |
| 2524 | &subpage_writew, |
| 2525 | &subpage_writel, |
| 2526 | }; |
| 2527 | |
| 2528 | static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end, |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2529 | ram_addr_t memory) |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2530 | { |
| 2531 | int idx, eidx; |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2532 | unsigned int i; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2533 | |
| 2534 | if (start >= TARGET_PAGE_SIZE || end >= TARGET_PAGE_SIZE) |
| 2535 | return -1; |
| 2536 | idx = SUBPAGE_IDX(start); |
| 2537 | eidx = SUBPAGE_IDX(end); |
| 2538 | #if defined(DEBUG_SUBPAGE) |
| 2539 | printf("%s: %p start %08x end %08x idx %08x eidx %08x mem %d\n", __func__, |
| 2540 | mmio, start, end, idx, eidx, memory); |
| 2541 | #endif |
| 2542 | memory >>= IO_MEM_SHIFT; |
| 2543 | for (; idx <= eidx; idx++) { |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2544 | for (i = 0; i < 4; i++) { |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 2545 | if (io_mem_read[memory][i]) { |
| 2546 | mmio->mem_read[idx][i] = &io_mem_read[memory][i]; |
| 2547 | mmio->opaque[idx][0][i] = io_mem_opaque[memory]; |
| 2548 | } |
| 2549 | if (io_mem_write[memory][i]) { |
| 2550 | mmio->mem_write[idx][i] = &io_mem_write[memory][i]; |
| 2551 | mmio->opaque[idx][1][i] = io_mem_opaque[memory]; |
| 2552 | } |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2553 | } |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2554 | } |
| 2555 | |
| 2556 | return 0; |
| 2557 | } |
| 2558 | |
aurel32 | 00f82b8 | 2008-04-27 21:12:55 +0000 | [diff] [blame] | 2559 | static void *subpage_init (target_phys_addr_t base, ram_addr_t *phys, |
| 2560 | ram_addr_t orig_memory) |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 2561 | { |
| 2562 | subpage_t *mmio; |
| 2563 | int subpage_memory; |
| 2564 | |
| 2565 | mmio = qemu_mallocz(sizeof(subpage_t)); |
| 2566 | if (mmio != NULL) { |
| 2567 | mmio->base = base; |
| 2568 | subpage_memory = cpu_register_io_memory(0, subpage_read, subpage_write, mmio); |
| 2569 | #if defined(DEBUG_SUBPAGE) |
| 2570 | printf("%s: %p base " TARGET_FMT_plx " len %08x %d\n", __func__, |
| 2571 | mmio, base, TARGET_PAGE_SIZE, subpage_memory); |
| 2572 | #endif |
| 2573 | *phys = subpage_memory | IO_MEM_SUBPAGE; |
| 2574 | subpage_register(mmio, 0, TARGET_PAGE_SIZE - 1, orig_memory); |
| 2575 | } |
| 2576 | |
| 2577 | return mmio; |
| 2578 | } |
| 2579 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2580 | static void io_mem_init(void) |
| 2581 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2582 | 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] | 2583 | 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] | 2584 | cpu_register_io_memory(IO_MEM_NOTDIRTY >> IO_MEM_SHIFT, error_mem_read, notdirty_mem_write, NULL); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2585 | io_mem_nb = 5; |
| 2586 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 2587 | #if defined(CONFIG_SOFTMMU) |
| 2588 | io_mem_watch = cpu_register_io_memory(-1, watch_mem_read, |
| 2589 | watch_mem_write, NULL); |
| 2590 | #endif |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2591 | /* alloc dirty bits array */ |
bellard | 0a962c0 | 2005-02-10 22:00:27 +0000 | [diff] [blame] | 2592 | phys_ram_dirty = qemu_vmalloc(phys_ram_size >> TARGET_PAGE_BITS); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2593 | memset(phys_ram_dirty, 0xff, phys_ram_size >> TARGET_PAGE_BITS); |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2594 | } |
| 2595 | |
| 2596 | /* mem_read and mem_write are arrays of functions containing the |
| 2597 | function to access byte (index 0), word (index 1) and dword (index |
blueswir1 | 3ee8992 | 2008-01-02 19:45:26 +0000 | [diff] [blame] | 2598 | 2). Functions can be omitted with a NULL function pointer. The |
| 2599 | registered functions may be modified dynamically later. |
| 2600 | If io_index is non zero, the corresponding io zone is |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2601 | modified. If it is zero, a new io zone is allocated. The return |
| 2602 | value can be used with cpu_register_physical_memory(). (-1) is |
| 2603 | returned if error. */ |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2604 | int cpu_register_io_memory(int io_index, |
| 2605 | CPUReadMemoryFunc **mem_read, |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2606 | CPUWriteMemoryFunc **mem_write, |
| 2607 | void *opaque) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2608 | { |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2609 | int i, subwidth = 0; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2610 | |
| 2611 | if (io_index <= 0) { |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 2612 | if (io_mem_nb >= IO_MEM_NB_ENTRIES) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2613 | return -1; |
| 2614 | io_index = io_mem_nb++; |
| 2615 | } else { |
| 2616 | if (io_index >= IO_MEM_NB_ENTRIES) |
| 2617 | return -1; |
| 2618 | } |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 2619 | |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2620 | for(i = 0;i < 3; i++) { |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2621 | if (!mem_read[i] || !mem_write[i]) |
| 2622 | subwidth = IO_MEM_SUBWIDTH; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2623 | io_mem_read[io_index][i] = mem_read[i]; |
| 2624 | io_mem_write[io_index][i] = mem_write[i]; |
| 2625 | } |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2626 | io_mem_opaque[io_index] = opaque; |
blueswir1 | 4254fab | 2008-01-01 16:57:19 +0000 | [diff] [blame] | 2627 | return (io_index << IO_MEM_SHIFT) | subwidth; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2628 | } |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 2629 | |
bellard | 8926b51 | 2004-10-10 15:14:20 +0000 | [diff] [blame] | 2630 | CPUWriteMemoryFunc **cpu_get_io_memory_write(int io_index) |
| 2631 | { |
| 2632 | return io_mem_write[io_index >> IO_MEM_SHIFT]; |
| 2633 | } |
| 2634 | |
| 2635 | CPUReadMemoryFunc **cpu_get_io_memory_read(int io_index) |
| 2636 | { |
| 2637 | return io_mem_read[io_index >> IO_MEM_SHIFT]; |
| 2638 | } |
| 2639 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2640 | /* physical memory access (slow version, mainly for debug) */ |
| 2641 | #if defined(CONFIG_USER_ONLY) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2642 | void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf, |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2643 | int len, int is_write) |
| 2644 | { |
| 2645 | int l, flags; |
| 2646 | target_ulong page; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2647 | void * p; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2648 | |
| 2649 | while (len > 0) { |
| 2650 | page = addr & TARGET_PAGE_MASK; |
| 2651 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 2652 | if (l > len) |
| 2653 | l = len; |
| 2654 | flags = page_get_flags(page); |
| 2655 | if (!(flags & PAGE_VALID)) |
| 2656 | return; |
| 2657 | if (is_write) { |
| 2658 | if (!(flags & PAGE_WRITE)) |
| 2659 | return; |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 2660 | /* XXX: this code should not depend on lock_user */ |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 2661 | if (!(p = lock_user(VERIFY_WRITE, addr, l, 0))) |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 2662 | /* FIXME - should this return an error rather than just fail? */ |
| 2663 | return; |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 2664 | memcpy(p, buf, l); |
| 2665 | unlock_user(p, addr, l); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2666 | } else { |
| 2667 | if (!(flags & PAGE_READ)) |
| 2668 | return; |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 2669 | /* XXX: this code should not depend on lock_user */ |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 2670 | if (!(p = lock_user(VERIFY_READ, addr, l, 1))) |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 2671 | /* FIXME - should this return an error rather than just fail? */ |
| 2672 | return; |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 2673 | memcpy(buf, p, l); |
aurel32 | 5b25757 | 2008-04-28 08:54:59 +0000 | [diff] [blame] | 2674 | unlock_user(p, addr, 0); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2675 | } |
| 2676 | len -= l; |
| 2677 | buf += l; |
| 2678 | addr += l; |
| 2679 | } |
| 2680 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2681 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2682 | #else |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2683 | void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf, |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2684 | int len, int is_write) |
| 2685 | { |
| 2686 | int l, io_index; |
| 2687 | uint8_t *ptr; |
| 2688 | uint32_t val; |
bellard | 2e12669 | 2004-04-25 21:28:44 +0000 | [diff] [blame] | 2689 | target_phys_addr_t page; |
| 2690 | unsigned long pd; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 2691 | PhysPageDesc *p; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2692 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2693 | while (len > 0) { |
| 2694 | page = addr & TARGET_PAGE_MASK; |
| 2695 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 2696 | if (l > len) |
| 2697 | l = len; |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 2698 | p = phys_page_find(page >> TARGET_PAGE_BITS); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2699 | if (!p) { |
| 2700 | pd = IO_MEM_UNASSIGNED; |
| 2701 | } else { |
| 2702 | pd = p->phys_offset; |
| 2703 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2704 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2705 | if (is_write) { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2706 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2707 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 2708 | /* XXX: could force cpu_single_env to NULL to avoid |
| 2709 | potential bugs */ |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2710 | if (l >= 4 && ((addr & 3) == 0)) { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 2711 | /* 32 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2712 | val = ldl_p(buf); |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2713 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2714 | l = 4; |
| 2715 | } else if (l >= 2 && ((addr & 1) == 0)) { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 2716 | /* 16 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2717 | val = lduw_p(buf); |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2718 | io_mem_write[io_index][1](io_mem_opaque[io_index], addr, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2719 | l = 2; |
| 2720 | } else { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 2721 | /* 8 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2722 | val = ldub_p(buf); |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2723 | io_mem_write[io_index][0](io_mem_opaque[io_index], addr, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2724 | l = 1; |
| 2725 | } |
| 2726 | } else { |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 2727 | unsigned long addr1; |
| 2728 | addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2729 | /* RAM case */ |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 2730 | ptr = phys_ram_base + addr1; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2731 | memcpy(ptr, buf, l); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2732 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 2733 | /* invalidate code */ |
| 2734 | tb_invalidate_phys_page_range(addr1, addr1 + l, 0); |
| 2735 | /* set dirty bit */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2736 | phys_ram_dirty[addr1 >> TARGET_PAGE_BITS] |= |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 2737 | (0xff & ~CODE_DIRTY_FLAG); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2738 | } |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2739 | } |
| 2740 | } else { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2741 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM && |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 2742 | !(pd & IO_MEM_ROMD)) { |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2743 | /* I/O case */ |
| 2744 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
| 2745 | if (l >= 4 && ((addr & 3) == 0)) { |
| 2746 | /* 32 bit read access */ |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2747 | val = io_mem_read[io_index][2](io_mem_opaque[io_index], addr); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2748 | stl_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2749 | l = 4; |
| 2750 | } else if (l >= 2 && ((addr & 1) == 0)) { |
| 2751 | /* 16 bit read access */ |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2752 | val = io_mem_read[io_index][1](io_mem_opaque[io_index], addr); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2753 | stw_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2754 | l = 2; |
| 2755 | } else { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 2756 | /* 8 bit read access */ |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 2757 | val = io_mem_read[io_index][0](io_mem_opaque[io_index], addr); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 2758 | stb_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2759 | l = 1; |
| 2760 | } |
| 2761 | } else { |
| 2762 | /* RAM case */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2763 | ptr = phys_ram_base + (pd & TARGET_PAGE_MASK) + |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 2764 | (addr & ~TARGET_PAGE_MASK); |
| 2765 | memcpy(buf, ptr, l); |
| 2766 | } |
| 2767 | } |
| 2768 | len -= l; |
| 2769 | buf += l; |
| 2770 | addr += l; |
| 2771 | } |
| 2772 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2773 | |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 2774 | /* used for ROM loading : can write in RAM and ROM */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2775 | void cpu_physical_memory_write_rom(target_phys_addr_t addr, |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 2776 | const uint8_t *buf, int len) |
| 2777 | { |
| 2778 | int l; |
| 2779 | uint8_t *ptr; |
| 2780 | target_phys_addr_t page; |
| 2781 | unsigned long pd; |
| 2782 | PhysPageDesc *p; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2783 | |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 2784 | while (len > 0) { |
| 2785 | page = addr & TARGET_PAGE_MASK; |
| 2786 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 2787 | if (l > len) |
| 2788 | l = len; |
| 2789 | p = phys_page_find(page >> TARGET_PAGE_BITS); |
| 2790 | if (!p) { |
| 2791 | pd = IO_MEM_UNASSIGNED; |
| 2792 | } else { |
| 2793 | pd = p->phys_offset; |
| 2794 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2795 | |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 2796 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM && |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 2797 | (pd & ~TARGET_PAGE_MASK) != IO_MEM_ROM && |
| 2798 | !(pd & IO_MEM_ROMD)) { |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 2799 | /* do nothing */ |
| 2800 | } else { |
| 2801 | unsigned long addr1; |
| 2802 | addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK); |
| 2803 | /* ROM/RAM case */ |
| 2804 | ptr = phys_ram_base + addr1; |
| 2805 | memcpy(ptr, buf, l); |
| 2806 | } |
| 2807 | len -= l; |
| 2808 | buf += l; |
| 2809 | addr += l; |
| 2810 | } |
| 2811 | } |
| 2812 | |
| 2813 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2814 | /* warning: addr must be aligned */ |
| 2815 | uint32_t ldl_phys(target_phys_addr_t addr) |
| 2816 | { |
| 2817 | int io_index; |
| 2818 | uint8_t *ptr; |
| 2819 | uint32_t val; |
| 2820 | unsigned long pd; |
| 2821 | PhysPageDesc *p; |
| 2822 | |
| 2823 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2824 | if (!p) { |
| 2825 | pd = IO_MEM_UNASSIGNED; |
| 2826 | } else { |
| 2827 | pd = p->phys_offset; |
| 2828 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2829 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2830 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM && |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 2831 | !(pd & IO_MEM_ROMD)) { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2832 | /* I/O case */ |
| 2833 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
| 2834 | val = io_mem_read[io_index][2](io_mem_opaque[io_index], addr); |
| 2835 | } else { |
| 2836 | /* RAM case */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2837 | ptr = phys_ram_base + (pd & TARGET_PAGE_MASK) + |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2838 | (addr & ~TARGET_PAGE_MASK); |
| 2839 | val = ldl_p(ptr); |
| 2840 | } |
| 2841 | return val; |
| 2842 | } |
| 2843 | |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 2844 | /* warning: addr must be aligned */ |
| 2845 | uint64_t ldq_phys(target_phys_addr_t addr) |
| 2846 | { |
| 2847 | int io_index; |
| 2848 | uint8_t *ptr; |
| 2849 | uint64_t val; |
| 2850 | unsigned long pd; |
| 2851 | PhysPageDesc *p; |
| 2852 | |
| 2853 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2854 | if (!p) { |
| 2855 | pd = IO_MEM_UNASSIGNED; |
| 2856 | } else { |
| 2857 | pd = p->phys_offset; |
| 2858 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2859 | |
bellard | 2a4188a | 2006-06-25 21:54:59 +0000 | [diff] [blame] | 2860 | if ((pd & ~TARGET_PAGE_MASK) > IO_MEM_ROM && |
| 2861 | !(pd & IO_MEM_ROMD)) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 2862 | /* I/O case */ |
| 2863 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
| 2864 | #ifdef TARGET_WORDS_BIGENDIAN |
| 2865 | val = (uint64_t)io_mem_read[io_index][2](io_mem_opaque[io_index], addr) << 32; |
| 2866 | val |= io_mem_read[io_index][2](io_mem_opaque[io_index], addr + 4); |
| 2867 | #else |
| 2868 | val = io_mem_read[io_index][2](io_mem_opaque[io_index], addr); |
| 2869 | val |= (uint64_t)io_mem_read[io_index][2](io_mem_opaque[io_index], addr + 4) << 32; |
| 2870 | #endif |
| 2871 | } else { |
| 2872 | /* RAM case */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2873 | ptr = phys_ram_base + (pd & TARGET_PAGE_MASK) + |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 2874 | (addr & ~TARGET_PAGE_MASK); |
| 2875 | val = ldq_p(ptr); |
| 2876 | } |
| 2877 | return val; |
| 2878 | } |
| 2879 | |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 2880 | /* XXX: optimize */ |
| 2881 | uint32_t ldub_phys(target_phys_addr_t addr) |
| 2882 | { |
| 2883 | uint8_t val; |
| 2884 | cpu_physical_memory_read(addr, &val, 1); |
| 2885 | return val; |
| 2886 | } |
| 2887 | |
| 2888 | /* XXX: optimize */ |
| 2889 | uint32_t lduw_phys(target_phys_addr_t addr) |
| 2890 | { |
| 2891 | uint16_t val; |
| 2892 | cpu_physical_memory_read(addr, (uint8_t *)&val, 2); |
| 2893 | return tswap16(val); |
| 2894 | } |
| 2895 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2896 | /* warning: addr must be aligned. The ram page is not masked as dirty |
| 2897 | and the code inside is not invalidated. It is useful if the dirty |
| 2898 | bits are used to track modified PTEs */ |
| 2899 | void stl_phys_notdirty(target_phys_addr_t addr, uint32_t val) |
| 2900 | { |
| 2901 | int io_index; |
| 2902 | uint8_t *ptr; |
| 2903 | unsigned long pd; |
| 2904 | PhysPageDesc *p; |
| 2905 | |
| 2906 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2907 | if (!p) { |
| 2908 | pd = IO_MEM_UNASSIGNED; |
| 2909 | } else { |
| 2910 | pd = p->phys_offset; |
| 2911 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2912 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2913 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2914 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
| 2915 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val); |
| 2916 | } else { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2917 | ptr = phys_ram_base + (pd & TARGET_PAGE_MASK) + |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2918 | (addr & ~TARGET_PAGE_MASK); |
| 2919 | stl_p(ptr, val); |
| 2920 | } |
| 2921 | } |
| 2922 | |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 2923 | void stq_phys_notdirty(target_phys_addr_t addr, uint64_t val) |
| 2924 | { |
| 2925 | int io_index; |
| 2926 | uint8_t *ptr; |
| 2927 | unsigned long pd; |
| 2928 | PhysPageDesc *p; |
| 2929 | |
| 2930 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2931 | if (!p) { |
| 2932 | pd = IO_MEM_UNASSIGNED; |
| 2933 | } else { |
| 2934 | pd = p->phys_offset; |
| 2935 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2936 | |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 2937 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
| 2938 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
| 2939 | #ifdef TARGET_WORDS_BIGENDIAN |
| 2940 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val >> 32); |
| 2941 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr + 4, val); |
| 2942 | #else |
| 2943 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val); |
| 2944 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr + 4, val >> 32); |
| 2945 | #endif |
| 2946 | } else { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2947 | ptr = phys_ram_base + (pd & TARGET_PAGE_MASK) + |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 2948 | (addr & ~TARGET_PAGE_MASK); |
| 2949 | stq_p(ptr, val); |
| 2950 | } |
| 2951 | } |
| 2952 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2953 | /* warning: addr must be aligned */ |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2954 | void stl_phys(target_phys_addr_t addr, uint32_t val) |
| 2955 | { |
| 2956 | int io_index; |
| 2957 | uint8_t *ptr; |
| 2958 | unsigned long pd; |
| 2959 | PhysPageDesc *p; |
| 2960 | |
| 2961 | p = phys_page_find(addr >> TARGET_PAGE_BITS); |
| 2962 | if (!p) { |
| 2963 | pd = IO_MEM_UNASSIGNED; |
| 2964 | } else { |
| 2965 | pd = p->phys_offset; |
| 2966 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2967 | |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2968 | if ((pd & ~TARGET_PAGE_MASK) != IO_MEM_RAM) { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2969 | io_index = (pd >> IO_MEM_SHIFT) & (IO_MEM_NB_ENTRIES - 1); |
| 2970 | io_mem_write[io_index][2](io_mem_opaque[io_index], addr, val); |
| 2971 | } else { |
| 2972 | unsigned long addr1; |
| 2973 | addr1 = (pd & TARGET_PAGE_MASK) + (addr & ~TARGET_PAGE_MASK); |
| 2974 | /* RAM case */ |
| 2975 | ptr = phys_ram_base + addr1; |
| 2976 | stl_p(ptr, val); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2977 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 2978 | /* invalidate code */ |
| 2979 | tb_invalidate_phys_page_range(addr1, addr1 + 4, 0); |
| 2980 | /* set dirty bit */ |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 2981 | phys_ram_dirty[addr1 >> TARGET_PAGE_BITS] |= |
| 2982 | (0xff & ~CODE_DIRTY_FLAG); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 2983 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 2984 | } |
| 2985 | } |
| 2986 | |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 2987 | /* XXX: optimize */ |
| 2988 | void stb_phys(target_phys_addr_t addr, uint32_t val) |
| 2989 | { |
| 2990 | uint8_t v = val; |
| 2991 | cpu_physical_memory_write(addr, &v, 1); |
| 2992 | } |
| 2993 | |
| 2994 | /* XXX: optimize */ |
| 2995 | void stw_phys(target_phys_addr_t addr, uint32_t val) |
| 2996 | { |
| 2997 | uint16_t v = tswap16(val); |
| 2998 | cpu_physical_memory_write(addr, (const uint8_t *)&v, 2); |
| 2999 | } |
| 3000 | |
| 3001 | /* XXX: optimize */ |
| 3002 | void stq_phys(target_phys_addr_t addr, uint64_t val) |
| 3003 | { |
| 3004 | val = tswap64(val); |
| 3005 | cpu_physical_memory_write(addr, (const uint8_t *)&val, 8); |
| 3006 | } |
| 3007 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3008 | #endif |
| 3009 | |
| 3010 | /* virtual memory access for debug */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3011 | int cpu_memory_rw_debug(CPUState *env, target_ulong addr, |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 3012 | uint8_t *buf, int len, int is_write) |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3013 | { |
| 3014 | int l; |
j_mayer | 9b3c35e | 2007-04-07 11:21:28 +0000 | [diff] [blame] | 3015 | target_phys_addr_t phys_addr; |
| 3016 | target_ulong page; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3017 | |
| 3018 | while (len > 0) { |
| 3019 | page = addr & TARGET_PAGE_MASK; |
| 3020 | phys_addr = cpu_get_phys_page_debug(env, page); |
| 3021 | /* if no physical page mapped, return an error */ |
| 3022 | if (phys_addr == -1) |
| 3023 | return -1; |
| 3024 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3025 | if (l > len) |
| 3026 | l = len; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3027 | cpu_physical_memory_rw(phys_addr + (addr & ~TARGET_PAGE_MASK), |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 3028 | buf, l, is_write); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3029 | len -= l; |
| 3030 | buf += l; |
| 3031 | addr += l; |
| 3032 | } |
| 3033 | return 0; |
| 3034 | } |
| 3035 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3036 | void dump_exec_info(FILE *f, |
| 3037 | int (*cpu_fprintf)(FILE *f, const char *fmt, ...)) |
| 3038 | { |
| 3039 | int i, target_code_size, max_target_code_size; |
| 3040 | int direct_jmp_count, direct_jmp2_count, cross_page; |
| 3041 | TranslationBlock *tb; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3042 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3043 | target_code_size = 0; |
| 3044 | max_target_code_size = 0; |
| 3045 | cross_page = 0; |
| 3046 | direct_jmp_count = 0; |
| 3047 | direct_jmp2_count = 0; |
| 3048 | for(i = 0; i < nb_tbs; i++) { |
| 3049 | tb = &tbs[i]; |
| 3050 | target_code_size += tb->size; |
| 3051 | if (tb->size > max_target_code_size) |
| 3052 | max_target_code_size = tb->size; |
| 3053 | if (tb->page_addr[1] != -1) |
| 3054 | cross_page++; |
| 3055 | if (tb->tb_next_offset[0] != 0xffff) { |
| 3056 | direct_jmp_count++; |
| 3057 | if (tb->tb_next_offset[1] != 0xffff) { |
| 3058 | direct_jmp2_count++; |
| 3059 | } |
| 3060 | } |
| 3061 | } |
| 3062 | /* XXX: avoid using doubles ? */ |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 3063 | cpu_fprintf(f, "Translation buffer state:\n"); |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 3064 | cpu_fprintf(f, "gen code size %ld/%ld\n", |
| 3065 | code_gen_ptr - code_gen_buffer, code_gen_buffer_max_size); |
| 3066 | cpu_fprintf(f, "TB count %d/%d\n", |
| 3067 | nb_tbs, code_gen_max_blocks); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3068 | cpu_fprintf(f, "TB avg target size %d max=%d bytes\n", |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3069 | nb_tbs ? target_code_size / nb_tbs : 0, |
| 3070 | max_target_code_size); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3071 | 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] | 3072 | nb_tbs ? (code_gen_ptr - code_gen_buffer) / nb_tbs : 0, |
| 3073 | 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] | 3074 | cpu_fprintf(f, "cross page TB count %d (%d%%)\n", |
| 3075 | cross_page, |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3076 | nb_tbs ? (cross_page * 100) / nb_tbs : 0); |
| 3077 | cpu_fprintf(f, "direct jump count %d (%d%%) (2 jumps=%d %d%%)\n", |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3078 | direct_jmp_count, |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3079 | nb_tbs ? (direct_jmp_count * 100) / nb_tbs : 0, |
| 3080 | direct_jmp2_count, |
| 3081 | nb_tbs ? (direct_jmp2_count * 100) / nb_tbs : 0); |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 3082 | cpu_fprintf(f, "\nStatistics:\n"); |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3083 | cpu_fprintf(f, "TB flush count %d\n", tb_flush_count); |
| 3084 | cpu_fprintf(f, "TB invalidate count %d\n", tb_phys_invalidate_count); |
| 3085 | cpu_fprintf(f, "TLB flush count %d\n", tlb_flush_count); |
bellard | b67d9a5 | 2008-05-23 09:57:34 +0000 | [diff] [blame] | 3086 | tcg_dump_info(f, cpu_fprintf); |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 3087 | } |
| 3088 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3089 | #if !defined(CONFIG_USER_ONLY) |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 3090 | |
| 3091 | #define MMUSUFFIX _cmmu |
| 3092 | #define GETPC() NULL |
| 3093 | #define env cpu_single_env |
bellard | b769d8f | 2004-10-03 15:07:13 +0000 | [diff] [blame] | 3094 | #define SOFTMMU_CODE_ACCESS |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 3095 | |
| 3096 | #define SHIFT 0 |
| 3097 | #include "softmmu_template.h" |
| 3098 | |
| 3099 | #define SHIFT 1 |
| 3100 | #include "softmmu_template.h" |
| 3101 | |
| 3102 | #define SHIFT 2 |
| 3103 | #include "softmmu_template.h" |
| 3104 | |
| 3105 | #define SHIFT 3 |
| 3106 | #include "softmmu_template.h" |
| 3107 | |
| 3108 | #undef env |
| 3109 | |
| 3110 | #endif |