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 |
Blue Swirl | 8167ee8 | 2009-07-16 20:47:01 +0000 | [diff] [blame] | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 18 | */ |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 19 | #include "config.h" |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 20 | #ifdef _WIN32 |
| 21 | #include <windows.h> |
| 22 | #else |
bellard | a98d49b | 2004-11-14 16:22:05 +0000 | [diff] [blame] | 23 | #include <sys/types.h> |
bellard | d5a8f07 | 2004-09-29 21:15:28 +0000 | [diff] [blame] | 24 | #include <sys/mman.h> |
| 25 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 26 | |
Stefan Weil | 055403b | 2010-10-22 23:03:32 +0200 | [diff] [blame] | 27 | #include "qemu-common.h" |
bellard | 6180a18 | 2003-09-30 21:04:53 +0000 | [diff] [blame] | 28 | #include "cpu.h" |
bellard | b67d9a5 | 2008-05-23 09:57:34 +0000 | [diff] [blame] | 29 | #include "tcg.h" |
pbrook | b3c7724 | 2008-06-30 16:31:04 +0000 | [diff] [blame] | 30 | #include "hw/hw.h" |
Alex Williamson | cc9e98c | 2010-06-25 11:09:43 -0600 | [diff] [blame] | 31 | #include "hw/qdev.h" |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 32 | #include "osdep.h" |
aliguori | 7ba1e61 | 2008-11-05 16:04:33 +0000 | [diff] [blame] | 33 | #include "kvm.h" |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 34 | #include "hw/xen.h" |
Blue Swirl | 29e922b | 2010-03-29 19:24:00 +0000 | [diff] [blame] | 35 | #include "qemu-timer.h" |
Avi Kivity | 62152b8 | 2011-07-26 14:26:14 +0300 | [diff] [blame] | 36 | #include "memory.h" |
| 37 | #include "exec-memory.h" |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 38 | #if defined(CONFIG_USER_ONLY) |
| 39 | #include <qemu.h> |
Juergen Lock | f01576f | 2010-03-25 22:32:16 +0100 | [diff] [blame] | 40 | #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) |
| 41 | #include <sys/param.h> |
| 42 | #if __FreeBSD_version >= 700104 |
| 43 | #define HAVE_KINFO_GETVMMAP |
| 44 | #define sigqueue sigqueue_freebsd /* avoid redefinition */ |
| 45 | #include <sys/time.h> |
| 46 | #include <sys/proc.h> |
| 47 | #include <machine/profile.h> |
| 48 | #define _KERNEL |
| 49 | #include <sys/user.h> |
| 50 | #undef _KERNEL |
| 51 | #undef sigqueue |
| 52 | #include <libutil.h> |
| 53 | #endif |
| 54 | #endif |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 55 | #else /* !CONFIG_USER_ONLY */ |
| 56 | #include "xen-mapcache.h" |
Stefano Stabellini | 6506e4f | 2011-05-19 18:35:44 +0100 | [diff] [blame] | 57 | #include "trace.h" |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 58 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 59 | |
Blue Swirl | 0cac1b6 | 2012-04-09 16:50:52 +0000 | [diff] [blame] | 60 | #include "cputlb.h" |
| 61 | |
Avi Kivity | 67d95c1 | 2011-12-15 15:25:22 +0200 | [diff] [blame] | 62 | #define WANT_EXEC_OBSOLETE |
| 63 | #include "exec-obsolete.h" |
| 64 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 65 | //#define DEBUG_TB_INVALIDATE |
bellard | 66e85a2 | 2003-06-24 13:28:12 +0000 | [diff] [blame] | 66 | //#define DEBUG_FLUSH |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 67 | //#define DEBUG_UNASSIGNED |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 68 | |
| 69 | /* make various TB consistency checks */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 70 | //#define DEBUG_TB_CHECK |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 71 | |
ths | 1196be3 | 2007-03-17 15:17:58 +0000 | [diff] [blame] | 72 | //#define DEBUG_IOPORT |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 73 | //#define DEBUG_SUBPAGE |
ths | 1196be3 | 2007-03-17 15:17:58 +0000 | [diff] [blame] | 74 | |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 75 | #if !defined(CONFIG_USER_ONLY) |
| 76 | /* TB consistency checks only implemented for usermode emulation. */ |
| 77 | #undef DEBUG_TB_CHECK |
| 78 | #endif |
| 79 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 80 | #define SMC_BITMAP_USE_THRESHOLD 10 |
| 81 | |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 82 | static TranslationBlock *tbs; |
Stefan Weil | 24ab68a | 2010-07-19 18:23:17 +0200 | [diff] [blame] | 83 | static int code_gen_max_blocks; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 84 | TranslationBlock *tb_phys_hash[CODE_GEN_PHYS_HASH_SIZE]; |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 85 | static int nb_tbs; |
bellard | eb51d10 | 2003-05-14 21:51:13 +0000 | [diff] [blame] | 86 | /* any access to the tbs or the page table must use this lock */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 87 | spinlock_t tb_lock = SPIN_LOCK_UNLOCKED; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 88 | |
blueswir1 | 141ac46 | 2008-07-26 15:05:57 +0000 | [diff] [blame] | 89 | #if defined(__arm__) || defined(__sparc_v9__) |
| 90 | /* The prologue must be reachable with a direct jump. ARM and Sparc64 |
| 91 | have limited branch ranges (possibly also PPC) so place it in a |
blueswir1 | d03d860 | 2008-07-10 17:21:31 +0000 | [diff] [blame] | 92 | section close to code segment. */ |
| 93 | #define code_gen_section \ |
| 94 | __attribute__((__section__(".gen_code"))) \ |
| 95 | __attribute__((aligned (32))) |
Stefan Weil | 6840981 | 2012-04-04 07:45:21 +0200 | [diff] [blame] | 96 | #elif defined(_WIN32) && !defined(_WIN64) |
Stefan Weil | f8e2af1 | 2009-06-18 23:04:48 +0200 | [diff] [blame] | 97 | #define code_gen_section \ |
| 98 | __attribute__((aligned (16))) |
blueswir1 | d03d860 | 2008-07-10 17:21:31 +0000 | [diff] [blame] | 99 | #else |
| 100 | #define code_gen_section \ |
| 101 | __attribute__((aligned (32))) |
| 102 | #endif |
| 103 | |
| 104 | uint8_t code_gen_prologue[1024] code_gen_section; |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 105 | static uint8_t *code_gen_buffer; |
| 106 | static unsigned long code_gen_buffer_size; |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 107 | /* threshold to flush the translated code buffer */ |
blueswir1 | bdaf78e | 2008-10-04 07:24:27 +0000 | [diff] [blame] | 108 | static unsigned long code_gen_buffer_max_size; |
Stefan Weil | 24ab68a | 2010-07-19 18:23:17 +0200 | [diff] [blame] | 109 | static uint8_t *code_gen_ptr; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 110 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 111 | #if !defined(CONFIG_USER_ONLY) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 112 | int phys_ram_fd; |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 113 | static int in_migration; |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 114 | |
Paolo Bonzini | 85d59fe | 2011-08-12 13:18:14 +0200 | [diff] [blame] | 115 | RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list.blocks) }; |
Avi Kivity | 62152b8 | 2011-07-26 14:26:14 +0300 | [diff] [blame] | 116 | |
| 117 | static MemoryRegion *system_memory; |
Avi Kivity | 309cb47 | 2011-08-08 16:09:03 +0300 | [diff] [blame] | 118 | static MemoryRegion *system_io; |
Avi Kivity | 62152b8 | 2011-07-26 14:26:14 +0300 | [diff] [blame] | 119 | |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 120 | MemoryRegion io_mem_ram, io_mem_rom, io_mem_unassigned, io_mem_notdirty; |
Avi Kivity | de712f9 | 2012-01-02 12:41:07 +0200 | [diff] [blame] | 121 | static MemoryRegion io_mem_subpage_ram; |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 122 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 123 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 124 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 125 | CPUArchState *first_cpu; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 126 | /* current CPU in the current thread. It is only valid inside |
| 127 | cpu_exec() */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 128 | DEFINE_TLS(CPUArchState *,cpu_single_env); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 129 | /* 0 = Do not count executed instructions. |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 130 | 1 = Precise instruction counting. |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 131 | 2 = Adaptive rate instruction counting. */ |
| 132 | int use_icount = 0; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 133 | |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 134 | typedef struct PageDesc { |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 135 | /* list of TBs intersecting this ram page */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 136 | TranslationBlock *first_tb; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 137 | /* in order to optimize self modifying code, we count the number |
| 138 | of lookups we do to a given page to use a bitmap */ |
| 139 | unsigned int code_write_count; |
| 140 | uint8_t *code_bitmap; |
| 141 | #if defined(CONFIG_USER_ONLY) |
| 142 | unsigned long flags; |
| 143 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 144 | } PageDesc; |
| 145 | |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 146 | /* In system mode we want L1_MAP to be based on ram offsets, |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 147 | while in user mode we want it to be based on virtual addresses. */ |
| 148 | #if !defined(CONFIG_USER_ONLY) |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 149 | #if HOST_LONG_BITS < TARGET_PHYS_ADDR_SPACE_BITS |
| 150 | # define L1_MAP_ADDR_SPACE_BITS HOST_LONG_BITS |
| 151 | #else |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 152 | # define L1_MAP_ADDR_SPACE_BITS TARGET_PHYS_ADDR_SPACE_BITS |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 153 | #endif |
j_mayer | bedb69e | 2007-04-05 20:08:21 +0000 | [diff] [blame] | 154 | #else |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 155 | # define L1_MAP_ADDR_SPACE_BITS TARGET_VIRT_ADDR_SPACE_BITS |
j_mayer | bedb69e | 2007-04-05 20:08:21 +0000 | [diff] [blame] | 156 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 157 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 158 | /* Size of the L2 (and L3, etc) page tables. */ |
| 159 | #define L2_BITS 10 |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 160 | #define L2_SIZE (1 << L2_BITS) |
| 161 | |
Avi Kivity | 3eef53d | 2012-02-10 14:57:31 +0200 | [diff] [blame] | 162 | #define P_L2_LEVELS \ |
| 163 | (((TARGET_PHYS_ADDR_SPACE_BITS - TARGET_PAGE_BITS - 1) / L2_BITS) + 1) |
| 164 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 165 | /* The bits remaining after N lower levels of page tables. */ |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 166 | #define V_L1_BITS_REM \ |
| 167 | ((L1_MAP_ADDR_SPACE_BITS - TARGET_PAGE_BITS) % L2_BITS) |
| 168 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 169 | #if V_L1_BITS_REM < 4 |
| 170 | #define V_L1_BITS (V_L1_BITS_REM + L2_BITS) |
| 171 | #else |
| 172 | #define V_L1_BITS V_L1_BITS_REM |
| 173 | #endif |
| 174 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 175 | #define V_L1_SIZE ((target_ulong)1 << V_L1_BITS) |
| 176 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 177 | #define V_L1_SHIFT (L1_MAP_ADDR_SPACE_BITS - TARGET_PAGE_BITS - V_L1_BITS) |
| 178 | |
Stefan Weil | c6d5067 | 2012-03-16 20:23:49 +0100 | [diff] [blame] | 179 | uintptr_t qemu_real_host_page_size; |
| 180 | uintptr_t qemu_host_page_size; |
| 181 | uintptr_t qemu_host_page_mask; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 182 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 183 | /* This is a multi-level map on the virtual address space. |
| 184 | The bottom level has pointers to PageDesc. */ |
| 185 | static void *l1_map[V_L1_SIZE]; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 186 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 187 | #if !defined(CONFIG_USER_ONLY) |
Avi Kivity | 4346ae3 | 2012-02-10 17:00:01 +0200 | [diff] [blame] | 188 | typedef struct PhysPageEntry PhysPageEntry; |
| 189 | |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 190 | static MemoryRegionSection *phys_sections; |
| 191 | static unsigned phys_sections_nb, phys_sections_nb_alloc; |
| 192 | static uint16_t phys_section_unassigned; |
Avi Kivity | aa10223 | 2012-03-08 17:06:55 +0200 | [diff] [blame] | 193 | static uint16_t phys_section_notdirty; |
| 194 | static uint16_t phys_section_rom; |
| 195 | static uint16_t phys_section_watch; |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 196 | |
Avi Kivity | 4346ae3 | 2012-02-10 17:00:01 +0200 | [diff] [blame] | 197 | struct PhysPageEntry { |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 198 | uint16_t is_leaf : 1; |
| 199 | /* index into phys_sections (is_leaf) or phys_map_nodes (!is_leaf) */ |
| 200 | uint16_t ptr : 15; |
Avi Kivity | 4346ae3 | 2012-02-10 17:00:01 +0200 | [diff] [blame] | 201 | }; |
| 202 | |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 203 | /* Simple allocator for PhysPageEntry nodes */ |
| 204 | static PhysPageEntry (*phys_map_nodes)[L2_SIZE]; |
| 205 | static unsigned phys_map_nodes_nb, phys_map_nodes_nb_alloc; |
| 206 | |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 207 | #define PHYS_MAP_NODE_NIL (((uint16_t)~0) >> 1) |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 208 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 209 | /* This is a multi-level map on the physical address space. |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 210 | The bottom level has pointers to MemoryRegionSections. */ |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 211 | static PhysPageEntry phys_map = { .ptr = PHYS_MAP_NODE_NIL, .is_leaf = 0 }; |
Paul Brook | 6d9a130 | 2010-02-28 23:55:53 +0000 | [diff] [blame] | 212 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 213 | static void io_mem_init(void); |
Avi Kivity | 62152b8 | 2011-07-26 14:26:14 +0300 | [diff] [blame] | 214 | static void memory_map_init(void); |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 215 | |
Avi Kivity | 1ec9b90 | 2012-01-02 12:47:48 +0200 | [diff] [blame] | 216 | static MemoryRegion io_mem_watch; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 217 | #endif |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 218 | |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 219 | /* log support */ |
Juha Riihimäki | 1e8b27c | 2009-12-03 15:56:02 +0200 | [diff] [blame] | 220 | #ifdef WIN32 |
| 221 | static const char *logfilename = "qemu.log"; |
| 222 | #else |
blueswir1 | d9b630f | 2008-10-05 09:57:08 +0000 | [diff] [blame] | 223 | static const char *logfilename = "/tmp/qemu.log"; |
Juha Riihimäki | 1e8b27c | 2009-12-03 15:56:02 +0200 | [diff] [blame] | 224 | #endif |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 225 | FILE *logfile; |
| 226 | int loglevel; |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 227 | static int log_append = 0; |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 228 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 229 | /* statistics */ |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 230 | static int tb_flush_count; |
| 231 | static int tb_phys_invalidate_count; |
| 232 | |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 233 | #ifdef _WIN32 |
| 234 | static void map_exec(void *addr, long size) |
| 235 | { |
| 236 | DWORD old_protect; |
| 237 | VirtualProtect(addr, size, |
| 238 | PAGE_EXECUTE_READWRITE, &old_protect); |
| 239 | |
| 240 | } |
| 241 | #else |
| 242 | static void map_exec(void *addr, long size) |
| 243 | { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 244 | unsigned long start, end, page_size; |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 245 | |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 246 | page_size = getpagesize(); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 247 | start = (unsigned long)addr; |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 248 | start &= ~(page_size - 1); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 249 | |
| 250 | end = (unsigned long)addr + size; |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 251 | end += page_size - 1; |
| 252 | end &= ~(page_size - 1); |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 253 | |
| 254 | mprotect((void *)start, end - start, |
| 255 | PROT_READ | PROT_WRITE | PROT_EXEC); |
| 256 | } |
| 257 | #endif |
| 258 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 259 | static void page_init(void) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 260 | { |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 261 | /* NOTE: we can always suppose that qemu_host_page_size >= |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 262 | TARGET_PAGE_SIZE */ |
aliguori | c2b48b6 | 2008-11-11 22:06:42 +0000 | [diff] [blame] | 263 | #ifdef _WIN32 |
| 264 | { |
| 265 | SYSTEM_INFO system_info; |
| 266 | |
| 267 | GetSystemInfo(&system_info); |
| 268 | qemu_real_host_page_size = system_info.dwPageSize; |
| 269 | } |
| 270 | #else |
| 271 | qemu_real_host_page_size = getpagesize(); |
| 272 | #endif |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 273 | if (qemu_host_page_size == 0) |
| 274 | qemu_host_page_size = qemu_real_host_page_size; |
| 275 | if (qemu_host_page_size < TARGET_PAGE_SIZE) |
| 276 | qemu_host_page_size = TARGET_PAGE_SIZE; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 277 | qemu_host_page_mask = ~(qemu_host_page_size - 1); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 278 | |
Paul Brook | 2e9a571 | 2010-05-05 16:32:59 +0100 | [diff] [blame] | 279 | #if defined(CONFIG_BSD) && defined(CONFIG_USER_ONLY) |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 280 | { |
Juergen Lock | f01576f | 2010-03-25 22:32:16 +0100 | [diff] [blame] | 281 | #ifdef HAVE_KINFO_GETVMMAP |
| 282 | struct kinfo_vmentry *freep; |
| 283 | int i, cnt; |
| 284 | |
| 285 | freep = kinfo_getvmmap(getpid(), &cnt); |
| 286 | if (freep) { |
| 287 | mmap_lock(); |
| 288 | for (i = 0; i < cnt; i++) { |
| 289 | unsigned long startaddr, endaddr; |
| 290 | |
| 291 | startaddr = freep[i].kve_start; |
| 292 | endaddr = freep[i].kve_end; |
| 293 | if (h2g_valid(startaddr)) { |
| 294 | startaddr = h2g(startaddr) & TARGET_PAGE_MASK; |
| 295 | |
| 296 | if (h2g_valid(endaddr)) { |
| 297 | endaddr = h2g(endaddr); |
Aurelien Jarno | fd43690 | 2010-04-10 17:20:36 +0200 | [diff] [blame] | 298 | page_set_flags(startaddr, endaddr, PAGE_RESERVED); |
Juergen Lock | f01576f | 2010-03-25 22:32:16 +0100 | [diff] [blame] | 299 | } else { |
| 300 | #if TARGET_ABI_BITS <= L1_MAP_ADDR_SPACE_BITS |
| 301 | endaddr = ~0ul; |
Aurelien Jarno | fd43690 | 2010-04-10 17:20:36 +0200 | [diff] [blame] | 302 | page_set_flags(startaddr, endaddr, PAGE_RESERVED); |
Juergen Lock | f01576f | 2010-03-25 22:32:16 +0100 | [diff] [blame] | 303 | #endif |
| 304 | } |
| 305 | } |
| 306 | } |
| 307 | free(freep); |
| 308 | mmap_unlock(); |
| 309 | } |
| 310 | #else |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 311 | FILE *f; |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 312 | |
pbrook | 0776590 | 2008-05-31 16:33:53 +0000 | [diff] [blame] | 313 | last_brk = (unsigned long)sbrk(0); |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 314 | |
Aurelien Jarno | fd43690 | 2010-04-10 17:20:36 +0200 | [diff] [blame] | 315 | f = fopen("/compat/linux/proc/self/maps", "r"); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 316 | if (f) { |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 317 | mmap_lock(); |
| 318 | |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 319 | do { |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 320 | unsigned long startaddr, endaddr; |
| 321 | int n; |
| 322 | |
| 323 | n = fscanf (f, "%lx-%lx %*[^\n]\n", &startaddr, &endaddr); |
| 324 | |
| 325 | if (n == 2 && h2g_valid(startaddr)) { |
| 326 | startaddr = h2g(startaddr) & TARGET_PAGE_MASK; |
| 327 | |
| 328 | if (h2g_valid(endaddr)) { |
| 329 | endaddr = h2g(endaddr); |
| 330 | } else { |
| 331 | endaddr = ~0ul; |
| 332 | } |
| 333 | page_set_flags(startaddr, endaddr, PAGE_RESERVED); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 334 | } |
| 335 | } while (!feof(f)); |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 336 | |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 337 | fclose(f); |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 338 | mmap_unlock(); |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 339 | } |
Juergen Lock | f01576f | 2010-03-25 22:32:16 +0100 | [diff] [blame] | 340 | #endif |
balrog | 50a9569 | 2007-12-12 01:16:23 +0000 | [diff] [blame] | 341 | } |
| 342 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 345 | static PageDesc *page_find_alloc(tb_page_addr_t index, int alloc) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 346 | { |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 347 | PageDesc *pd; |
| 348 | void **lp; |
| 349 | int i; |
| 350 | |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 351 | #if defined(CONFIG_USER_ONLY) |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 352 | /* We can't use g_malloc because it may recurse into a locked mutex. */ |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 353 | # define ALLOC(P, SIZE) \ |
| 354 | do { \ |
| 355 | P = mmap(NULL, SIZE, PROT_READ | PROT_WRITE, \ |
| 356 | MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); \ |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 357 | } while (0) |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 358 | #else |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 359 | # define ALLOC(P, SIZE) \ |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 360 | do { P = g_malloc0(SIZE); } while (0) |
pbrook | 17e2377 | 2008-06-09 13:47:45 +0000 | [diff] [blame] | 361 | #endif |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 362 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 363 | /* Level 1. Always allocated. */ |
| 364 | lp = l1_map + ((index >> V_L1_SHIFT) & (V_L1_SIZE - 1)); |
| 365 | |
| 366 | /* Level 2..N-1. */ |
| 367 | for (i = V_L1_SHIFT / L2_BITS - 1; i > 0; i--) { |
| 368 | void **p = *lp; |
| 369 | |
| 370 | if (p == NULL) { |
| 371 | if (!alloc) { |
| 372 | return NULL; |
| 373 | } |
| 374 | ALLOC(p, sizeof(void *) * L2_SIZE); |
| 375 | *lp = p; |
| 376 | } |
| 377 | |
| 378 | lp = p + ((index >> (i * L2_BITS)) & (L2_SIZE - 1)); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 379 | } |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 380 | |
| 381 | pd = *lp; |
| 382 | if (pd == NULL) { |
| 383 | if (!alloc) { |
| 384 | return NULL; |
| 385 | } |
| 386 | ALLOC(pd, sizeof(PageDesc) * L2_SIZE); |
| 387 | *lp = pd; |
| 388 | } |
| 389 | |
| 390 | #undef ALLOC |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 391 | |
| 392 | return pd + (index & (L2_SIZE - 1)); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 393 | } |
| 394 | |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 395 | static inline PageDesc *page_find(tb_page_addr_t index) |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 396 | { |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 397 | return page_find_alloc(index, 0); |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 398 | } |
| 399 | |
Paul Brook | 6d9a130 | 2010-02-28 23:55:53 +0000 | [diff] [blame] | 400 | #if !defined(CONFIG_USER_ONLY) |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 401 | |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 402 | static void phys_map_node_reserve(unsigned nodes) |
| 403 | { |
| 404 | if (phys_map_nodes_nb + nodes > phys_map_nodes_nb_alloc) { |
| 405 | typedef PhysPageEntry Node[L2_SIZE]; |
| 406 | phys_map_nodes_nb_alloc = MAX(phys_map_nodes_nb_alloc * 2, 16); |
| 407 | phys_map_nodes_nb_alloc = MAX(phys_map_nodes_nb_alloc, |
| 408 | phys_map_nodes_nb + nodes); |
| 409 | phys_map_nodes = g_renew(Node, phys_map_nodes, |
| 410 | phys_map_nodes_nb_alloc); |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | static uint16_t phys_map_node_alloc(void) |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 415 | { |
| 416 | unsigned i; |
| 417 | uint16_t ret; |
| 418 | |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 419 | ret = phys_map_nodes_nb++; |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 420 | assert(ret != PHYS_MAP_NODE_NIL); |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 421 | assert(ret != phys_map_nodes_nb_alloc); |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 422 | for (i = 0; i < L2_SIZE; ++i) { |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 423 | phys_map_nodes[ret][i].is_leaf = 0; |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 424 | phys_map_nodes[ret][i].ptr = PHYS_MAP_NODE_NIL; |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 425 | } |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 426 | return ret; |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | static void phys_map_nodes_reset(void) |
| 430 | { |
| 431 | phys_map_nodes_nb = 0; |
| 432 | } |
| 433 | |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 434 | |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 435 | static void phys_page_set_level(PhysPageEntry *lp, target_phys_addr_t *index, |
| 436 | target_phys_addr_t *nb, uint16_t leaf, |
| 437 | int level) |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 438 | { |
| 439 | PhysPageEntry *p; |
| 440 | int i; |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 441 | target_phys_addr_t step = (target_phys_addr_t)1 << (level * L2_BITS); |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 442 | |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 443 | if (!lp->is_leaf && lp->ptr == PHYS_MAP_NODE_NIL) { |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 444 | lp->ptr = phys_map_node_alloc(); |
| 445 | p = phys_map_nodes[lp->ptr]; |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 446 | if (level == 0) { |
| 447 | for (i = 0; i < L2_SIZE; i++) { |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 448 | p[i].is_leaf = 1; |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 449 | p[i].ptr = phys_section_unassigned; |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 450 | } |
| 451 | } |
| 452 | } else { |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 453 | p = phys_map_nodes[lp->ptr]; |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 454 | } |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 455 | lp = &p[(*index >> (level * L2_BITS)) & (L2_SIZE - 1)]; |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 456 | |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 457 | while (*nb && lp < &p[L2_SIZE]) { |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 458 | if ((*index & (step - 1)) == 0 && *nb >= step) { |
| 459 | lp->is_leaf = true; |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 460 | lp->ptr = leaf; |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 461 | *index += step; |
| 462 | *nb -= step; |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 463 | } else { |
| 464 | phys_page_set_level(lp, index, nb, leaf, level - 1); |
| 465 | } |
| 466 | ++lp; |
Avi Kivity | f7bf546 | 2012-02-13 20:12:05 +0200 | [diff] [blame] | 467 | } |
| 468 | } |
| 469 | |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 470 | static void phys_page_set(target_phys_addr_t index, target_phys_addr_t nb, |
| 471 | uint16_t leaf) |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 472 | { |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 473 | /* Wildly overreserve - it doesn't matter much. */ |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 474 | phys_map_node_reserve(3 * P_L2_LEVELS); |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 475 | |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 476 | phys_page_set_level(&phys_map, &index, &nb, leaf, P_L2_LEVELS - 1); |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 477 | } |
| 478 | |
Blue Swirl | 0cac1b6 | 2012-04-09 16:50:52 +0000 | [diff] [blame] | 479 | MemoryRegionSection *phys_page_find(target_phys_addr_t index) |
bellard | 92e873b | 2004-05-21 14:52:29 +0000 | [diff] [blame] | 480 | { |
Avi Kivity | 31ab2b4 | 2012-02-13 16:44:19 +0200 | [diff] [blame] | 481 | PhysPageEntry lp = phys_map; |
| 482 | PhysPageEntry *p; |
| 483 | int i; |
Avi Kivity | 31ab2b4 | 2012-02-13 16:44:19 +0200 | [diff] [blame] | 484 | uint16_t s_index = phys_section_unassigned; |
Avi Kivity | f1f6e3b | 2011-11-20 17:52:22 +0200 | [diff] [blame] | 485 | |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 486 | for (i = P_L2_LEVELS - 1; i >= 0 && !lp.is_leaf; i--) { |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 487 | if (lp.ptr == PHYS_MAP_NODE_NIL) { |
Avi Kivity | 31ab2b4 | 2012-02-13 16:44:19 +0200 | [diff] [blame] | 488 | goto not_found; |
| 489 | } |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 490 | p = phys_map_nodes[lp.ptr]; |
Avi Kivity | 31ab2b4 | 2012-02-13 16:44:19 +0200 | [diff] [blame] | 491 | lp = p[(index >> (i * L2_BITS)) & (L2_SIZE - 1)]; |
Avi Kivity | f1f6e3b | 2011-11-20 17:52:22 +0200 | [diff] [blame] | 492 | } |
Avi Kivity | 31ab2b4 | 2012-02-13 16:44:19 +0200 | [diff] [blame] | 493 | |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 494 | s_index = lp.ptr; |
Avi Kivity | 31ab2b4 | 2012-02-13 16:44:19 +0200 | [diff] [blame] | 495 | not_found: |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 496 | return &phys_sections[s_index]; |
| 497 | } |
| 498 | |
Blue Swirl | e554861 | 2012-04-21 13:08:33 +0000 | [diff] [blame] | 499 | bool memory_region_is_unassigned(MemoryRegion *mr) |
| 500 | { |
| 501 | return mr != &io_mem_ram && mr != &io_mem_rom |
| 502 | && mr != &io_mem_notdirty && !mr->rom_device |
| 503 | && mr != &io_mem_watch; |
| 504 | } |
| 505 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 506 | #define mmap_lock() do { } while(0) |
| 507 | #define mmap_unlock() do { } while(0) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 508 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 509 | |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 510 | #define DEFAULT_CODE_GEN_BUFFER_SIZE (32 * 1024 * 1024) |
| 511 | |
| 512 | #if defined(CONFIG_USER_ONLY) |
Stuart Brady | ccbb4d4 | 2009-05-03 12:15:06 +0100 | [diff] [blame] | 513 | /* Currently it is not recommended to allocate big chunks of data in |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 514 | user mode. It will change when a dedicated libc will be used */ |
| 515 | #define USE_STATIC_CODE_GEN_BUFFER |
| 516 | #endif |
| 517 | |
| 518 | #ifdef USE_STATIC_CODE_GEN_BUFFER |
Aurelien Jarno | ebf50fb | 2010-03-29 02:12:51 +0200 | [diff] [blame] | 519 | static uint8_t static_code_gen_buffer[DEFAULT_CODE_GEN_BUFFER_SIZE] |
| 520 | __attribute__((aligned (CODE_GEN_ALIGN))); |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 521 | #endif |
| 522 | |
blueswir1 | 8fcd369 | 2008-08-17 20:26:25 +0000 | [diff] [blame] | 523 | static void code_gen_alloc(unsigned long tb_size) |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 524 | { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 525 | #ifdef USE_STATIC_CODE_GEN_BUFFER |
| 526 | code_gen_buffer = static_code_gen_buffer; |
| 527 | code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; |
| 528 | map_exec(code_gen_buffer, code_gen_buffer_size); |
| 529 | #else |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 530 | code_gen_buffer_size = tb_size; |
| 531 | if (code_gen_buffer_size == 0) { |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 532 | #if defined(CONFIG_USER_ONLY) |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 533 | code_gen_buffer_size = DEFAULT_CODE_GEN_BUFFER_SIZE; |
| 534 | #else |
Stuart Brady | ccbb4d4 | 2009-05-03 12:15:06 +0100 | [diff] [blame] | 535 | /* XXX: needs adjustments */ |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 536 | code_gen_buffer_size = (unsigned long)(ram_size / 4); |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 537 | #endif |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 538 | } |
| 539 | if (code_gen_buffer_size < MIN_CODE_GEN_BUFFER_SIZE) |
| 540 | code_gen_buffer_size = MIN_CODE_GEN_BUFFER_SIZE; |
| 541 | /* The code gen buffer location may have constraints depending on |
| 542 | the host cpu and OS */ |
| 543 | #if defined(__linux__) |
| 544 | { |
| 545 | int flags; |
blueswir1 | 141ac46 | 2008-07-26 15:05:57 +0000 | [diff] [blame] | 546 | void *start = NULL; |
| 547 | |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 548 | flags = MAP_PRIVATE | MAP_ANONYMOUS; |
| 549 | #if defined(__x86_64__) |
| 550 | flags |= MAP_32BIT; |
| 551 | /* Cannot map more than that */ |
| 552 | if (code_gen_buffer_size > (800 * 1024 * 1024)) |
| 553 | code_gen_buffer_size = (800 * 1024 * 1024); |
blueswir1 | 141ac46 | 2008-07-26 15:05:57 +0000 | [diff] [blame] | 554 | #elif defined(__sparc_v9__) |
| 555 | // Map the buffer below 2G, so we can use direct calls and branches |
| 556 | flags |= MAP_FIXED; |
| 557 | start = (void *) 0x60000000UL; |
| 558 | if (code_gen_buffer_size > (512 * 1024 * 1024)) |
| 559 | code_gen_buffer_size = (512 * 1024 * 1024); |
balrog | 1cb0661 | 2008-12-01 02:10:17 +0000 | [diff] [blame] | 560 | #elif defined(__arm__) |
Aurelien Jarno | 5c84bd9 | 2012-01-07 21:00:25 +0100 | [diff] [blame] | 561 | /* Keep the buffer no bigger than 16MB to branch between blocks */ |
balrog | 1cb0661 | 2008-12-01 02:10:17 +0000 | [diff] [blame] | 562 | if (code_gen_buffer_size > 16 * 1024 * 1024) |
| 563 | code_gen_buffer_size = 16 * 1024 * 1024; |
Richard Henderson | eba0b89 | 2010-06-04 12:14:14 -0700 | [diff] [blame] | 564 | #elif defined(__s390x__) |
| 565 | /* Map the buffer so that we can use direct calls and branches. */ |
| 566 | /* We have a +- 4GB range on the branches; leave some slop. */ |
| 567 | if (code_gen_buffer_size > (3ul * 1024 * 1024 * 1024)) { |
| 568 | code_gen_buffer_size = 3ul * 1024 * 1024 * 1024; |
| 569 | } |
| 570 | start = (void *)0x90000000UL; |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 571 | #endif |
blueswir1 | 141ac46 | 2008-07-26 15:05:57 +0000 | [diff] [blame] | 572 | code_gen_buffer = mmap(start, code_gen_buffer_size, |
| 573 | PROT_WRITE | PROT_READ | PROT_EXEC, |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 574 | flags, -1, 0); |
| 575 | if (code_gen_buffer == MAP_FAILED) { |
| 576 | fprintf(stderr, "Could not allocate dynamic translator buffer\n"); |
| 577 | exit(1); |
| 578 | } |
| 579 | } |
Brad | cbb608a | 2010-12-20 21:25:40 -0500 | [diff] [blame] | 580 | #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) \ |
Tobias Nygren | 9f4b09a | 2011-08-07 09:57:05 +0000 | [diff] [blame] | 581 | || defined(__DragonFly__) || defined(__OpenBSD__) \ |
| 582 | || defined(__NetBSD__) |
aliguori | 06e67a8 | 2008-09-27 15:32:41 +0000 | [diff] [blame] | 583 | { |
| 584 | int flags; |
| 585 | void *addr = NULL; |
| 586 | flags = MAP_PRIVATE | MAP_ANONYMOUS; |
| 587 | #if defined(__x86_64__) |
| 588 | /* FreeBSD doesn't have MAP_32BIT, use MAP_FIXED and assume |
| 589 | * 0x40000000 is free */ |
| 590 | flags |= MAP_FIXED; |
| 591 | addr = (void *)0x40000000; |
| 592 | /* Cannot map more than that */ |
| 593 | if (code_gen_buffer_size > (800 * 1024 * 1024)) |
| 594 | code_gen_buffer_size = (800 * 1024 * 1024); |
Blue Swirl | 4cd31ad | 2011-01-16 08:32:27 +0000 | [diff] [blame] | 595 | #elif defined(__sparc_v9__) |
| 596 | // Map the buffer below 2G, so we can use direct calls and branches |
| 597 | flags |= MAP_FIXED; |
| 598 | addr = (void *) 0x60000000UL; |
| 599 | if (code_gen_buffer_size > (512 * 1024 * 1024)) { |
| 600 | code_gen_buffer_size = (512 * 1024 * 1024); |
| 601 | } |
aliguori | 06e67a8 | 2008-09-27 15:32:41 +0000 | [diff] [blame] | 602 | #endif |
| 603 | code_gen_buffer = mmap(addr, code_gen_buffer_size, |
| 604 | PROT_WRITE | PROT_READ | PROT_EXEC, |
| 605 | flags, -1, 0); |
| 606 | if (code_gen_buffer == MAP_FAILED) { |
| 607 | fprintf(stderr, "Could not allocate dynamic translator buffer\n"); |
| 608 | exit(1); |
| 609 | } |
| 610 | } |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 611 | #else |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 612 | code_gen_buffer = g_malloc(code_gen_buffer_size); |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 613 | map_exec(code_gen_buffer, code_gen_buffer_size); |
| 614 | #endif |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 615 | #endif /* !USE_STATIC_CODE_GEN_BUFFER */ |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 616 | map_exec(code_gen_prologue, sizeof(code_gen_prologue)); |
Peter Maydell | a884da8 | 2011-06-22 11:58:25 +0100 | [diff] [blame] | 617 | code_gen_buffer_max_size = code_gen_buffer_size - |
| 618 | (TCG_MAX_OP_SIZE * OPC_BUF_SIZE); |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 619 | code_gen_max_blocks = code_gen_buffer_size / CODE_GEN_AVG_BLOCK_SIZE; |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 620 | tbs = g_malloc(code_gen_max_blocks * sizeof(TranslationBlock)); |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 621 | } |
| 622 | |
| 623 | /* Must be called before using the QEMU cpus. 'tb_size' is the size |
| 624 | (in bytes) allocated to the translation buffer. Zero means default |
| 625 | size. */ |
Jan Kiszka | d5ab971 | 2011-08-02 16:10:21 +0200 | [diff] [blame] | 626 | void tcg_exec_init(unsigned long tb_size) |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 627 | { |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 628 | cpu_gen_init(); |
| 629 | code_gen_alloc(tb_size); |
| 630 | code_gen_ptr = code_gen_buffer; |
Richard Henderson | 813da62 | 2012-03-19 12:25:11 -0700 | [diff] [blame] | 631 | tcg_register_jit(code_gen_buffer, code_gen_buffer_size); |
bellard | 4369415 | 2008-05-29 09:35:57 +0000 | [diff] [blame] | 632 | page_init(); |
Richard Henderson | 9002ec7 | 2010-05-06 08:50:41 -0700 | [diff] [blame] | 633 | #if !defined(CONFIG_USER_ONLY) || !defined(CONFIG_USE_GUEST_BASE) |
| 634 | /* There's no guest base to take into account, so go ahead and |
| 635 | initialize the prologue now. */ |
| 636 | tcg_prologue_init(&tcg_ctx); |
| 637 | #endif |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 638 | } |
| 639 | |
Jan Kiszka | d5ab971 | 2011-08-02 16:10:21 +0200 | [diff] [blame] | 640 | bool tcg_enabled(void) |
| 641 | { |
| 642 | return code_gen_buffer != NULL; |
| 643 | } |
| 644 | |
| 645 | void cpu_exec_init_all(void) |
| 646 | { |
| 647 | #if !defined(CONFIG_USER_ONLY) |
| 648 | memory_map_init(); |
| 649 | io_mem_init(); |
| 650 | #endif |
| 651 | } |
| 652 | |
pbrook | 9656f32 | 2008-07-01 20:01:19 +0000 | [diff] [blame] | 653 | #if defined(CPU_SAVE_VERSION) && !defined(CONFIG_USER_ONLY) |
| 654 | |
Juan Quintela | e59fb37 | 2009-09-29 22:48:21 +0200 | [diff] [blame] | 655 | static int cpu_common_post_load(void *opaque, int version_id) |
Juan Quintela | e7f4eff | 2009-09-10 03:04:33 +0200 | [diff] [blame] | 656 | { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 657 | CPUArchState *env = opaque; |
Juan Quintela | e7f4eff | 2009-09-10 03:04:33 +0200 | [diff] [blame] | 658 | |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 659 | /* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the |
| 660 | version_id is increased. */ |
| 661 | env->interrupt_request &= ~0x01; |
pbrook | 9656f32 | 2008-07-01 20:01:19 +0000 | [diff] [blame] | 662 | tlb_flush(env, 1); |
| 663 | |
| 664 | return 0; |
| 665 | } |
Juan Quintela | e7f4eff | 2009-09-10 03:04:33 +0200 | [diff] [blame] | 666 | |
| 667 | static const VMStateDescription vmstate_cpu_common = { |
| 668 | .name = "cpu_common", |
| 669 | .version_id = 1, |
| 670 | .minimum_version_id = 1, |
| 671 | .minimum_version_id_old = 1, |
Juan Quintela | e7f4eff | 2009-09-10 03:04:33 +0200 | [diff] [blame] | 672 | .post_load = cpu_common_post_load, |
| 673 | .fields = (VMStateField []) { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 674 | VMSTATE_UINT32(halted, CPUArchState), |
| 675 | VMSTATE_UINT32(interrupt_request, CPUArchState), |
Juan Quintela | e7f4eff | 2009-09-10 03:04:33 +0200 | [diff] [blame] | 676 | VMSTATE_END_OF_LIST() |
| 677 | } |
| 678 | }; |
pbrook | 9656f32 | 2008-07-01 20:01:19 +0000 | [diff] [blame] | 679 | #endif |
| 680 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 681 | CPUArchState *qemu_get_cpu(int cpu) |
Glauber Costa | 950f147 | 2009-06-09 12:15:18 -0400 | [diff] [blame] | 682 | { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 683 | CPUArchState *env = first_cpu; |
Glauber Costa | 950f147 | 2009-06-09 12:15:18 -0400 | [diff] [blame] | 684 | |
| 685 | while (env) { |
| 686 | if (env->cpu_index == cpu) |
| 687 | break; |
| 688 | env = env->next_cpu; |
| 689 | } |
| 690 | |
| 691 | return env; |
| 692 | } |
| 693 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 694 | void cpu_exec_init(CPUArchState *env) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 695 | { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 696 | CPUArchState **penv; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 697 | int cpu_index; |
| 698 | |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 699 | #if defined(CONFIG_USER_ONLY) |
| 700 | cpu_list_lock(); |
| 701 | #endif |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 702 | env->next_cpu = NULL; |
| 703 | penv = &first_cpu; |
| 704 | cpu_index = 0; |
| 705 | while (*penv != NULL) { |
Nathan Froyd | 1e9fa73 | 2009-06-03 11:33:08 -0700 | [diff] [blame] | 706 | penv = &(*penv)->next_cpu; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 707 | cpu_index++; |
| 708 | } |
| 709 | env->cpu_index = cpu_index; |
aliguori | 268a362 | 2009-04-21 22:30:27 +0000 | [diff] [blame] | 710 | env->numa_node = 0; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 711 | QTAILQ_INIT(&env->breakpoints); |
| 712 | QTAILQ_INIT(&env->watchpoints); |
Jan Kiszka | dc7a09c | 2011-03-15 12:26:31 +0100 | [diff] [blame] | 713 | #ifndef CONFIG_USER_ONLY |
| 714 | env->thread_id = qemu_get_thread_id(); |
| 715 | #endif |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 716 | *penv = env; |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 717 | #if defined(CONFIG_USER_ONLY) |
| 718 | cpu_list_unlock(); |
| 719 | #endif |
pbrook | b3c7724 | 2008-06-30 16:31:04 +0000 | [diff] [blame] | 720 | #if defined(CPU_SAVE_VERSION) && !defined(CONFIG_USER_ONLY) |
Alex Williamson | 0be71e3 | 2010-06-25 11:09:07 -0600 | [diff] [blame] | 721 | vmstate_register(NULL, cpu_index, &vmstate_cpu_common, env); |
| 722 | register_savevm(NULL, "cpu", cpu_index, CPU_SAVE_VERSION, |
pbrook | b3c7724 | 2008-06-30 16:31:04 +0000 | [diff] [blame] | 723 | cpu_save, cpu_load, env); |
| 724 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 725 | } |
| 726 | |
Tristan Gingold | d1a1eb7 | 2011-02-10 10:04:57 +0100 | [diff] [blame] | 727 | /* Allocate a new translation block. Flush the translation buffer if |
| 728 | too many translation blocks or too much generated code. */ |
| 729 | static TranslationBlock *tb_alloc(target_ulong pc) |
| 730 | { |
| 731 | TranslationBlock *tb; |
| 732 | |
| 733 | if (nb_tbs >= code_gen_max_blocks || |
| 734 | (code_gen_ptr - code_gen_buffer) >= code_gen_buffer_max_size) |
| 735 | return NULL; |
| 736 | tb = &tbs[nb_tbs++]; |
| 737 | tb->pc = pc; |
| 738 | tb->cflags = 0; |
| 739 | return tb; |
| 740 | } |
| 741 | |
| 742 | void tb_free(TranslationBlock *tb) |
| 743 | { |
| 744 | /* In practice this is mostly used for single use temporary TB |
| 745 | Ignore the hard cases and just back up if this TB happens to |
| 746 | be the last one generated. */ |
| 747 | if (nb_tbs > 0 && tb == &tbs[nb_tbs - 1]) { |
| 748 | code_gen_ptr = tb->tc_ptr; |
| 749 | nb_tbs--; |
| 750 | } |
| 751 | } |
| 752 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 753 | static inline void invalidate_page_bitmap(PageDesc *p) |
| 754 | { |
| 755 | if (p->code_bitmap) { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 756 | g_free(p->code_bitmap); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 757 | p->code_bitmap = NULL; |
| 758 | } |
| 759 | p->code_write_count = 0; |
| 760 | } |
| 761 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 762 | /* Set to NULL all the 'first_tb' fields in all PageDescs. */ |
| 763 | |
| 764 | static void page_flush_tb_1 (int level, void **lp) |
| 765 | { |
| 766 | int i; |
| 767 | |
| 768 | if (*lp == NULL) { |
| 769 | return; |
| 770 | } |
| 771 | if (level == 0) { |
| 772 | PageDesc *pd = *lp; |
Paul Brook | 7296aba | 2010-03-14 14:58:46 +0000 | [diff] [blame] | 773 | for (i = 0; i < L2_SIZE; ++i) { |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 774 | pd[i].first_tb = NULL; |
| 775 | invalidate_page_bitmap(pd + i); |
| 776 | } |
| 777 | } else { |
| 778 | void **pp = *lp; |
Paul Brook | 7296aba | 2010-03-14 14:58:46 +0000 | [diff] [blame] | 779 | for (i = 0; i < L2_SIZE; ++i) { |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 780 | page_flush_tb_1 (level - 1, pp + i); |
| 781 | } |
| 782 | } |
| 783 | } |
| 784 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 785 | static void page_flush_tb(void) |
| 786 | { |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 787 | int i; |
| 788 | for (i = 0; i < V_L1_SIZE; i++) { |
| 789 | page_flush_tb_1(V_L1_SHIFT / L2_BITS - 1, l1_map + i); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 790 | } |
| 791 | } |
| 792 | |
| 793 | /* flush all the translation blocks */ |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 794 | /* XXX: tb_flush is currently not thread safe */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 795 | void tb_flush(CPUArchState *env1) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 796 | { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 797 | CPUArchState *env; |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 798 | #if defined(DEBUG_FLUSH) |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 799 | printf("qemu: flush code_size=%ld nb_tbs=%d avg_tb_size=%ld\n", |
| 800 | (unsigned long)(code_gen_ptr - code_gen_buffer), |
| 801 | nb_tbs, nb_tbs > 0 ? |
| 802 | ((unsigned long)(code_gen_ptr - code_gen_buffer)) / nb_tbs : 0); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 803 | #endif |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 804 | if ((unsigned long)(code_gen_ptr - code_gen_buffer) > code_gen_buffer_size) |
pbrook | a208e54 | 2008-03-31 17:07:36 +0000 | [diff] [blame] | 805 | cpu_abort(env1, "Internal error: code buffer overflow\n"); |
| 806 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 807 | nb_tbs = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 808 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 809 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 810 | memset (env->tb_jmp_cache, 0, TB_JMP_CACHE_SIZE * sizeof (void *)); |
| 811 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 812 | |
bellard | 8a8a608 | 2004-10-03 13:36:49 +0000 | [diff] [blame] | 813 | memset (tb_phys_hash, 0, CODE_GEN_PHYS_HASH_SIZE * sizeof (void *)); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 814 | page_flush_tb(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 815 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 816 | code_gen_ptr = code_gen_buffer; |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 817 | /* XXX: flush processor icache at this point if cache flush is |
| 818 | expensive */ |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 819 | tb_flush_count++; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | #ifdef DEBUG_TB_CHECK |
| 823 | |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 824 | static void tb_invalidate_check(target_ulong address) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 825 | { |
| 826 | TranslationBlock *tb; |
| 827 | int i; |
| 828 | address &= TARGET_PAGE_MASK; |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 829 | for(i = 0;i < CODE_GEN_PHYS_HASH_SIZE; i++) { |
| 830 | for(tb = tb_phys_hash[i]; tb != NULL; tb = tb->phys_hash_next) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 831 | if (!(address + TARGET_PAGE_SIZE <= tb->pc || |
| 832 | address >= tb->pc + tb->size)) { |
Blue Swirl | 0bf9e31 | 2009-07-20 17:19:25 +0000 | [diff] [blame] | 833 | printf("ERROR invalidate: address=" TARGET_FMT_lx |
| 834 | " PC=%08lx size=%04x\n", |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 835 | address, (long)tb->pc, tb->size); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 836 | } |
| 837 | } |
| 838 | } |
| 839 | } |
| 840 | |
| 841 | /* verify that all the pages have correct rights for code */ |
| 842 | static void tb_page_check(void) |
| 843 | { |
| 844 | TranslationBlock *tb; |
| 845 | int i, flags1, flags2; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 846 | |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 847 | for(i = 0;i < CODE_GEN_PHYS_HASH_SIZE; i++) { |
| 848 | for(tb = tb_phys_hash[i]; tb != NULL; tb = tb->phys_hash_next) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 849 | flags1 = page_get_flags(tb->pc); |
| 850 | flags2 = page_get_flags(tb->pc + tb->size - 1); |
| 851 | if ((flags1 & PAGE_WRITE) || (flags2 & PAGE_WRITE)) { |
| 852 | printf("ERROR page flags: PC=%08lx size=%04x f1=%x f2=%x\n", |
pbrook | 99773bd | 2006-04-16 15:14:59 +0000 | [diff] [blame] | 853 | (long)tb->pc, tb->size, flags1, flags2); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 854 | } |
| 855 | } |
| 856 | } |
| 857 | } |
| 858 | |
| 859 | #endif |
| 860 | |
| 861 | /* invalidate one TB */ |
| 862 | static inline void tb_remove(TranslationBlock **ptb, TranslationBlock *tb, |
| 863 | int next_offset) |
| 864 | { |
| 865 | TranslationBlock *tb1; |
| 866 | for(;;) { |
| 867 | tb1 = *ptb; |
| 868 | if (tb1 == tb) { |
| 869 | *ptb = *(TranslationBlock **)((char *)tb1 + next_offset); |
| 870 | break; |
| 871 | } |
| 872 | ptb = (TranslationBlock **)((char *)tb1 + next_offset); |
| 873 | } |
| 874 | } |
| 875 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 876 | static inline void tb_page_remove(TranslationBlock **ptb, TranslationBlock *tb) |
| 877 | { |
| 878 | TranslationBlock *tb1; |
| 879 | unsigned int n1; |
| 880 | |
| 881 | for(;;) { |
| 882 | tb1 = *ptb; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 883 | n1 = (uintptr_t)tb1 & 3; |
| 884 | tb1 = (TranslationBlock *)((uintptr_t)tb1 & ~3); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 885 | if (tb1 == tb) { |
| 886 | *ptb = tb1->page_next[n1]; |
| 887 | break; |
| 888 | } |
| 889 | ptb = &tb1->page_next[n1]; |
| 890 | } |
| 891 | } |
| 892 | |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 893 | static inline void tb_jmp_remove(TranslationBlock *tb, int n) |
| 894 | { |
| 895 | TranslationBlock *tb1, **ptb; |
| 896 | unsigned int n1; |
| 897 | |
| 898 | ptb = &tb->jmp_next[n]; |
| 899 | tb1 = *ptb; |
| 900 | if (tb1) { |
| 901 | /* find tb(n) in circular list */ |
| 902 | for(;;) { |
| 903 | tb1 = *ptb; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 904 | n1 = (uintptr_t)tb1 & 3; |
| 905 | tb1 = (TranslationBlock *)((uintptr_t)tb1 & ~3); |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 906 | if (n1 == n && tb1 == tb) |
| 907 | break; |
| 908 | if (n1 == 2) { |
| 909 | ptb = &tb1->jmp_first; |
| 910 | } else { |
| 911 | ptb = &tb1->jmp_next[n1]; |
| 912 | } |
| 913 | } |
| 914 | /* now we can suppress tb(n) from the list */ |
| 915 | *ptb = tb->jmp_next[n]; |
| 916 | |
| 917 | tb->jmp_next[n] = NULL; |
| 918 | } |
| 919 | } |
| 920 | |
| 921 | /* reset the jump entry 'n' of a TB so that it is not chained to |
| 922 | another TB */ |
| 923 | static inline void tb_reset_jump(TranslationBlock *tb, int n) |
| 924 | { |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 925 | tb_set_jmp_target(tb, n, (uintptr_t)(tb->tc_ptr + tb->tb_next_offset[n])); |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 926 | } |
| 927 | |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 928 | void tb_phys_invalidate(TranslationBlock *tb, tb_page_addr_t page_addr) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 929 | { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 930 | CPUArchState *env; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 931 | PageDesc *p; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 932 | unsigned int h, n1; |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 933 | tb_page_addr_t phys_pc; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 934 | TranslationBlock *tb1, *tb2; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 935 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 936 | /* remove the TB from the hash list */ |
| 937 | phys_pc = tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); |
| 938 | h = tb_phys_hash_func(phys_pc); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 939 | tb_remove(&tb_phys_hash[h], tb, |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 940 | offsetof(TranslationBlock, phys_hash_next)); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 941 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 942 | /* remove the TB from the page list */ |
| 943 | if (tb->page_addr[0] != page_addr) { |
| 944 | p = page_find(tb->page_addr[0] >> TARGET_PAGE_BITS); |
| 945 | tb_page_remove(&p->first_tb, tb); |
| 946 | invalidate_page_bitmap(p); |
| 947 | } |
| 948 | if (tb->page_addr[1] != -1 && tb->page_addr[1] != page_addr) { |
| 949 | p = page_find(tb->page_addr[1] >> TARGET_PAGE_BITS); |
| 950 | tb_page_remove(&p->first_tb, tb); |
| 951 | invalidate_page_bitmap(p); |
| 952 | } |
| 953 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 954 | tb_invalidated_flag = 1; |
| 955 | |
| 956 | /* remove the TB from the hash list */ |
| 957 | h = tb_jmp_cache_hash_func(tb->pc); |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 958 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 959 | if (env->tb_jmp_cache[h] == tb) |
| 960 | env->tb_jmp_cache[h] = NULL; |
| 961 | } |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 962 | |
| 963 | /* suppress this TB from the two jump lists */ |
| 964 | tb_jmp_remove(tb, 0); |
| 965 | tb_jmp_remove(tb, 1); |
| 966 | |
| 967 | /* suppress any remaining jumps to this TB */ |
| 968 | tb1 = tb->jmp_first; |
| 969 | for(;;) { |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 970 | n1 = (uintptr_t)tb1 & 3; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 971 | if (n1 == 2) |
| 972 | break; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 973 | tb1 = (TranslationBlock *)((uintptr_t)tb1 & ~3); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 974 | tb2 = tb1->jmp_next[n1]; |
| 975 | tb_reset_jump(tb1, n1); |
| 976 | tb1->jmp_next[n1] = NULL; |
| 977 | tb1 = tb2; |
| 978 | } |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 979 | tb->jmp_first = (TranslationBlock *)((uintptr_t)tb | 2); /* fail safe */ |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 980 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 981 | tb_phys_invalidate_count++; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | static inline void set_bits(uint8_t *tab, int start, int len) |
| 985 | { |
| 986 | int end, mask, end1; |
| 987 | |
| 988 | end = start + len; |
| 989 | tab += start >> 3; |
| 990 | mask = 0xff << (start & 7); |
| 991 | if ((start & ~7) == (end & ~7)) { |
| 992 | if (start < end) { |
| 993 | mask &= ~(0xff << (end & 7)); |
| 994 | *tab |= mask; |
| 995 | } |
| 996 | } else { |
| 997 | *tab++ |= mask; |
| 998 | start = (start + 8) & ~7; |
| 999 | end1 = end & ~7; |
| 1000 | while (start < end1) { |
| 1001 | *tab++ = 0xff; |
| 1002 | start += 8; |
| 1003 | } |
| 1004 | if (start < end) { |
| 1005 | mask = ~(0xff << (end & 7)); |
| 1006 | *tab |= mask; |
| 1007 | } |
| 1008 | } |
| 1009 | } |
| 1010 | |
| 1011 | static void build_page_bitmap(PageDesc *p) |
| 1012 | { |
| 1013 | int n, tb_start, tb_end; |
| 1014 | TranslationBlock *tb; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1015 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1016 | p->code_bitmap = g_malloc0(TARGET_PAGE_SIZE / 8); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1017 | |
| 1018 | tb = p->first_tb; |
| 1019 | while (tb != NULL) { |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1020 | n = (uintptr_t)tb & 3; |
| 1021 | tb = (TranslationBlock *)((uintptr_t)tb & ~3); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1022 | /* NOTE: this is subtle as a TB may span two physical pages */ |
| 1023 | if (n == 0) { |
| 1024 | /* NOTE: tb_end may be after the end of the page, but |
| 1025 | it is not a problem */ |
| 1026 | tb_start = tb->pc & ~TARGET_PAGE_MASK; |
| 1027 | tb_end = tb_start + tb->size; |
| 1028 | if (tb_end > TARGET_PAGE_SIZE) |
| 1029 | tb_end = TARGET_PAGE_SIZE; |
| 1030 | } else { |
| 1031 | tb_start = 0; |
| 1032 | tb_end = ((tb->pc + tb->size) & ~TARGET_PAGE_MASK); |
| 1033 | } |
| 1034 | set_bits(p->code_bitmap, tb_start, tb_end - tb_start); |
| 1035 | tb = tb->page_next[n]; |
| 1036 | } |
| 1037 | } |
| 1038 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1039 | TranslationBlock *tb_gen_code(CPUArchState *env, |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1040 | target_ulong pc, target_ulong cs_base, |
| 1041 | int flags, int cflags) |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1042 | { |
| 1043 | TranslationBlock *tb; |
| 1044 | uint8_t *tc_ptr; |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1045 | tb_page_addr_t phys_pc, phys_page2; |
| 1046 | target_ulong virt_page2; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1047 | int code_gen_size; |
| 1048 | |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1049 | phys_pc = get_page_addr_code(env, pc); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1050 | tb = tb_alloc(pc); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1051 | if (!tb) { |
| 1052 | /* flush must be done */ |
| 1053 | tb_flush(env); |
| 1054 | /* cannot fail at this point */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1055 | tb = tb_alloc(pc); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1056 | /* Don't forget to invalidate previous TB info. */ |
| 1057 | tb_invalidated_flag = 1; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1058 | } |
| 1059 | tc_ptr = code_gen_ptr; |
| 1060 | tb->tc_ptr = tc_ptr; |
| 1061 | tb->cs_base = cs_base; |
| 1062 | tb->flags = flags; |
| 1063 | tb->cflags = cflags; |
blueswir1 | d07bde8 | 2007-12-11 19:35:45 +0000 | [diff] [blame] | 1064 | cpu_gen_code(env, tb, &code_gen_size); |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1065 | code_gen_ptr = (void *)(((uintptr_t)code_gen_ptr + code_gen_size + |
| 1066 | CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1)); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1067 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1068 | /* check next page if needed */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1069 | virt_page2 = (pc + tb->size - 1) & TARGET_PAGE_MASK; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1070 | phys_page2 = -1; |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1071 | if ((pc & TARGET_PAGE_MASK) != virt_page2) { |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1072 | phys_page2 = get_page_addr_code(env, virt_page2); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1073 | } |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1074 | tb_link_page(tb, phys_pc, phys_page2); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1075 | return tb; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1076 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1077 | |
Alexander Graf | 77a8f1a | 2012-05-10 22:40:10 +0000 | [diff] [blame] | 1078 | /* |
Jan Kiszka | 8e0fdce | 2012-05-23 23:41:53 -0300 | [diff] [blame] | 1079 | * Invalidate all TBs which intersect with the target physical address range |
| 1080 | * [start;end[. NOTE: start and end may refer to *different* physical pages. |
| 1081 | * 'is_cpu_write_access' should be true if called from a real cpu write |
| 1082 | * access: the virtual CPU will exit the current TB if code is modified inside |
| 1083 | * this TB. |
Alexander Graf | 77a8f1a | 2012-05-10 22:40:10 +0000 | [diff] [blame] | 1084 | */ |
| 1085 | void tb_invalidate_phys_range(tb_page_addr_t start, tb_page_addr_t end, |
| 1086 | int is_cpu_write_access) |
| 1087 | { |
| 1088 | while (start < end) { |
| 1089 | tb_invalidate_phys_page_range(start, end, is_cpu_write_access); |
| 1090 | start &= TARGET_PAGE_MASK; |
| 1091 | start += TARGET_PAGE_SIZE; |
| 1092 | } |
| 1093 | } |
| 1094 | |
Jan Kiszka | 8e0fdce | 2012-05-23 23:41:53 -0300 | [diff] [blame] | 1095 | /* |
| 1096 | * Invalidate all TBs which intersect with the target physical address range |
| 1097 | * [start;end[. NOTE: start and end must refer to the *same* physical page. |
| 1098 | * 'is_cpu_write_access' should be true if called from a real cpu write |
| 1099 | * access: the virtual CPU will exit the current TB if code is modified inside |
| 1100 | * this TB. |
| 1101 | */ |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1102 | void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end, |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1103 | int is_cpu_write_access) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1104 | { |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1105 | TranslationBlock *tb, *tb_next, *saved_tb; |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1106 | CPUArchState *env = cpu_single_env; |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1107 | tb_page_addr_t tb_start, tb_end; |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1108 | PageDesc *p; |
| 1109 | int n; |
| 1110 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1111 | int current_tb_not_found = is_cpu_write_access; |
| 1112 | TranslationBlock *current_tb = NULL; |
| 1113 | int current_tb_modified = 0; |
| 1114 | target_ulong current_pc = 0; |
| 1115 | target_ulong current_cs_base = 0; |
| 1116 | int current_flags = 0; |
| 1117 | #endif /* TARGET_HAS_PRECISE_SMC */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1118 | |
| 1119 | p = page_find(start >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1120 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1121 | return; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1122 | if (!p->code_bitmap && |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1123 | ++p->code_write_count >= SMC_BITMAP_USE_THRESHOLD && |
| 1124 | is_cpu_write_access) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1125 | /* build code bitmap */ |
| 1126 | build_page_bitmap(p); |
| 1127 | } |
| 1128 | |
| 1129 | /* we remove all the TBs in the range [start, end[ */ |
| 1130 | /* XXX: see if in some cases it could be faster to invalidate all the code */ |
| 1131 | tb = p->first_tb; |
| 1132 | while (tb != NULL) { |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1133 | n = (uintptr_t)tb & 3; |
| 1134 | tb = (TranslationBlock *)((uintptr_t)tb & ~3); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1135 | tb_next = tb->page_next[n]; |
| 1136 | /* NOTE: this is subtle as a TB may span two physical pages */ |
| 1137 | if (n == 0) { |
| 1138 | /* NOTE: tb_end may be after the end of the page, but |
| 1139 | it is not a problem */ |
| 1140 | tb_start = tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); |
| 1141 | tb_end = tb_start + tb->size; |
| 1142 | } else { |
| 1143 | tb_start = tb->page_addr[1]; |
| 1144 | tb_end = tb_start + ((tb->pc + tb->size) & ~TARGET_PAGE_MASK); |
| 1145 | } |
| 1146 | if (!(tb_end <= start || tb_start >= end)) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1147 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1148 | if (current_tb_not_found) { |
| 1149 | current_tb_not_found = 0; |
| 1150 | current_tb = NULL; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1151 | if (env->mem_io_pc) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1152 | /* now we have a real cpu fault */ |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1153 | current_tb = tb_find_pc(env->mem_io_pc); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1154 | } |
| 1155 | } |
| 1156 | if (current_tb == tb && |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1157 | (current_tb->cflags & CF_COUNT_MASK) != 1) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1158 | /* If we are modifying the current TB, we must stop |
| 1159 | its execution. We could be more precise by checking |
| 1160 | that the modification is after the current PC, but it |
| 1161 | would require a specialized function to partially |
| 1162 | restore the CPU state */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1163 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1164 | current_tb_modified = 1; |
Stefan Weil | 618ba8e | 2011-04-18 06:39:53 +0000 | [diff] [blame] | 1165 | cpu_restore_state(current_tb, env, env->mem_io_pc); |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1166 | cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, |
| 1167 | ¤t_flags); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1168 | } |
| 1169 | #endif /* TARGET_HAS_PRECISE_SMC */ |
bellard | 6f5a9f7 | 2005-11-26 20:12:28 +0000 | [diff] [blame] | 1170 | /* we need to do that to handle the case where a signal |
| 1171 | occurs while doing tb_phys_invalidate() */ |
| 1172 | saved_tb = NULL; |
| 1173 | if (env) { |
| 1174 | saved_tb = env->current_tb; |
| 1175 | env->current_tb = NULL; |
| 1176 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1177 | tb_phys_invalidate(tb, -1); |
bellard | 6f5a9f7 | 2005-11-26 20:12:28 +0000 | [diff] [blame] | 1178 | if (env) { |
| 1179 | env->current_tb = saved_tb; |
| 1180 | if (env->interrupt_request && env->current_tb) |
| 1181 | cpu_interrupt(env, env->interrupt_request); |
| 1182 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1183 | } |
| 1184 | tb = tb_next; |
| 1185 | } |
| 1186 | #if !defined(CONFIG_USER_ONLY) |
| 1187 | /* if no code remaining, no need to continue to use slow writes */ |
| 1188 | if (!p->first_tb) { |
| 1189 | invalidate_page_bitmap(p); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1190 | if (is_cpu_write_access) { |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1191 | tlb_unprotect_code_phys(env, start, env->mem_io_vaddr); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1192 | } |
| 1193 | } |
| 1194 | #endif |
| 1195 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1196 | if (current_tb_modified) { |
| 1197 | /* we generate a block containing just the instruction |
| 1198 | modifying the memory. It will ensure that it cannot modify |
| 1199 | itself */ |
bellard | ea1c180 | 2004-06-14 18:56:36 +0000 | [diff] [blame] | 1200 | env->current_tb = NULL; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1201 | tb_gen_code(env, current_pc, current_cs_base, current_flags, 1); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1202 | cpu_resume_from_signal(env, NULL); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1203 | } |
| 1204 | #endif |
| 1205 | } |
| 1206 | |
| 1207 | /* len must be <= 8 and start must be a multiple of len */ |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1208 | static inline void tb_invalidate_phys_page_fast(tb_page_addr_t start, int len) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1209 | { |
| 1210 | PageDesc *p; |
| 1211 | int offset, b; |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1212 | #if 0 |
bellard | a4193c8 | 2004-06-03 14:01:43 +0000 | [diff] [blame] | 1213 | if (1) { |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1214 | qemu_log("modifying code at 0x%x size=%d EIP=%x PC=%08x\n", |
| 1215 | cpu_single_env->mem_io_vaddr, len, |
| 1216 | cpu_single_env->eip, |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1217 | cpu_single_env->eip + |
| 1218 | (intptr_t)cpu_single_env->segs[R_CS].base); |
bellard | 59817cc | 2004-02-16 22:01:13 +0000 | [diff] [blame] | 1219 | } |
| 1220 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1221 | p = page_find(start >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1222 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1223 | return; |
| 1224 | if (p->code_bitmap) { |
| 1225 | offset = start & ~TARGET_PAGE_MASK; |
| 1226 | b = p->code_bitmap[offset >> 3] >> (offset & 7); |
| 1227 | if (b & ((1 << len) - 1)) |
| 1228 | goto do_invalidate; |
| 1229 | } else { |
| 1230 | do_invalidate: |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1231 | tb_invalidate_phys_page_range(start, start + len, 1); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1232 | } |
| 1233 | } |
| 1234 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1235 | #if !defined(CONFIG_SOFTMMU) |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1236 | static void tb_invalidate_phys_page(tb_page_addr_t addr, |
Blue Swirl | 2050396 | 2012-04-09 14:20:20 +0000 | [diff] [blame] | 1237 | uintptr_t pc, void *puc) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1238 | { |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1239 | TranslationBlock *tb; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1240 | PageDesc *p; |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1241 | int n; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1242 | #ifdef TARGET_HAS_PRECISE_SMC |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1243 | TranslationBlock *current_tb = NULL; |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1244 | CPUArchState *env = cpu_single_env; |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1245 | int current_tb_modified = 0; |
| 1246 | target_ulong current_pc = 0; |
| 1247 | target_ulong current_cs_base = 0; |
| 1248 | int current_flags = 0; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1249 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1250 | |
| 1251 | addr &= TARGET_PAGE_MASK; |
| 1252 | p = page_find(addr >> TARGET_PAGE_BITS); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1253 | if (!p) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1254 | return; |
| 1255 | tb = p->first_tb; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1256 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1257 | if (tb && pc != 0) { |
| 1258 | current_tb = tb_find_pc(pc); |
| 1259 | } |
| 1260 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1261 | while (tb != NULL) { |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1262 | n = (uintptr_t)tb & 3; |
| 1263 | tb = (TranslationBlock *)((uintptr_t)tb & ~3); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1264 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1265 | if (current_tb == tb && |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1266 | (current_tb->cflags & CF_COUNT_MASK) != 1) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1267 | /* If we are modifying the current TB, we must stop |
| 1268 | its execution. We could be more precise by checking |
| 1269 | that the modification is after the current PC, but it |
| 1270 | would require a specialized function to partially |
| 1271 | restore the CPU state */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1272 | |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1273 | current_tb_modified = 1; |
Stefan Weil | 618ba8e | 2011-04-18 06:39:53 +0000 | [diff] [blame] | 1274 | cpu_restore_state(current_tb, env, pc); |
aliguori | 6b91754 | 2008-11-18 19:46:41 +0000 | [diff] [blame] | 1275 | cpu_get_tb_cpu_state(env, ¤t_pc, ¤t_cs_base, |
| 1276 | ¤t_flags); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1277 | } |
| 1278 | #endif /* TARGET_HAS_PRECISE_SMC */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1279 | tb_phys_invalidate(tb, addr); |
| 1280 | tb = tb->page_next[n]; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1281 | } |
| 1282 | p->first_tb = NULL; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1283 | #ifdef TARGET_HAS_PRECISE_SMC |
| 1284 | if (current_tb_modified) { |
| 1285 | /* we generate a block containing just the instruction |
| 1286 | modifying the memory. It will ensure that it cannot modify |
| 1287 | itself */ |
bellard | ea1c180 | 2004-06-14 18:56:36 +0000 | [diff] [blame] | 1288 | env->current_tb = NULL; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1289 | tb_gen_code(env, current_pc, current_cs_base, current_flags, 1); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1290 | cpu_resume_from_signal(env, puc); |
| 1291 | } |
| 1292 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1293 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1294 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1295 | |
| 1296 | /* add the tb in the target page and protect it if necessary */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1297 | static inline void tb_alloc_page(TranslationBlock *tb, |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1298 | unsigned int n, tb_page_addr_t page_addr) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1299 | { |
| 1300 | PageDesc *p; |
Juan Quintela | 4429ab4 | 2011-06-02 01:53:44 +0000 | [diff] [blame] | 1301 | #ifndef CONFIG_USER_ONLY |
| 1302 | bool page_already_protected; |
| 1303 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1304 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1305 | tb->page_addr[n] = page_addr; |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 1306 | p = page_find_alloc(page_addr >> TARGET_PAGE_BITS, 1); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1307 | tb->page_next[n] = p->first_tb; |
Juan Quintela | 4429ab4 | 2011-06-02 01:53:44 +0000 | [diff] [blame] | 1308 | #ifndef CONFIG_USER_ONLY |
| 1309 | page_already_protected = p->first_tb != NULL; |
| 1310 | #endif |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1311 | p->first_tb = (TranslationBlock *)((uintptr_t)tb | n); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1312 | invalidate_page_bitmap(p); |
| 1313 | |
bellard | 107db44 | 2004-06-22 18:48:46 +0000 | [diff] [blame] | 1314 | #if defined(TARGET_HAS_SMC) || 1 |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1315 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1316 | #if defined(CONFIG_USER_ONLY) |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1317 | if (p->flags & PAGE_WRITE) { |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1318 | target_ulong addr; |
| 1319 | PageDesc *p2; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1320 | int prot; |
| 1321 | |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1322 | /* force the host page as non writable (writes will have a |
| 1323 | page fault + mprotect overhead) */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1324 | page_addr &= qemu_host_page_mask; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1325 | prot = 0; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1326 | for(addr = page_addr; addr < page_addr + qemu_host_page_size; |
| 1327 | addr += TARGET_PAGE_SIZE) { |
| 1328 | |
| 1329 | p2 = page_find (addr >> TARGET_PAGE_BITS); |
| 1330 | if (!p2) |
| 1331 | continue; |
| 1332 | prot |= p2->flags; |
| 1333 | p2->flags &= ~PAGE_WRITE; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1334 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1335 | mprotect(g2h(page_addr), qemu_host_page_size, |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1336 | (prot & PAGE_BITS) & ~PAGE_WRITE); |
| 1337 | #ifdef DEBUG_TB_INVALIDATE |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 1338 | printf("protecting code page: 0x" TARGET_FMT_lx "\n", |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1339 | page_addr); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1340 | #endif |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1341 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1342 | #else |
| 1343 | /* if some code is already present, then the pages are already |
| 1344 | protected. So we handle the case where only the first TB is |
| 1345 | allocated in a physical page */ |
Juan Quintela | 4429ab4 | 2011-06-02 01:53:44 +0000 | [diff] [blame] | 1346 | if (!page_already_protected) { |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 1347 | tlb_protect_code(page_addr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1348 | } |
| 1349 | #endif |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1350 | |
| 1351 | #endif /* TARGET_HAS_SMC */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1352 | } |
| 1353 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1354 | /* add a new TB and link it to the physical page tables. phys_page2 is |
| 1355 | (-1) to indicate that only one page contains the TB. */ |
Paul Brook | 41c1b1c | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 1356 | void tb_link_page(TranslationBlock *tb, |
| 1357 | tb_page_addr_t phys_pc, tb_page_addr_t phys_page2) |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1358 | { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1359 | unsigned int h; |
| 1360 | TranslationBlock **ptb; |
| 1361 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 1362 | /* Grab the mmap lock to stop another thread invalidating this TB |
| 1363 | before we are done. */ |
| 1364 | mmap_lock(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1365 | /* add in the physical hash table */ |
| 1366 | h = tb_phys_hash_func(phys_pc); |
| 1367 | ptb = &tb_phys_hash[h]; |
| 1368 | tb->phys_hash_next = *ptb; |
| 1369 | *ptb = tb; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1370 | |
| 1371 | /* add in the page list */ |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1372 | tb_alloc_page(tb, 0, phys_pc & TARGET_PAGE_MASK); |
| 1373 | if (phys_page2 != -1) |
| 1374 | tb_alloc_page(tb, 1, phys_page2); |
| 1375 | else |
| 1376 | tb->page_addr[1] = -1; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1377 | |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1378 | tb->jmp_first = (TranslationBlock *)((uintptr_t)tb | 2); |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 1379 | tb->jmp_next[0] = NULL; |
| 1380 | tb->jmp_next[1] = NULL; |
| 1381 | |
| 1382 | /* init original jump addresses */ |
| 1383 | if (tb->tb_next_offset[0] != 0xffff) |
| 1384 | tb_reset_jump(tb, 0); |
| 1385 | if (tb->tb_next_offset[1] != 0xffff) |
| 1386 | tb_reset_jump(tb, 1); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 1387 | |
| 1388 | #ifdef DEBUG_TB_CHECK |
| 1389 | tb_page_check(); |
| 1390 | #endif |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 1391 | mmap_unlock(); |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1392 | } |
| 1393 | |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1394 | /* find the TB 'tb' such that tb[0].tc_ptr <= tc_ptr < |
| 1395 | tb[1].tc_ptr. Return NULL if not found */ |
Stefan Weil | 6375e09 | 2012-04-06 22:26:15 +0200 | [diff] [blame] | 1396 | TranslationBlock *tb_find_pc(uintptr_t tc_ptr) |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1397 | { |
| 1398 | int m_min, m_max, m; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1399 | uintptr_t v; |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1400 | TranslationBlock *tb; |
| 1401 | |
| 1402 | if (nb_tbs <= 0) |
| 1403 | return NULL; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1404 | if (tc_ptr < (uintptr_t)code_gen_buffer || |
| 1405 | tc_ptr >= (uintptr_t)code_gen_ptr) { |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1406 | return NULL; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1407 | } |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1408 | /* binary search (cf Knuth) */ |
| 1409 | m_min = 0; |
| 1410 | m_max = nb_tbs - 1; |
| 1411 | while (m_min <= m_max) { |
| 1412 | m = (m_min + m_max) >> 1; |
| 1413 | tb = &tbs[m]; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1414 | v = (uintptr_t)tb->tc_ptr; |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1415 | if (v == tc_ptr) |
| 1416 | return tb; |
| 1417 | else if (tc_ptr < v) { |
| 1418 | m_max = m - 1; |
| 1419 | } else { |
| 1420 | m_min = m + 1; |
| 1421 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1422 | } |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 1423 | return &tbs[m_max]; |
| 1424 | } |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1425 | |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1426 | static void tb_reset_jump_recursive(TranslationBlock *tb); |
| 1427 | |
| 1428 | static inline void tb_reset_jump_recursive2(TranslationBlock *tb, int n) |
| 1429 | { |
| 1430 | TranslationBlock *tb1, *tb_next, **ptb; |
| 1431 | unsigned int n1; |
| 1432 | |
| 1433 | tb1 = tb->jmp_next[n]; |
| 1434 | if (tb1 != NULL) { |
| 1435 | /* find head of list */ |
| 1436 | for(;;) { |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1437 | n1 = (uintptr_t)tb1 & 3; |
| 1438 | tb1 = (TranslationBlock *)((uintptr_t)tb1 & ~3); |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1439 | if (n1 == 2) |
| 1440 | break; |
| 1441 | tb1 = tb1->jmp_next[n1]; |
| 1442 | } |
| 1443 | /* we are now sure now that tb jumps to tb1 */ |
| 1444 | tb_next = tb1; |
| 1445 | |
| 1446 | /* remove tb from the jmp_first list */ |
| 1447 | ptb = &tb_next->jmp_first; |
| 1448 | for(;;) { |
| 1449 | tb1 = *ptb; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1450 | n1 = (uintptr_t)tb1 & 3; |
| 1451 | tb1 = (TranslationBlock *)((uintptr_t)tb1 & ~3); |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1452 | if (n1 == n && tb1 == tb) |
| 1453 | break; |
| 1454 | ptb = &tb1->jmp_next[n1]; |
| 1455 | } |
| 1456 | *ptb = tb->jmp_next[n]; |
| 1457 | tb->jmp_next[n] = NULL; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1458 | |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1459 | /* suppress the jump to next tb in generated code */ |
| 1460 | tb_reset_jump(tb, n); |
| 1461 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1462 | /* suppress jumps in the tb on which we could have jumped */ |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1463 | tb_reset_jump_recursive(tb_next); |
| 1464 | } |
| 1465 | } |
| 1466 | |
| 1467 | static void tb_reset_jump_recursive(TranslationBlock *tb) |
| 1468 | { |
| 1469 | tb_reset_jump_recursive2(tb, 0); |
| 1470 | tb_reset_jump_recursive2(tb, 1); |
| 1471 | } |
| 1472 | |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1473 | #if defined(TARGET_HAS_ICE) |
Paul Brook | 94df27f | 2010-02-28 23:47:45 +0000 | [diff] [blame] | 1474 | #if defined(CONFIG_USER_ONLY) |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1475 | static void breakpoint_invalidate(CPUArchState *env, target_ulong pc) |
Paul Brook | 94df27f | 2010-02-28 23:47:45 +0000 | [diff] [blame] | 1476 | { |
| 1477 | tb_invalidate_phys_page_range(pc, pc + 1, 0); |
| 1478 | } |
| 1479 | #else |
Max Filippov | 1e7855a | 2012-04-10 02:48:17 +0400 | [diff] [blame] | 1480 | void tb_invalidate_phys_addr(target_phys_addr_t addr) |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1481 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1482 | ram_addr_t ram_addr; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 1483 | MemoryRegionSection *section; |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1484 | |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 1485 | section = phys_page_find(addr >> TARGET_PAGE_BITS); |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 1486 | if (!(memory_region_is_ram(section->mr) |
| 1487 | || (section->mr->rom_device && section->mr->readable))) { |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 1488 | return; |
| 1489 | } |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 1490 | ram_addr = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 1491 | + memory_region_section_addr(section, addr); |
pbrook | 706cd4b | 2006-04-08 17:36:21 +0000 | [diff] [blame] | 1492 | tb_invalidate_phys_page_range(ram_addr, ram_addr + 1, 0); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1493 | } |
Max Filippov | 1e7855a | 2012-04-10 02:48:17 +0400 | [diff] [blame] | 1494 | |
| 1495 | static void breakpoint_invalidate(CPUArchState *env, target_ulong pc) |
| 1496 | { |
Max Filippov | 9d70c4b | 2012-05-27 20:21:08 +0400 | [diff] [blame] | 1497 | tb_invalidate_phys_addr(cpu_get_phys_page_debug(env, pc) | |
| 1498 | (pc & ~TARGET_PAGE_MASK)); |
Max Filippov | 1e7855a | 2012-04-10 02:48:17 +0400 | [diff] [blame] | 1499 | } |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 1500 | #endif |
Paul Brook | 94df27f | 2010-02-28 23:47:45 +0000 | [diff] [blame] | 1501 | #endif /* TARGET_HAS_ICE */ |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1502 | |
Paul Brook | c527ee8 | 2010-03-01 03:31:14 +0000 | [diff] [blame] | 1503 | #if defined(CONFIG_USER_ONLY) |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1504 | void cpu_watchpoint_remove_all(CPUArchState *env, int mask) |
Paul Brook | c527ee8 | 2010-03-01 03:31:14 +0000 | [diff] [blame] | 1505 | |
| 1506 | { |
| 1507 | } |
| 1508 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1509 | int cpu_watchpoint_insert(CPUArchState *env, target_ulong addr, target_ulong len, |
Paul Brook | c527ee8 | 2010-03-01 03:31:14 +0000 | [diff] [blame] | 1510 | int flags, CPUWatchpoint **watchpoint) |
| 1511 | { |
| 1512 | return -ENOSYS; |
| 1513 | } |
| 1514 | #else |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1515 | /* Add a watchpoint. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1516 | int cpu_watchpoint_insert(CPUArchState *env, target_ulong addr, target_ulong len, |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1517 | int flags, CPUWatchpoint **watchpoint) |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1518 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1519 | target_ulong len_mask = ~(len - 1); |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1520 | CPUWatchpoint *wp; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1521 | |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1522 | /* sanity checks: allow power-of-2 lengths, deny unaligned watchpoints */ |
Max Filippov | 0dc2382 | 2012-01-29 03:15:23 +0400 | [diff] [blame] | 1523 | if ((len & (len - 1)) || (addr & ~len_mask) || |
| 1524 | len == 0 || len > TARGET_PAGE_SIZE) { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1525 | fprintf(stderr, "qemu: tried to set invalid watchpoint at " |
| 1526 | TARGET_FMT_lx ", len=" TARGET_FMT_lu "\n", addr, len); |
| 1527 | return -EINVAL; |
| 1528 | } |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1529 | wp = g_malloc(sizeof(*wp)); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1530 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1531 | wp->vaddr = addr; |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1532 | wp->len_mask = len_mask; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1533 | wp->flags = flags; |
| 1534 | |
aliguori | 2dc9f41 | 2008-11-18 20:56:59 +0000 | [diff] [blame] | 1535 | /* keep all GDB-injected watchpoints in front */ |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1536 | if (flags & BP_GDB) |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1537 | QTAILQ_INSERT_HEAD(&env->watchpoints, wp, entry); |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1538 | else |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1539 | QTAILQ_INSERT_TAIL(&env->watchpoints, wp, entry); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1540 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1541 | tlb_flush_page(env, addr); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1542 | |
| 1543 | if (watchpoint) |
| 1544 | *watchpoint = wp; |
| 1545 | return 0; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1546 | } |
| 1547 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1548 | /* Remove a specific watchpoint. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1549 | int cpu_watchpoint_remove(CPUArchState *env, target_ulong addr, target_ulong len, |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1550 | int flags) |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1551 | { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1552 | target_ulong len_mask = ~(len - 1); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1553 | CPUWatchpoint *wp; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1554 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1555 | QTAILQ_FOREACH(wp, &env->watchpoints, entry) { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 1556 | if (addr == wp->vaddr && len_mask == wp->len_mask |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 1557 | && flags == (wp->flags & ~BP_WATCHPOINT_HIT)) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1558 | cpu_watchpoint_remove_by_ref(env, wp); |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1559 | return 0; |
| 1560 | } |
| 1561 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1562 | return -ENOENT; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 1563 | } |
| 1564 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1565 | /* Remove a specific watchpoint by reference. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1566 | void cpu_watchpoint_remove_by_ref(CPUArchState *env, CPUWatchpoint *watchpoint) |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1567 | { |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1568 | QTAILQ_REMOVE(&env->watchpoints, watchpoint, entry); |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 1569 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1570 | tlb_flush_page(env, watchpoint->vaddr); |
| 1571 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1572 | g_free(watchpoint); |
edgar_igl | 7d03f82 | 2008-05-17 18:58:29 +0000 | [diff] [blame] | 1573 | } |
| 1574 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1575 | /* Remove all matching watchpoints. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1576 | void cpu_watchpoint_remove_all(CPUArchState *env, int mask) |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1577 | { |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1578 | CPUWatchpoint *wp, *next; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1579 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1580 | QTAILQ_FOREACH_SAFE(wp, &env->watchpoints, entry, next) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1581 | if (wp->flags & mask) |
| 1582 | cpu_watchpoint_remove_by_ref(env, wp); |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1583 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1584 | } |
Paul Brook | c527ee8 | 2010-03-01 03:31:14 +0000 | [diff] [blame] | 1585 | #endif |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1586 | |
| 1587 | /* Add a breakpoint. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1588 | int cpu_breakpoint_insert(CPUArchState *env, target_ulong pc, int flags, |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1589 | CPUBreakpoint **breakpoint) |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1590 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1591 | #if defined(TARGET_HAS_ICE) |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1592 | CPUBreakpoint *bp; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1593 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1594 | bp = g_malloc(sizeof(*bp)); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1595 | |
| 1596 | bp->pc = pc; |
| 1597 | bp->flags = flags; |
| 1598 | |
aliguori | 2dc9f41 | 2008-11-18 20:56:59 +0000 | [diff] [blame] | 1599 | /* keep all GDB-injected breakpoints in front */ |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1600 | if (flags & BP_GDB) |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1601 | QTAILQ_INSERT_HEAD(&env->breakpoints, bp, entry); |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1602 | else |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1603 | QTAILQ_INSERT_TAIL(&env->breakpoints, bp, entry); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1604 | |
| 1605 | breakpoint_invalidate(env, pc); |
| 1606 | |
| 1607 | if (breakpoint) |
| 1608 | *breakpoint = bp; |
| 1609 | return 0; |
| 1610 | #else |
| 1611 | return -ENOSYS; |
| 1612 | #endif |
| 1613 | } |
| 1614 | |
| 1615 | /* Remove a specific breakpoint. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1616 | int cpu_breakpoint_remove(CPUArchState *env, target_ulong pc, int flags) |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1617 | { |
| 1618 | #if defined(TARGET_HAS_ICE) |
| 1619 | CPUBreakpoint *bp; |
| 1620 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1621 | QTAILQ_FOREACH(bp, &env->breakpoints, entry) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1622 | if (bp->pc == pc && bp->flags == flags) { |
| 1623 | cpu_breakpoint_remove_by_ref(env, bp); |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1624 | return 0; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1625 | } |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1626 | } |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1627 | return -ENOENT; |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1628 | #else |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1629 | return -ENOSYS; |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1630 | #endif |
| 1631 | } |
| 1632 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1633 | /* Remove a specific breakpoint by reference. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1634 | void cpu_breakpoint_remove_by_ref(CPUArchState *env, CPUBreakpoint *breakpoint) |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1635 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1636 | #if defined(TARGET_HAS_ICE) |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1637 | QTAILQ_REMOVE(&env->breakpoints, breakpoint, entry); |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 1638 | |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1639 | breakpoint_invalidate(env, breakpoint->pc); |
| 1640 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1641 | g_free(breakpoint); |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1642 | #endif |
| 1643 | } |
| 1644 | |
| 1645 | /* Remove all matching breakpoints. */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1646 | void cpu_breakpoint_remove_all(CPUArchState *env, int mask) |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1647 | { |
| 1648 | #if defined(TARGET_HAS_ICE) |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1649 | CPUBreakpoint *bp, *next; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1650 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1651 | QTAILQ_FOREACH_SAFE(bp, &env->breakpoints, entry, next) { |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 1652 | if (bp->flags & mask) |
| 1653 | cpu_breakpoint_remove_by_ref(env, bp); |
aliguori | c0ce998 | 2008-11-25 22:13:57 +0000 | [diff] [blame] | 1654 | } |
bellard | 4c3a88a | 2003-07-26 12:06:08 +0000 | [diff] [blame] | 1655 | #endif |
| 1656 | } |
| 1657 | |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1658 | /* enable or disable single step mode. EXCP_DEBUG is returned by the |
| 1659 | CPU loop after each instruction */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1660 | void cpu_single_step(CPUArchState *env, int enabled) |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1661 | { |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 1662 | #if defined(TARGET_HAS_ICE) |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1663 | if (env->singlestep_enabled != enabled) { |
| 1664 | env->singlestep_enabled = enabled; |
aliguori | e22a25c | 2009-03-12 20:12:48 +0000 | [diff] [blame] | 1665 | if (kvm_enabled()) |
| 1666 | kvm_update_guest_debug(env, 0); |
| 1667 | else { |
Stuart Brady | ccbb4d4 | 2009-05-03 12:15:06 +0100 | [diff] [blame] | 1668 | /* must flush all the translated code to avoid inconsistencies */ |
aliguori | e22a25c | 2009-03-12 20:12:48 +0000 | [diff] [blame] | 1669 | /* XXX: only flush what is necessary */ |
| 1670 | tb_flush(env); |
| 1671 | } |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1672 | } |
| 1673 | #endif |
| 1674 | } |
| 1675 | |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1676 | /* enable or disable low levels log */ |
| 1677 | void cpu_set_log(int log_flags) |
| 1678 | { |
| 1679 | loglevel = log_flags; |
| 1680 | if (loglevel && !logfile) { |
pbrook | 11fcfab | 2007-07-01 18:21:11 +0000 | [diff] [blame] | 1681 | logfile = fopen(logfilename, log_append ? "a" : "w"); |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1682 | if (!logfile) { |
| 1683 | perror(logfilename); |
| 1684 | _exit(1); |
| 1685 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1686 | #if !defined(CONFIG_SOFTMMU) |
| 1687 | /* must avoid mmap() usage of glibc by setting a buffer "by hand" */ |
| 1688 | { |
blueswir1 | b55266b | 2008-09-20 08:07:15 +0000 | [diff] [blame] | 1689 | static char logfile_buf[4096]; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1690 | setvbuf(logfile, logfile_buf, _IOLBF, sizeof(logfile_buf)); |
| 1691 | } |
Stefan Weil | daf767b | 2011-12-03 22:32:37 +0100 | [diff] [blame] | 1692 | #elif defined(_WIN32) |
| 1693 | /* Win32 doesn't support line-buffering, so use unbuffered output. */ |
| 1694 | setvbuf(logfile, NULL, _IONBF, 0); |
| 1695 | #else |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1696 | setvbuf(logfile, NULL, _IOLBF, 0); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 1697 | #endif |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 1698 | log_append = 1; |
| 1699 | } |
| 1700 | if (!loglevel && logfile) { |
| 1701 | fclose(logfile); |
| 1702 | logfile = NULL; |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1703 | } |
| 1704 | } |
| 1705 | |
| 1706 | void cpu_set_log_filename(const char *filename) |
| 1707 | { |
| 1708 | logfilename = strdup(filename); |
pbrook | e735b91 | 2007-06-30 13:53:24 +0000 | [diff] [blame] | 1709 | if (logfile) { |
| 1710 | fclose(logfile); |
| 1711 | logfile = NULL; |
| 1712 | } |
| 1713 | cpu_set_log(loglevel); |
bellard | 3486513 | 2003-10-05 14:28:56 +0000 | [diff] [blame] | 1714 | } |
bellard | c33a346 | 2003-07-29 20:50:33 +0000 | [diff] [blame] | 1715 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1716 | static void cpu_unlink_tb(CPUArchState *env) |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1717 | { |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 1718 | /* FIXME: TB unchaining isn't SMP safe. For now just ignore the |
| 1719 | problem and hope the cpu will stop of its own accord. For userspace |
| 1720 | emulation this often isn't actually as bad as it sounds. Often |
| 1721 | signals are used primarily to interrupt blocking syscalls. */ |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1722 | TranslationBlock *tb; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1723 | static spinlock_t interrupt_lock = SPIN_LOCK_UNLOCKED; |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1724 | |
Riku Voipio | cab1b4b | 2010-01-20 12:56:27 +0200 | [diff] [blame] | 1725 | spin_lock(&interrupt_lock); |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1726 | tb = env->current_tb; |
| 1727 | /* if the cpu is currently executing code, we must unlink it and |
| 1728 | all the potentially executing TB */ |
Riku Voipio | f76cfe5 | 2009-12-04 15:16:30 +0200 | [diff] [blame] | 1729 | if (tb) { |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1730 | env->current_tb = NULL; |
| 1731 | tb_reset_jump_recursive(tb); |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1732 | } |
Riku Voipio | cab1b4b | 2010-01-20 12:56:27 +0200 | [diff] [blame] | 1733 | spin_unlock(&interrupt_lock); |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1734 | } |
| 1735 | |
Jan Kiszka | 97ffbd8 | 2011-04-13 01:32:56 +0200 | [diff] [blame] | 1736 | #ifndef CONFIG_USER_ONLY |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1737 | /* mask must never be zero, except for A20 change call */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1738 | static void tcg_handle_interrupt(CPUArchState *env, int mask) |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1739 | { |
| 1740 | int old_mask; |
| 1741 | |
| 1742 | old_mask = env->interrupt_request; |
| 1743 | env->interrupt_request |= mask; |
| 1744 | |
aliguori | 8edac96 | 2009-04-24 18:03:45 +0000 | [diff] [blame] | 1745 | /* |
| 1746 | * If called from iothread context, wake the target cpu in |
| 1747 | * case its halted. |
| 1748 | */ |
Jan Kiszka | b7680cb | 2011-03-12 17:43:51 +0100 | [diff] [blame] | 1749 | if (!qemu_cpu_is_self(env)) { |
aliguori | 8edac96 | 2009-04-24 18:03:45 +0000 | [diff] [blame] | 1750 | qemu_cpu_kick(env); |
| 1751 | return; |
| 1752 | } |
aliguori | 8edac96 | 2009-04-24 18:03:45 +0000 | [diff] [blame] | 1753 | |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1754 | if (use_icount) { |
pbrook | 266910c | 2008-07-09 15:31:50 +0000 | [diff] [blame] | 1755 | env->icount_decr.u16.high = 0xffff; |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1756 | if (!can_do_io(env) |
aurel32 | be214e6 | 2009-03-06 21:48:00 +0000 | [diff] [blame] | 1757 | && (mask & ~old_mask) != 0) { |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1758 | cpu_abort(env, "Raised interrupt while not in I/O function"); |
| 1759 | } |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 1760 | } else { |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1761 | cpu_unlink_tb(env); |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1762 | } |
| 1763 | } |
| 1764 | |
Jan Kiszka | ec6959d | 2011-04-13 01:32:56 +0200 | [diff] [blame] | 1765 | CPUInterruptHandler cpu_interrupt_handler = tcg_handle_interrupt; |
| 1766 | |
Jan Kiszka | 97ffbd8 | 2011-04-13 01:32:56 +0200 | [diff] [blame] | 1767 | #else /* CONFIG_USER_ONLY */ |
| 1768 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1769 | void cpu_interrupt(CPUArchState *env, int mask) |
Jan Kiszka | 97ffbd8 | 2011-04-13 01:32:56 +0200 | [diff] [blame] | 1770 | { |
| 1771 | env->interrupt_request |= mask; |
| 1772 | cpu_unlink_tb(env); |
| 1773 | } |
| 1774 | #endif /* CONFIG_USER_ONLY */ |
| 1775 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1776 | void cpu_reset_interrupt(CPUArchState *env, int mask) |
bellard | b54ad04 | 2004-05-20 13:42:52 +0000 | [diff] [blame] | 1777 | { |
| 1778 | env->interrupt_request &= ~mask; |
| 1779 | } |
| 1780 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1781 | void cpu_exit(CPUArchState *env) |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 1782 | { |
| 1783 | env->exit_request = 1; |
| 1784 | cpu_unlink_tb(env); |
| 1785 | } |
| 1786 | |
blueswir1 | c7cd6a3 | 2008-10-02 18:27:46 +0000 | [diff] [blame] | 1787 | const CPULogItem cpu_log_items[] = { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1788 | { CPU_LOG_TB_OUT_ASM, "out_asm", |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1789 | "show generated host assembly code for each compiled TB" }, |
| 1790 | { CPU_LOG_TB_IN_ASM, "in_asm", |
| 1791 | "show target assembly code for each compiled TB" }, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1792 | { CPU_LOG_TB_OP, "op", |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 1793 | "show micro ops for each compiled TB" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1794 | { CPU_LOG_TB_OP_OPT, "op_opt", |
blueswir1 | e01a115 | 2008-03-14 17:37:11 +0000 | [diff] [blame] | 1795 | "show micro ops " |
| 1796 | #ifdef TARGET_I386 |
| 1797 | "before eflags optimization and " |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1798 | #endif |
blueswir1 | e01a115 | 2008-03-14 17:37:11 +0000 | [diff] [blame] | 1799 | "after liveness analysis" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1800 | { CPU_LOG_INT, "int", |
| 1801 | "show interrupts/exceptions in short format" }, |
| 1802 | { CPU_LOG_EXEC, "exec", |
| 1803 | "show trace before each executed TB (lots of logs)" }, |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1804 | { CPU_LOG_TB_CPU, "cpu", |
ths | e91c8a7 | 2007-06-03 13:35:16 +0000 | [diff] [blame] | 1805 | "show CPU state before block translation" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1806 | #ifdef TARGET_I386 |
| 1807 | { CPU_LOG_PCALL, "pcall", |
| 1808 | "show protected mode far calls/returns/exceptions" }, |
aliguori | eca1bdf | 2009-01-26 19:54:31 +0000 | [diff] [blame] | 1809 | { CPU_LOG_RESET, "cpu_reset", |
| 1810 | "show CPU state before CPU resets" }, |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1811 | #endif |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1812 | #ifdef DEBUG_IOPORT |
bellard | fd87259 | 2004-05-12 19:11:15 +0000 | [diff] [blame] | 1813 | { CPU_LOG_IOPORT, "ioport", |
| 1814 | "show all i/o ports accesses" }, |
bellard | 8e3a9fd | 2004-10-09 17:32:58 +0000 | [diff] [blame] | 1815 | #endif |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1816 | { 0, NULL, NULL }, |
| 1817 | }; |
| 1818 | |
| 1819 | static int cmp1(const char *s1, int n, const char *s2) |
| 1820 | { |
| 1821 | if (strlen(s2) != n) |
| 1822 | return 0; |
| 1823 | return memcmp(s1, s2, n) == 0; |
| 1824 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1825 | |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1826 | /* takes a comma separated list of log masks. Return 0 if error. */ |
| 1827 | int cpu_str_to_log_mask(const char *str) |
| 1828 | { |
blueswir1 | c7cd6a3 | 2008-10-02 18:27:46 +0000 | [diff] [blame] | 1829 | const CPULogItem *item; |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1830 | int mask; |
| 1831 | const char *p, *p1; |
| 1832 | |
| 1833 | p = str; |
| 1834 | mask = 0; |
| 1835 | for(;;) { |
| 1836 | p1 = strchr(p, ','); |
| 1837 | if (!p1) |
| 1838 | p1 = p + strlen(p); |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 1839 | if(cmp1(p,p1-p,"all")) { |
| 1840 | for(item = cpu_log_items; item->mask != 0; item++) { |
| 1841 | mask |= item->mask; |
| 1842 | } |
| 1843 | } else { |
| 1844 | for(item = cpu_log_items; item->mask != 0; item++) { |
| 1845 | if (cmp1(p, p1 - p, item->name)) |
| 1846 | goto found; |
| 1847 | } |
| 1848 | return 0; |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1849 | } |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 1850 | found: |
| 1851 | mask |= item->mask; |
| 1852 | if (*p1 != ',') |
| 1853 | break; |
| 1854 | p = p1 + 1; |
| 1855 | } |
| 1856 | return mask; |
| 1857 | } |
bellard | ea041c0 | 2003-06-25 16:16:50 +0000 | [diff] [blame] | 1858 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1859 | void cpu_abort(CPUArchState *env, const char *fmt, ...) |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1860 | { |
| 1861 | va_list ap; |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1862 | va_list ap2; |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1863 | |
| 1864 | va_start(ap, fmt); |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1865 | va_copy(ap2, ap); |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1866 | fprintf(stderr, "qemu: fatal: "); |
| 1867 | vfprintf(stderr, fmt, ap); |
| 1868 | fprintf(stderr, "\n"); |
| 1869 | #ifdef TARGET_I386 |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 1870 | cpu_dump_state(env, stderr, fprintf, X86_DUMP_FPU | X86_DUMP_CCOP); |
| 1871 | #else |
| 1872 | cpu_dump_state(env, stderr, fprintf, 0); |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1873 | #endif |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1874 | if (qemu_log_enabled()) { |
| 1875 | qemu_log("qemu: fatal: "); |
| 1876 | qemu_log_vprintf(fmt, ap2); |
| 1877 | qemu_log("\n"); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1878 | #ifdef TARGET_I386 |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1879 | log_cpu_state(env, X86_DUMP_FPU | X86_DUMP_CCOP); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1880 | #else |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1881 | log_cpu_state(env, 0); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1882 | #endif |
aliguori | 31b1a7b | 2009-01-15 22:35:09 +0000 | [diff] [blame] | 1883 | qemu_log_flush(); |
aliguori | 93fcfe3 | 2009-01-15 22:34:14 +0000 | [diff] [blame] | 1884 | qemu_log_close(); |
balrog | 924edca | 2007-06-10 14:07:13 +0000 | [diff] [blame] | 1885 | } |
pbrook | 493ae1f | 2007-11-23 16:53:59 +0000 | [diff] [blame] | 1886 | va_end(ap2); |
j_mayer | f937329 | 2007-09-29 12:18:20 +0000 | [diff] [blame] | 1887 | va_end(ap); |
Riku Voipio | fd052bf | 2010-01-25 14:30:49 +0200 | [diff] [blame] | 1888 | #if defined(CONFIG_USER_ONLY) |
| 1889 | { |
| 1890 | struct sigaction act; |
| 1891 | sigfillset(&act.sa_mask); |
| 1892 | act.sa_handler = SIG_DFL; |
| 1893 | sigaction(SIGABRT, &act, NULL); |
| 1894 | } |
| 1895 | #endif |
bellard | 7501267 | 2003-06-21 13:11:07 +0000 | [diff] [blame] | 1896 | abort(); |
| 1897 | } |
| 1898 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1899 | CPUArchState *cpu_copy(CPUArchState *env) |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1900 | { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1901 | CPUArchState *new_env = cpu_init(env->cpu_model_str); |
| 1902 | CPUArchState *next_cpu = new_env->next_cpu; |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1903 | int cpu_index = new_env->cpu_index; |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1904 | #if defined(TARGET_HAS_ICE) |
| 1905 | CPUBreakpoint *bp; |
| 1906 | CPUWatchpoint *wp; |
| 1907 | #endif |
| 1908 | |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 1909 | memcpy(new_env, env, sizeof(CPUArchState)); |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1910 | |
| 1911 | /* Preserve chaining and index. */ |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1912 | new_env->next_cpu = next_cpu; |
| 1913 | new_env->cpu_index = cpu_index; |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1914 | |
| 1915 | /* Clone all break/watchpoints. |
| 1916 | Note: Once we support ptrace with hw-debug register access, make sure |
| 1917 | BP_CPU break/watchpoints are handled correctly on clone. */ |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1918 | QTAILQ_INIT(&env->breakpoints); |
| 1919 | QTAILQ_INIT(&env->watchpoints); |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1920 | #if defined(TARGET_HAS_ICE) |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1921 | QTAILQ_FOREACH(bp, &env->breakpoints, entry) { |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1922 | cpu_breakpoint_insert(new_env, bp->pc, bp->flags, NULL); |
| 1923 | } |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 1924 | QTAILQ_FOREACH(wp, &env->watchpoints, entry) { |
aliguori | 5a38f08 | 2009-01-15 20:16:51 +0000 | [diff] [blame] | 1925 | cpu_watchpoint_insert(new_env, wp->vaddr, (~wp->len_mask) + 1, |
| 1926 | wp->flags, NULL); |
| 1927 | } |
| 1928 | #endif |
| 1929 | |
ths | c5be9f0 | 2007-02-28 20:20:53 +0000 | [diff] [blame] | 1930 | return new_env; |
| 1931 | } |
| 1932 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 1933 | #if !defined(CONFIG_USER_ONLY) |
Blue Swirl | 0cac1b6 | 2012-04-09 16:50:52 +0000 | [diff] [blame] | 1934 | void tb_flush_jmp_cache(CPUArchState *env, target_ulong addr) |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 1935 | { |
| 1936 | unsigned int i; |
| 1937 | |
| 1938 | /* Discard jump cache entries for any tb which might potentially |
| 1939 | overlap the flushed page. */ |
| 1940 | i = tb_jmp_cache_hash_page(addr - TARGET_PAGE_SIZE); |
| 1941 | memset (&env->tb_jmp_cache[i], 0, |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 1942 | TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *)); |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 1943 | |
| 1944 | i = tb_jmp_cache_hash_page(addr); |
| 1945 | memset (&env->tb_jmp_cache[i], 0, |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 1946 | TB_JMP_PAGE_SIZE * sizeof(TranslationBlock *)); |
edgar_igl | 5c751e9 | 2008-05-06 08:44:21 +0000 | [diff] [blame] | 1947 | } |
| 1948 | |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 1949 | /* Note: start and end must be within the same ram block. */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1950 | 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] | 1951 | int dirty_flags) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1952 | { |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1953 | uintptr_t length, start1; |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1954 | |
| 1955 | start &= TARGET_PAGE_MASK; |
| 1956 | end = TARGET_PAGE_ALIGN(end); |
| 1957 | |
| 1958 | length = end - start; |
| 1959 | if (length == 0) |
| 1960 | return; |
Yoshiaki Tamura | f7c11b5 | 2010-03-23 16:39:53 +0900 | [diff] [blame] | 1961 | cpu_physical_memory_mask_dirty_range(start, length, dirty_flags); |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 1962 | |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1963 | /* we modify the TLB cache so that the dirty bit will be set again |
| 1964 | when accessing the range */ |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1965 | start1 = (uintptr_t)qemu_safe_ram_ptr(start); |
Stefan Weil | a57d23e | 2011-04-30 22:49:26 +0200 | [diff] [blame] | 1966 | /* Check that we don't span multiple blocks - this breaks the |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 1967 | address comparisons below. */ |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 1968 | if ((uintptr_t)qemu_safe_ram_ptr(end - 1) - start1 |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 1969 | != (end - 1) - start) { |
| 1970 | abort(); |
| 1971 | } |
Blue Swirl | e554861 | 2012-04-21 13:08:33 +0000 | [diff] [blame] | 1972 | cpu_tlb_reset_dirty_all(start1, length); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 1973 | } |
| 1974 | |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 1975 | int cpu_physical_memory_set_dirty_tracking(int enable) |
| 1976 | { |
Michael S. Tsirkin | f6f3fbc | 2010-01-27 22:06:57 +0200 | [diff] [blame] | 1977 | int ret = 0; |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 1978 | in_migration = enable; |
Michael S. Tsirkin | f6f3fbc | 2010-01-27 22:06:57 +0200 | [diff] [blame] | 1979 | return ret; |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 1980 | } |
| 1981 | |
Blue Swirl | e554861 | 2012-04-21 13:08:33 +0000 | [diff] [blame] | 1982 | target_phys_addr_t memory_region_section_get_iotlb(CPUArchState *env, |
| 1983 | MemoryRegionSection *section, |
| 1984 | target_ulong vaddr, |
| 1985 | target_phys_addr_t paddr, |
| 1986 | int prot, |
| 1987 | target_ulong *address) |
| 1988 | { |
| 1989 | target_phys_addr_t iotlb; |
| 1990 | CPUWatchpoint *wp; |
| 1991 | |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 1992 | if (memory_region_is_ram(section->mr)) { |
Blue Swirl | e554861 | 2012-04-21 13:08:33 +0000 | [diff] [blame] | 1993 | /* Normal RAM. */ |
| 1994 | iotlb = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 1995 | + memory_region_section_addr(section, paddr); |
Blue Swirl | e554861 | 2012-04-21 13:08:33 +0000 | [diff] [blame] | 1996 | if (!section->readonly) { |
| 1997 | iotlb |= phys_section_notdirty; |
| 1998 | } else { |
| 1999 | iotlb |= phys_section_rom; |
| 2000 | } |
| 2001 | } else { |
| 2002 | /* IO handlers are currently passed a physical address. |
| 2003 | It would be nice to pass an offset from the base address |
| 2004 | of that region. This would avoid having to special case RAM, |
| 2005 | and avoid full address decoding in every device. |
| 2006 | We can't use the high bits of pd for this because |
| 2007 | IO_MEM_ROMD uses these as a ram address. */ |
| 2008 | iotlb = section - phys_sections; |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 2009 | iotlb += memory_region_section_addr(section, paddr); |
Blue Swirl | e554861 | 2012-04-21 13:08:33 +0000 | [diff] [blame] | 2010 | } |
| 2011 | |
| 2012 | /* Make accesses to pages with watchpoints go via the |
| 2013 | watchpoint trap routines. */ |
| 2014 | QTAILQ_FOREACH(wp, &env->watchpoints, entry) { |
| 2015 | if (vaddr == (wp->vaddr & TARGET_PAGE_MASK)) { |
| 2016 | /* Avoid trapping reads of pages with a write breakpoint. */ |
| 2017 | if ((prot & PAGE_WRITE) || (wp->flags & BP_MEM_READ)) { |
| 2018 | iotlb = phys_section_watch + paddr; |
| 2019 | *address |= TLB_MMIO; |
| 2020 | break; |
| 2021 | } |
| 2022 | } |
| 2023 | } |
| 2024 | |
| 2025 | return iotlb; |
| 2026 | } |
| 2027 | |
bellard | 0124311 | 2004-01-04 15:48:17 +0000 | [diff] [blame] | 2028 | #else |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2029 | /* |
| 2030 | * Walks guest process memory "regions" one by one |
| 2031 | * and calls callback function 'fn' for each region. |
| 2032 | */ |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2033 | |
| 2034 | struct walk_memory_regions_data |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2035 | { |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2036 | walk_memory_regions_fn fn; |
| 2037 | void *priv; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 2038 | uintptr_t start; |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2039 | int prot; |
| 2040 | }; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2041 | |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2042 | static int walk_memory_regions_end(struct walk_memory_regions_data *data, |
Paul Brook | b480d9b | 2010-03-12 23:23:29 +0000 | [diff] [blame] | 2043 | abi_ulong end, int new_prot) |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2044 | { |
| 2045 | if (data->start != -1ul) { |
| 2046 | int rc = data->fn(data->priv, data->start, end, data->prot); |
| 2047 | if (rc != 0) { |
| 2048 | return rc; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2049 | } |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2050 | } |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2051 | |
| 2052 | data->start = (new_prot ? end : -1ul); |
| 2053 | data->prot = new_prot; |
| 2054 | |
| 2055 | return 0; |
| 2056 | } |
| 2057 | |
| 2058 | static int walk_memory_regions_1(struct walk_memory_regions_data *data, |
Paul Brook | b480d9b | 2010-03-12 23:23:29 +0000 | [diff] [blame] | 2059 | abi_ulong base, int level, void **lp) |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2060 | { |
Paul Brook | b480d9b | 2010-03-12 23:23:29 +0000 | [diff] [blame] | 2061 | abi_ulong pa; |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2062 | int i, rc; |
| 2063 | |
| 2064 | if (*lp == NULL) { |
| 2065 | return walk_memory_regions_end(data, base, 0); |
| 2066 | } |
| 2067 | |
| 2068 | if (level == 0) { |
| 2069 | PageDesc *pd = *lp; |
Paul Brook | 7296aba | 2010-03-14 14:58:46 +0000 | [diff] [blame] | 2070 | for (i = 0; i < L2_SIZE; ++i) { |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2071 | int prot = pd[i].flags; |
| 2072 | |
| 2073 | pa = base | (i << TARGET_PAGE_BITS); |
| 2074 | if (prot != data->prot) { |
| 2075 | rc = walk_memory_regions_end(data, pa, prot); |
| 2076 | if (rc != 0) { |
| 2077 | return rc; |
| 2078 | } |
| 2079 | } |
| 2080 | } |
| 2081 | } else { |
| 2082 | void **pp = *lp; |
Paul Brook | 7296aba | 2010-03-14 14:58:46 +0000 | [diff] [blame] | 2083 | for (i = 0; i < L2_SIZE; ++i) { |
Paul Brook | b480d9b | 2010-03-12 23:23:29 +0000 | [diff] [blame] | 2084 | pa = base | ((abi_ulong)i << |
| 2085 | (TARGET_PAGE_BITS + L2_BITS * level)); |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2086 | rc = walk_memory_regions_1(data, pa, level - 1, pp + i); |
| 2087 | if (rc != 0) { |
| 2088 | return rc; |
| 2089 | } |
| 2090 | } |
| 2091 | } |
| 2092 | |
| 2093 | return 0; |
| 2094 | } |
| 2095 | |
| 2096 | int walk_memory_regions(void *priv, walk_memory_regions_fn fn) |
| 2097 | { |
| 2098 | struct walk_memory_regions_data data; |
Stefan Weil | 8efe0ca | 2012-04-12 15:42:19 +0200 | [diff] [blame] | 2099 | uintptr_t i; |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2100 | |
| 2101 | data.fn = fn; |
| 2102 | data.priv = priv; |
| 2103 | data.start = -1ul; |
| 2104 | data.prot = 0; |
| 2105 | |
| 2106 | for (i = 0; i < V_L1_SIZE; i++) { |
Paul Brook | b480d9b | 2010-03-12 23:23:29 +0000 | [diff] [blame] | 2107 | int rc = walk_memory_regions_1(&data, (abi_ulong)i << V_L1_SHIFT, |
Richard Henderson | 5cd2c5b | 2010-03-10 15:53:37 -0800 | [diff] [blame] | 2108 | V_L1_SHIFT / L2_BITS - 1, l1_map + i); |
| 2109 | if (rc != 0) { |
| 2110 | return rc; |
| 2111 | } |
| 2112 | } |
| 2113 | |
| 2114 | return walk_memory_regions_end(&data, 0, 0); |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2115 | } |
| 2116 | |
Paul Brook | b480d9b | 2010-03-12 23:23:29 +0000 | [diff] [blame] | 2117 | static int dump_region(void *priv, abi_ulong start, |
| 2118 | abi_ulong end, unsigned long prot) |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2119 | { |
| 2120 | FILE *f = (FILE *)priv; |
| 2121 | |
Paul Brook | b480d9b | 2010-03-12 23:23:29 +0000 | [diff] [blame] | 2122 | (void) fprintf(f, TARGET_ABI_FMT_lx"-"TARGET_ABI_FMT_lx |
| 2123 | " "TARGET_ABI_FMT_lx" %c%c%c\n", |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2124 | start, end, end - start, |
| 2125 | ((prot & PAGE_READ) ? 'r' : '-'), |
| 2126 | ((prot & PAGE_WRITE) ? 'w' : '-'), |
| 2127 | ((prot & PAGE_EXEC) ? 'x' : '-')); |
| 2128 | |
| 2129 | return (0); |
| 2130 | } |
| 2131 | |
| 2132 | /* dump memory mappings */ |
| 2133 | void page_dump(FILE *f) |
| 2134 | { |
| 2135 | (void) fprintf(f, "%-8s %-8s %-8s %s\n", |
| 2136 | "start", "end", "size", "prot"); |
| 2137 | walk_memory_regions(f, dump_region); |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2138 | } |
| 2139 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2140 | int page_get_flags(target_ulong address) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2141 | { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2142 | PageDesc *p; |
| 2143 | |
| 2144 | p = page_find(address >> TARGET_PAGE_BITS); |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2145 | if (!p) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2146 | return 0; |
| 2147 | return p->flags; |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2148 | } |
| 2149 | |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2150 | /* Modify the flags of a page and invalidate the code if necessary. |
| 2151 | The flag PAGE_WRITE_ORG is positioned automatically depending |
| 2152 | on PAGE_WRITE. The mmap_lock should already be held. */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2153 | void page_set_flags(target_ulong start, target_ulong end, int flags) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2154 | { |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2155 | target_ulong addr, len; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2156 | |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2157 | /* This function should never be called with addresses outside the |
| 2158 | guest address space. If this assert fires, it probably indicates |
| 2159 | a missing call to h2g_valid. */ |
Paul Brook | b480d9b | 2010-03-12 23:23:29 +0000 | [diff] [blame] | 2160 | #if TARGET_ABI_BITS > L1_MAP_ADDR_SPACE_BITS |
| 2161 | assert(end < ((abi_ulong)1 << L1_MAP_ADDR_SPACE_BITS)); |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2162 | #endif |
| 2163 | assert(start < end); |
| 2164 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2165 | start = start & TARGET_PAGE_MASK; |
| 2166 | end = TARGET_PAGE_ALIGN(end); |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2167 | |
| 2168 | if (flags & PAGE_WRITE) { |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2169 | flags |= PAGE_WRITE_ORG; |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2170 | } |
| 2171 | |
| 2172 | for (addr = start, len = end - start; |
| 2173 | len != 0; |
| 2174 | len -= TARGET_PAGE_SIZE, addr += TARGET_PAGE_SIZE) { |
| 2175 | PageDesc *p = page_find_alloc(addr >> TARGET_PAGE_BITS, 1); |
| 2176 | |
| 2177 | /* If the write protection bit is set, then we invalidate |
| 2178 | the code inside. */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2179 | if (!(p->flags & PAGE_WRITE) && |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2180 | (flags & PAGE_WRITE) && |
| 2181 | p->first_tb) { |
bellard | d720b93 | 2004-04-25 17:57:43 +0000 | [diff] [blame] | 2182 | tb_invalidate_phys_page(addr, 0, NULL); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2183 | } |
| 2184 | p->flags = flags; |
| 2185 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2186 | } |
| 2187 | |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2188 | int page_check_range(target_ulong start, target_ulong len, int flags) |
| 2189 | { |
| 2190 | PageDesc *p; |
| 2191 | target_ulong end; |
| 2192 | target_ulong addr; |
| 2193 | |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2194 | /* This function should never be called with addresses outside the |
| 2195 | guest address space. If this assert fires, it probably indicates |
| 2196 | a missing call to h2g_valid. */ |
Blue Swirl | 338e9e6 | 2010-03-13 09:48:08 +0000 | [diff] [blame] | 2197 | #if TARGET_ABI_BITS > L1_MAP_ADDR_SPACE_BITS |
| 2198 | assert(start < ((abi_ulong)1 << L1_MAP_ADDR_SPACE_BITS)); |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2199 | #endif |
| 2200 | |
Richard Henderson | 3e0650a | 2010-03-29 10:54:42 -0700 | [diff] [blame] | 2201 | if (len == 0) { |
| 2202 | return 0; |
| 2203 | } |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2204 | if (start + len - 1 < start) { |
| 2205 | /* We've wrapped around. */ |
balrog | 55f280c | 2008-10-28 10:24:11 +0000 | [diff] [blame] | 2206 | return -1; |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2207 | } |
balrog | 55f280c | 2008-10-28 10:24:11 +0000 | [diff] [blame] | 2208 | |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2209 | end = TARGET_PAGE_ALIGN(start+len); /* must do before we loose bits in the next step */ |
| 2210 | start = start & TARGET_PAGE_MASK; |
| 2211 | |
Richard Henderson | 376a790 | 2010-03-10 15:57:04 -0800 | [diff] [blame] | 2212 | for (addr = start, len = end - start; |
| 2213 | len != 0; |
| 2214 | len -= TARGET_PAGE_SIZE, addr += TARGET_PAGE_SIZE) { |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2215 | p = page_find(addr >> TARGET_PAGE_BITS); |
| 2216 | if( !p ) |
| 2217 | return -1; |
| 2218 | if( !(p->flags & PAGE_VALID) ) |
| 2219 | return -1; |
| 2220 | |
bellard | dae3270 | 2007-11-14 10:51:00 +0000 | [diff] [blame] | 2221 | if ((flags & PAGE_READ) && !(p->flags & PAGE_READ)) |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2222 | return -1; |
bellard | dae3270 | 2007-11-14 10:51:00 +0000 | [diff] [blame] | 2223 | if (flags & PAGE_WRITE) { |
| 2224 | if (!(p->flags & PAGE_WRITE_ORG)) |
| 2225 | return -1; |
| 2226 | /* unprotect the page if it was put read-only because it |
| 2227 | contains translated code */ |
| 2228 | if (!(p->flags & PAGE_WRITE)) { |
| 2229 | if (!page_unprotect(addr, 0, NULL)) |
| 2230 | return -1; |
| 2231 | } |
| 2232 | return 0; |
| 2233 | } |
ths | 3d97b40 | 2007-11-02 19:02:07 +0000 | [diff] [blame] | 2234 | } |
| 2235 | return 0; |
| 2236 | } |
| 2237 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2238 | /* called from signal handler: invalidate the code and unprotect the |
Stuart Brady | ccbb4d4 | 2009-05-03 12:15:06 +0100 | [diff] [blame] | 2239 | page. Return TRUE if the fault was successfully handled. */ |
Stefan Weil | 6375e09 | 2012-04-06 22:26:15 +0200 | [diff] [blame] | 2240 | int page_unprotect(target_ulong address, uintptr_t pc, void *puc) |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2241 | { |
Aurelien Jarno | 45d679d | 2010-03-29 02:12:51 +0200 | [diff] [blame] | 2242 | unsigned int prot; |
| 2243 | PageDesc *p; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2244 | target_ulong host_start, host_end, addr; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2245 | |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2246 | /* Technically this isn't safe inside a signal handler. However we |
| 2247 | know this only ever happens in a synchronous SEGV handler, so in |
| 2248 | practice it seems to be ok. */ |
| 2249 | mmap_lock(); |
| 2250 | |
Aurelien Jarno | 45d679d | 2010-03-29 02:12:51 +0200 | [diff] [blame] | 2251 | p = page_find(address >> TARGET_PAGE_BITS); |
| 2252 | if (!p) { |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2253 | mmap_unlock(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2254 | return 0; |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2255 | } |
Aurelien Jarno | 45d679d | 2010-03-29 02:12:51 +0200 | [diff] [blame] | 2256 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2257 | /* if the page was really writable, then we change its |
| 2258 | protection back to writable */ |
Aurelien Jarno | 45d679d | 2010-03-29 02:12:51 +0200 | [diff] [blame] | 2259 | if ((p->flags & PAGE_WRITE_ORG) && !(p->flags & PAGE_WRITE)) { |
| 2260 | host_start = address & qemu_host_page_mask; |
| 2261 | host_end = host_start + qemu_host_page_size; |
| 2262 | |
| 2263 | prot = 0; |
| 2264 | for (addr = host_start ; addr < host_end ; addr += TARGET_PAGE_SIZE) { |
| 2265 | p = page_find(addr >> TARGET_PAGE_BITS); |
| 2266 | p->flags |= PAGE_WRITE; |
| 2267 | prot |= p->flags; |
| 2268 | |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2269 | /* and since the content will be modified, we must invalidate |
| 2270 | the corresponding translated code. */ |
Aurelien Jarno | 45d679d | 2010-03-29 02:12:51 +0200 | [diff] [blame] | 2271 | tb_invalidate_phys_page(addr, pc, puc); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2272 | #ifdef DEBUG_TB_CHECK |
Aurelien Jarno | 45d679d | 2010-03-29 02:12:51 +0200 | [diff] [blame] | 2273 | tb_invalidate_check(addr); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2274 | #endif |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2275 | } |
Aurelien Jarno | 45d679d | 2010-03-29 02:12:51 +0200 | [diff] [blame] | 2276 | mprotect((void *)g2h(host_start), qemu_host_page_size, |
| 2277 | prot & PAGE_BITS); |
| 2278 | |
| 2279 | mmap_unlock(); |
| 2280 | return 1; |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2281 | } |
pbrook | c8a706f | 2008-06-02 16:16:42 +0000 | [diff] [blame] | 2282 | mmap_unlock(); |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2283 | return 0; |
| 2284 | } |
bellard | 9fa3e85 | 2004-01-04 18:06:42 +0000 | [diff] [blame] | 2285 | #endif /* defined(CONFIG_USER_ONLY) */ |
| 2286 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 2287 | #if !defined(CONFIG_USER_ONLY) |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2288 | |
Paul Brook | c04b2b7 | 2010-03-01 03:31:14 +0000 | [diff] [blame] | 2289 | #define SUBPAGE_IDX(addr) ((addr) & ~TARGET_PAGE_MASK) |
| 2290 | typedef struct subpage_t { |
Avi Kivity | 70c68e4 | 2012-01-02 12:32:48 +0200 | [diff] [blame] | 2291 | MemoryRegion iomem; |
Paul Brook | c04b2b7 | 2010-03-01 03:31:14 +0000 | [diff] [blame] | 2292 | target_phys_addr_t base; |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 2293 | uint16_t sub_section[TARGET_PAGE_SIZE]; |
Paul Brook | c04b2b7 | 2010-03-01 03:31:14 +0000 | [diff] [blame] | 2294 | } subpage_t; |
| 2295 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2296 | static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end, |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 2297 | uint16_t section); |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2298 | static subpage_t *subpage_init(target_phys_addr_t base); |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 2299 | static void destroy_page_desc(uint16_t section_index) |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2300 | { |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 2301 | MemoryRegionSection *section = &phys_sections[section_index]; |
| 2302 | MemoryRegion *mr = section->mr; |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2303 | |
| 2304 | if (mr->subpage) { |
| 2305 | subpage_t *subpage = container_of(mr, subpage_t, iomem); |
| 2306 | memory_region_destroy(&subpage->iomem); |
| 2307 | g_free(subpage); |
| 2308 | } |
| 2309 | } |
| 2310 | |
Avi Kivity | 4346ae3 | 2012-02-10 17:00:01 +0200 | [diff] [blame] | 2311 | static void destroy_l2_mapping(PhysPageEntry *lp, unsigned level) |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2312 | { |
| 2313 | unsigned i; |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 2314 | PhysPageEntry *p; |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2315 | |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 2316 | if (lp->ptr == PHYS_MAP_NODE_NIL) { |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2317 | return; |
| 2318 | } |
| 2319 | |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 2320 | p = phys_map_nodes[lp->ptr]; |
Avi Kivity | 4346ae3 | 2012-02-10 17:00:01 +0200 | [diff] [blame] | 2321 | for (i = 0; i < L2_SIZE; ++i) { |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 2322 | if (!p[i].is_leaf) { |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2323 | destroy_l2_mapping(&p[i], level - 1); |
Avi Kivity | 4346ae3 | 2012-02-10 17:00:01 +0200 | [diff] [blame] | 2324 | } else { |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 2325 | destroy_page_desc(p[i].ptr); |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2326 | } |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2327 | } |
Avi Kivity | 07f07b3 | 2012-02-13 20:45:32 +0200 | [diff] [blame] | 2328 | lp->is_leaf = 0; |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 2329 | lp->ptr = PHYS_MAP_NODE_NIL; |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2330 | } |
| 2331 | |
| 2332 | static void destroy_all_mappings(void) |
| 2333 | { |
Avi Kivity | 3eef53d | 2012-02-10 14:57:31 +0200 | [diff] [blame] | 2334 | destroy_l2_mapping(&phys_map, P_L2_LEVELS - 1); |
Avi Kivity | d6f2ea2 | 2012-02-12 20:12:49 +0200 | [diff] [blame] | 2335 | phys_map_nodes_reset(); |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 2336 | } |
| 2337 | |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 2338 | static uint16_t phys_section_add(MemoryRegionSection *section) |
| 2339 | { |
| 2340 | if (phys_sections_nb == phys_sections_nb_alloc) { |
| 2341 | phys_sections_nb_alloc = MAX(phys_sections_nb_alloc * 2, 16); |
| 2342 | phys_sections = g_renew(MemoryRegionSection, phys_sections, |
| 2343 | phys_sections_nb_alloc); |
| 2344 | } |
| 2345 | phys_sections[phys_sections_nb] = *section; |
| 2346 | return phys_sections_nb++; |
| 2347 | } |
| 2348 | |
| 2349 | static void phys_sections_clear(void) |
| 2350 | { |
| 2351 | phys_sections_nb = 0; |
| 2352 | } |
| 2353 | |
Michael S. Tsirkin | 8f2498f | 2009-09-29 18:53:16 +0200 | [diff] [blame] | 2354 | /* register physical memory. |
| 2355 | For RAM, 'size' must be a multiple of the target page size. |
| 2356 | If (phys_offset & ~TARGET_PAGE_MASK) != 0, then it is an |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2357 | io memory page. The address used when calling the IO function is |
| 2358 | the offset from the start of the region, plus region_offset. Both |
Stuart Brady | ccbb4d4 | 2009-05-03 12:15:06 +0100 | [diff] [blame] | 2359 | start_addr and region_offset are rounded down to a page boundary |
pbrook | 8da3ff1 | 2008-12-01 18:59:50 +0000 | [diff] [blame] | 2360 | before calculating this offset. This should not be a problem unless |
| 2361 | the low bits of start_addr and region_offset differ. */ |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2362 | static void register_subpage(MemoryRegionSection *section) |
| 2363 | { |
| 2364 | subpage_t *subpage; |
| 2365 | target_phys_addr_t base = section->offset_within_address_space |
| 2366 | & TARGET_PAGE_MASK; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 2367 | MemoryRegionSection *existing = phys_page_find(base >> TARGET_PAGE_BITS); |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2368 | MemoryRegionSection subsection = { |
| 2369 | .offset_within_address_space = base, |
| 2370 | .size = TARGET_PAGE_SIZE, |
| 2371 | }; |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2372 | target_phys_addr_t start, end; |
| 2373 | |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 2374 | assert(existing->mr->subpage || existing->mr == &io_mem_unassigned); |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2375 | |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 2376 | if (!(existing->mr->subpage)) { |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2377 | subpage = subpage_init(base); |
| 2378 | subsection.mr = &subpage->iomem; |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 2379 | phys_page_set(base >> TARGET_PAGE_BITS, 1, |
| 2380 | phys_section_add(&subsection)); |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2381 | } else { |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 2382 | subpage = container_of(existing->mr, subpage_t, iomem); |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2383 | } |
| 2384 | start = section->offset_within_address_space & ~TARGET_PAGE_MASK; |
| 2385 | end = start + section->size; |
| 2386 | subpage_register(subpage, start, end, phys_section_add(section)); |
| 2387 | } |
| 2388 | |
| 2389 | |
| 2390 | static void register_multipage(MemoryRegionSection *section) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2391 | { |
Avi Kivity | dd81124 | 2012-01-02 12:17:03 +0200 | [diff] [blame] | 2392 | target_phys_addr_t start_addr = section->offset_within_address_space; |
| 2393 | ram_addr_t size = section->size; |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 2394 | target_phys_addr_t addr; |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 2395 | uint16_t section_index = phys_section_add(section); |
Avi Kivity | dd81124 | 2012-01-02 12:17:03 +0200 | [diff] [blame] | 2396 | |
Edgar E. Iglesias | 3b8e6a2 | 2011-04-05 13:00:36 +0200 | [diff] [blame] | 2397 | assert(size); |
Michael S. Tsirkin | f6f3fbc | 2010-01-27 22:06:57 +0200 | [diff] [blame] | 2398 | |
Edgar E. Iglesias | 3b8e6a2 | 2011-04-05 13:00:36 +0200 | [diff] [blame] | 2399 | addr = start_addr; |
Avi Kivity | 2999097 | 2012-02-13 20:21:20 +0200 | [diff] [blame] | 2400 | phys_page_set(addr >> TARGET_PAGE_BITS, size >> TARGET_PAGE_BITS, |
| 2401 | section_index); |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2402 | } |
| 2403 | |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 2404 | void cpu_register_physical_memory_log(MemoryRegionSection *section, |
| 2405 | bool readonly) |
| 2406 | { |
| 2407 | MemoryRegionSection now = *section, remain = *section; |
| 2408 | |
| 2409 | if ((now.offset_within_address_space & ~TARGET_PAGE_MASK) |
| 2410 | || (now.size < TARGET_PAGE_SIZE)) { |
| 2411 | now.size = MIN(TARGET_PAGE_ALIGN(now.offset_within_address_space) |
| 2412 | - now.offset_within_address_space, |
| 2413 | now.size); |
| 2414 | register_subpage(&now); |
| 2415 | remain.size -= now.size; |
| 2416 | remain.offset_within_address_space += now.size; |
| 2417 | remain.offset_within_region += now.size; |
| 2418 | } |
| 2419 | now = remain; |
| 2420 | now.size &= TARGET_PAGE_MASK; |
| 2421 | if (now.size) { |
| 2422 | register_multipage(&now); |
| 2423 | remain.size -= now.size; |
| 2424 | remain.offset_within_address_space += now.size; |
| 2425 | remain.offset_within_region += now.size; |
| 2426 | } |
| 2427 | now = remain; |
| 2428 | if (now.size) { |
| 2429 | register_subpage(&now); |
| 2430 | } |
| 2431 | } |
| 2432 | |
| 2433 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2434 | void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size) |
aliguori | f65ed4c | 2008-12-09 20:09:57 +0000 | [diff] [blame] | 2435 | { |
| 2436 | if (kvm_enabled()) |
| 2437 | kvm_coalesce_mmio_region(addr, size); |
| 2438 | } |
| 2439 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2440 | void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size) |
aliguori | f65ed4c | 2008-12-09 20:09:57 +0000 | [diff] [blame] | 2441 | { |
| 2442 | if (kvm_enabled()) |
| 2443 | kvm_uncoalesce_mmio_region(addr, size); |
| 2444 | } |
| 2445 | |
Sheng Yang | 62a2744 | 2010-01-26 19:21:16 +0800 | [diff] [blame] | 2446 | void qemu_flush_coalesced_mmio_buffer(void) |
| 2447 | { |
| 2448 | if (kvm_enabled()) |
| 2449 | kvm_flush_coalesced_mmio_buffer(); |
| 2450 | } |
| 2451 | |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2452 | #if defined(__linux__) && !defined(TARGET_S390X) |
| 2453 | |
| 2454 | #include <sys/vfs.h> |
| 2455 | |
| 2456 | #define HUGETLBFS_MAGIC 0x958458f6 |
| 2457 | |
| 2458 | static long gethugepagesize(const char *path) |
| 2459 | { |
| 2460 | struct statfs fs; |
| 2461 | int ret; |
| 2462 | |
| 2463 | do { |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 2464 | ret = statfs(path, &fs); |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2465 | } while (ret != 0 && errno == EINTR); |
| 2466 | |
| 2467 | if (ret != 0) { |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 2468 | perror(path); |
| 2469 | return 0; |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2470 | } |
| 2471 | |
| 2472 | if (fs.f_type != HUGETLBFS_MAGIC) |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 2473 | fprintf(stderr, "Warning: path not on HugeTLBFS: %s\n", path); |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2474 | |
| 2475 | return fs.f_bsize; |
| 2476 | } |
| 2477 | |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2478 | static void *file_ram_alloc(RAMBlock *block, |
| 2479 | ram_addr_t memory, |
| 2480 | const char *path) |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2481 | { |
| 2482 | char *filename; |
| 2483 | void *area; |
| 2484 | int fd; |
| 2485 | #ifdef MAP_POPULATE |
| 2486 | int flags; |
| 2487 | #endif |
| 2488 | unsigned long hpagesize; |
| 2489 | |
| 2490 | hpagesize = gethugepagesize(path); |
| 2491 | if (!hpagesize) { |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 2492 | return NULL; |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2493 | } |
| 2494 | |
| 2495 | if (memory < hpagesize) { |
| 2496 | return NULL; |
| 2497 | } |
| 2498 | |
| 2499 | if (kvm_enabled() && !kvm_has_sync_mmu()) { |
| 2500 | fprintf(stderr, "host lacks kvm mmu notifiers, -mem-path unsupported\n"); |
| 2501 | return NULL; |
| 2502 | } |
| 2503 | |
| 2504 | if (asprintf(&filename, "%s/qemu_back_mem.XXXXXX", path) == -1) { |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 2505 | return NULL; |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2506 | } |
| 2507 | |
| 2508 | fd = mkstemp(filename); |
| 2509 | if (fd < 0) { |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 2510 | perror("unable to create backing store for hugepages"); |
| 2511 | free(filename); |
| 2512 | return NULL; |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2513 | } |
| 2514 | unlink(filename); |
| 2515 | free(filename); |
| 2516 | |
| 2517 | memory = (memory+hpagesize-1) & ~(hpagesize-1); |
| 2518 | |
| 2519 | /* |
| 2520 | * ftruncate is not supported by hugetlbfs in older |
| 2521 | * hosts, so don't bother bailing out on errors. |
| 2522 | * If anything goes wrong with it under other filesystems, |
| 2523 | * mmap will fail. |
| 2524 | */ |
| 2525 | if (ftruncate(fd, memory)) |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 2526 | perror("ftruncate"); |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2527 | |
| 2528 | #ifdef MAP_POPULATE |
| 2529 | /* NB: MAP_POPULATE won't exhaustively alloc all phys pages in the case |
| 2530 | * MAP_PRIVATE is requested. For mem_prealloc we mmap as MAP_SHARED |
| 2531 | * to sidestep this quirk. |
| 2532 | */ |
| 2533 | flags = mem_prealloc ? MAP_POPULATE | MAP_SHARED : MAP_PRIVATE; |
| 2534 | area = mmap(0, memory, PROT_READ | PROT_WRITE, flags, fd, 0); |
| 2535 | #else |
| 2536 | area = mmap(0, memory, PROT_READ | PROT_WRITE, MAP_PRIVATE, fd, 0); |
| 2537 | #endif |
| 2538 | if (area == MAP_FAILED) { |
Yoshiaki Tamura | 9742bf2 | 2010-08-18 13:30:13 +0900 | [diff] [blame] | 2539 | perror("file_ram_alloc: can't mmap RAM pages"); |
| 2540 | close(fd); |
| 2541 | return (NULL); |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2542 | } |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2543 | block->fd = fd; |
Marcelo Tosatti | c902760 | 2010-03-01 20:25:08 -0300 | [diff] [blame] | 2544 | return area; |
| 2545 | } |
| 2546 | #endif |
| 2547 | |
Alex Williamson | d17b528 | 2010-06-25 11:08:38 -0600 | [diff] [blame] | 2548 | static ram_addr_t find_ram_offset(ram_addr_t size) |
| 2549 | { |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2550 | RAMBlock *block, *next_block; |
Alex Williamson | 3e837b2 | 2011-10-31 08:54:09 -0600 | [diff] [blame] | 2551 | ram_addr_t offset = RAM_ADDR_MAX, mingap = RAM_ADDR_MAX; |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2552 | |
| 2553 | if (QLIST_EMPTY(&ram_list.blocks)) |
| 2554 | return 0; |
| 2555 | |
| 2556 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
Anthony PERARD | f15fbc4 | 2011-07-20 08:17:42 +0000 | [diff] [blame] | 2557 | ram_addr_t end, next = RAM_ADDR_MAX; |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2558 | |
| 2559 | end = block->offset + block->length; |
| 2560 | |
| 2561 | QLIST_FOREACH(next_block, &ram_list.blocks, next) { |
| 2562 | if (next_block->offset >= end) { |
| 2563 | next = MIN(next, next_block->offset); |
| 2564 | } |
| 2565 | } |
| 2566 | if (next - end >= size && next - end < mingap) { |
Alex Williamson | 3e837b2 | 2011-10-31 08:54:09 -0600 | [diff] [blame] | 2567 | offset = end; |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2568 | mingap = next - end; |
| 2569 | } |
| 2570 | } |
Alex Williamson | 3e837b2 | 2011-10-31 08:54:09 -0600 | [diff] [blame] | 2571 | |
| 2572 | if (offset == RAM_ADDR_MAX) { |
| 2573 | fprintf(stderr, "Failed to find gap of requested size: %" PRIu64 "\n", |
| 2574 | (uint64_t)size); |
| 2575 | abort(); |
| 2576 | } |
| 2577 | |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2578 | return offset; |
| 2579 | } |
| 2580 | |
| 2581 | static ram_addr_t last_ram_offset(void) |
| 2582 | { |
Alex Williamson | d17b528 | 2010-06-25 11:08:38 -0600 | [diff] [blame] | 2583 | RAMBlock *block; |
| 2584 | ram_addr_t last = 0; |
| 2585 | |
| 2586 | QLIST_FOREACH(block, &ram_list.blocks, next) |
| 2587 | last = MAX(last, block->offset + block->length); |
| 2588 | |
| 2589 | return last; |
| 2590 | } |
| 2591 | |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 2592 | void qemu_ram_set_idstr(ram_addr_t addr, const char *name, DeviceState *dev) |
Cam Macdonell | 84b89d7 | 2010-07-26 18:10:57 -0600 | [diff] [blame] | 2593 | { |
| 2594 | RAMBlock *new_block, *block; |
| 2595 | |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 2596 | new_block = NULL; |
| 2597 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
| 2598 | if (block->offset == addr) { |
| 2599 | new_block = block; |
| 2600 | break; |
| 2601 | } |
| 2602 | } |
| 2603 | assert(new_block); |
| 2604 | assert(!new_block->idstr[0]); |
Cam Macdonell | 84b89d7 | 2010-07-26 18:10:57 -0600 | [diff] [blame] | 2605 | |
Anthony Liguori | 09e5ab6 | 2012-02-03 12:28:43 -0600 | [diff] [blame] | 2606 | if (dev) { |
| 2607 | char *id = qdev_get_dev_path(dev); |
Cam Macdonell | 84b89d7 | 2010-07-26 18:10:57 -0600 | [diff] [blame] | 2608 | if (id) { |
| 2609 | snprintf(new_block->idstr, sizeof(new_block->idstr), "%s/", id); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 2610 | g_free(id); |
Cam Macdonell | 84b89d7 | 2010-07-26 18:10:57 -0600 | [diff] [blame] | 2611 | } |
| 2612 | } |
| 2613 | pstrcat(new_block->idstr, sizeof(new_block->idstr), name); |
| 2614 | |
| 2615 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 2616 | if (block != new_block && !strcmp(block->idstr, new_block->idstr)) { |
Cam Macdonell | 84b89d7 | 2010-07-26 18:10:57 -0600 | [diff] [blame] | 2617 | fprintf(stderr, "RAMBlock \"%s\" already registered, abort!\n", |
| 2618 | new_block->idstr); |
| 2619 | abort(); |
| 2620 | } |
| 2621 | } |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 2622 | } |
| 2623 | |
| 2624 | ram_addr_t qemu_ram_alloc_from_ptr(ram_addr_t size, void *host, |
| 2625 | MemoryRegion *mr) |
| 2626 | { |
| 2627 | RAMBlock *new_block; |
| 2628 | |
| 2629 | size = TARGET_PAGE_ALIGN(size); |
| 2630 | new_block = g_malloc0(sizeof(*new_block)); |
Cam Macdonell | 84b89d7 | 2010-07-26 18:10:57 -0600 | [diff] [blame] | 2631 | |
Avi Kivity | 7c63736 | 2011-12-21 13:09:49 +0200 | [diff] [blame] | 2632 | new_block->mr = mr; |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2633 | new_block->offset = find_ram_offset(size); |
Yoshiaki Tamura | 6977dfe | 2010-08-18 15:41:49 +0900 | [diff] [blame] | 2634 | if (host) { |
| 2635 | new_block->host = host; |
Huang Ying | cd19cfa | 2011-03-02 08:56:19 +0100 | [diff] [blame] | 2636 | new_block->flags |= RAM_PREALLOC_MASK; |
Yoshiaki Tamura | 6977dfe | 2010-08-18 15:41:49 +0900 | [diff] [blame] | 2637 | } else { |
| 2638 | if (mem_path) { |
| 2639 | #if defined (__linux__) && !defined(TARGET_S390X) |
| 2640 | new_block->host = file_ram_alloc(new_block, size, mem_path); |
| 2641 | if (!new_block->host) { |
| 2642 | new_block->host = qemu_vmalloc(size); |
Andreas Färber | e78815a | 2010-09-25 11:26:05 +0000 | [diff] [blame] | 2643 | qemu_madvise(new_block->host, size, QEMU_MADV_MERGEABLE); |
Yoshiaki Tamura | 6977dfe | 2010-08-18 15:41:49 +0900 | [diff] [blame] | 2644 | } |
| 2645 | #else |
| 2646 | fprintf(stderr, "-mem-path option unsupported\n"); |
| 2647 | exit(1); |
| 2648 | #endif |
| 2649 | } else { |
| 2650 | #if defined(TARGET_S390X) && defined(CONFIG_KVM) |
Christian Borntraeger | ff83678 | 2011-05-10 14:49:10 +0200 | [diff] [blame] | 2651 | /* S390 KVM requires the topmost vma of the RAM to be smaller than |
| 2652 | an system defined value, which is at least 256GB. Larger systems |
| 2653 | have larger values. We put the guest between the end of data |
| 2654 | segment (system break) and this value. We use 32GB as a base to |
| 2655 | have enough room for the system break to grow. */ |
| 2656 | new_block->host = mmap((void*)0x800000000, size, |
Yoshiaki Tamura | 6977dfe | 2010-08-18 15:41:49 +0900 | [diff] [blame] | 2657 | PROT_EXEC|PROT_READ|PROT_WRITE, |
Christian Borntraeger | ff83678 | 2011-05-10 14:49:10 +0200 | [diff] [blame] | 2658 | MAP_SHARED | MAP_ANONYMOUS | MAP_FIXED, -1, 0); |
Alexander Graf | fb8b273 | 2011-05-20 17:33:28 +0200 | [diff] [blame] | 2659 | if (new_block->host == MAP_FAILED) { |
| 2660 | fprintf(stderr, "Allocating RAM failed\n"); |
| 2661 | abort(); |
| 2662 | } |
Yoshiaki Tamura | 6977dfe | 2010-08-18 15:41:49 +0900 | [diff] [blame] | 2663 | #else |
Jan Kiszka | 868bb33 | 2011-06-21 22:59:09 +0200 | [diff] [blame] | 2664 | if (xen_enabled()) { |
Avi Kivity | fce537d | 2011-12-18 15:48:55 +0200 | [diff] [blame] | 2665 | xen_ram_alloc(new_block->offset, size, mr); |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2666 | } else { |
| 2667 | new_block->host = qemu_vmalloc(size); |
| 2668 | } |
Yoshiaki Tamura | 6977dfe | 2010-08-18 15:41:49 +0900 | [diff] [blame] | 2669 | #endif |
Andreas Färber | e78815a | 2010-09-25 11:26:05 +0000 | [diff] [blame] | 2670 | qemu_madvise(new_block->host, size, QEMU_MADV_MERGEABLE); |
Yoshiaki Tamura | 6977dfe | 2010-08-18 15:41:49 +0900 | [diff] [blame] | 2671 | } |
| 2672 | } |
Cam Macdonell | 84b89d7 | 2010-07-26 18:10:57 -0600 | [diff] [blame] | 2673 | new_block->length = size; |
| 2674 | |
| 2675 | QLIST_INSERT_HEAD(&ram_list.blocks, new_block, next); |
| 2676 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 2677 | ram_list.phys_dirty = g_realloc(ram_list.phys_dirty, |
Cam Macdonell | 84b89d7 | 2010-07-26 18:10:57 -0600 | [diff] [blame] | 2678 | last_ram_offset() >> TARGET_PAGE_BITS); |
| 2679 | memset(ram_list.phys_dirty + (new_block->offset >> TARGET_PAGE_BITS), |
| 2680 | 0xff, size >> TARGET_PAGE_BITS); |
| 2681 | |
| 2682 | if (kvm_enabled()) |
| 2683 | kvm_setup_guest_memory(new_block->host, size); |
| 2684 | |
| 2685 | return new_block->offset; |
| 2686 | } |
| 2687 | |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 2688 | ram_addr_t qemu_ram_alloc(ram_addr_t size, MemoryRegion *mr) |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2689 | { |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 2690 | return qemu_ram_alloc_from_ptr(size, NULL, mr); |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2691 | } |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2692 | |
Alex Williamson | 1f2e98b | 2011-05-03 12:48:09 -0600 | [diff] [blame] | 2693 | void qemu_ram_free_from_ptr(ram_addr_t addr) |
| 2694 | { |
| 2695 | RAMBlock *block; |
| 2696 | |
| 2697 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
| 2698 | if (addr == block->offset) { |
| 2699 | QLIST_REMOVE(block, next); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 2700 | g_free(block); |
Alex Williamson | 1f2e98b | 2011-05-03 12:48:09 -0600 | [diff] [blame] | 2701 | return; |
| 2702 | } |
| 2703 | } |
| 2704 | } |
| 2705 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2706 | void qemu_ram_free(ram_addr_t addr) |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2707 | { |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2708 | RAMBlock *block; |
| 2709 | |
| 2710 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
| 2711 | if (addr == block->offset) { |
| 2712 | QLIST_REMOVE(block, next); |
Huang Ying | cd19cfa | 2011-03-02 08:56:19 +0100 | [diff] [blame] | 2713 | if (block->flags & RAM_PREALLOC_MASK) { |
| 2714 | ; |
| 2715 | } else if (mem_path) { |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2716 | #if defined (__linux__) && !defined(TARGET_S390X) |
| 2717 | if (block->fd) { |
| 2718 | munmap(block->host, block->length); |
| 2719 | close(block->fd); |
| 2720 | } else { |
| 2721 | qemu_vfree(block->host); |
| 2722 | } |
Jan Kiszka | fd28aa1 | 2011-03-15 12:26:14 +0100 | [diff] [blame] | 2723 | #else |
| 2724 | abort(); |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2725 | #endif |
| 2726 | } else { |
| 2727 | #if defined(TARGET_S390X) && defined(CONFIG_KVM) |
| 2728 | munmap(block->host, block->length); |
| 2729 | #else |
Jan Kiszka | 868bb33 | 2011-06-21 22:59:09 +0200 | [diff] [blame] | 2730 | if (xen_enabled()) { |
Jan Kiszka | e41d7c6 | 2011-06-21 22:59:08 +0200 | [diff] [blame] | 2731 | xen_invalidate_map_cache_entry(block->host); |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2732 | } else { |
| 2733 | qemu_vfree(block->host); |
| 2734 | } |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2735 | #endif |
| 2736 | } |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 2737 | g_free(block); |
Alex Williamson | 04b1665 | 2010-07-02 11:13:17 -0600 | [diff] [blame] | 2738 | return; |
| 2739 | } |
| 2740 | } |
| 2741 | |
bellard | e9a1ab1 | 2007-02-08 23:08:38 +0000 | [diff] [blame] | 2742 | } |
| 2743 | |
Huang Ying | cd19cfa | 2011-03-02 08:56:19 +0100 | [diff] [blame] | 2744 | #ifndef _WIN32 |
| 2745 | void qemu_ram_remap(ram_addr_t addr, ram_addr_t length) |
| 2746 | { |
| 2747 | RAMBlock *block; |
| 2748 | ram_addr_t offset; |
| 2749 | int flags; |
| 2750 | void *area, *vaddr; |
| 2751 | |
| 2752 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
| 2753 | offset = addr - block->offset; |
| 2754 | if (offset < block->length) { |
| 2755 | vaddr = block->host + offset; |
| 2756 | if (block->flags & RAM_PREALLOC_MASK) { |
| 2757 | ; |
| 2758 | } else { |
| 2759 | flags = MAP_FIXED; |
| 2760 | munmap(vaddr, length); |
| 2761 | if (mem_path) { |
| 2762 | #if defined(__linux__) && !defined(TARGET_S390X) |
| 2763 | if (block->fd) { |
| 2764 | #ifdef MAP_POPULATE |
| 2765 | flags |= mem_prealloc ? MAP_POPULATE | MAP_SHARED : |
| 2766 | MAP_PRIVATE; |
| 2767 | #else |
| 2768 | flags |= MAP_PRIVATE; |
| 2769 | #endif |
| 2770 | area = mmap(vaddr, length, PROT_READ | PROT_WRITE, |
| 2771 | flags, block->fd, offset); |
| 2772 | } else { |
| 2773 | flags |= MAP_PRIVATE | MAP_ANONYMOUS; |
| 2774 | area = mmap(vaddr, length, PROT_READ | PROT_WRITE, |
| 2775 | flags, -1, 0); |
| 2776 | } |
Jan Kiszka | fd28aa1 | 2011-03-15 12:26:14 +0100 | [diff] [blame] | 2777 | #else |
| 2778 | abort(); |
Huang Ying | cd19cfa | 2011-03-02 08:56:19 +0100 | [diff] [blame] | 2779 | #endif |
| 2780 | } else { |
| 2781 | #if defined(TARGET_S390X) && defined(CONFIG_KVM) |
| 2782 | flags |= MAP_SHARED | MAP_ANONYMOUS; |
| 2783 | area = mmap(vaddr, length, PROT_EXEC|PROT_READ|PROT_WRITE, |
| 2784 | flags, -1, 0); |
| 2785 | #else |
| 2786 | flags |= MAP_PRIVATE | MAP_ANONYMOUS; |
| 2787 | area = mmap(vaddr, length, PROT_READ | PROT_WRITE, |
| 2788 | flags, -1, 0); |
| 2789 | #endif |
| 2790 | } |
| 2791 | if (area != vaddr) { |
Anthony PERARD | f15fbc4 | 2011-07-20 08:17:42 +0000 | [diff] [blame] | 2792 | fprintf(stderr, "Could not remap addr: " |
| 2793 | RAM_ADDR_FMT "@" RAM_ADDR_FMT "\n", |
Huang Ying | cd19cfa | 2011-03-02 08:56:19 +0100 | [diff] [blame] | 2794 | length, addr); |
| 2795 | exit(1); |
| 2796 | } |
| 2797 | qemu_madvise(vaddr, length, QEMU_MADV_MERGEABLE); |
| 2798 | } |
| 2799 | return; |
| 2800 | } |
| 2801 | } |
| 2802 | } |
| 2803 | #endif /* !_WIN32 */ |
| 2804 | |
pbrook | dc828ca | 2009-04-09 22:21:07 +0000 | [diff] [blame] | 2805 | /* Return a host pointer to ram allocated with qemu_ram_alloc. |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2806 | With the exception of the softmmu code in this file, this should |
| 2807 | only be used for local memory (e.g. video ram) that the device owns, |
| 2808 | and knows it isn't going to access beyond the end of the block. |
| 2809 | |
| 2810 | It should not be used for general purpose DMA. |
| 2811 | Use cpu_physical_memory_map/cpu_physical_memory_rw instead. |
| 2812 | */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2813 | void *qemu_get_ram_ptr(ram_addr_t addr) |
pbrook | dc828ca | 2009-04-09 22:21:07 +0000 | [diff] [blame] | 2814 | { |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2815 | RAMBlock *block; |
| 2816 | |
Alex Williamson | f471a17 | 2010-06-11 11:11:42 -0600 | [diff] [blame] | 2817 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
| 2818 | if (addr - block->offset < block->length) { |
Vincent Palatin | 7d82af3 | 2011-03-10 15:47:46 -0500 | [diff] [blame] | 2819 | /* Move this entry to to start of the list. */ |
| 2820 | if (block != QLIST_FIRST(&ram_list.blocks)) { |
| 2821 | QLIST_REMOVE(block, next); |
| 2822 | QLIST_INSERT_HEAD(&ram_list.blocks, block, next); |
| 2823 | } |
Jan Kiszka | 868bb33 | 2011-06-21 22:59:09 +0200 | [diff] [blame] | 2824 | if (xen_enabled()) { |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2825 | /* We need to check if the requested address is in the RAM |
| 2826 | * because we don't want to map the entire memory in QEMU. |
Stefano Stabellini | 712c2b4 | 2011-05-19 18:35:46 +0100 | [diff] [blame] | 2827 | * In that case just map until the end of the page. |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2828 | */ |
| 2829 | if (block->offset == 0) { |
Jan Kiszka | e41d7c6 | 2011-06-21 22:59:08 +0200 | [diff] [blame] | 2830 | return xen_map_cache(addr, 0, 0); |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2831 | } else if (block->host == NULL) { |
Jan Kiszka | e41d7c6 | 2011-06-21 22:59:08 +0200 | [diff] [blame] | 2832 | block->host = |
| 2833 | xen_map_cache(block->offset, block->length, 1); |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2834 | } |
| 2835 | } |
Alex Williamson | f471a17 | 2010-06-11 11:11:42 -0600 | [diff] [blame] | 2836 | return block->host + (addr - block->offset); |
| 2837 | } |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2838 | } |
Alex Williamson | f471a17 | 2010-06-11 11:11:42 -0600 | [diff] [blame] | 2839 | |
| 2840 | fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr); |
| 2841 | abort(); |
| 2842 | |
| 2843 | return NULL; |
pbrook | dc828ca | 2009-04-09 22:21:07 +0000 | [diff] [blame] | 2844 | } |
| 2845 | |
Michael S. Tsirkin | b2e0a13 | 2010-11-22 19:52:34 +0200 | [diff] [blame] | 2846 | /* Return a host pointer to ram allocated with qemu_ram_alloc. |
| 2847 | * Same as qemu_get_ram_ptr but avoid reordering ramblocks. |
| 2848 | */ |
| 2849 | void *qemu_safe_ram_ptr(ram_addr_t addr) |
| 2850 | { |
| 2851 | RAMBlock *block; |
| 2852 | |
| 2853 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
| 2854 | if (addr - block->offset < block->length) { |
Jan Kiszka | 868bb33 | 2011-06-21 22:59:09 +0200 | [diff] [blame] | 2855 | if (xen_enabled()) { |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2856 | /* We need to check if the requested address is in the RAM |
| 2857 | * because we don't want to map the entire memory in QEMU. |
Stefano Stabellini | 712c2b4 | 2011-05-19 18:35:46 +0100 | [diff] [blame] | 2858 | * In that case just map until the end of the page. |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2859 | */ |
| 2860 | if (block->offset == 0) { |
Jan Kiszka | e41d7c6 | 2011-06-21 22:59:08 +0200 | [diff] [blame] | 2861 | return xen_map_cache(addr, 0, 0); |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2862 | } else if (block->host == NULL) { |
Jan Kiszka | e41d7c6 | 2011-06-21 22:59:08 +0200 | [diff] [blame] | 2863 | block->host = |
| 2864 | xen_map_cache(block->offset, block->length, 1); |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2865 | } |
| 2866 | } |
Michael S. Tsirkin | b2e0a13 | 2010-11-22 19:52:34 +0200 | [diff] [blame] | 2867 | return block->host + (addr - block->offset); |
| 2868 | } |
| 2869 | } |
| 2870 | |
| 2871 | fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr); |
| 2872 | abort(); |
| 2873 | |
| 2874 | return NULL; |
| 2875 | } |
| 2876 | |
Stefano Stabellini | 38bee5d | 2011-05-19 18:35:45 +0100 | [diff] [blame] | 2877 | /* Return a host pointer to guest's ram. Similar to qemu_get_ram_ptr |
| 2878 | * but takes a size argument */ |
Stefano Stabellini | 8ab934f | 2011-06-27 18:26:06 +0100 | [diff] [blame] | 2879 | void *qemu_ram_ptr_length(ram_addr_t addr, ram_addr_t *size) |
Stefano Stabellini | 38bee5d | 2011-05-19 18:35:45 +0100 | [diff] [blame] | 2880 | { |
Stefano Stabellini | 8ab934f | 2011-06-27 18:26:06 +0100 | [diff] [blame] | 2881 | if (*size == 0) { |
| 2882 | return NULL; |
| 2883 | } |
Jan Kiszka | 868bb33 | 2011-06-21 22:59:09 +0200 | [diff] [blame] | 2884 | if (xen_enabled()) { |
Jan Kiszka | e41d7c6 | 2011-06-21 22:59:08 +0200 | [diff] [blame] | 2885 | return xen_map_cache(addr, *size, 1); |
Jan Kiszka | 868bb33 | 2011-06-21 22:59:09 +0200 | [diff] [blame] | 2886 | } else { |
Stefano Stabellini | 38bee5d | 2011-05-19 18:35:45 +0100 | [diff] [blame] | 2887 | RAMBlock *block; |
| 2888 | |
| 2889 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
| 2890 | if (addr - block->offset < block->length) { |
| 2891 | if (addr - block->offset + *size > block->length) |
| 2892 | *size = block->length - addr + block->offset; |
| 2893 | return block->host + (addr - block->offset); |
| 2894 | } |
| 2895 | } |
| 2896 | |
| 2897 | fprintf(stderr, "Bad ram offset %" PRIx64 "\n", (uint64_t)addr); |
| 2898 | abort(); |
Stefano Stabellini | 38bee5d | 2011-05-19 18:35:45 +0100 | [diff] [blame] | 2899 | } |
| 2900 | } |
| 2901 | |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 2902 | void qemu_put_ram_ptr(void *addr) |
| 2903 | { |
| 2904 | trace_qemu_put_ram_ptr(addr); |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 2905 | } |
| 2906 | |
Marcelo Tosatti | e890261 | 2010-10-11 15:31:19 -0300 | [diff] [blame] | 2907 | int qemu_ram_addr_from_host(void *ptr, ram_addr_t *ram_addr) |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2908 | { |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2909 | RAMBlock *block; |
| 2910 | uint8_t *host = ptr; |
| 2911 | |
Jan Kiszka | 868bb33 | 2011-06-21 22:59:09 +0200 | [diff] [blame] | 2912 | if (xen_enabled()) { |
Jan Kiszka | e41d7c6 | 2011-06-21 22:59:08 +0200 | [diff] [blame] | 2913 | *ram_addr = xen_ram_addr_from_mapcache(ptr); |
Stefano Stabellini | 712c2b4 | 2011-05-19 18:35:46 +0100 | [diff] [blame] | 2914 | return 0; |
| 2915 | } |
| 2916 | |
Alex Williamson | f471a17 | 2010-06-11 11:11:42 -0600 | [diff] [blame] | 2917 | QLIST_FOREACH(block, &ram_list.blocks, next) { |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2918 | /* This case append when the block is not mapped. */ |
| 2919 | if (block->host == NULL) { |
| 2920 | continue; |
| 2921 | } |
Alex Williamson | f471a17 | 2010-06-11 11:11:42 -0600 | [diff] [blame] | 2922 | if (host - block->host < block->length) { |
Marcelo Tosatti | e890261 | 2010-10-11 15:31:19 -0300 | [diff] [blame] | 2923 | *ram_addr = block->offset + (host - block->host); |
| 2924 | return 0; |
Alex Williamson | f471a17 | 2010-06-11 11:11:42 -0600 | [diff] [blame] | 2925 | } |
pbrook | 94a6b54 | 2009-04-11 17:15:54 +0000 | [diff] [blame] | 2926 | } |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 2927 | |
Marcelo Tosatti | e890261 | 2010-10-11 15:31:19 -0300 | [diff] [blame] | 2928 | return -1; |
| 2929 | } |
Alex Williamson | f471a17 | 2010-06-11 11:11:42 -0600 | [diff] [blame] | 2930 | |
Marcelo Tosatti | e890261 | 2010-10-11 15:31:19 -0300 | [diff] [blame] | 2931 | /* Some of the softmmu routines need to translate from a host pointer |
| 2932 | (typically a TLB entry) back to a ram offset. */ |
| 2933 | ram_addr_t qemu_ram_addr_from_host_nofail(void *ptr) |
| 2934 | { |
| 2935 | ram_addr_t ram_addr; |
Alex Williamson | f471a17 | 2010-06-11 11:11:42 -0600 | [diff] [blame] | 2936 | |
Marcelo Tosatti | e890261 | 2010-10-11 15:31:19 -0300 | [diff] [blame] | 2937 | if (qemu_ram_addr_from_host(ptr, &ram_addr)) { |
| 2938 | fprintf(stderr, "Bad ram pointer %p\n", ptr); |
| 2939 | abort(); |
| 2940 | } |
| 2941 | return ram_addr; |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 2942 | } |
| 2943 | |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 2944 | static uint64_t unassigned_mem_read(void *opaque, target_phys_addr_t addr, |
| 2945 | unsigned size) |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2946 | { |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2947 | #ifdef DEBUG_UNASSIGNED |
blueswir1 | ab3d172 | 2007-11-04 07:31:40 +0000 | [diff] [blame] | 2948 | printf("Unassigned mem read " TARGET_FMT_plx "\n", addr); |
pbrook | 67d3b95 | 2006-12-18 05:03:52 +0000 | [diff] [blame] | 2949 | #endif |
Richard Henderson | 5b45040 | 2011-04-18 16:13:12 -0700 | [diff] [blame] | 2950 | #if defined(TARGET_ALPHA) || defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE) |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 2951 | cpu_unassigned_access(cpu_single_env, addr, 0, 0, 0, size); |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2952 | #endif |
| 2953 | return 0; |
| 2954 | } |
| 2955 | |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 2956 | static void unassigned_mem_write(void *opaque, target_phys_addr_t addr, |
| 2957 | uint64_t val, unsigned size) |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2958 | { |
| 2959 | #ifdef DEBUG_UNASSIGNED |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 2960 | printf("Unassigned mem write " TARGET_FMT_plx " = 0x%"PRIx64"\n", addr, val); |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2961 | #endif |
Richard Henderson | 5b45040 | 2011-04-18 16:13:12 -0700 | [diff] [blame] | 2962 | #if defined(TARGET_ALPHA) || defined(TARGET_SPARC) || defined(TARGET_MICROBLAZE) |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 2963 | cpu_unassigned_access(cpu_single_env, addr, 1, 0, 0, size); |
blueswir1 | e18231a | 2008-10-06 18:46:28 +0000 | [diff] [blame] | 2964 | #endif |
| 2965 | } |
| 2966 | |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 2967 | static const MemoryRegionOps unassigned_mem_ops = { |
| 2968 | .read = unassigned_mem_read, |
| 2969 | .write = unassigned_mem_write, |
| 2970 | .endianness = DEVICE_NATIVE_ENDIAN, |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2971 | }; |
| 2972 | |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 2973 | static uint64_t error_mem_read(void *opaque, target_phys_addr_t addr, |
| 2974 | unsigned size) |
| 2975 | { |
| 2976 | abort(); |
| 2977 | } |
| 2978 | |
| 2979 | static void error_mem_write(void *opaque, target_phys_addr_t addr, |
| 2980 | uint64_t value, unsigned size) |
| 2981 | { |
| 2982 | abort(); |
| 2983 | } |
| 2984 | |
| 2985 | static const MemoryRegionOps error_mem_ops = { |
| 2986 | .read = error_mem_read, |
| 2987 | .write = error_mem_write, |
| 2988 | .endianness = DEVICE_NATIVE_ENDIAN, |
bellard | 33417e7 | 2003-08-10 21:47:01 +0000 | [diff] [blame] | 2989 | }; |
| 2990 | |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 2991 | static const MemoryRegionOps rom_mem_ops = { |
| 2992 | .read = error_mem_read, |
| 2993 | .write = unassigned_mem_write, |
| 2994 | .endianness = DEVICE_NATIVE_ENDIAN, |
| 2995 | }; |
| 2996 | |
| 2997 | static void notdirty_mem_write(void *opaque, target_phys_addr_t ram_addr, |
| 2998 | uint64_t val, unsigned size) |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 2999 | { |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3000 | int dirty_flags; |
Yoshiaki Tamura | f7c11b5 | 2010-03-23 16:39:53 +0900 | [diff] [blame] | 3001 | dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3002 | if (!(dirty_flags & CODE_DIRTY_FLAG)) { |
| 3003 | #if !defined(CONFIG_USER_ONLY) |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 3004 | tb_invalidate_phys_page_fast(ram_addr, size); |
Yoshiaki Tamura | f7c11b5 | 2010-03-23 16:39:53 +0900 | [diff] [blame] | 3005 | dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3006 | #endif |
| 3007 | } |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 3008 | switch (size) { |
| 3009 | case 1: |
| 3010 | stb_p(qemu_get_ram_ptr(ram_addr), val); |
| 3011 | break; |
| 3012 | case 2: |
| 3013 | stw_p(qemu_get_ram_ptr(ram_addr), val); |
| 3014 | break; |
| 3015 | case 4: |
| 3016 | stl_p(qemu_get_ram_ptr(ram_addr), val); |
| 3017 | break; |
| 3018 | default: |
| 3019 | abort(); |
| 3020 | } |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 3021 | dirty_flags |= (0xff & ~CODE_DIRTY_FLAG); |
Yoshiaki Tamura | f7c11b5 | 2010-03-23 16:39:53 +0900 | [diff] [blame] | 3022 | cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags); |
bellard | f23db16 | 2005-08-21 19:12:28 +0000 | [diff] [blame] | 3023 | /* we remove the notdirty callback only if the code has been |
| 3024 | flushed */ |
| 3025 | if (dirty_flags == 0xff) |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 3026 | tlb_set_dirty(cpu_single_env, cpu_single_env->mem_io_vaddr); |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 3027 | } |
| 3028 | |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 3029 | static const MemoryRegionOps notdirty_mem_ops = { |
| 3030 | .read = error_mem_read, |
| 3031 | .write = notdirty_mem_write, |
| 3032 | .endianness = DEVICE_NATIVE_ENDIAN, |
bellard | 1ccde1c | 2004-02-06 19:46:14 +0000 | [diff] [blame] | 3033 | }; |
| 3034 | |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 3035 | /* Generate a debug exception if a watchpoint has been hit. */ |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 3036 | static void check_watchpoint(int offset, int len_mask, int flags) |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 3037 | { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 3038 | CPUArchState *env = cpu_single_env; |
aliguori | 06d55cc | 2008-11-18 20:24:06 +0000 | [diff] [blame] | 3039 | target_ulong pc, cs_base; |
| 3040 | TranslationBlock *tb; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 3041 | target_ulong vaddr; |
aliguori | a1d1bb3 | 2008-11-18 20:07:32 +0000 | [diff] [blame] | 3042 | CPUWatchpoint *wp; |
aliguori | 06d55cc | 2008-11-18 20:24:06 +0000 | [diff] [blame] | 3043 | int cpu_flags; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 3044 | |
aliguori | 06d55cc | 2008-11-18 20:24:06 +0000 | [diff] [blame] | 3045 | if (env->watchpoint_hit) { |
| 3046 | /* We re-entered the check after replacing the TB. Now raise |
| 3047 | * the debug interrupt so that is will trigger after the |
| 3048 | * current instruction. */ |
| 3049 | cpu_interrupt(env, CPU_INTERRUPT_DEBUG); |
| 3050 | return; |
| 3051 | } |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 3052 | vaddr = (env->mem_io_vaddr & TARGET_PAGE_MASK) + offset; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 3053 | QTAILQ_FOREACH(wp, &env->watchpoints, entry) { |
aliguori | b405133 | 2008-11-18 20:14:20 +0000 | [diff] [blame] | 3054 | if ((vaddr == (wp->vaddr & len_mask) || |
| 3055 | (vaddr & wp->len_mask) == wp->vaddr) && (wp->flags & flags)) { |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 3056 | wp->flags |= BP_WATCHPOINT_HIT; |
| 3057 | if (!env->watchpoint_hit) { |
| 3058 | env->watchpoint_hit = wp; |
| 3059 | tb = tb_find_pc(env->mem_io_pc); |
| 3060 | if (!tb) { |
| 3061 | cpu_abort(env, "check_watchpoint: could not find TB for " |
| 3062 | "pc=%p", (void *)env->mem_io_pc); |
| 3063 | } |
Stefan Weil | 618ba8e | 2011-04-18 06:39:53 +0000 | [diff] [blame] | 3064 | cpu_restore_state(tb, env, env->mem_io_pc); |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 3065 | tb_phys_invalidate(tb, -1); |
| 3066 | if (wp->flags & BP_STOP_BEFORE_ACCESS) { |
| 3067 | env->exception_index = EXCP_DEBUG; |
Max Filippov | 488d657 | 2012-01-29 02:24:39 +0400 | [diff] [blame] | 3068 | cpu_loop_exit(env); |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 3069 | } else { |
| 3070 | cpu_get_tb_cpu_state(env, &pc, &cs_base, &cpu_flags); |
| 3071 | tb_gen_code(env, pc, cs_base, cpu_flags, 1); |
Max Filippov | 488d657 | 2012-01-29 02:24:39 +0400 | [diff] [blame] | 3072 | cpu_resume_from_signal(env, NULL); |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 3073 | } |
aliguori | 06d55cc | 2008-11-18 20:24:06 +0000 | [diff] [blame] | 3074 | } |
aliguori | 6e140f2 | 2008-11-18 20:37:55 +0000 | [diff] [blame] | 3075 | } else { |
| 3076 | wp->flags &= ~BP_WATCHPOINT_HIT; |
pbrook | 0f459d1 | 2008-06-09 00:20:13 +0000 | [diff] [blame] | 3077 | } |
| 3078 | } |
| 3079 | } |
| 3080 | |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 3081 | /* Watchpoint access routines. Watchpoints are inserted using TLB tricks, |
| 3082 | so these check for a hit then pass through to the normal out-of-line |
| 3083 | phys routines. */ |
Avi Kivity | 1ec9b90 | 2012-01-02 12:47:48 +0200 | [diff] [blame] | 3084 | static uint64_t watch_mem_read(void *opaque, target_phys_addr_t addr, |
| 3085 | unsigned size) |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 3086 | { |
Avi Kivity | 1ec9b90 | 2012-01-02 12:47:48 +0200 | [diff] [blame] | 3087 | check_watchpoint(addr & ~TARGET_PAGE_MASK, ~(size - 1), BP_MEM_READ); |
| 3088 | switch (size) { |
| 3089 | case 1: return ldub_phys(addr); |
| 3090 | case 2: return lduw_phys(addr); |
| 3091 | case 4: return ldl_phys(addr); |
| 3092 | default: abort(); |
| 3093 | } |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 3094 | } |
| 3095 | |
Avi Kivity | 1ec9b90 | 2012-01-02 12:47:48 +0200 | [diff] [blame] | 3096 | static void watch_mem_write(void *opaque, target_phys_addr_t addr, |
| 3097 | uint64_t val, unsigned size) |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 3098 | { |
Avi Kivity | 1ec9b90 | 2012-01-02 12:47:48 +0200 | [diff] [blame] | 3099 | check_watchpoint(addr & ~TARGET_PAGE_MASK, ~(size - 1), BP_MEM_WRITE); |
| 3100 | switch (size) { |
Max Filippov | 6736415 | 2012-01-29 00:01:40 +0400 | [diff] [blame] | 3101 | case 1: |
| 3102 | stb_phys(addr, val); |
| 3103 | break; |
| 3104 | case 2: |
| 3105 | stw_phys(addr, val); |
| 3106 | break; |
| 3107 | case 4: |
| 3108 | stl_phys(addr, val); |
| 3109 | break; |
Avi Kivity | 1ec9b90 | 2012-01-02 12:47:48 +0200 | [diff] [blame] | 3110 | default: abort(); |
| 3111 | } |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 3112 | } |
| 3113 | |
Avi Kivity | 1ec9b90 | 2012-01-02 12:47:48 +0200 | [diff] [blame] | 3114 | static const MemoryRegionOps watch_mem_ops = { |
| 3115 | .read = watch_mem_read, |
| 3116 | .write = watch_mem_write, |
| 3117 | .endianness = DEVICE_NATIVE_ENDIAN, |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 3118 | }; |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 3119 | |
Avi Kivity | 70c68e4 | 2012-01-02 12:32:48 +0200 | [diff] [blame] | 3120 | static uint64_t subpage_read(void *opaque, target_phys_addr_t addr, |
| 3121 | unsigned len) |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3122 | { |
Avi Kivity | 70c68e4 | 2012-01-02 12:32:48 +0200 | [diff] [blame] | 3123 | subpage_t *mmio = opaque; |
Richard Henderson | f640524 | 2010-04-22 16:47:31 -0700 | [diff] [blame] | 3124 | unsigned int idx = SUBPAGE_IDX(addr); |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3125 | MemoryRegionSection *section; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3126 | #if defined(DEBUG_SUBPAGE) |
| 3127 | printf("%s: subpage %p len %d addr " TARGET_FMT_plx " idx %d\n", __func__, |
| 3128 | mmio, len, addr, idx); |
| 3129 | #endif |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3130 | |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3131 | section = &phys_sections[mmio->sub_section[idx]]; |
| 3132 | addr += mmio->base; |
| 3133 | addr -= section->offset_within_address_space; |
| 3134 | addr += section->offset_within_region; |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3135 | return io_mem_read(section->mr, addr, len); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3136 | } |
| 3137 | |
Avi Kivity | 70c68e4 | 2012-01-02 12:32:48 +0200 | [diff] [blame] | 3138 | static void subpage_write(void *opaque, target_phys_addr_t addr, |
| 3139 | uint64_t value, unsigned len) |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3140 | { |
Avi Kivity | 70c68e4 | 2012-01-02 12:32:48 +0200 | [diff] [blame] | 3141 | subpage_t *mmio = opaque; |
Richard Henderson | f640524 | 2010-04-22 16:47:31 -0700 | [diff] [blame] | 3142 | unsigned int idx = SUBPAGE_IDX(addr); |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3143 | MemoryRegionSection *section; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3144 | #if defined(DEBUG_SUBPAGE) |
Avi Kivity | 70c68e4 | 2012-01-02 12:32:48 +0200 | [diff] [blame] | 3145 | printf("%s: subpage %p len %d addr " TARGET_FMT_plx |
| 3146 | " idx %d value %"PRIx64"\n", |
Richard Henderson | f640524 | 2010-04-22 16:47:31 -0700 | [diff] [blame] | 3147 | __func__, mmio, len, addr, idx, value); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3148 | #endif |
Richard Henderson | f640524 | 2010-04-22 16:47:31 -0700 | [diff] [blame] | 3149 | |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3150 | section = &phys_sections[mmio->sub_section[idx]]; |
| 3151 | addr += mmio->base; |
| 3152 | addr -= section->offset_within_address_space; |
| 3153 | addr += section->offset_within_region; |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3154 | io_mem_write(section->mr, addr, value, len); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3155 | } |
| 3156 | |
Avi Kivity | 70c68e4 | 2012-01-02 12:32:48 +0200 | [diff] [blame] | 3157 | static const MemoryRegionOps subpage_ops = { |
| 3158 | .read = subpage_read, |
| 3159 | .write = subpage_write, |
| 3160 | .endianness = DEVICE_NATIVE_ENDIAN, |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3161 | }; |
| 3162 | |
Avi Kivity | de712f9 | 2012-01-02 12:41:07 +0200 | [diff] [blame] | 3163 | static uint64_t subpage_ram_read(void *opaque, target_phys_addr_t addr, |
| 3164 | unsigned size) |
Andreas Färber | 56384e8 | 2011-11-30 16:26:21 +0100 | [diff] [blame] | 3165 | { |
| 3166 | ram_addr_t raddr = addr; |
| 3167 | void *ptr = qemu_get_ram_ptr(raddr); |
Avi Kivity | de712f9 | 2012-01-02 12:41:07 +0200 | [diff] [blame] | 3168 | switch (size) { |
| 3169 | case 1: return ldub_p(ptr); |
| 3170 | case 2: return lduw_p(ptr); |
| 3171 | case 4: return ldl_p(ptr); |
| 3172 | default: abort(); |
| 3173 | } |
Andreas Färber | 56384e8 | 2011-11-30 16:26:21 +0100 | [diff] [blame] | 3174 | } |
| 3175 | |
Avi Kivity | de712f9 | 2012-01-02 12:41:07 +0200 | [diff] [blame] | 3176 | static void subpage_ram_write(void *opaque, target_phys_addr_t addr, |
| 3177 | uint64_t value, unsigned size) |
Andreas Färber | 56384e8 | 2011-11-30 16:26:21 +0100 | [diff] [blame] | 3178 | { |
| 3179 | ram_addr_t raddr = addr; |
| 3180 | void *ptr = qemu_get_ram_ptr(raddr); |
Avi Kivity | de712f9 | 2012-01-02 12:41:07 +0200 | [diff] [blame] | 3181 | switch (size) { |
| 3182 | case 1: return stb_p(ptr, value); |
| 3183 | case 2: return stw_p(ptr, value); |
| 3184 | case 4: return stl_p(ptr, value); |
| 3185 | default: abort(); |
| 3186 | } |
Andreas Färber | 56384e8 | 2011-11-30 16:26:21 +0100 | [diff] [blame] | 3187 | } |
| 3188 | |
Avi Kivity | de712f9 | 2012-01-02 12:41:07 +0200 | [diff] [blame] | 3189 | static const MemoryRegionOps subpage_ram_ops = { |
| 3190 | .read = subpage_ram_read, |
| 3191 | .write = subpage_ram_write, |
| 3192 | .endianness = DEVICE_NATIVE_ENDIAN, |
Andreas Färber | 56384e8 | 2011-11-30 16:26:21 +0100 | [diff] [blame] | 3193 | }; |
| 3194 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3195 | static int subpage_register (subpage_t *mmio, uint32_t start, uint32_t end, |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3196 | uint16_t section) |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3197 | { |
| 3198 | int idx, eidx; |
| 3199 | |
| 3200 | if (start >= TARGET_PAGE_SIZE || end >= TARGET_PAGE_SIZE) |
| 3201 | return -1; |
| 3202 | idx = SUBPAGE_IDX(start); |
| 3203 | eidx = SUBPAGE_IDX(end); |
| 3204 | #if defined(DEBUG_SUBPAGE) |
Blue Swirl | 0bf9e31 | 2009-07-20 17:19:25 +0000 | [diff] [blame] | 3205 | printf("%s: %p start %08x end %08x idx %08x eidx %08x mem %ld\n", __func__, |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3206 | mmio, start, end, idx, eidx, memory); |
| 3207 | #endif |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3208 | if (memory_region_is_ram(phys_sections[section].mr)) { |
| 3209 | MemoryRegionSection new_section = phys_sections[section]; |
| 3210 | new_section.mr = &io_mem_subpage_ram; |
| 3211 | section = phys_section_add(&new_section); |
Andreas Färber | 56384e8 | 2011-11-30 16:26:21 +0100 | [diff] [blame] | 3212 | } |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3213 | for (; idx <= eidx; idx++) { |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3214 | mmio->sub_section[idx] = section; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3215 | } |
| 3216 | |
| 3217 | return 0; |
| 3218 | } |
| 3219 | |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 3220 | static subpage_t *subpage_init(target_phys_addr_t base) |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3221 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3222 | subpage_t *mmio; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3223 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 3224 | mmio = g_malloc0(sizeof(subpage_t)); |
aliguori | 1eec614 | 2009-02-05 22:06:18 +0000 | [diff] [blame] | 3225 | |
| 3226 | mmio->base = base; |
Avi Kivity | 70c68e4 | 2012-01-02 12:32:48 +0200 | [diff] [blame] | 3227 | memory_region_init_io(&mmio->iomem, &subpage_ops, mmio, |
| 3228 | "subpage", TARGET_PAGE_SIZE); |
Avi Kivity | b3b00c7 | 2012-01-02 13:20:11 +0200 | [diff] [blame] | 3229 | mmio->iomem.subpage = true; |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3230 | #if defined(DEBUG_SUBPAGE) |
aliguori | 1eec614 | 2009-02-05 22:06:18 +0000 | [diff] [blame] | 3231 | printf("%s: %p base " TARGET_FMT_plx " len %08x %d\n", __func__, |
| 3232 | mmio, base, TARGET_PAGE_SIZE, subpage_memory); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3233 | #endif |
Avi Kivity | 0f0cb16 | 2012-02-13 17:14:32 +0200 | [diff] [blame] | 3234 | subpage_register(mmio, 0, TARGET_PAGE_SIZE-1, phys_section_unassigned); |
blueswir1 | db7b542 | 2007-05-26 17:36:03 +0000 | [diff] [blame] | 3235 | |
| 3236 | return mmio; |
| 3237 | } |
| 3238 | |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3239 | static uint16_t dummy_section(MemoryRegion *mr) |
| 3240 | { |
| 3241 | MemoryRegionSection section = { |
| 3242 | .mr = mr, |
| 3243 | .offset_within_address_space = 0, |
| 3244 | .offset_within_region = 0, |
| 3245 | .size = UINT64_MAX, |
| 3246 | }; |
| 3247 | |
| 3248 | return phys_section_add(§ion); |
| 3249 | } |
| 3250 | |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3251 | MemoryRegion *iotlb_to_region(target_phys_addr_t index) |
Avi Kivity | aa10223 | 2012-03-08 17:06:55 +0200 | [diff] [blame] | 3252 | { |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3253 | return phys_sections[index & ~TARGET_PAGE_MASK].mr; |
Avi Kivity | aa10223 | 2012-03-08 17:06:55 +0200 | [diff] [blame] | 3254 | } |
| 3255 | |
Avi Kivity | e9179ce | 2009-06-14 11:38:52 +0300 | [diff] [blame] | 3256 | static void io_mem_init(void) |
| 3257 | { |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 3258 | memory_region_init_io(&io_mem_ram, &error_mem_ops, NULL, "ram", UINT64_MAX); |
Avi Kivity | 0e0df1e | 2012-01-02 00:32:15 +0200 | [diff] [blame] | 3259 | memory_region_init_io(&io_mem_rom, &rom_mem_ops, NULL, "rom", UINT64_MAX); |
| 3260 | memory_region_init_io(&io_mem_unassigned, &unassigned_mem_ops, NULL, |
| 3261 | "unassigned", UINT64_MAX); |
| 3262 | memory_region_init_io(&io_mem_notdirty, ¬dirty_mem_ops, NULL, |
| 3263 | "notdirty", UINT64_MAX); |
Avi Kivity | de712f9 | 2012-01-02 12:41:07 +0200 | [diff] [blame] | 3264 | memory_region_init_io(&io_mem_subpage_ram, &subpage_ram_ops, NULL, |
| 3265 | "subpage-ram", UINT64_MAX); |
Avi Kivity | 1ec9b90 | 2012-01-02 12:47:48 +0200 | [diff] [blame] | 3266 | memory_region_init_io(&io_mem_watch, &watch_mem_ops, NULL, |
| 3267 | "watch", UINT64_MAX); |
Avi Kivity | e9179ce | 2009-06-14 11:38:52 +0300 | [diff] [blame] | 3268 | } |
| 3269 | |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3270 | static void core_begin(MemoryListener *listener) |
| 3271 | { |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 3272 | destroy_all_mappings(); |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3273 | phys_sections_clear(); |
Avi Kivity | c19e880 | 2012-02-13 20:25:31 +0200 | [diff] [blame] | 3274 | phys_map.ptr = PHYS_MAP_NODE_NIL; |
Avi Kivity | 5312bd8 | 2012-02-12 18:32:55 +0200 | [diff] [blame] | 3275 | phys_section_unassigned = dummy_section(&io_mem_unassigned); |
Avi Kivity | aa10223 | 2012-03-08 17:06:55 +0200 | [diff] [blame] | 3276 | phys_section_notdirty = dummy_section(&io_mem_notdirty); |
| 3277 | phys_section_rom = dummy_section(&io_mem_rom); |
| 3278 | phys_section_watch = dummy_section(&io_mem_watch); |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3279 | } |
| 3280 | |
| 3281 | static void core_commit(MemoryListener *listener) |
| 3282 | { |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 3283 | CPUArchState *env; |
Avi Kivity | 117712c | 2012-02-12 21:23:17 +0200 | [diff] [blame] | 3284 | |
| 3285 | /* since each CPU stores ram addresses in its TLB cache, we must |
| 3286 | reset the modified entries */ |
| 3287 | /* XXX: slow ! */ |
| 3288 | for(env = first_cpu; env != NULL; env = env->next_cpu) { |
| 3289 | tlb_flush(env, 1); |
| 3290 | } |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3291 | } |
| 3292 | |
Avi Kivity | 9363274 | 2012-02-08 16:54:16 +0200 | [diff] [blame] | 3293 | static void core_region_add(MemoryListener *listener, |
| 3294 | MemoryRegionSection *section) |
| 3295 | { |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3296 | cpu_register_physical_memory_log(section, section->readonly); |
Avi Kivity | 9363274 | 2012-02-08 16:54:16 +0200 | [diff] [blame] | 3297 | } |
| 3298 | |
| 3299 | static void core_region_del(MemoryListener *listener, |
| 3300 | MemoryRegionSection *section) |
| 3301 | { |
Avi Kivity | 9363274 | 2012-02-08 16:54:16 +0200 | [diff] [blame] | 3302 | } |
| 3303 | |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3304 | static void core_region_nop(MemoryListener *listener, |
| 3305 | MemoryRegionSection *section) |
| 3306 | { |
Avi Kivity | 54688b1 | 2012-02-09 17:34:32 +0200 | [diff] [blame] | 3307 | cpu_register_physical_memory_log(section, section->readonly); |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3308 | } |
| 3309 | |
Avi Kivity | 9363274 | 2012-02-08 16:54:16 +0200 | [diff] [blame] | 3310 | static void core_log_start(MemoryListener *listener, |
| 3311 | MemoryRegionSection *section) |
| 3312 | { |
| 3313 | } |
| 3314 | |
| 3315 | static void core_log_stop(MemoryListener *listener, |
| 3316 | MemoryRegionSection *section) |
| 3317 | { |
| 3318 | } |
| 3319 | |
| 3320 | static void core_log_sync(MemoryListener *listener, |
| 3321 | MemoryRegionSection *section) |
| 3322 | { |
| 3323 | } |
| 3324 | |
| 3325 | static void core_log_global_start(MemoryListener *listener) |
| 3326 | { |
| 3327 | cpu_physical_memory_set_dirty_tracking(1); |
| 3328 | } |
| 3329 | |
| 3330 | static void core_log_global_stop(MemoryListener *listener) |
| 3331 | { |
| 3332 | cpu_physical_memory_set_dirty_tracking(0); |
| 3333 | } |
| 3334 | |
| 3335 | static void core_eventfd_add(MemoryListener *listener, |
| 3336 | MemoryRegionSection *section, |
| 3337 | bool match_data, uint64_t data, int fd) |
| 3338 | { |
| 3339 | } |
| 3340 | |
| 3341 | static void core_eventfd_del(MemoryListener *listener, |
| 3342 | MemoryRegionSection *section, |
| 3343 | bool match_data, uint64_t data, int fd) |
| 3344 | { |
| 3345 | } |
| 3346 | |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3347 | static void io_begin(MemoryListener *listener) |
| 3348 | { |
| 3349 | } |
| 3350 | |
| 3351 | static void io_commit(MemoryListener *listener) |
| 3352 | { |
| 3353 | } |
| 3354 | |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3355 | static void io_region_add(MemoryListener *listener, |
| 3356 | MemoryRegionSection *section) |
| 3357 | { |
Avi Kivity | a2d3352 | 2012-03-05 17:40:12 +0200 | [diff] [blame] | 3358 | MemoryRegionIORange *mrio = g_new(MemoryRegionIORange, 1); |
| 3359 | |
| 3360 | mrio->mr = section->mr; |
| 3361 | mrio->offset = section->offset_within_region; |
| 3362 | iorange_init(&mrio->iorange, &memory_region_iorange_ops, |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3363 | section->offset_within_address_space, section->size); |
Avi Kivity | a2d3352 | 2012-03-05 17:40:12 +0200 | [diff] [blame] | 3364 | ioport_register(&mrio->iorange); |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3365 | } |
| 3366 | |
| 3367 | static void io_region_del(MemoryListener *listener, |
| 3368 | MemoryRegionSection *section) |
| 3369 | { |
| 3370 | isa_unassign_ioport(section->offset_within_address_space, section->size); |
| 3371 | } |
| 3372 | |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3373 | static void io_region_nop(MemoryListener *listener, |
| 3374 | MemoryRegionSection *section) |
| 3375 | { |
| 3376 | } |
| 3377 | |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3378 | static void io_log_start(MemoryListener *listener, |
| 3379 | MemoryRegionSection *section) |
| 3380 | { |
| 3381 | } |
| 3382 | |
| 3383 | static void io_log_stop(MemoryListener *listener, |
| 3384 | MemoryRegionSection *section) |
| 3385 | { |
| 3386 | } |
| 3387 | |
| 3388 | static void io_log_sync(MemoryListener *listener, |
| 3389 | MemoryRegionSection *section) |
| 3390 | { |
| 3391 | } |
| 3392 | |
| 3393 | static void io_log_global_start(MemoryListener *listener) |
| 3394 | { |
| 3395 | } |
| 3396 | |
| 3397 | static void io_log_global_stop(MemoryListener *listener) |
| 3398 | { |
| 3399 | } |
| 3400 | |
| 3401 | static void io_eventfd_add(MemoryListener *listener, |
| 3402 | MemoryRegionSection *section, |
| 3403 | bool match_data, uint64_t data, int fd) |
| 3404 | { |
| 3405 | } |
| 3406 | |
| 3407 | static void io_eventfd_del(MemoryListener *listener, |
| 3408 | MemoryRegionSection *section, |
| 3409 | bool match_data, uint64_t data, int fd) |
| 3410 | { |
| 3411 | } |
| 3412 | |
Avi Kivity | 9363274 | 2012-02-08 16:54:16 +0200 | [diff] [blame] | 3413 | static MemoryListener core_memory_listener = { |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3414 | .begin = core_begin, |
| 3415 | .commit = core_commit, |
Avi Kivity | 9363274 | 2012-02-08 16:54:16 +0200 | [diff] [blame] | 3416 | .region_add = core_region_add, |
| 3417 | .region_del = core_region_del, |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3418 | .region_nop = core_region_nop, |
Avi Kivity | 9363274 | 2012-02-08 16:54:16 +0200 | [diff] [blame] | 3419 | .log_start = core_log_start, |
| 3420 | .log_stop = core_log_stop, |
| 3421 | .log_sync = core_log_sync, |
| 3422 | .log_global_start = core_log_global_start, |
| 3423 | .log_global_stop = core_log_global_stop, |
| 3424 | .eventfd_add = core_eventfd_add, |
| 3425 | .eventfd_del = core_eventfd_del, |
| 3426 | .priority = 0, |
| 3427 | }; |
| 3428 | |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3429 | static MemoryListener io_memory_listener = { |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3430 | .begin = io_begin, |
| 3431 | .commit = io_commit, |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3432 | .region_add = io_region_add, |
| 3433 | .region_del = io_region_del, |
Avi Kivity | 50c1e14 | 2012-02-08 21:36:02 +0200 | [diff] [blame] | 3434 | .region_nop = io_region_nop, |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3435 | .log_start = io_log_start, |
| 3436 | .log_stop = io_log_stop, |
| 3437 | .log_sync = io_log_sync, |
| 3438 | .log_global_start = io_log_global_start, |
| 3439 | .log_global_stop = io_log_global_stop, |
| 3440 | .eventfd_add = io_eventfd_add, |
| 3441 | .eventfd_del = io_eventfd_del, |
| 3442 | .priority = 0, |
| 3443 | }; |
| 3444 | |
Avi Kivity | 62152b8 | 2011-07-26 14:26:14 +0300 | [diff] [blame] | 3445 | static void memory_map_init(void) |
| 3446 | { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 3447 | system_memory = g_malloc(sizeof(*system_memory)); |
Avi Kivity | 8417ceb | 2011-08-03 11:56:14 +0300 | [diff] [blame] | 3448 | memory_region_init(system_memory, "system", INT64_MAX); |
Avi Kivity | 62152b8 | 2011-07-26 14:26:14 +0300 | [diff] [blame] | 3449 | set_system_memory_map(system_memory); |
Avi Kivity | 309cb47 | 2011-08-08 16:09:03 +0300 | [diff] [blame] | 3450 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 3451 | system_io = g_malloc(sizeof(*system_io)); |
Avi Kivity | 309cb47 | 2011-08-08 16:09:03 +0300 | [diff] [blame] | 3452 | memory_region_init(system_io, "io", 65536); |
| 3453 | set_system_io_map(system_io); |
Avi Kivity | 9363274 | 2012-02-08 16:54:16 +0200 | [diff] [blame] | 3454 | |
Avi Kivity | 4855d41 | 2012-02-08 21:16:05 +0200 | [diff] [blame] | 3455 | memory_listener_register(&core_memory_listener, system_memory); |
| 3456 | memory_listener_register(&io_memory_listener, system_io); |
Avi Kivity | 62152b8 | 2011-07-26 14:26:14 +0300 | [diff] [blame] | 3457 | } |
| 3458 | |
| 3459 | MemoryRegion *get_system_memory(void) |
| 3460 | { |
| 3461 | return system_memory; |
| 3462 | } |
| 3463 | |
Avi Kivity | 309cb47 | 2011-08-08 16:09:03 +0300 | [diff] [blame] | 3464 | MemoryRegion *get_system_io(void) |
| 3465 | { |
| 3466 | return system_io; |
| 3467 | } |
| 3468 | |
pbrook | e2eef17 | 2008-06-08 01:09:01 +0000 | [diff] [blame] | 3469 | #endif /* !defined(CONFIG_USER_ONLY) */ |
| 3470 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3471 | /* physical memory access (slow version, mainly for debug) */ |
| 3472 | #if defined(CONFIG_USER_ONLY) |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 3473 | int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr, |
Paul Brook | a68fe89 | 2010-03-01 00:08:59 +0000 | [diff] [blame] | 3474 | uint8_t *buf, int len, int is_write) |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3475 | { |
| 3476 | int l, flags; |
| 3477 | target_ulong page; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 3478 | void * p; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3479 | |
| 3480 | while (len > 0) { |
| 3481 | page = addr & TARGET_PAGE_MASK; |
| 3482 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3483 | if (l > len) |
| 3484 | l = len; |
| 3485 | flags = page_get_flags(page); |
| 3486 | if (!(flags & PAGE_VALID)) |
Paul Brook | a68fe89 | 2010-03-01 00:08:59 +0000 | [diff] [blame] | 3487 | return -1; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3488 | if (is_write) { |
| 3489 | if (!(flags & PAGE_WRITE)) |
Paul Brook | a68fe89 | 2010-03-01 00:08:59 +0000 | [diff] [blame] | 3490 | return -1; |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 3491 | /* XXX: this code should not depend on lock_user */ |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 3492 | if (!(p = lock_user(VERIFY_WRITE, addr, l, 0))) |
Paul Brook | a68fe89 | 2010-03-01 00:08:59 +0000 | [diff] [blame] | 3493 | return -1; |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 3494 | memcpy(p, buf, l); |
| 3495 | unlock_user(p, addr, l); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3496 | } else { |
| 3497 | if (!(flags & PAGE_READ)) |
Paul Brook | a68fe89 | 2010-03-01 00:08:59 +0000 | [diff] [blame] | 3498 | return -1; |
bellard | 579a97f | 2007-11-11 14:26:47 +0000 | [diff] [blame] | 3499 | /* XXX: this code should not depend on lock_user */ |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 3500 | if (!(p = lock_user(VERIFY_READ, addr, l, 1))) |
Paul Brook | a68fe89 | 2010-03-01 00:08:59 +0000 | [diff] [blame] | 3501 | return -1; |
aurel32 | 72fb7da | 2008-04-27 23:53:45 +0000 | [diff] [blame] | 3502 | memcpy(buf, p, l); |
aurel32 | 5b25757 | 2008-04-28 08:54:59 +0000 | [diff] [blame] | 3503 | unlock_user(p, addr, 0); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3504 | } |
| 3505 | len -= l; |
| 3506 | buf += l; |
| 3507 | addr += l; |
| 3508 | } |
Paul Brook | a68fe89 | 2010-03-01 00:08:59 +0000 | [diff] [blame] | 3509 | return 0; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3510 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3511 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3512 | #else |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3513 | void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf, |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3514 | int len, int is_write) |
| 3515 | { |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3516 | int l; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3517 | uint8_t *ptr; |
| 3518 | uint32_t val; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3519 | target_phys_addr_t page; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3520 | MemoryRegionSection *section; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3521 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3522 | while (len > 0) { |
| 3523 | page = addr & TARGET_PAGE_MASK; |
| 3524 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3525 | if (l > len) |
| 3526 | l = len; |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3527 | section = phys_page_find(page >> TARGET_PAGE_BITS); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3528 | |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3529 | if (is_write) { |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3530 | if (!memory_region_is_ram(section->mr)) { |
Avi Kivity | f1f6e3b | 2011-11-20 17:52:22 +0200 | [diff] [blame] | 3531 | target_phys_addr_t addr1; |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3532 | addr1 = memory_region_section_addr(section, addr); |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 3533 | /* XXX: could force cpu_single_env to NULL to avoid |
| 3534 | potential bugs */ |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3535 | if (l >= 4 && ((addr1 & 3) == 0)) { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 3536 | /* 32 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3537 | val = ldl_p(buf); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3538 | io_mem_write(section->mr, addr1, val, 4); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3539 | l = 4; |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3540 | } else if (l >= 2 && ((addr1 & 1) == 0)) { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 3541 | /* 16 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3542 | val = lduw_p(buf); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3543 | io_mem_write(section->mr, addr1, val, 2); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3544 | l = 2; |
| 3545 | } else { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 3546 | /* 8 bit write access */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3547 | val = ldub_p(buf); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3548 | io_mem_write(section->mr, addr1, val, 1); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3549 | l = 1; |
| 3550 | } |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3551 | } else if (!section->readonly) { |
Anthony PERARD | 8ca5692 | 2011-07-15 04:32:53 +0000 | [diff] [blame] | 3552 | ram_addr_t addr1; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3553 | addr1 = memory_region_get_ram_addr(section->mr) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3554 | + memory_region_section_addr(section, addr); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3555 | /* RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3556 | ptr = qemu_get_ram_ptr(addr1); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3557 | memcpy(ptr, buf, l); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3558 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 3559 | /* invalidate code */ |
| 3560 | tb_invalidate_phys_page_range(addr1, addr1 + l, 0); |
| 3561 | /* set dirty bit */ |
Yoshiaki Tamura | f7c11b5 | 2010-03-23 16:39:53 +0900 | [diff] [blame] | 3562 | cpu_physical_memory_set_dirty_flags( |
| 3563 | addr1, (0xff & ~CODE_DIRTY_FLAG)); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 3564 | } |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 3565 | qemu_put_ram_ptr(ptr); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3566 | } |
| 3567 | } else { |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3568 | if (!(memory_region_is_ram(section->mr) || |
| 3569 | memory_region_is_romd(section->mr))) { |
Avi Kivity | f1f6e3b | 2011-11-20 17:52:22 +0200 | [diff] [blame] | 3570 | target_phys_addr_t addr1; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3571 | /* I/O case */ |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3572 | addr1 = memory_region_section_addr(section, addr); |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3573 | if (l >= 4 && ((addr1 & 3) == 0)) { |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3574 | /* 32 bit read access */ |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3575 | val = io_mem_read(section->mr, addr1, 4); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3576 | stl_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3577 | l = 4; |
aurel32 | 6c2934d | 2009-02-18 21:37:17 +0000 | [diff] [blame] | 3578 | } else if (l >= 2 && ((addr1 & 1) == 0)) { |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3579 | /* 16 bit read access */ |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3580 | val = io_mem_read(section->mr, addr1, 2); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3581 | stw_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3582 | l = 2; |
| 3583 | } else { |
bellard | 1c213d1 | 2005-09-03 10:49:04 +0000 | [diff] [blame] | 3584 | /* 8 bit read access */ |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3585 | val = io_mem_read(section->mr, addr1, 1); |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 3586 | stb_p(buf, val); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3587 | l = 1; |
| 3588 | } |
| 3589 | } else { |
| 3590 | /* RAM case */ |
Anthony PERARD | 0a1b357 | 2012-03-19 15:54:34 +0000 | [diff] [blame] | 3591 | ptr = qemu_get_ram_ptr(section->mr->ram_addr |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3592 | + memory_region_section_addr(section, |
| 3593 | addr)); |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3594 | memcpy(buf, ptr, l); |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 3595 | qemu_put_ram_ptr(ptr); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 3596 | } |
| 3597 | } |
| 3598 | len -= l; |
| 3599 | buf += l; |
| 3600 | addr += l; |
| 3601 | } |
| 3602 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3603 | |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3604 | /* used for ROM loading : can write in RAM and ROM */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3605 | void cpu_physical_memory_write_rom(target_phys_addr_t addr, |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3606 | const uint8_t *buf, int len) |
| 3607 | { |
| 3608 | int l; |
| 3609 | uint8_t *ptr; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3610 | target_phys_addr_t page; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3611 | MemoryRegionSection *section; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3612 | |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3613 | while (len > 0) { |
| 3614 | page = addr & TARGET_PAGE_MASK; |
| 3615 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3616 | if (l > len) |
| 3617 | l = len; |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3618 | section = phys_page_find(page >> TARGET_PAGE_BITS); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3619 | |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3620 | if (!(memory_region_is_ram(section->mr) || |
| 3621 | memory_region_is_romd(section->mr))) { |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3622 | /* do nothing */ |
| 3623 | } else { |
| 3624 | unsigned long addr1; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3625 | addr1 = memory_region_get_ram_addr(section->mr) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3626 | + memory_region_section_addr(section, addr); |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3627 | /* ROM/RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3628 | ptr = qemu_get_ram_ptr(addr1); |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3629 | memcpy(ptr, buf, l); |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 3630 | qemu_put_ram_ptr(ptr); |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3631 | } |
| 3632 | len -= l; |
| 3633 | buf += l; |
| 3634 | addr += l; |
| 3635 | } |
| 3636 | } |
| 3637 | |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3638 | typedef struct { |
| 3639 | void *buffer; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3640 | target_phys_addr_t addr; |
| 3641 | target_phys_addr_t len; |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3642 | } BounceBuffer; |
| 3643 | |
| 3644 | static BounceBuffer bounce; |
| 3645 | |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3646 | typedef struct MapClient { |
| 3647 | void *opaque; |
| 3648 | void (*callback)(void *opaque); |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 3649 | QLIST_ENTRY(MapClient) link; |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3650 | } MapClient; |
| 3651 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 3652 | static QLIST_HEAD(map_client_list, MapClient) map_client_list |
| 3653 | = QLIST_HEAD_INITIALIZER(map_client_list); |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3654 | |
| 3655 | void *cpu_register_map_client(void *opaque, void (*callback)(void *opaque)) |
| 3656 | { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 3657 | MapClient *client = g_malloc(sizeof(*client)); |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3658 | |
| 3659 | client->opaque = opaque; |
| 3660 | client->callback = callback; |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 3661 | QLIST_INSERT_HEAD(&map_client_list, client, link); |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3662 | return client; |
| 3663 | } |
| 3664 | |
| 3665 | void cpu_unregister_map_client(void *_client) |
| 3666 | { |
| 3667 | MapClient *client = (MapClient *)_client; |
| 3668 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 3669 | QLIST_REMOVE(client, link); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 3670 | g_free(client); |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3671 | } |
| 3672 | |
| 3673 | static void cpu_notify_map_clients(void) |
| 3674 | { |
| 3675 | MapClient *client; |
| 3676 | |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 3677 | while (!QLIST_EMPTY(&map_client_list)) { |
| 3678 | client = QLIST_FIRST(&map_client_list); |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3679 | client->callback(client->opaque); |
Isaku Yamahata | 34d5e94 | 2009-06-26 18:57:18 +0900 | [diff] [blame] | 3680 | cpu_unregister_map_client(client); |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3681 | } |
| 3682 | } |
| 3683 | |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3684 | /* Map a physical memory region into a host virtual address. |
| 3685 | * May map a subset of the requested range, given by and returned in *plen. |
| 3686 | * May return NULL if resources needed to perform the mapping are exhausted. |
| 3687 | * Use only for reads OR writes - not for read-modify-write operations. |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3688 | * Use cpu_register_map_client() to know when retrying the map operation is |
| 3689 | * likely to succeed. |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3690 | */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3691 | void *cpu_physical_memory_map(target_phys_addr_t addr, |
| 3692 | target_phys_addr_t *plen, |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3693 | int is_write) |
| 3694 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3695 | target_phys_addr_t len = *plen; |
Stefano Stabellini | 38bee5d | 2011-05-19 18:35:45 +0100 | [diff] [blame] | 3696 | target_phys_addr_t todo = 0; |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3697 | int l; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3698 | target_phys_addr_t page; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3699 | MemoryRegionSection *section; |
Anthony PERARD | f15fbc4 | 2011-07-20 08:17:42 +0000 | [diff] [blame] | 3700 | ram_addr_t raddr = RAM_ADDR_MAX; |
Stefano Stabellini | 8ab934f | 2011-06-27 18:26:06 +0100 | [diff] [blame] | 3701 | ram_addr_t rlen; |
| 3702 | void *ret; |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3703 | |
| 3704 | while (len > 0) { |
| 3705 | page = addr & TARGET_PAGE_MASK; |
| 3706 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 3707 | if (l > len) |
| 3708 | l = len; |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3709 | section = phys_page_find(page >> TARGET_PAGE_BITS); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3710 | |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3711 | if (!(memory_region_is_ram(section->mr) && !section->readonly)) { |
Stefano Stabellini | 38bee5d | 2011-05-19 18:35:45 +0100 | [diff] [blame] | 3712 | if (todo || bounce.buffer) { |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3713 | break; |
| 3714 | } |
| 3715 | bounce.buffer = qemu_memalign(TARGET_PAGE_SIZE, TARGET_PAGE_SIZE); |
| 3716 | bounce.addr = addr; |
| 3717 | bounce.len = l; |
| 3718 | if (!is_write) { |
Stefan Weil | 54f7b4a | 2011-04-10 18:23:39 +0200 | [diff] [blame] | 3719 | cpu_physical_memory_read(addr, bounce.buffer, l); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3720 | } |
Stefano Stabellini | 38bee5d | 2011-05-19 18:35:45 +0100 | [diff] [blame] | 3721 | |
| 3722 | *plen = l; |
| 3723 | return bounce.buffer; |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3724 | } |
Stefano Stabellini | 8ab934f | 2011-06-27 18:26:06 +0100 | [diff] [blame] | 3725 | if (!todo) { |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3726 | raddr = memory_region_get_ram_addr(section->mr) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3727 | + memory_region_section_addr(section, addr); |
Stefano Stabellini | 8ab934f | 2011-06-27 18:26:06 +0100 | [diff] [blame] | 3728 | } |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3729 | |
| 3730 | len -= l; |
| 3731 | addr += l; |
Stefano Stabellini | 38bee5d | 2011-05-19 18:35:45 +0100 | [diff] [blame] | 3732 | todo += l; |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3733 | } |
Stefano Stabellini | 8ab934f | 2011-06-27 18:26:06 +0100 | [diff] [blame] | 3734 | rlen = todo; |
| 3735 | ret = qemu_ram_ptr_length(raddr, &rlen); |
| 3736 | *plen = rlen; |
| 3737 | return ret; |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3738 | } |
| 3739 | |
| 3740 | /* Unmaps a memory region previously mapped by cpu_physical_memory_map(). |
| 3741 | * Will also mark the memory as dirty if is_write == 1. access_len gives |
| 3742 | * the amount of memory that was actually read or written by the caller. |
| 3743 | */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3744 | void cpu_physical_memory_unmap(void *buffer, target_phys_addr_t len, |
| 3745 | int is_write, target_phys_addr_t access_len) |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3746 | { |
| 3747 | if (buffer != bounce.buffer) { |
| 3748 | if (is_write) { |
Marcelo Tosatti | e890261 | 2010-10-11 15:31:19 -0300 | [diff] [blame] | 3749 | ram_addr_t addr1 = qemu_ram_addr_from_host_nofail(buffer); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3750 | while (access_len) { |
| 3751 | unsigned l; |
| 3752 | l = TARGET_PAGE_SIZE; |
| 3753 | if (l > access_len) |
| 3754 | l = access_len; |
| 3755 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 3756 | /* invalidate code */ |
| 3757 | tb_invalidate_phys_page_range(addr1, addr1 + l, 0); |
| 3758 | /* set dirty bit */ |
Yoshiaki Tamura | f7c11b5 | 2010-03-23 16:39:53 +0900 | [diff] [blame] | 3759 | cpu_physical_memory_set_dirty_flags( |
| 3760 | addr1, (0xff & ~CODE_DIRTY_FLAG)); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3761 | } |
| 3762 | addr1 += l; |
| 3763 | access_len -= l; |
| 3764 | } |
| 3765 | } |
Jan Kiszka | 868bb33 | 2011-06-21 22:59:09 +0200 | [diff] [blame] | 3766 | if (xen_enabled()) { |
Jan Kiszka | e41d7c6 | 2011-06-21 22:59:08 +0200 | [diff] [blame] | 3767 | xen_invalidate_map_cache_entry(buffer); |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 3768 | } |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3769 | return; |
| 3770 | } |
| 3771 | if (is_write) { |
| 3772 | cpu_physical_memory_write(bounce.addr, bounce.buffer, access_len); |
| 3773 | } |
Herve Poussineau | f8a8324 | 2010-01-24 21:23:56 +0000 | [diff] [blame] | 3774 | qemu_vfree(bounce.buffer); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3775 | bounce.buffer = NULL; |
aliguori | ba223c2 | 2009-01-22 16:59:16 +0000 | [diff] [blame] | 3776 | cpu_notify_map_clients(); |
aliguori | 6d16c2f | 2009-01-22 16:59:11 +0000 | [diff] [blame] | 3777 | } |
bellard | d0ecd2a | 2006-04-23 17:14:48 +0000 | [diff] [blame] | 3778 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3779 | /* warning: addr must be aligned */ |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3780 | static inline uint32_t ldl_phys_internal(target_phys_addr_t addr, |
| 3781 | enum device_endian endian) |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3782 | { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3783 | uint8_t *ptr; |
| 3784 | uint32_t val; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3785 | MemoryRegionSection *section; |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3786 | |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3787 | section = phys_page_find(addr >> TARGET_PAGE_BITS); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3788 | |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3789 | if (!(memory_region_is_ram(section->mr) || |
| 3790 | memory_region_is_romd(section->mr))) { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3791 | /* I/O case */ |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3792 | addr = memory_region_section_addr(section, addr); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3793 | val = io_mem_read(section->mr, addr, 4); |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3794 | #if defined(TARGET_WORDS_BIGENDIAN) |
| 3795 | if (endian == DEVICE_LITTLE_ENDIAN) { |
| 3796 | val = bswap32(val); |
| 3797 | } |
| 3798 | #else |
| 3799 | if (endian == DEVICE_BIG_ENDIAN) { |
| 3800 | val = bswap32(val); |
| 3801 | } |
| 3802 | #endif |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3803 | } else { |
| 3804 | /* RAM case */ |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3805 | ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr) |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3806 | & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3807 | + memory_region_section_addr(section, addr)); |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3808 | switch (endian) { |
| 3809 | case DEVICE_LITTLE_ENDIAN: |
| 3810 | val = ldl_le_p(ptr); |
| 3811 | break; |
| 3812 | case DEVICE_BIG_ENDIAN: |
| 3813 | val = ldl_be_p(ptr); |
| 3814 | break; |
| 3815 | default: |
| 3816 | val = ldl_p(ptr); |
| 3817 | break; |
| 3818 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3819 | } |
| 3820 | return val; |
| 3821 | } |
| 3822 | |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3823 | uint32_t ldl_phys(target_phys_addr_t addr) |
| 3824 | { |
| 3825 | return ldl_phys_internal(addr, DEVICE_NATIVE_ENDIAN); |
| 3826 | } |
| 3827 | |
| 3828 | uint32_t ldl_le_phys(target_phys_addr_t addr) |
| 3829 | { |
| 3830 | return ldl_phys_internal(addr, DEVICE_LITTLE_ENDIAN); |
| 3831 | } |
| 3832 | |
| 3833 | uint32_t ldl_be_phys(target_phys_addr_t addr) |
| 3834 | { |
| 3835 | return ldl_phys_internal(addr, DEVICE_BIG_ENDIAN); |
| 3836 | } |
| 3837 | |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3838 | /* warning: addr must be aligned */ |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3839 | static inline uint64_t ldq_phys_internal(target_phys_addr_t addr, |
| 3840 | enum device_endian endian) |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3841 | { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3842 | uint8_t *ptr; |
| 3843 | uint64_t val; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3844 | MemoryRegionSection *section; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3845 | |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3846 | section = phys_page_find(addr >> TARGET_PAGE_BITS); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3847 | |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3848 | if (!(memory_region_is_ram(section->mr) || |
| 3849 | memory_region_is_romd(section->mr))) { |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3850 | /* I/O case */ |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3851 | addr = memory_region_section_addr(section, addr); |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3852 | |
| 3853 | /* XXX This is broken when device endian != cpu endian. |
| 3854 | Fix and add "endian" variable check */ |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3855 | #ifdef TARGET_WORDS_BIGENDIAN |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3856 | val = io_mem_read(section->mr, addr, 4) << 32; |
| 3857 | val |= io_mem_read(section->mr, addr + 4, 4); |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3858 | #else |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3859 | val = io_mem_read(section->mr, addr, 4); |
| 3860 | val |= io_mem_read(section->mr, addr + 4, 4) << 32; |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3861 | #endif |
| 3862 | } else { |
| 3863 | /* RAM case */ |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3864 | ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr) |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3865 | & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3866 | + memory_region_section_addr(section, addr)); |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3867 | switch (endian) { |
| 3868 | case DEVICE_LITTLE_ENDIAN: |
| 3869 | val = ldq_le_p(ptr); |
| 3870 | break; |
| 3871 | case DEVICE_BIG_ENDIAN: |
| 3872 | val = ldq_be_p(ptr); |
| 3873 | break; |
| 3874 | default: |
| 3875 | val = ldq_p(ptr); |
| 3876 | break; |
| 3877 | } |
bellard | 84b7b8e | 2005-11-28 21:19:04 +0000 | [diff] [blame] | 3878 | } |
| 3879 | return val; |
| 3880 | } |
| 3881 | |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3882 | uint64_t ldq_phys(target_phys_addr_t addr) |
| 3883 | { |
| 3884 | return ldq_phys_internal(addr, DEVICE_NATIVE_ENDIAN); |
| 3885 | } |
| 3886 | |
| 3887 | uint64_t ldq_le_phys(target_phys_addr_t addr) |
| 3888 | { |
| 3889 | return ldq_phys_internal(addr, DEVICE_LITTLE_ENDIAN); |
| 3890 | } |
| 3891 | |
| 3892 | uint64_t ldq_be_phys(target_phys_addr_t addr) |
| 3893 | { |
| 3894 | return ldq_phys_internal(addr, DEVICE_BIG_ENDIAN); |
| 3895 | } |
| 3896 | |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 3897 | /* XXX: optimize */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3898 | uint32_t ldub_phys(target_phys_addr_t addr) |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 3899 | { |
| 3900 | uint8_t val; |
| 3901 | cpu_physical_memory_read(addr, &val, 1); |
| 3902 | return val; |
| 3903 | } |
| 3904 | |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 3905 | /* warning: addr must be aligned */ |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3906 | static inline uint32_t lduw_phys_internal(target_phys_addr_t addr, |
| 3907 | enum device_endian endian) |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 3908 | { |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 3909 | uint8_t *ptr; |
| 3910 | uint64_t val; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3911 | MemoryRegionSection *section; |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 3912 | |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3913 | section = phys_page_find(addr >> TARGET_PAGE_BITS); |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 3914 | |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3915 | if (!(memory_region_is_ram(section->mr) || |
| 3916 | memory_region_is_romd(section->mr))) { |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 3917 | /* I/O case */ |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3918 | addr = memory_region_section_addr(section, addr); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3919 | val = io_mem_read(section->mr, addr, 2); |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3920 | #if defined(TARGET_WORDS_BIGENDIAN) |
| 3921 | if (endian == DEVICE_LITTLE_ENDIAN) { |
| 3922 | val = bswap16(val); |
| 3923 | } |
| 3924 | #else |
| 3925 | if (endian == DEVICE_BIG_ENDIAN) { |
| 3926 | val = bswap16(val); |
| 3927 | } |
| 3928 | #endif |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 3929 | } else { |
| 3930 | /* RAM case */ |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3931 | ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr) |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3932 | & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3933 | + memory_region_section_addr(section, addr)); |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3934 | switch (endian) { |
| 3935 | case DEVICE_LITTLE_ENDIAN: |
| 3936 | val = lduw_le_p(ptr); |
| 3937 | break; |
| 3938 | case DEVICE_BIG_ENDIAN: |
| 3939 | val = lduw_be_p(ptr); |
| 3940 | break; |
| 3941 | default: |
| 3942 | val = lduw_p(ptr); |
| 3943 | break; |
| 3944 | } |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 3945 | } |
| 3946 | return val; |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 3947 | } |
| 3948 | |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 3949 | uint32_t lduw_phys(target_phys_addr_t addr) |
| 3950 | { |
| 3951 | return lduw_phys_internal(addr, DEVICE_NATIVE_ENDIAN); |
| 3952 | } |
| 3953 | |
| 3954 | uint32_t lduw_le_phys(target_phys_addr_t addr) |
| 3955 | { |
| 3956 | return lduw_phys_internal(addr, DEVICE_LITTLE_ENDIAN); |
| 3957 | } |
| 3958 | |
| 3959 | uint32_t lduw_be_phys(target_phys_addr_t addr) |
| 3960 | { |
| 3961 | return lduw_phys_internal(addr, DEVICE_BIG_ENDIAN); |
| 3962 | } |
| 3963 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3964 | /* warning: addr must be aligned. The ram page is not masked as dirty |
| 3965 | and the code inside is not invalidated. It is useful if the dirty |
| 3966 | bits are used to track modified PTEs */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3967 | void stl_phys_notdirty(target_phys_addr_t addr, uint32_t val) |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3968 | { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3969 | uint8_t *ptr; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3970 | MemoryRegionSection *section; |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3971 | |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3972 | section = phys_page_find(addr >> TARGET_PAGE_BITS); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 3973 | |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3974 | if (!memory_region_is_ram(section->mr) || section->readonly) { |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3975 | addr = memory_region_section_addr(section, addr); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 3976 | if (memory_region_is_ram(section->mr)) { |
| 3977 | section = &phys_sections[phys_section_rom]; |
| 3978 | } |
| 3979 | io_mem_write(section->mr, addr, val, 4); |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3980 | } else { |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 3981 | unsigned long addr1 = (memory_region_get_ram_addr(section->mr) |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 3982 | & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 3983 | + memory_region_section_addr(section, addr); |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 3984 | ptr = qemu_get_ram_ptr(addr1); |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3985 | stl_p(ptr, val); |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 3986 | |
| 3987 | if (unlikely(in_migration)) { |
| 3988 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 3989 | /* invalidate code */ |
| 3990 | tb_invalidate_phys_page_range(addr1, addr1 + 4, 0); |
| 3991 | /* set dirty bit */ |
Yoshiaki Tamura | f7c11b5 | 2010-03-23 16:39:53 +0900 | [diff] [blame] | 3992 | cpu_physical_memory_set_dirty_flags( |
| 3993 | addr1, (0xff & ~CODE_DIRTY_FLAG)); |
aliguori | 7457619 | 2008-10-06 14:02:03 +0000 | [diff] [blame] | 3994 | } |
| 3995 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 3996 | } |
| 3997 | } |
| 3998 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 3999 | void stq_phys_notdirty(target_phys_addr_t addr, uint64_t val) |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 4000 | { |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 4001 | uint8_t *ptr; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4002 | MemoryRegionSection *section; |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 4003 | |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 4004 | section = phys_page_find(addr >> TARGET_PAGE_BITS); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 4005 | |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4006 | if (!memory_region_is_ram(section->mr) || section->readonly) { |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 4007 | addr = memory_region_section_addr(section, addr); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 4008 | if (memory_region_is_ram(section->mr)) { |
| 4009 | section = &phys_sections[phys_section_rom]; |
| 4010 | } |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 4011 | #ifdef TARGET_WORDS_BIGENDIAN |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 4012 | io_mem_write(section->mr, addr, val >> 32, 4); |
| 4013 | io_mem_write(section->mr, addr + 4, (uint32_t)val, 4); |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 4014 | #else |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 4015 | io_mem_write(section->mr, addr, (uint32_t)val, 4); |
| 4016 | io_mem_write(section->mr, addr + 4, val >> 32, 4); |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 4017 | #endif |
| 4018 | } else { |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4019 | ptr = qemu_get_ram_ptr((memory_region_get_ram_addr(section->mr) |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 4020 | & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 4021 | + memory_region_section_addr(section, addr)); |
j_mayer | bc98a7e | 2007-04-04 07:55:12 +0000 | [diff] [blame] | 4022 | stq_p(ptr, val); |
| 4023 | } |
| 4024 | } |
| 4025 | |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 4026 | /* warning: addr must be aligned */ |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4027 | static inline void stl_phys_internal(target_phys_addr_t addr, uint32_t val, |
| 4028 | enum device_endian endian) |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 4029 | { |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 4030 | uint8_t *ptr; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4031 | MemoryRegionSection *section; |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 4032 | |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 4033 | section = phys_page_find(addr >> TARGET_PAGE_BITS); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 4034 | |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4035 | if (!memory_region_is_ram(section->mr) || section->readonly) { |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 4036 | addr = memory_region_section_addr(section, addr); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 4037 | if (memory_region_is_ram(section->mr)) { |
| 4038 | section = &phys_sections[phys_section_rom]; |
| 4039 | } |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4040 | #if defined(TARGET_WORDS_BIGENDIAN) |
| 4041 | if (endian == DEVICE_LITTLE_ENDIAN) { |
| 4042 | val = bswap32(val); |
| 4043 | } |
| 4044 | #else |
| 4045 | if (endian == DEVICE_BIG_ENDIAN) { |
| 4046 | val = bswap32(val); |
| 4047 | } |
| 4048 | #endif |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 4049 | io_mem_write(section->mr, addr, val, 4); |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 4050 | } else { |
| 4051 | unsigned long addr1; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4052 | addr1 = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 4053 | + memory_region_section_addr(section, addr); |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 4054 | /* RAM case */ |
pbrook | 5579c7f | 2009-04-11 14:47:08 +0000 | [diff] [blame] | 4055 | ptr = qemu_get_ram_ptr(addr1); |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4056 | switch (endian) { |
| 4057 | case DEVICE_LITTLE_ENDIAN: |
| 4058 | stl_le_p(ptr, val); |
| 4059 | break; |
| 4060 | case DEVICE_BIG_ENDIAN: |
| 4061 | stl_be_p(ptr, val); |
| 4062 | break; |
| 4063 | default: |
| 4064 | stl_p(ptr, val); |
| 4065 | break; |
| 4066 | } |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 4067 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 4068 | /* invalidate code */ |
| 4069 | tb_invalidate_phys_page_range(addr1, addr1 + 4, 0); |
| 4070 | /* set dirty bit */ |
Yoshiaki Tamura | f7c11b5 | 2010-03-23 16:39:53 +0900 | [diff] [blame] | 4071 | cpu_physical_memory_set_dirty_flags(addr1, |
| 4072 | (0xff & ~CODE_DIRTY_FLAG)); |
bellard | 3a7d929 | 2005-08-21 09:26:42 +0000 | [diff] [blame] | 4073 | } |
bellard | 8df1cd0 | 2005-01-28 22:37:22 +0000 | [diff] [blame] | 4074 | } |
| 4075 | } |
| 4076 | |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4077 | void stl_phys(target_phys_addr_t addr, uint32_t val) |
| 4078 | { |
| 4079 | stl_phys_internal(addr, val, DEVICE_NATIVE_ENDIAN); |
| 4080 | } |
| 4081 | |
| 4082 | void stl_le_phys(target_phys_addr_t addr, uint32_t val) |
| 4083 | { |
| 4084 | stl_phys_internal(addr, val, DEVICE_LITTLE_ENDIAN); |
| 4085 | } |
| 4086 | |
| 4087 | void stl_be_phys(target_phys_addr_t addr, uint32_t val) |
| 4088 | { |
| 4089 | stl_phys_internal(addr, val, DEVICE_BIG_ENDIAN); |
| 4090 | } |
| 4091 | |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 4092 | /* XXX: optimize */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 4093 | void stb_phys(target_phys_addr_t addr, uint32_t val) |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 4094 | { |
| 4095 | uint8_t v = val; |
| 4096 | cpu_physical_memory_write(addr, &v, 1); |
| 4097 | } |
| 4098 | |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 4099 | /* warning: addr must be aligned */ |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4100 | static inline void stw_phys_internal(target_phys_addr_t addr, uint32_t val, |
| 4101 | enum device_endian endian) |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 4102 | { |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 4103 | uint8_t *ptr; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4104 | MemoryRegionSection *section; |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 4105 | |
Avi Kivity | 06ef352 | 2012-02-13 16:11:22 +0200 | [diff] [blame] | 4106 | section = phys_page_find(addr >> TARGET_PAGE_BITS); |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 4107 | |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4108 | if (!memory_region_is_ram(section->mr) || section->readonly) { |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 4109 | addr = memory_region_section_addr(section, addr); |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 4110 | if (memory_region_is_ram(section->mr)) { |
| 4111 | section = &phys_sections[phys_section_rom]; |
| 4112 | } |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4113 | #if defined(TARGET_WORDS_BIGENDIAN) |
| 4114 | if (endian == DEVICE_LITTLE_ENDIAN) { |
| 4115 | val = bswap16(val); |
| 4116 | } |
| 4117 | #else |
| 4118 | if (endian == DEVICE_BIG_ENDIAN) { |
| 4119 | val = bswap16(val); |
| 4120 | } |
| 4121 | #endif |
Avi Kivity | 37ec01d | 2012-03-08 18:08:35 +0200 | [diff] [blame] | 4122 | io_mem_write(section->mr, addr, val, 2); |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 4123 | } else { |
| 4124 | unsigned long addr1; |
Avi Kivity | f3705d5 | 2012-03-08 16:16:34 +0200 | [diff] [blame] | 4125 | addr1 = (memory_region_get_ram_addr(section->mr) & TARGET_PAGE_MASK) |
Blue Swirl | cc5bea6 | 2012-04-14 14:56:48 +0000 | [diff] [blame] | 4126 | + memory_region_section_addr(section, addr); |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 4127 | /* RAM case */ |
| 4128 | ptr = qemu_get_ram_ptr(addr1); |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4129 | switch (endian) { |
| 4130 | case DEVICE_LITTLE_ENDIAN: |
| 4131 | stw_le_p(ptr, val); |
| 4132 | break; |
| 4133 | case DEVICE_BIG_ENDIAN: |
| 4134 | stw_be_p(ptr, val); |
| 4135 | break; |
| 4136 | default: |
| 4137 | stw_p(ptr, val); |
| 4138 | break; |
| 4139 | } |
Michael S. Tsirkin | 733f0b0 | 2010-04-06 14:18:19 +0300 | [diff] [blame] | 4140 | if (!cpu_physical_memory_is_dirty(addr1)) { |
| 4141 | /* invalidate code */ |
| 4142 | tb_invalidate_phys_page_range(addr1, addr1 + 2, 0); |
| 4143 | /* set dirty bit */ |
| 4144 | cpu_physical_memory_set_dirty_flags(addr1, |
| 4145 | (0xff & ~CODE_DIRTY_FLAG)); |
| 4146 | } |
| 4147 | } |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 4148 | } |
| 4149 | |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4150 | void stw_phys(target_phys_addr_t addr, uint32_t val) |
| 4151 | { |
| 4152 | stw_phys_internal(addr, val, DEVICE_NATIVE_ENDIAN); |
| 4153 | } |
| 4154 | |
| 4155 | void stw_le_phys(target_phys_addr_t addr, uint32_t val) |
| 4156 | { |
| 4157 | stw_phys_internal(addr, val, DEVICE_LITTLE_ENDIAN); |
| 4158 | } |
| 4159 | |
| 4160 | void stw_be_phys(target_phys_addr_t addr, uint32_t val) |
| 4161 | { |
| 4162 | stw_phys_internal(addr, val, DEVICE_BIG_ENDIAN); |
| 4163 | } |
| 4164 | |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 4165 | /* XXX: optimize */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 4166 | void stq_phys(target_phys_addr_t addr, uint64_t val) |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 4167 | { |
| 4168 | val = tswap64(val); |
Stefan Weil | 71d2b72 | 2011-03-26 21:06:56 +0100 | [diff] [blame] | 4169 | cpu_physical_memory_write(addr, &val, 8); |
bellard | aab3309 | 2005-10-30 20:48:42 +0000 | [diff] [blame] | 4170 | } |
| 4171 | |
Alexander Graf | 1e78bcc | 2011-07-06 09:09:23 +0200 | [diff] [blame] | 4172 | void stq_le_phys(target_phys_addr_t addr, uint64_t val) |
| 4173 | { |
| 4174 | val = cpu_to_le64(val); |
| 4175 | cpu_physical_memory_write(addr, &val, 8); |
| 4176 | } |
| 4177 | |
| 4178 | void stq_be_phys(target_phys_addr_t addr, uint64_t val) |
| 4179 | { |
| 4180 | val = cpu_to_be64(val); |
| 4181 | cpu_physical_memory_write(addr, &val, 8); |
| 4182 | } |
| 4183 | |
aliguori | 5e2972f | 2009-03-28 17:51:36 +0000 | [diff] [blame] | 4184 | /* virtual memory access for debug (includes writing to ROM) */ |
Andreas Färber | 9349b4f | 2012-03-14 01:38:32 +0100 | [diff] [blame] | 4185 | int cpu_memory_rw_debug(CPUArchState *env, target_ulong addr, |
bellard | b448f2f | 2004-02-25 23:24:04 +0000 | [diff] [blame] | 4186 | uint8_t *buf, int len, int is_write) |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 4187 | { |
| 4188 | int l; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 4189 | target_phys_addr_t phys_addr; |
j_mayer | 9b3c35e | 2007-04-07 11:21:28 +0000 | [diff] [blame] | 4190 | target_ulong page; |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 4191 | |
| 4192 | while (len > 0) { |
| 4193 | page = addr & TARGET_PAGE_MASK; |
| 4194 | phys_addr = cpu_get_phys_page_debug(env, page); |
| 4195 | /* if no physical page mapped, return an error */ |
| 4196 | if (phys_addr == -1) |
| 4197 | return -1; |
| 4198 | l = (page + TARGET_PAGE_SIZE) - addr; |
| 4199 | if (l > len) |
| 4200 | l = len; |
aliguori | 5e2972f | 2009-03-28 17:51:36 +0000 | [diff] [blame] | 4201 | phys_addr += (addr & ~TARGET_PAGE_MASK); |
aliguori | 5e2972f | 2009-03-28 17:51:36 +0000 | [diff] [blame] | 4202 | if (is_write) |
| 4203 | cpu_physical_memory_write_rom(phys_addr, buf, l); |
| 4204 | else |
aliguori | 5e2972f | 2009-03-28 17:51:36 +0000 | [diff] [blame] | 4205 | cpu_physical_memory_rw(phys_addr, buf, l, is_write); |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 4206 | len -= l; |
| 4207 | buf += l; |
| 4208 | addr += l; |
| 4209 | } |
| 4210 | return 0; |
| 4211 | } |
Paul Brook | a68fe89 | 2010-03-01 00:08:59 +0000 | [diff] [blame] | 4212 | #endif |
bellard | 13eb76e | 2004-01-24 15:23:36 +0000 | [diff] [blame] | 4213 | |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 4214 | /* in deterministic execution mode, instructions doing device I/Os |
| 4215 | must be at the end of the TB */ |
Blue Swirl | 2050396 | 2012-04-09 14:20:20 +0000 | [diff] [blame] | 4216 | void cpu_io_recompile(CPUArchState *env, uintptr_t retaddr) |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 4217 | { |
| 4218 | TranslationBlock *tb; |
| 4219 | uint32_t n, cflags; |
| 4220 | target_ulong pc, cs_base; |
| 4221 | uint64_t flags; |
| 4222 | |
Blue Swirl | 2050396 | 2012-04-09 14:20:20 +0000 | [diff] [blame] | 4223 | tb = tb_find_pc(retaddr); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 4224 | if (!tb) { |
| 4225 | cpu_abort(env, "cpu_io_recompile: could not find TB for pc=%p", |
Blue Swirl | 2050396 | 2012-04-09 14:20:20 +0000 | [diff] [blame] | 4226 | (void *)retaddr); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 4227 | } |
| 4228 | n = env->icount_decr.u16.low + tb->icount; |
Blue Swirl | 2050396 | 2012-04-09 14:20:20 +0000 | [diff] [blame] | 4229 | cpu_restore_state(tb, env, retaddr); |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 4230 | /* Calculate how many instructions had been executed before the fault |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 4231 | occurred. */ |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 4232 | n = n - env->icount_decr.u16.low; |
| 4233 | /* Generate a new TB ending on the I/O insn. */ |
| 4234 | n++; |
| 4235 | /* On MIPS and SH, delay slot instructions can only be restarted if |
| 4236 | they were already the first instruction in the TB. If this is not |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 4237 | the first instruction in a TB then re-execute the preceding |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 4238 | branch. */ |
| 4239 | #if defined(TARGET_MIPS) |
| 4240 | if ((env->hflags & MIPS_HFLAG_BMASK) != 0 && n > 1) { |
| 4241 | env->active_tc.PC -= 4; |
| 4242 | env->icount_decr.u16.low++; |
| 4243 | env->hflags &= ~MIPS_HFLAG_BMASK; |
| 4244 | } |
| 4245 | #elif defined(TARGET_SH4) |
| 4246 | if ((env->flags & ((DELAY_SLOT | DELAY_SLOT_CONDITIONAL))) != 0 |
| 4247 | && n > 1) { |
| 4248 | env->pc -= 2; |
| 4249 | env->icount_decr.u16.low++; |
| 4250 | env->flags &= ~(DELAY_SLOT | DELAY_SLOT_CONDITIONAL); |
| 4251 | } |
| 4252 | #endif |
| 4253 | /* This should never happen. */ |
| 4254 | if (n > CF_COUNT_MASK) |
| 4255 | cpu_abort(env, "TB too big during recompile"); |
| 4256 | |
| 4257 | cflags = n | CF_LAST_IO; |
| 4258 | pc = tb->pc; |
| 4259 | cs_base = tb->cs_base; |
| 4260 | flags = tb->flags; |
| 4261 | tb_phys_invalidate(tb, -1); |
| 4262 | /* FIXME: In theory this could raise an exception. In practice |
| 4263 | we have already translated the block once so it's probably ok. */ |
| 4264 | tb_gen_code(env, pc, cs_base, flags, cflags); |
ths | bf20dc0 | 2008-06-30 17:22:19 +0000 | [diff] [blame] | 4265 | /* TODO: If env->pc != tb->pc (i.e. the faulting instruction was not |
pbrook | 2e70f6e | 2008-06-29 01:03:05 +0000 | [diff] [blame] | 4266 | the first in the TB) then we end up generating a whole new TB and |
| 4267 | repeating the fault, which is horribly inefficient. |
| 4268 | Better would be to execute just this insn uncached, or generate a |
| 4269 | second new TB. */ |
| 4270 | cpu_resume_from_signal(env, NULL); |
| 4271 | } |
| 4272 | |
Paul Brook | b3755a9 | 2010-03-12 16:54:58 +0000 | [diff] [blame] | 4273 | #if !defined(CONFIG_USER_ONLY) |
| 4274 | |
Stefan Weil | 055403b | 2010-10-22 23:03:32 +0200 | [diff] [blame] | 4275 | void dump_exec_info(FILE *f, fprintf_function cpu_fprintf) |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 4276 | { |
| 4277 | int i, target_code_size, max_target_code_size; |
| 4278 | int direct_jmp_count, direct_jmp2_count, cross_page; |
| 4279 | TranslationBlock *tb; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 4280 | |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 4281 | target_code_size = 0; |
| 4282 | max_target_code_size = 0; |
| 4283 | cross_page = 0; |
| 4284 | direct_jmp_count = 0; |
| 4285 | direct_jmp2_count = 0; |
| 4286 | for(i = 0; i < nb_tbs; i++) { |
| 4287 | tb = &tbs[i]; |
| 4288 | target_code_size += tb->size; |
| 4289 | if (tb->size > max_target_code_size) |
| 4290 | max_target_code_size = tb->size; |
| 4291 | if (tb->page_addr[1] != -1) |
| 4292 | cross_page++; |
| 4293 | if (tb->tb_next_offset[0] != 0xffff) { |
| 4294 | direct_jmp_count++; |
| 4295 | if (tb->tb_next_offset[1] != 0xffff) { |
| 4296 | direct_jmp2_count++; |
| 4297 | } |
| 4298 | } |
| 4299 | } |
| 4300 | /* XXX: avoid using doubles ? */ |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 4301 | cpu_fprintf(f, "Translation buffer state:\n"); |
Stefan Weil | 055403b | 2010-10-22 23:03:32 +0200 | [diff] [blame] | 4302 | cpu_fprintf(f, "gen code size %td/%ld\n", |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 4303 | code_gen_ptr - code_gen_buffer, code_gen_buffer_max_size); |
| 4304 | cpu_fprintf(f, "TB count %d/%d\n", |
| 4305 | nb_tbs, code_gen_max_blocks); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 4306 | cpu_fprintf(f, "TB avg target size %d max=%d bytes\n", |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 4307 | nb_tbs ? target_code_size / nb_tbs : 0, |
| 4308 | max_target_code_size); |
Stefan Weil | 055403b | 2010-10-22 23:03:32 +0200 | [diff] [blame] | 4309 | cpu_fprintf(f, "TB avg host size %td bytes (expansion ratio: %0.1f)\n", |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 4310 | nb_tbs ? (code_gen_ptr - code_gen_buffer) / nb_tbs : 0, |
| 4311 | 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] | 4312 | cpu_fprintf(f, "cross page TB count %d (%d%%)\n", |
| 4313 | cross_page, |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 4314 | nb_tbs ? (cross_page * 100) / nb_tbs : 0); |
| 4315 | cpu_fprintf(f, "direct jump count %d (%d%%) (2 jumps=%d %d%%)\n", |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 4316 | direct_jmp_count, |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 4317 | nb_tbs ? (direct_jmp_count * 100) / nb_tbs : 0, |
| 4318 | direct_jmp2_count, |
| 4319 | nb_tbs ? (direct_jmp2_count * 100) / nb_tbs : 0); |
bellard | 57fec1f | 2008-02-01 10:50:11 +0000 | [diff] [blame] | 4320 | cpu_fprintf(f, "\nStatistics:\n"); |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 4321 | cpu_fprintf(f, "TB flush count %d\n", tb_flush_count); |
| 4322 | cpu_fprintf(f, "TB invalidate count %d\n", tb_phys_invalidate_count); |
| 4323 | cpu_fprintf(f, "TLB flush count %d\n", tlb_flush_count); |
bellard | b67d9a5 | 2008-05-23 09:57:34 +0000 | [diff] [blame] | 4324 | tcg_dump_info(f, cpu_fprintf); |
bellard | e3db722 | 2005-01-26 22:00:47 +0000 | [diff] [blame] | 4325 | } |
| 4326 | |
Benjamin Herrenschmidt | 82afa58 | 2012-01-10 01:35:11 +0000 | [diff] [blame] | 4327 | /* |
| 4328 | * A helper function for the _utterly broken_ virtio device model to find out if |
| 4329 | * it's running on a big endian machine. Don't do this at home kids! |
| 4330 | */ |
| 4331 | bool virtio_is_big_endian(void); |
| 4332 | bool virtio_is_big_endian(void) |
| 4333 | { |
| 4334 | #if defined(TARGET_WORDS_BIGENDIAN) |
| 4335 | return true; |
| 4336 | #else |
| 4337 | return false; |
| 4338 | #endif |
| 4339 | } |
| 4340 | |
bellard | 61382a5 | 2003-10-27 21:22:23 +0000 | [diff] [blame] | 4341 | #endif |
Wen Congyang | 76f3553 | 2012-05-07 12:04:18 +0800 | [diff] [blame] | 4342 | |
| 4343 | #ifndef CONFIG_USER_ONLY |
| 4344 | bool cpu_physical_memory_is_io(target_phys_addr_t phys_addr) |
| 4345 | { |
| 4346 | MemoryRegionSection *section; |
| 4347 | |
| 4348 | section = phys_page_find(phys_addr >> TARGET_PAGE_BITS); |
| 4349 | |
| 4350 | return !(memory_region_is_ram(section->mr) || |
| 4351 | memory_region_is_romd(section->mr)); |
| 4352 | } |
| 4353 | #endif |