bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | * i386 emulator main execution loop |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 66321a1 | 2005-04-06 20:47:48 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003-2005 Fabrice Bellard |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 5 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2 of the License, or (at your option) any later version. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 10 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 15 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 19 | */ |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 20 | #include "config.h" |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 21 | #define CPU_NO_GLOBAL_REGS |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 22 | #include "exec.h" |
bellard | 956034d | 2003-04-29 20:40:53 +0000 | [diff] [blame] | 23 | #include "disas.h" |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 24 | #include "tcg.h" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 25 | |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 26 | #if !defined(CONFIG_SOFTMMU) |
| 27 | #undef EAX |
| 28 | #undef ECX |
| 29 | #undef EDX |
| 30 | #undef EBX |
| 31 | #undef ESP |
| 32 | #undef EBP |
| 33 | #undef ESI |
| 34 | #undef EDI |
| 35 | #undef EIP |
| 36 | #include <signal.h> |
| 37 | #include <sys/ucontext.h> |
| 38 | #endif |
| 39 | |
bellard | 36bdbe5 | 2003-11-19 22:12:02 +0000 | [diff] [blame] | 40 | int tb_invalidated_flag; |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 41 | static unsigned long next_tb; |
bellard | 36bdbe5 | 2003-11-19 22:12:02 +0000 | [diff] [blame] | 42 | |
bellard | dc99065 | 2003-03-19 00:00:28 +0000 | [diff] [blame] | 43 | //#define DEBUG_EXEC |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 44 | //#define DEBUG_SIGNAL |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 45 | |
blueswir1 | 66f1cdb | 2007-12-11 19:39:25 +0000 | [diff] [blame] | 46 | #define SAVE_GLOBALS() |
| 47 | #define RESTORE_GLOBALS() |
| 48 | |
| 49 | #if defined(__sparc__) && !defined(HOST_SOLARIS) |
| 50 | #include <features.h> |
| 51 | #if defined(__GLIBC__) && ((__GLIBC__ < 2) || \ |
| 52 | ((__GLIBC__ == 2) && (__GLIBC_MINOR__ <= 90))) |
| 53 | // Work around ugly bugs in glibc that mangle global register contents |
| 54 | |
| 55 | static volatile void *saved_env; |
| 56 | static volatile unsigned long saved_t0, saved_i7; |
| 57 | #undef SAVE_GLOBALS |
| 58 | #define SAVE_GLOBALS() do { \ |
| 59 | saved_env = env; \ |
| 60 | saved_t0 = T0; \ |
| 61 | asm volatile ("st %%i7, [%0]" : : "r" (&saved_i7)); \ |
| 62 | } while(0) |
| 63 | |
| 64 | #undef RESTORE_GLOBALS |
| 65 | #define RESTORE_GLOBALS() do { \ |
| 66 | env = (void *)saved_env; \ |
| 67 | T0 = saved_t0; \ |
| 68 | asm volatile ("ld [%0], %%i7" : : "r" (&saved_i7)); \ |
| 69 | } while(0) |
| 70 | |
| 71 | static int sparc_setjmp(jmp_buf buf) |
| 72 | { |
| 73 | int ret; |
| 74 | |
| 75 | SAVE_GLOBALS(); |
| 76 | ret = setjmp(buf); |
| 77 | RESTORE_GLOBALS(); |
| 78 | return ret; |
| 79 | } |
| 80 | #undef setjmp |
| 81 | #define setjmp(jmp_buf) sparc_setjmp(jmp_buf) |
| 82 | |
| 83 | static void sparc_longjmp(jmp_buf buf, int val) |
| 84 | { |
| 85 | SAVE_GLOBALS(); |
| 86 | longjmp(buf, val); |
| 87 | } |
| 88 | #define longjmp(jmp_buf, val) sparc_longjmp(jmp_buf, val) |
| 89 | #endif |
| 90 | #endif |
| 91 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 92 | void cpu_loop_exit(void) |
| 93 | { |
ths | bfed01f | 2007-06-03 17:44:37 +0000 | [diff] [blame] | 94 | /* NOTE: the register at this point must be saved by hand because |
| 95 | longjmp restore them */ |
| 96 | regs_to_env(); |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 97 | longjmp(env->jmp_env, 1); |
| 98 | } |
ths | bfed01f | 2007-06-03 17:44:37 +0000 | [diff] [blame] | 99 | |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 100 | #if !(defined(TARGET_SPARC) || defined(TARGET_SH4) || defined(TARGET_M68K)) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 101 | #define reg_T2 |
| 102 | #endif |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 103 | |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 104 | /* exit the current TB from a signal handler. The host registers are |
| 105 | restored in a state compatible with the CPU emulator |
| 106 | */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 107 | void cpu_resume_from_signal(CPUState *env1, void *puc) |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 108 | { |
| 109 | #if !defined(CONFIG_SOFTMMU) |
| 110 | struct ucontext *uc = puc; |
| 111 | #endif |
| 112 | |
| 113 | env = env1; |
| 114 | |
| 115 | /* XXX: restore cpu registers saved in host registers */ |
| 116 | |
| 117 | #if !defined(CONFIG_SOFTMMU) |
| 118 | if (puc) { |
| 119 | /* XXX: use siglongjmp ? */ |
| 120 | sigprocmask(SIG_SETMASK, &uc->uc_sigmask, NULL); |
| 121 | } |
| 122 | #endif |
| 123 | longjmp(env->jmp_env, 1); |
| 124 | } |
| 125 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 126 | static TranslationBlock *tb_find_slow(target_ulong pc, |
| 127 | target_ulong cs_base, |
j_mayer | c068688 | 2007-09-20 22:47:42 +0000 | [diff] [blame] | 128 | uint64_t flags) |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 129 | { |
| 130 | TranslationBlock *tb, **ptb1; |
| 131 | int code_gen_size; |
| 132 | unsigned int h; |
| 133 | target_ulong phys_pc, phys_page1, phys_page2, virt_page2; |
| 134 | uint8_t *tc_ptr; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 135 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 136 | spin_lock(&tb_lock); |
| 137 | |
| 138 | tb_invalidated_flag = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 139 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 140 | regs_to_env(); /* XXX: do it just before cpu_gen_code() */ |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 141 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 142 | /* find translated block using physical mappings */ |
| 143 | phys_pc = get_phys_addr_code(env, pc); |
| 144 | phys_page1 = phys_pc & TARGET_PAGE_MASK; |
| 145 | phys_page2 = -1; |
| 146 | h = tb_phys_hash_func(phys_pc); |
| 147 | ptb1 = &tb_phys_hash[h]; |
| 148 | for(;;) { |
| 149 | tb = *ptb1; |
| 150 | if (!tb) |
| 151 | goto not_found; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 152 | if (tb->pc == pc && |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 153 | tb->page_addr[0] == phys_page1 && |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 154 | tb->cs_base == cs_base && |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 155 | tb->flags == flags) { |
| 156 | /* check next page if needed */ |
| 157 | if (tb->page_addr[1] != -1) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 158 | virt_page2 = (pc & TARGET_PAGE_MASK) + |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 159 | TARGET_PAGE_SIZE; |
| 160 | phys_page2 = get_phys_addr_code(env, virt_page2); |
| 161 | if (tb->page_addr[1] == phys_page2) |
| 162 | goto found; |
| 163 | } else { |
| 164 | goto found; |
| 165 | } |
| 166 | } |
| 167 | ptb1 = &tb->phys_hash_next; |
| 168 | } |
| 169 | not_found: |
| 170 | /* if no translated code available, then translate it now */ |
| 171 | tb = tb_alloc(pc); |
| 172 | if (!tb) { |
| 173 | /* flush must be done */ |
| 174 | tb_flush(env); |
| 175 | /* cannot fail at this point */ |
| 176 | tb = tb_alloc(pc); |
| 177 | /* don't forget to invalidate previous TB info */ |
bellard | 1538800 | 2005-12-19 01:42:32 +0000 | [diff] [blame] | 178 | tb_invalidated_flag = 1; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 179 | } |
| 180 | tc_ptr = code_gen_ptr; |
| 181 | tb->tc_ptr = tc_ptr; |
| 182 | tb->cs_base = cs_base; |
| 183 | tb->flags = flags; |
blueswir1 | 66f1cdb | 2007-12-11 19:39:25 +0000 | [diff] [blame] | 184 | SAVE_GLOBALS(); |
blueswir1 | d07bde8 | 2007-12-11 19:35:45 +0000 | [diff] [blame] | 185 | cpu_gen_code(env, tb, &code_gen_size); |
blueswir1 | 66f1cdb | 2007-12-11 19:39:25 +0000 | [diff] [blame] | 186 | RESTORE_GLOBALS(); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 187 | code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1)); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 188 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 189 | /* check next page if needed */ |
| 190 | virt_page2 = (pc + tb->size - 1) & TARGET_PAGE_MASK; |
| 191 | phys_page2 = -1; |
| 192 | if ((pc & TARGET_PAGE_MASK) != virt_page2) { |
| 193 | phys_page2 = get_phys_addr_code(env, virt_page2); |
| 194 | } |
| 195 | tb_link_phys(tb, phys_pc, phys_page2); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 196 | |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 197 | found: |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 198 | /* we add the TB in the virtual pc hash table */ |
| 199 | env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)] = tb; |
| 200 | spin_unlock(&tb_lock); |
| 201 | return tb; |
| 202 | } |
| 203 | |
| 204 | static inline TranslationBlock *tb_find_fast(void) |
| 205 | { |
| 206 | TranslationBlock *tb; |
| 207 | target_ulong cs_base, pc; |
j_mayer | c068688 | 2007-09-20 22:47:42 +0000 | [diff] [blame] | 208 | uint64_t flags; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 209 | |
| 210 | /* we record a subset of the CPU state. It will |
| 211 | always be the same before a given translated block |
| 212 | is executed. */ |
| 213 | #if defined(TARGET_I386) |
| 214 | flags = env->hflags; |
| 215 | flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK)); |
ths | 0573fbf | 2007-09-23 15:28:04 +0000 | [diff] [blame] | 216 | flags |= env->intercept; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 217 | cs_base = env->segs[R_CS].base; |
| 218 | pc = cs_base + env->eip; |
| 219 | #elif defined(TARGET_ARM) |
| 220 | flags = env->thumb | (env->vfp.vec_len << 1) |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 221 | | (env->vfp.vec_stride << 4); |
| 222 | if ((env->uncached_cpsr & CPSR_M) != ARM_CPU_MODE_USR) |
| 223 | flags |= (1 << 6); |
pbrook | 40f137e | 2006-02-20 00:33:36 +0000 | [diff] [blame] | 224 | if (env->vfp.xregs[ARM_VFP_FPEXC] & (1 << 30)) |
| 225 | flags |= (1 << 7); |
pbrook | 9ee6e8b | 2007-11-11 00:04:49 +0000 | [diff] [blame] | 226 | flags |= (env->condexec_bits << 8); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 227 | cs_base = 0; |
| 228 | pc = env->regs[15]; |
| 229 | #elif defined(TARGET_SPARC) |
| 230 | #ifdef TARGET_SPARC64 |
bellard | a80dde0 | 2006-06-26 19:53:29 +0000 | [diff] [blame] | 231 | // Combined FPU enable bits . PRIV . DMMU enabled . IMMU enabled |
| 232 | flags = (((env->pstate & PS_PEF) >> 1) | ((env->fprs & FPRS_FEF) << 2)) |
| 233 | | (env->pstate & PS_PRIV) | ((env->lsu & (DMMU_E | IMMU_E)) >> 2); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 234 | #else |
blueswir1 | 6d5f237 | 2007-11-07 17:03:37 +0000 | [diff] [blame] | 235 | // FPU enable . Supervisor |
| 236 | flags = (env->psref << 4) | env->psrs; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 237 | #endif |
| 238 | cs_base = env->npc; |
| 239 | pc = env->pc; |
| 240 | #elif defined(TARGET_PPC) |
j_mayer | 1527c87 | 2007-09-19 05:37:56 +0000 | [diff] [blame] | 241 | flags = env->hflags; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 242 | cs_base = 0; |
| 243 | pc = env->nip; |
| 244 | #elif defined(TARGET_MIPS) |
pbrook | 56b1940 | 2006-03-11 16:23:39 +0000 | [diff] [blame] | 245 | flags = env->hflags & (MIPS_HFLAG_TMASK | MIPS_HFLAG_BMASK); |
bellard | cc9442b | 2005-11-26 18:43:28 +0000 | [diff] [blame] | 246 | cs_base = 0; |
ths | ead9360 | 2007-09-06 00:18:15 +0000 | [diff] [blame] | 247 | pc = env->PC[env->current_tc]; |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 248 | #elif defined(TARGET_M68K) |
pbrook | acf930a | 2007-05-29 14:57:59 +0000 | [diff] [blame] | 249 | flags = (env->fpcr & M68K_FPCR_PREC) /* Bit 6 */ |
| 250 | | (env->sr & SR_S) /* Bit 13 */ |
| 251 | | ((env->macsr >> 4) & 0xf); /* Bits 0-3 */ |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 252 | cs_base = 0; |
| 253 | pc = env->pc; |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 254 | #elif defined(TARGET_SH4) |
ths | 823029f | 2007-12-02 06:10:04 +0000 | [diff] [blame] | 255 | flags = env->flags; |
| 256 | cs_base = 0; |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 257 | pc = env->pc; |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 258 | #elif defined(TARGET_ALPHA) |
| 259 | flags = env->ps; |
| 260 | cs_base = 0; |
| 261 | pc = env->pc; |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 262 | #elif defined(TARGET_CRIS) |
edgar_igl | 17a594d | 2008-05-07 15:27:14 +0000 | [diff] [blame] | 263 | flags = env->pregs[PR_CCS] & U_FLAG; |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 264 | cs_base = 0; |
| 265 | pc = env->pc; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 266 | #else |
| 267 | #error unsupported CPU |
| 268 | #endif |
bellard | bce6184 | 2008-02-01 22:18:51 +0000 | [diff] [blame] | 269 | tb = env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)]; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 270 | if (__builtin_expect(!tb || tb->pc != pc || tb->cs_base != cs_base || |
| 271 | tb->flags != flags, 0)) { |
| 272 | tb = tb_find_slow(pc, cs_base, flags); |
bellard | 1538800 | 2005-12-19 01:42:32 +0000 | [diff] [blame] | 273 | /* Note: we do it here to avoid a gcc bug on Mac OS X when |
| 274 | doing it in tb_find_slow */ |
| 275 | if (tb_invalidated_flag) { |
| 276 | /* as some TB could have been invalidated because |
| 277 | of memory exceptions while generating the code, we |
| 278 | must recompute the hash index here */ |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 279 | next_tb = 0; |
bellard | 1538800 | 2005-12-19 01:42:32 +0000 | [diff] [blame] | 280 | } |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 281 | } |
| 282 | return tb; |
| 283 | } |
| 284 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 285 | /* main execution loop */ |
| 286 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 287 | int cpu_exec(CPUState *env1) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 288 | { |
pbrook | 1057eaa | 2007-02-04 13:37:44 +0000 | [diff] [blame] | 289 | #define DECLARE_HOST_REGS 1 |
| 290 | #include "hostregs_helper.h" |
| 291 | #if defined(TARGET_SPARC) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 292 | #if defined(reg_REGWPTR) |
| 293 | uint32_t *saved_regwptr; |
| 294 | #endif |
| 295 | #endif |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 296 | int ret, interrupt_request; |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 297 | TranslationBlock *tb; |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 298 | uint8_t *tc_ptr; |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 299 | |
ths | bfed01f | 2007-06-03 17:44:37 +0000 | [diff] [blame] | 300 | if (cpu_halted(env1) == EXCP_HALTED) |
| 301 | return EXCP_HALTED; |
bellard | 5a1e3cf | 2005-11-23 21:02:53 +0000 | [diff] [blame] | 302 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 303 | cpu_single_env = env1; |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 304 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 305 | /* first we save global registers */ |
pbrook | 1057eaa | 2007-02-04 13:37:44 +0000 | [diff] [blame] | 306 | #define SAVE_HOST_REGS 1 |
| 307 | #include "hostregs_helper.h" |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 308 | env = env1; |
blueswir1 | 66f1cdb | 2007-12-11 19:39:25 +0000 | [diff] [blame] | 309 | SAVE_GLOBALS(); |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 310 | |
bellard | 0d1a29f | 2004-10-12 22:01:28 +0000 | [diff] [blame] | 311 | env_to_regs(); |
ths | ecb644f | 2007-06-03 18:45:53 +0000 | [diff] [blame] | 312 | #if defined(TARGET_I386) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 313 | /* put eflags in CPU temporary format */ |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 314 | CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); |
| 315 | DF = 1 - (2 * ((env->eflags >> 10) & 1)); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 316 | CC_OP = CC_OP_EFLAGS; |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 317 | env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 318 | #elif defined(TARGET_SPARC) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 319 | #if defined(reg_REGWPTR) |
| 320 | saved_regwptr = REGWPTR; |
| 321 | #endif |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 322 | #elif defined(TARGET_M68K) |
| 323 | env->cc_op = CC_OP_FLAGS; |
| 324 | env->cc_dest = env->sr & 0xf; |
| 325 | env->cc_x = (env->sr >> 4) & 1; |
ths | ecb644f | 2007-06-03 18:45:53 +0000 | [diff] [blame] | 326 | #elif defined(TARGET_ALPHA) |
| 327 | #elif defined(TARGET_ARM) |
| 328 | #elif defined(TARGET_PPC) |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 329 | #elif defined(TARGET_MIPS) |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 330 | #elif defined(TARGET_SH4) |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 331 | #elif defined(TARGET_CRIS) |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 332 | /* XXXXX */ |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 333 | #else |
| 334 | #error unsupported target CPU |
| 335 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 336 | env->exception_index = -1; |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 337 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 338 | /* prepare setjmp context for exception handling */ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 339 | for(;;) { |
| 340 | if (setjmp(env->jmp_env) == 0) { |
bellard | ee8b702 | 2004-02-03 23:35:10 +0000 | [diff] [blame] | 341 | env->current_tb = NULL; |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 342 | /* if an exception is pending, we execute it here */ |
| 343 | if (env->exception_index >= 0) { |
| 344 | if (env->exception_index >= EXCP_INTERRUPT) { |
| 345 | /* exit request from the cpu execution loop */ |
| 346 | ret = env->exception_index; |
| 347 | break; |
| 348 | } else if (env->user_mode_only) { |
| 349 | /* if user mode only, we simulate a fake exception |
ths | 9f08349 | 2006-12-07 18:28:42 +0000 | [diff] [blame] | 350 | which will be handled outside the cpu execution |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 351 | loop */ |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 352 | #if defined(TARGET_I386) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 353 | do_interrupt_user(env->exception_index, |
| 354 | env->exception_is_int, |
| 355 | env->error_code, |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 356 | env->exception_next_eip); |
bellard | eba0162 | 2008-05-12 12:04:40 +0000 | [diff] [blame] | 357 | /* successfully delivered */ |
| 358 | env->old_exception = -1; |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 359 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 360 | ret = env->exception_index; |
| 361 | break; |
| 362 | } else { |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 363 | #if defined(TARGET_I386) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 364 | /* simulate a real cpu exception. On i386, it can |
| 365 | trigger new exceptions, but we do not handle |
| 366 | double or triple faults yet. */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 367 | do_interrupt(env->exception_index, |
| 368 | env->exception_is_int, |
| 369 | env->error_code, |
bellard | d05e66d | 2003-08-20 21:34:35 +0000 | [diff] [blame] | 370 | env->exception_next_eip, 0); |
ths | 678dde1 | 2007-03-31 20:28:52 +0000 | [diff] [blame] | 371 | /* successfully delivered */ |
| 372 | env->old_exception = -1; |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 373 | #elif defined(TARGET_PPC) |
| 374 | do_interrupt(env); |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 375 | #elif defined(TARGET_MIPS) |
| 376 | do_interrupt(env); |
bellard | e95c8d5 | 2004-09-30 22:22:08 +0000 | [diff] [blame] | 377 | #elif defined(TARGET_SPARC) |
bellard | 1a0c329 | 2005-02-13 19:02:07 +0000 | [diff] [blame] | 378 | do_interrupt(env->exception_index); |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 379 | #elif defined(TARGET_ARM) |
| 380 | do_interrupt(env); |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 381 | #elif defined(TARGET_SH4) |
| 382 | do_interrupt(env); |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 383 | #elif defined(TARGET_ALPHA) |
| 384 | do_interrupt(env); |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 385 | #elif defined(TARGET_CRIS) |
| 386 | do_interrupt(env); |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame] | 387 | #elif defined(TARGET_M68K) |
| 388 | do_interrupt(0); |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 389 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 390 | } |
| 391 | env->exception_index = -1; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 392 | } |
bellard | 9df217a | 2005-02-10 22:05:51 +0000 | [diff] [blame] | 393 | #ifdef USE_KQEMU |
| 394 | if (kqemu_is_ok(env) && env->interrupt_request == 0) { |
| 395 | int ret; |
| 396 | env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK); |
| 397 | ret = kqemu_cpu_exec(env); |
| 398 | /* put eflags in CPU temporary format */ |
| 399 | CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); |
| 400 | DF = 1 - (2 * ((env->eflags >> 10) & 1)); |
| 401 | CC_OP = CC_OP_EFLAGS; |
| 402 | env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); |
| 403 | if (ret == 1) { |
| 404 | /* exception */ |
| 405 | longjmp(env->jmp_env, 1); |
| 406 | } else if (ret == 2) { |
| 407 | /* softmmu execution needed */ |
| 408 | } else { |
| 409 | if (env->interrupt_request != 0) { |
| 410 | /* hardware interrupt will be executed just after */ |
| 411 | } else { |
| 412 | /* otherwise, we restart */ |
| 413 | longjmp(env->jmp_env, 1); |
| 414 | } |
| 415 | } |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 416 | } |
bellard | 9df217a | 2005-02-10 22:05:51 +0000 | [diff] [blame] | 417 | #endif |
| 418 | |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 419 | next_tb = 0; /* force lookup of first TB */ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 420 | for(;;) { |
blueswir1 | 66f1cdb | 2007-12-11 19:39:25 +0000 | [diff] [blame] | 421 | SAVE_GLOBALS(); |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 422 | interrupt_request = env->interrupt_request; |
ths | 0573fbf | 2007-09-23 15:28:04 +0000 | [diff] [blame] | 423 | if (__builtin_expect(interrupt_request, 0) |
| 424 | #if defined(TARGET_I386) |
| 425 | && env->hflags & HF_GIF_MASK |
| 426 | #endif |
edgar_igl | 60897d3 | 2008-05-09 08:25:14 +0000 | [diff] [blame] | 427 | && !(env->singlestep_enabled & SSTEP_NOIRQ)) { |
pbrook | 6658ffb | 2007-03-16 23:58:11 +0000 | [diff] [blame] | 428 | if (interrupt_request & CPU_INTERRUPT_DEBUG) { |
| 429 | env->interrupt_request &= ~CPU_INTERRUPT_DEBUG; |
| 430 | env->exception_index = EXCP_DEBUG; |
| 431 | cpu_loop_exit(); |
| 432 | } |
balrog | a90b731 | 2007-05-01 01:28:01 +0000 | [diff] [blame] | 433 | #if defined(TARGET_ARM) || defined(TARGET_SPARC) || defined(TARGET_MIPS) || \ |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 434 | defined(TARGET_PPC) || defined(TARGET_ALPHA) || defined(TARGET_CRIS) |
balrog | a90b731 | 2007-05-01 01:28:01 +0000 | [diff] [blame] | 435 | if (interrupt_request & CPU_INTERRUPT_HALT) { |
| 436 | env->interrupt_request &= ~CPU_INTERRUPT_HALT; |
| 437 | env->halted = 1; |
| 438 | env->exception_index = EXCP_HLT; |
| 439 | cpu_loop_exit(); |
| 440 | } |
| 441 | #endif |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 442 | #if defined(TARGET_I386) |
bellard | 3b21e03 | 2006-09-24 18:41:56 +0000 | [diff] [blame] | 443 | if ((interrupt_request & CPU_INTERRUPT_SMI) && |
| 444 | !(env->hflags & HF_SMM_MASK)) { |
ths | 0573fbf | 2007-09-23 15:28:04 +0000 | [diff] [blame] | 445 | svm_check_intercept(SVM_EXIT_SMI); |
bellard | 3b21e03 | 2006-09-24 18:41:56 +0000 | [diff] [blame] | 446 | env->interrupt_request &= ~CPU_INTERRUPT_SMI; |
| 447 | do_smm_enter(); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 448 | next_tb = 0; |
aurel32 | 474ea84 | 2008-04-13 16:08:15 +0000 | [diff] [blame] | 449 | } else if ((interrupt_request & CPU_INTERRUPT_NMI) && |
| 450 | !(env->hflags & HF_NMI_MASK)) { |
| 451 | env->interrupt_request &= ~CPU_INTERRUPT_NMI; |
| 452 | env->hflags |= HF_NMI_MASK; |
| 453 | do_interrupt(EXCP02_NMI, 0, 0, 0, 1); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 454 | next_tb = 0; |
bellard | 3b21e03 | 2006-09-24 18:41:56 +0000 | [diff] [blame] | 455 | } else if ((interrupt_request & CPU_INTERRUPT_HARD) && |
ths | 0573fbf | 2007-09-23 15:28:04 +0000 | [diff] [blame] | 456 | (env->eflags & IF_MASK || env->hflags & HF_HIF_MASK) && |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 457 | !(env->hflags & HF_INHIBIT_IRQ_MASK)) { |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 458 | int intno; |
ths | 0573fbf | 2007-09-23 15:28:04 +0000 | [diff] [blame] | 459 | svm_check_intercept(SVM_EXIT_INTR); |
ths | 5262168 | 2007-09-27 01:52:00 +0000 | [diff] [blame] | 460 | env->interrupt_request &= ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_VIRQ); |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 461 | intno = cpu_get_pic_interrupt(env); |
bellard | f193c79 | 2004-03-21 17:06:25 +0000 | [diff] [blame] | 462 | if (loglevel & CPU_LOG_TB_IN_ASM) { |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 463 | fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno); |
| 464 | } |
bellard | d05e66d | 2003-08-20 21:34:35 +0000 | [diff] [blame] | 465 | do_interrupt(intno, 0, 0, 0, 1); |
bellard | 907a5b2 | 2003-06-30 23:18:22 +0000 | [diff] [blame] | 466 | /* ensure that no TB jump will be modified as |
| 467 | the program flow was changed */ |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 468 | next_tb = 0; |
ths | 0573fbf | 2007-09-23 15:28:04 +0000 | [diff] [blame] | 469 | #if !defined(CONFIG_USER_ONLY) |
| 470 | } else if ((interrupt_request & CPU_INTERRUPT_VIRQ) && |
| 471 | (env->eflags & IF_MASK) && !(env->hflags & HF_INHIBIT_IRQ_MASK)) { |
| 472 | int intno; |
| 473 | /* FIXME: this should respect TPR */ |
| 474 | env->interrupt_request &= ~CPU_INTERRUPT_VIRQ; |
ths | 5262168 | 2007-09-27 01:52:00 +0000 | [diff] [blame] | 475 | svm_check_intercept(SVM_EXIT_VINTR); |
ths | 0573fbf | 2007-09-23 15:28:04 +0000 | [diff] [blame] | 476 | intno = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_vector)); |
| 477 | if (loglevel & CPU_LOG_TB_IN_ASM) |
| 478 | fprintf(logfile, "Servicing virtual hardware INT=0x%02x\n", intno); |
| 479 | do_interrupt(intno, 0, 0, -1, 1); |
ths | 5262168 | 2007-09-27 01:52:00 +0000 | [diff] [blame] | 480 | stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl), |
| 481 | ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl)) & ~V_IRQ_MASK); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 482 | next_tb = 0; |
ths | 0573fbf | 2007-09-23 15:28:04 +0000 | [diff] [blame] | 483 | #endif |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 484 | } |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 485 | #elif defined(TARGET_PPC) |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 486 | #if 0 |
| 487 | if ((interrupt_request & CPU_INTERRUPT_RESET)) { |
| 488 | cpu_ppc_reset(env); |
| 489 | } |
| 490 | #endif |
j_mayer | 4710357 | 2007-03-30 09:38:04 +0000 | [diff] [blame] | 491 | if (interrupt_request & CPU_INTERRUPT_HARD) { |
j_mayer | e9df014 | 2007-04-09 22:45:36 +0000 | [diff] [blame] | 492 | ppc_hw_interrupt(env); |
| 493 | if (env->pending_interrupts == 0) |
| 494 | env->interrupt_request &= ~CPU_INTERRUPT_HARD; |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 495 | next_tb = 0; |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 496 | } |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 497 | #elif defined(TARGET_MIPS) |
| 498 | if ((interrupt_request & CPU_INTERRUPT_HARD) && |
ths | 24c7b0e | 2007-03-30 16:44:54 +0000 | [diff] [blame] | 499 | (env->CP0_Status & env->CP0_Cause & CP0Ca_IP_mask) && |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 500 | (env->CP0_Status & (1 << CP0St_IE)) && |
ths | 24c7b0e | 2007-03-30 16:44:54 +0000 | [diff] [blame] | 501 | !(env->CP0_Status & (1 << CP0St_EXL)) && |
| 502 | !(env->CP0_Status & (1 << CP0St_ERL)) && |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 503 | !(env->hflags & MIPS_HFLAG_DM)) { |
| 504 | /* Raise it */ |
| 505 | env->exception_index = EXCP_EXT_INTERRUPT; |
| 506 | env->error_code = 0; |
| 507 | do_interrupt(env); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 508 | next_tb = 0; |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 509 | } |
bellard | e95c8d5 | 2004-09-30 22:22:08 +0000 | [diff] [blame] | 510 | #elif defined(TARGET_SPARC) |
bellard | 66321a1 | 2005-04-06 20:47:48 +0000 | [diff] [blame] | 511 | if ((interrupt_request & CPU_INTERRUPT_HARD) && |
| 512 | (env->psret != 0)) { |
| 513 | int pil = env->interrupt_index & 15; |
| 514 | int type = env->interrupt_index & 0xf0; |
| 515 | |
| 516 | if (((type == TT_EXTINT) && |
| 517 | (pil == 15 || pil > env->psrpil)) || |
| 518 | type != TT_EXTINT) { |
| 519 | env->interrupt_request &= ~CPU_INTERRUPT_HARD; |
| 520 | do_interrupt(env->interrupt_index); |
| 521 | env->interrupt_index = 0; |
blueswir1 | 327ac2e | 2007-08-04 10:50:30 +0000 | [diff] [blame] | 522 | #if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY) |
| 523 | cpu_check_irqs(env); |
| 524 | #endif |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 525 | next_tb = 0; |
bellard | 66321a1 | 2005-04-06 20:47:48 +0000 | [diff] [blame] | 526 | } |
bellard | e95c8d5 | 2004-09-30 22:22:08 +0000 | [diff] [blame] | 527 | } else if (interrupt_request & CPU_INTERRUPT_TIMER) { |
| 528 | //do_interrupt(0, 0, 0, 0, 0); |
| 529 | env->interrupt_request &= ~CPU_INTERRUPT_TIMER; |
balrog | a90b731 | 2007-05-01 01:28:01 +0000 | [diff] [blame] | 530 | } |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 531 | #elif defined(TARGET_ARM) |
| 532 | if (interrupt_request & CPU_INTERRUPT_FIQ |
| 533 | && !(env->uncached_cpsr & CPSR_F)) { |
| 534 | env->exception_index = EXCP_FIQ; |
| 535 | do_interrupt(env); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 536 | next_tb = 0; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 537 | } |
pbrook | 9ee6e8b | 2007-11-11 00:04:49 +0000 | [diff] [blame] | 538 | /* ARMv7-M interrupt return works by loading a magic value |
| 539 | into the PC. On real hardware the load causes the |
| 540 | return to occur. The qemu implementation performs the |
| 541 | jump normally, then does the exception return when the |
| 542 | CPU tries to execute code at the magic address. |
| 543 | This will cause the magic PC value to be pushed to |
| 544 | the stack if an interrupt occured at the wrong time. |
| 545 | We avoid this by disabling interrupts when |
| 546 | pc contains a magic address. */ |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 547 | if (interrupt_request & CPU_INTERRUPT_HARD |
pbrook | 9ee6e8b | 2007-11-11 00:04:49 +0000 | [diff] [blame] | 548 | && ((IS_M(env) && env->regs[15] < 0xfffffff0) |
| 549 | || !(env->uncached_cpsr & CPSR_I))) { |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 550 | env->exception_index = EXCP_IRQ; |
| 551 | do_interrupt(env); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 552 | next_tb = 0; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 553 | } |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 554 | #elif defined(TARGET_SH4) |
ths | e96e204 | 2007-12-02 06:18:24 +0000 | [diff] [blame] | 555 | if (interrupt_request & CPU_INTERRUPT_HARD) { |
| 556 | do_interrupt(env); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 557 | next_tb = 0; |
ths | e96e204 | 2007-12-02 06:18:24 +0000 | [diff] [blame] | 558 | } |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 559 | #elif defined(TARGET_ALPHA) |
| 560 | if (interrupt_request & CPU_INTERRUPT_HARD) { |
| 561 | do_interrupt(env); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 562 | next_tb = 0; |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 563 | } |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 564 | #elif defined(TARGET_CRIS) |
| 565 | if (interrupt_request & CPU_INTERRUPT_HARD) { |
| 566 | do_interrupt(env); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 567 | next_tb = 0; |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 568 | } |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame] | 569 | #elif defined(TARGET_M68K) |
| 570 | if (interrupt_request & CPU_INTERRUPT_HARD |
| 571 | && ((env->sr & SR_I) >> SR_I_SHIFT) |
| 572 | < env->pending_level) { |
| 573 | /* Real hardware gets the interrupt vector via an |
| 574 | IACK cycle at this point. Current emulated |
| 575 | hardware doesn't rely on this, so we |
| 576 | provide/save the vector when the interrupt is |
| 577 | first signalled. */ |
| 578 | env->exception_index = env->pending_vector; |
| 579 | do_interrupt(1); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 580 | next_tb = 0; |
pbrook | 0633879 | 2007-05-23 19:58:11 +0000 | [diff] [blame] | 581 | } |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 582 | #endif |
bellard | 9d05095 | 2006-05-22 22:03:52 +0000 | [diff] [blame] | 583 | /* Don't use the cached interupt_request value, |
| 584 | do_interrupt may have updated the EXITTB flag. */ |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 585 | if (env->interrupt_request & CPU_INTERRUPT_EXITTB) { |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 586 | env->interrupt_request &= ~CPU_INTERRUPT_EXITTB; |
| 587 | /* ensure that no TB jump will be modified as |
| 588 | the program flow was changed */ |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 589 | next_tb = 0; |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 590 | } |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 591 | if (interrupt_request & CPU_INTERRUPT_EXIT) { |
| 592 | env->interrupt_request &= ~CPU_INTERRUPT_EXIT; |
| 593 | env->exception_index = EXCP_INTERRUPT; |
| 594 | cpu_loop_exit(); |
| 595 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 596 | } |
| 597 | #ifdef DEBUG_EXEC |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 598 | if ((loglevel & CPU_LOG_TB_CPU)) { |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 599 | /* restore flags in standard format */ |
ths | ecb644f | 2007-06-03 18:45:53 +0000 | [diff] [blame] | 600 | regs_to_env(); |
| 601 | #if defined(TARGET_I386) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 602 | env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK); |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 603 | cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 604 | env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 605 | #elif defined(TARGET_ARM) |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 606 | cpu_dump_state(env, logfile, fprintf, 0); |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 607 | #elif defined(TARGET_SPARC) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 608 | REGWPTR = env->regbase + (env->cwp * 16); |
| 609 | env->regwptr = REGWPTR; |
| 610 | cpu_dump_state(env, logfile, fprintf, 0); |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 611 | #elif defined(TARGET_PPC) |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 612 | cpu_dump_state(env, logfile, fprintf, 0); |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 613 | #elif defined(TARGET_M68K) |
| 614 | cpu_m68k_flush_flags(env, env->cc_op); |
| 615 | env->cc_op = CC_OP_FLAGS; |
| 616 | env->sr = (env->sr & 0xffe0) |
| 617 | | env->cc_dest | (env->cc_x << 4); |
| 618 | cpu_dump_state(env, logfile, fprintf, 0); |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 619 | #elif defined(TARGET_MIPS) |
| 620 | cpu_dump_state(env, logfile, fprintf, 0); |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 621 | #elif defined(TARGET_SH4) |
| 622 | cpu_dump_state(env, logfile, fprintf, 0); |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 623 | #elif defined(TARGET_ALPHA) |
| 624 | cpu_dump_state(env, logfile, fprintf, 0); |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 625 | #elif defined(TARGET_CRIS) |
| 626 | cpu_dump_state(env, logfile, fprintf, 0); |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 627 | #else |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 628 | #error unsupported target CPU |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 629 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 630 | } |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 631 | #endif |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 632 | tb = tb_find_fast(); |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 633 | #ifdef DEBUG_EXEC |
bellard | c1135f6 | 2005-01-30 22:41:54 +0000 | [diff] [blame] | 634 | if ((loglevel & CPU_LOG_EXEC)) { |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 635 | fprintf(logfile, "Trace 0x%08lx [" TARGET_FMT_lx "] %s\n", |
| 636 | (long)tb->tc_ptr, tb->pc, |
| 637 | lookup_symbol(tb->pc)); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 638 | } |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 639 | #endif |
blueswir1 | 66f1cdb | 2007-12-11 19:39:25 +0000 | [diff] [blame] | 640 | RESTORE_GLOBALS(); |
bellard | 8a40a18 | 2005-11-20 10:35:40 +0000 | [diff] [blame] | 641 | /* see if we can patch the calling TB. When the TB |
| 642 | spans two pages, we cannot safely do a direct |
| 643 | jump. */ |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 644 | { |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 645 | if (next_tb != 0 && |
blueswir1 | 4d7a088 | 2008-05-10 10:14:22 +0000 | [diff] [blame] | 646 | #ifdef USE_KQEMU |
bellard | f32fc64 | 2006-02-08 22:43:39 +0000 | [diff] [blame] | 647 | (env->kqemu_enabled != 2) && |
| 648 | #endif |
bellard | ec6338b | 2007-11-08 14:25:03 +0000 | [diff] [blame] | 649 | tb->page_addr[1] == -1) { |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 650 | spin_lock(&tb_lock); |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 651 | tb_add_jump((TranslationBlock *)(next_tb & ~3), next_tb & 3, tb); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 652 | spin_unlock(&tb_lock); |
| 653 | } |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 654 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 655 | tc_ptr = tb->tc_ptr; |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 656 | env->current_tb = tb; |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 657 | /* execute the generated code */ |
bellard | 7cb69ca | 2008-05-10 10:55:51 +0000 | [diff] [blame] | 658 | next_tb = tcg_qemu_tb_exec(tc_ptr); |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 659 | env->current_tb = NULL; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 660 | /* reset soft MMU for next block (it can currently |
| 661 | only be set by a memory fault) */ |
| 662 | #if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU) |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 663 | if (env->hflags & HF_SOFTMMU_MASK) { |
| 664 | env->hflags &= ~HF_SOFTMMU_MASK; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 665 | /* do not allow linking to another block */ |
blueswir1 | b5fc09a | 2008-05-04 06:38:18 +0000 | [diff] [blame] | 666 | next_tb = 0; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 667 | } |
| 668 | #endif |
bellard | f32fc64 | 2006-02-08 22:43:39 +0000 | [diff] [blame] | 669 | #if defined(USE_KQEMU) |
| 670 | #define MIN_CYCLE_BEFORE_SWITCH (100 * 1000) |
| 671 | if (kqemu_is_ok(env) && |
| 672 | (cpu_get_time_fast() - env->last_io_time) >= MIN_CYCLE_BEFORE_SWITCH) { |
| 673 | cpu_loop_exit(); |
| 674 | } |
| 675 | #endif |
ths | 50a518e | 2007-06-03 18:52:15 +0000 | [diff] [blame] | 676 | } /* for(;;) */ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 677 | } else { |
bellard | 0d1a29f | 2004-10-12 22:01:28 +0000 | [diff] [blame] | 678 | env_to_regs(); |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 679 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 680 | } /* for(;;) */ |
| 681 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 682 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 683 | #if defined(TARGET_I386) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 684 | /* restore flags in standard format */ |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 685 | env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK); |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 686 | #elif defined(TARGET_ARM) |
bellard | b7bcbe9 | 2005-02-22 19:27:29 +0000 | [diff] [blame] | 687 | /* XXX: Save/restore host fpu exception state?. */ |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 688 | #elif defined(TARGET_SPARC) |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 689 | #if defined(reg_REGWPTR) |
| 690 | REGWPTR = saved_regwptr; |
| 691 | #endif |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 692 | #elif defined(TARGET_PPC) |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 693 | #elif defined(TARGET_M68K) |
| 694 | cpu_m68k_flush_flags(env, env->cc_op); |
| 695 | env->cc_op = CC_OP_FLAGS; |
| 696 | env->sr = (env->sr & 0xffe0) |
| 697 | | env->cc_dest | (env->cc_x << 4); |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 698 | #elif defined(TARGET_MIPS) |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 699 | #elif defined(TARGET_SH4) |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 700 | #elif defined(TARGET_ALPHA) |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 701 | #elif defined(TARGET_CRIS) |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 702 | /* XXXXX */ |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 703 | #else |
| 704 | #error unsupported target CPU |
| 705 | #endif |
pbrook | 1057eaa | 2007-02-04 13:37:44 +0000 | [diff] [blame] | 706 | |
| 707 | /* restore global registers */ |
blueswir1 | 66f1cdb | 2007-12-11 19:39:25 +0000 | [diff] [blame] | 708 | RESTORE_GLOBALS(); |
pbrook | 1057eaa | 2007-02-04 13:37:44 +0000 | [diff] [blame] | 709 | #include "hostregs_helper.h" |
| 710 | |
bellard | 6a00d60 | 2005-11-21 23:25:50 +0000 | [diff] [blame] | 711 | /* fail safe : never use cpu_single_env outside cpu_exec() */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 712 | cpu_single_env = NULL; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 713 | return ret; |
| 714 | } |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 715 | |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 716 | /* must only be called from the generated code as an exception can be |
| 717 | generated */ |
| 718 | void tb_invalidate_page_range(target_ulong start, target_ulong end) |
| 719 | { |
bellard | dc5d0b3 | 2004-06-22 18:43:30 +0000 | [diff] [blame] | 720 | /* XXX: cannot enable it yet because it yields to MMU exception |
| 721 | where NIP != read address on PowerPC */ |
| 722 | #if 0 |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 723 | target_ulong phys_addr; |
| 724 | phys_addr = get_phys_addr_code(env, start); |
| 725 | tb_invalidate_phys_page_range(phys_addr, phys_addr + end - start, 0); |
bellard | dc5d0b3 | 2004-06-22 18:43:30 +0000 | [diff] [blame] | 726 | #endif |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 727 | } |
| 728 | |
bellard | 1a18c71 | 2003-10-30 01:07:51 +0000 | [diff] [blame] | 729 | #if defined(TARGET_I386) && defined(CONFIG_USER_ONLY) |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 730 | |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 731 | void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector) |
| 732 | { |
| 733 | CPUX86State *saved_env; |
| 734 | |
| 735 | saved_env = env; |
| 736 | env = s; |
bellard | a412ac5 | 2003-07-26 18:01:40 +0000 | [diff] [blame] | 737 | if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) { |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 738 | selector &= 0xffff; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 739 | cpu_x86_load_seg_cache(env, seg_reg, selector, |
bellard | c27004e | 2005-01-03 23:35:10 +0000 | [diff] [blame] | 740 | (selector << 4), 0xffff, 0); |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 741 | } else { |
bellard | b453b70 | 2004-01-04 15:45:21 +0000 | [diff] [blame] | 742 | load_seg(seg_reg, selector); |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 743 | } |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 744 | env = saved_env; |
| 745 | } |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 746 | |
bellard | 6f12a2a | 2007-11-11 22:16:56 +0000 | [diff] [blame] | 747 | void cpu_x86_fsave(CPUX86State *s, target_ulong ptr, int data32) |
bellard | d0a1ffc | 2003-05-29 20:04:28 +0000 | [diff] [blame] | 748 | { |
| 749 | CPUX86State *saved_env; |
| 750 | |
| 751 | saved_env = env; |
| 752 | env = s; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 753 | |
bellard | 6f12a2a | 2007-11-11 22:16:56 +0000 | [diff] [blame] | 754 | helper_fsave(ptr, data32); |
bellard | d0a1ffc | 2003-05-29 20:04:28 +0000 | [diff] [blame] | 755 | |
| 756 | env = saved_env; |
| 757 | } |
| 758 | |
bellard | 6f12a2a | 2007-11-11 22:16:56 +0000 | [diff] [blame] | 759 | void cpu_x86_frstor(CPUX86State *s, target_ulong ptr, int data32) |
bellard | d0a1ffc | 2003-05-29 20:04:28 +0000 | [diff] [blame] | 760 | { |
| 761 | CPUX86State *saved_env; |
| 762 | |
| 763 | saved_env = env; |
| 764 | env = s; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 765 | |
bellard | 6f12a2a | 2007-11-11 22:16:56 +0000 | [diff] [blame] | 766 | helper_frstor(ptr, data32); |
bellard | d0a1ffc | 2003-05-29 20:04:28 +0000 | [diff] [blame] | 767 | |
| 768 | env = saved_env; |
| 769 | } |
| 770 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 771 | #endif /* TARGET_I386 */ |
| 772 | |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 773 | #if !defined(CONFIG_SOFTMMU) |
| 774 | |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 775 | #if defined(TARGET_I386) |
| 776 | |
bellard | b56dad1 | 2003-05-08 15:38:04 +0000 | [diff] [blame] | 777 | /* 'pc' is the host PC at which the exception was raised. 'address' is |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 778 | the effective address of the memory exception. 'is_write' is 1 if a |
| 779 | write caused the exception and otherwise 0'. 'old_set' is the |
| 780 | signal set which should be restored */ |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 781 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 782 | int is_write, sigset_t *old_set, |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 783 | void *puc) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 784 | { |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 785 | TranslationBlock *tb; |
| 786 | int ret; |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 787 | |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 788 | if (cpu_single_env) |
| 789 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 790 | #if defined(DEBUG_SIGNAL) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 791 | qemu_printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 792 | pc, address, is_write, *(unsigned long *)old_set); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 793 | #endif |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 794 | /* XXX: locking issue */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 795 | if (is_write && page_unprotect(h2g(address), pc, puc)) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 796 | return 1; |
| 797 | } |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 798 | |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 799 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 800 | ret = cpu_x86_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 801 | if (ret < 0) |
| 802 | return 0; /* not an MMU fault */ |
| 803 | if (ret == 0) |
| 804 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 805 | /* now we have a real cpu fault */ |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 806 | tb = tb_find_pc(pc); |
| 807 | if (tb) { |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 808 | /* the PC is inside the translated code. It means that we have |
| 809 | a virtual CPU fault */ |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 810 | cpu_restore_state(tb, env, pc, puc); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 811 | } |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 812 | if (ret == 1) { |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 813 | #if 0 |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 814 | printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n", |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 815 | env->eip, env->cr[2], env->error_code); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 816 | #endif |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 817 | /* we restore the process signal mask as the sigreturn should |
| 818 | do it (XXX: use sigsetjmp) */ |
| 819 | sigprocmask(SIG_SETMASK, old_set, NULL); |
bellard | 54ca909 | 2005-12-04 18:46:06 +0000 | [diff] [blame] | 820 | raise_exception_err(env->exception_index, env->error_code); |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 821 | } else { |
| 822 | /* activate soft MMU for this block */ |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 823 | env->hflags |= HF_SOFTMMU_MASK; |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 824 | cpu_resume_from_signal(env, puc); |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 825 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 826 | /* never comes here */ |
| 827 | return 1; |
| 828 | } |
| 829 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 830 | #elif defined(TARGET_ARM) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 831 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 832 | int is_write, sigset_t *old_set, |
| 833 | void *puc) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 834 | { |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 835 | TranslationBlock *tb; |
| 836 | int ret; |
| 837 | |
| 838 | if (cpu_single_env) |
| 839 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
| 840 | #if defined(DEBUG_SIGNAL) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 841 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 842 | pc, address, is_write, *(unsigned long *)old_set); |
| 843 | #endif |
bellard | 9f0777e | 2005-02-02 20:42:01 +0000 | [diff] [blame] | 844 | /* XXX: locking issue */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 845 | if (is_write && page_unprotect(h2g(address), pc, puc)) { |
bellard | 9f0777e | 2005-02-02 20:42:01 +0000 | [diff] [blame] | 846 | return 1; |
| 847 | } |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 848 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 849 | ret = cpu_arm_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 850 | if (ret < 0) |
| 851 | return 0; /* not an MMU fault */ |
| 852 | if (ret == 0) |
| 853 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 854 | /* now we have a real cpu fault */ |
| 855 | tb = tb_find_pc(pc); |
| 856 | if (tb) { |
| 857 | /* the PC is inside the translated code. It means that we have |
| 858 | a virtual CPU fault */ |
| 859 | cpu_restore_state(tb, env, pc, puc); |
| 860 | } |
| 861 | /* we restore the process signal mask as the sigreturn should |
| 862 | do it (XXX: use sigsetjmp) */ |
| 863 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 864 | cpu_loop_exit(); |
aurel32 | 968c74d | 2008-04-11 04:55:17 +0000 | [diff] [blame] | 865 | /* never comes here */ |
| 866 | return 1; |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 867 | } |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 868 | #elif defined(TARGET_SPARC) |
| 869 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 870 | int is_write, sigset_t *old_set, |
| 871 | void *puc) |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 872 | { |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 873 | TranslationBlock *tb; |
| 874 | int ret; |
| 875 | |
| 876 | if (cpu_single_env) |
| 877 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
| 878 | #if defined(DEBUG_SIGNAL) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 879 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 880 | pc, address, is_write, *(unsigned long *)old_set); |
| 881 | #endif |
bellard | b453b70 | 2004-01-04 15:45:21 +0000 | [diff] [blame] | 882 | /* XXX: locking issue */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 883 | if (is_write && page_unprotect(h2g(address), pc, puc)) { |
bellard | b453b70 | 2004-01-04 15:45:21 +0000 | [diff] [blame] | 884 | return 1; |
| 885 | } |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 886 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 887 | ret = cpu_sparc_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 888 | if (ret < 0) |
| 889 | return 0; /* not an MMU fault */ |
| 890 | if (ret == 0) |
| 891 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 892 | /* now we have a real cpu fault */ |
| 893 | tb = tb_find_pc(pc); |
| 894 | if (tb) { |
| 895 | /* the PC is inside the translated code. It means that we have |
| 896 | a virtual CPU fault */ |
| 897 | cpu_restore_state(tb, env, pc, puc); |
| 898 | } |
| 899 | /* we restore the process signal mask as the sigreturn should |
| 900 | do it (XXX: use sigsetjmp) */ |
| 901 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 902 | cpu_loop_exit(); |
aurel32 | 968c74d | 2008-04-11 04:55:17 +0000 | [diff] [blame] | 903 | /* never comes here */ |
| 904 | return 1; |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 905 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 906 | #elif defined (TARGET_PPC) |
| 907 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 908 | int is_write, sigset_t *old_set, |
| 909 | void *puc) |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 910 | { |
| 911 | TranslationBlock *tb; |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 912 | int ret; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 913 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 914 | if (cpu_single_env) |
| 915 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 916 | #if defined(DEBUG_SIGNAL) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 917 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 918 | pc, address, is_write, *(unsigned long *)old_set); |
| 919 | #endif |
| 920 | /* XXX: locking issue */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 921 | if (is_write && page_unprotect(h2g(address), pc, puc)) { |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 922 | return 1; |
| 923 | } |
| 924 | |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 925 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 926 | ret = cpu_ppc_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 927 | if (ret < 0) |
| 928 | return 0; /* not an MMU fault */ |
| 929 | if (ret == 0) |
| 930 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 931 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 932 | /* now we have a real cpu fault */ |
| 933 | tb = tb_find_pc(pc); |
| 934 | if (tb) { |
| 935 | /* the PC is inside the translated code. It means that we have |
| 936 | a virtual CPU fault */ |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 937 | cpu_restore_state(tb, env, pc, puc); |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 938 | } |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 939 | if (ret == 1) { |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 940 | #if 0 |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 941 | printf("PF exception: NIP=0x%08x error=0x%x %p\n", |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 942 | env->nip, env->error_code, tb); |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 943 | #endif |
| 944 | /* we restore the process signal mask as the sigreturn should |
| 945 | do it (XXX: use sigsetjmp) */ |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 946 | sigprocmask(SIG_SETMASK, old_set, NULL); |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 947 | do_raise_exception_err(env->exception_index, env->error_code); |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 948 | } else { |
| 949 | /* activate soft MMU for this block */ |
bellard | fbf9eeb | 2004-04-25 21:21:33 +0000 | [diff] [blame] | 950 | cpu_resume_from_signal(env, puc); |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 951 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 952 | /* never comes here */ |
| 953 | return 1; |
| 954 | } |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 955 | |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 956 | #elif defined(TARGET_M68K) |
| 957 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 958 | int is_write, sigset_t *old_set, |
| 959 | void *puc) |
| 960 | { |
| 961 | TranslationBlock *tb; |
| 962 | int ret; |
| 963 | |
| 964 | if (cpu_single_env) |
| 965 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
| 966 | #if defined(DEBUG_SIGNAL) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 967 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 968 | pc, address, is_write, *(unsigned long *)old_set); |
| 969 | #endif |
| 970 | /* XXX: locking issue */ |
| 971 | if (is_write && page_unprotect(address, pc, puc)) { |
| 972 | return 1; |
| 973 | } |
| 974 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 975 | ret = cpu_m68k_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 976 | if (ret < 0) |
| 977 | return 0; /* not an MMU fault */ |
| 978 | if (ret == 0) |
| 979 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 980 | /* now we have a real cpu fault */ |
| 981 | tb = tb_find_pc(pc); |
| 982 | if (tb) { |
| 983 | /* the PC is inside the translated code. It means that we have |
| 984 | a virtual CPU fault */ |
| 985 | cpu_restore_state(tb, env, pc, puc); |
| 986 | } |
| 987 | /* we restore the process signal mask as the sigreturn should |
| 988 | do it (XXX: use sigsetjmp) */ |
| 989 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 990 | cpu_loop_exit(); |
| 991 | /* never comes here */ |
| 992 | return 1; |
| 993 | } |
| 994 | |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 995 | #elif defined (TARGET_MIPS) |
| 996 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 997 | int is_write, sigset_t *old_set, |
| 998 | void *puc) |
| 999 | { |
| 1000 | TranslationBlock *tb; |
| 1001 | int ret; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1002 | |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 1003 | if (cpu_single_env) |
| 1004 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
| 1005 | #if defined(DEBUG_SIGNAL) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1006 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 1007 | pc, address, is_write, *(unsigned long *)old_set); |
| 1008 | #endif |
| 1009 | /* XXX: locking issue */ |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 1010 | if (is_write && page_unprotect(h2g(address), pc, puc)) { |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 1011 | return 1; |
| 1012 | } |
| 1013 | |
| 1014 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1015 | ret = cpu_mips_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 1016 | if (ret < 0) |
| 1017 | return 0; /* not an MMU fault */ |
| 1018 | if (ret == 0) |
| 1019 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 1020 | |
| 1021 | /* now we have a real cpu fault */ |
| 1022 | tb = tb_find_pc(pc); |
| 1023 | if (tb) { |
| 1024 | /* the PC is inside the translated code. It means that we have |
| 1025 | a virtual CPU fault */ |
| 1026 | cpu_restore_state(tb, env, pc, puc); |
| 1027 | } |
| 1028 | if (ret == 1) { |
| 1029 | #if 0 |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1030 | printf("PF exception: PC=0x" TARGET_FMT_lx " error=0x%x %p\n", |
ths | 1eb5207 | 2007-05-12 16:57:42 +0000 | [diff] [blame] | 1031 | env->PC, env->error_code, tb); |
bellard | 6af0bf9 | 2005-07-02 14:58:51 +0000 | [diff] [blame] | 1032 | #endif |
| 1033 | /* we restore the process signal mask as the sigreturn should |
| 1034 | do it (XXX: use sigsetjmp) */ |
| 1035 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 1036 | do_raise_exception_err(env->exception_index, env->error_code); |
| 1037 | } else { |
| 1038 | /* activate soft MMU for this block */ |
| 1039 | cpu_resume_from_signal(env, puc); |
| 1040 | } |
| 1041 | /* never comes here */ |
| 1042 | return 1; |
| 1043 | } |
| 1044 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1045 | #elif defined (TARGET_SH4) |
| 1046 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 1047 | int is_write, sigset_t *old_set, |
| 1048 | void *puc) |
| 1049 | { |
| 1050 | TranslationBlock *tb; |
| 1051 | int ret; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1052 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1053 | if (cpu_single_env) |
| 1054 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
| 1055 | #if defined(DEBUG_SIGNAL) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1056 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1057 | pc, address, is_write, *(unsigned long *)old_set); |
| 1058 | #endif |
| 1059 | /* XXX: locking issue */ |
| 1060 | if (is_write && page_unprotect(h2g(address), pc, puc)) { |
| 1061 | return 1; |
| 1062 | } |
| 1063 | |
| 1064 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1065 | ret = cpu_sh4_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1066 | if (ret < 0) |
| 1067 | return 0; /* not an MMU fault */ |
| 1068 | if (ret == 0) |
| 1069 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 1070 | |
| 1071 | /* now we have a real cpu fault */ |
| 1072 | tb = tb_find_pc(pc); |
| 1073 | if (tb) { |
| 1074 | /* the PC is inside the translated code. It means that we have |
| 1075 | a virtual CPU fault */ |
| 1076 | cpu_restore_state(tb, env, pc, puc); |
| 1077 | } |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1078 | #if 0 |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1079 | printf("PF exception: NIP=0x%08x error=0x%x %p\n", |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1080 | env->nip, env->error_code, tb); |
| 1081 | #endif |
| 1082 | /* we restore the process signal mask as the sigreturn should |
| 1083 | do it (XXX: use sigsetjmp) */ |
pbrook | 355fb23 | 2006-06-17 19:58:25 +0000 | [diff] [blame] | 1084 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 1085 | cpu_loop_exit(); |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1086 | /* never comes here */ |
| 1087 | return 1; |
| 1088 | } |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 1089 | |
| 1090 | #elif defined (TARGET_ALPHA) |
| 1091 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 1092 | int is_write, sigset_t *old_set, |
| 1093 | void *puc) |
| 1094 | { |
| 1095 | TranslationBlock *tb; |
| 1096 | int ret; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1097 | |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 1098 | if (cpu_single_env) |
| 1099 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
| 1100 | #if defined(DEBUG_SIGNAL) |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1101 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 1102 | pc, address, is_write, *(unsigned long *)old_set); |
| 1103 | #endif |
| 1104 | /* XXX: locking issue */ |
| 1105 | if (is_write && page_unprotect(h2g(address), pc, puc)) { |
| 1106 | return 1; |
| 1107 | } |
| 1108 | |
| 1109 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1110 | ret = cpu_alpha_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 1111 | if (ret < 0) |
| 1112 | return 0; /* not an MMU fault */ |
| 1113 | if (ret == 0) |
| 1114 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 1115 | |
| 1116 | /* now we have a real cpu fault */ |
| 1117 | tb = tb_find_pc(pc); |
| 1118 | if (tb) { |
| 1119 | /* the PC is inside the translated code. It means that we have |
| 1120 | a virtual CPU fault */ |
| 1121 | cpu_restore_state(tb, env, pc, puc); |
| 1122 | } |
| 1123 | #if 0 |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1124 | printf("PF exception: NIP=0x%08x error=0x%x %p\n", |
j_mayer | eddf68a | 2007-04-05 07:22:49 +0000 | [diff] [blame] | 1125 | env->nip, env->error_code, tb); |
| 1126 | #endif |
| 1127 | /* we restore the process signal mask as the sigreturn should |
| 1128 | do it (XXX: use sigsetjmp) */ |
| 1129 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 1130 | cpu_loop_exit(); |
| 1131 | /* never comes here */ |
| 1132 | return 1; |
| 1133 | } |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 1134 | #elif defined (TARGET_CRIS) |
| 1135 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 1136 | int is_write, sigset_t *old_set, |
| 1137 | void *puc) |
| 1138 | { |
| 1139 | TranslationBlock *tb; |
| 1140 | int ret; |
| 1141 | |
| 1142 | if (cpu_single_env) |
| 1143 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
| 1144 | #if defined(DEBUG_SIGNAL) |
| 1145 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
| 1146 | pc, address, is_write, *(unsigned long *)old_set); |
| 1147 | #endif |
| 1148 | /* XXX: locking issue */ |
| 1149 | if (is_write && page_unprotect(h2g(address), pc, puc)) { |
| 1150 | return 1; |
| 1151 | } |
| 1152 | |
| 1153 | /* see if it is an MMU fault */ |
j_mayer | 6ebbf39 | 2007-10-14 07:07:08 +0000 | [diff] [blame] | 1154 | ret = cpu_cris_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0); |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 1155 | if (ret < 0) |
| 1156 | return 0; /* not an MMU fault */ |
| 1157 | if (ret == 0) |
| 1158 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 1159 | |
| 1160 | /* now we have a real cpu fault */ |
| 1161 | tb = tb_find_pc(pc); |
| 1162 | if (tb) { |
| 1163 | /* the PC is inside the translated code. It means that we have |
| 1164 | a virtual CPU fault */ |
| 1165 | cpu_restore_state(tb, env, pc, puc); |
| 1166 | } |
ths | f1ccf90 | 2007-10-08 13:16:14 +0000 | [diff] [blame] | 1167 | /* we restore the process signal mask as the sigreturn should |
| 1168 | do it (XXX: use sigsetjmp) */ |
| 1169 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 1170 | cpu_loop_exit(); |
| 1171 | /* never comes here */ |
| 1172 | return 1; |
| 1173 | } |
| 1174 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 1175 | #else |
| 1176 | #error unsupported target CPU |
| 1177 | #endif |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 1178 | |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 1179 | #if defined(__i386__) |
| 1180 | |
bellard | d8ecc0b | 2007-02-05 21:41:46 +0000 | [diff] [blame] | 1181 | #if defined(__APPLE__) |
| 1182 | # include <sys/ucontext.h> |
| 1183 | |
| 1184 | # define EIP_sig(context) (*((unsigned long*)&(context)->uc_mcontext->ss.eip)) |
| 1185 | # define TRAP_sig(context) ((context)->uc_mcontext->es.trapno) |
| 1186 | # define ERROR_sig(context) ((context)->uc_mcontext->es.err) |
| 1187 | #else |
| 1188 | # define EIP_sig(context) ((context)->uc_mcontext.gregs[REG_EIP]) |
| 1189 | # define TRAP_sig(context) ((context)->uc_mcontext.gregs[REG_TRAPNO]) |
| 1190 | # define ERROR_sig(context) ((context)->uc_mcontext.gregs[REG_ERR]) |
| 1191 | #endif |
| 1192 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1193 | int cpu_signal_handler(int host_signum, void *pinfo, |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 1194 | void *puc) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 1195 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1196 | siginfo_t *info = pinfo; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 1197 | struct ucontext *uc = puc; |
| 1198 | unsigned long pc; |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 1199 | int trapno; |
bellard | 97eb5b1 | 2004-02-25 23:19:55 +0000 | [diff] [blame] | 1200 | |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1201 | #ifndef REG_EIP |
| 1202 | /* for glibc 2.1 */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 1203 | #define REG_EIP EIP |
| 1204 | #define REG_ERR ERR |
| 1205 | #define REG_TRAPNO TRAPNO |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 1206 | #endif |
bellard | d8ecc0b | 2007-02-05 21:41:46 +0000 | [diff] [blame] | 1207 | pc = EIP_sig(uc); |
| 1208 | trapno = TRAP_sig(uc); |
bellard | ec6338b | 2007-11-08 14:25:03 +0000 | [diff] [blame] | 1209 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 1210 | trapno == 0xe ? |
| 1211 | (ERROR_sig(uc) >> 1) & 1 : 0, |
| 1212 | &uc->uc_sigmask, puc); |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 1213 | } |
| 1214 | |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 1215 | #elif defined(__x86_64__) |
| 1216 | |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1217 | int cpu_signal_handler(int host_signum, void *pinfo, |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 1218 | void *puc) |
| 1219 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1220 | siginfo_t *info = pinfo; |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 1221 | struct ucontext *uc = puc; |
| 1222 | unsigned long pc; |
| 1223 | |
| 1224 | pc = uc->uc_mcontext.gregs[REG_RIP]; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1225 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 1226 | uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ? |
bellard | bc51c5c | 2004-03-17 23:46:04 +0000 | [diff] [blame] | 1227 | (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0, |
| 1228 | &uc->uc_sigmask, puc); |
| 1229 | } |
| 1230 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1231 | #elif defined(__powerpc__) |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 1232 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1233 | /*********************************************************************** |
| 1234 | * signal context platform-specific definitions |
| 1235 | * From Wine |
| 1236 | */ |
| 1237 | #ifdef linux |
| 1238 | /* All Registers access - only for local access */ |
| 1239 | # define REG_sig(reg_name, context) ((context)->uc_mcontext.regs->reg_name) |
| 1240 | /* Gpr Registers access */ |
| 1241 | # define GPR_sig(reg_num, context) REG_sig(gpr[reg_num], context) |
| 1242 | # define IAR_sig(context) REG_sig(nip, context) /* Program counter */ |
| 1243 | # define MSR_sig(context) REG_sig(msr, context) /* Machine State Register (Supervisor) */ |
| 1244 | # define CTR_sig(context) REG_sig(ctr, context) /* Count register */ |
| 1245 | # define XER_sig(context) REG_sig(xer, context) /* User's integer exception register */ |
| 1246 | # define LR_sig(context) REG_sig(link, context) /* Link register */ |
| 1247 | # define CR_sig(context) REG_sig(ccr, context) /* Condition register */ |
| 1248 | /* Float Registers access */ |
| 1249 | # define FLOAT_sig(reg_num, context) (((double*)((char*)((context)->uc_mcontext.regs+48*4)))[reg_num]) |
| 1250 | # define FPSCR_sig(context) (*(int*)((char*)((context)->uc_mcontext.regs+(48+32*2)*4))) |
| 1251 | /* Exception Registers access */ |
| 1252 | # define DAR_sig(context) REG_sig(dar, context) |
| 1253 | # define DSISR_sig(context) REG_sig(dsisr, context) |
| 1254 | # define TRAP_sig(context) REG_sig(trap, context) |
| 1255 | #endif /* linux */ |
| 1256 | |
| 1257 | #ifdef __APPLE__ |
| 1258 | # include <sys/ucontext.h> |
| 1259 | typedef struct ucontext SIGCONTEXT; |
| 1260 | /* All Registers access - only for local access */ |
| 1261 | # define REG_sig(reg_name, context) ((context)->uc_mcontext->ss.reg_name) |
| 1262 | # define FLOATREG_sig(reg_name, context) ((context)->uc_mcontext->fs.reg_name) |
| 1263 | # define EXCEPREG_sig(reg_name, context) ((context)->uc_mcontext->es.reg_name) |
| 1264 | # define VECREG_sig(reg_name, context) ((context)->uc_mcontext->vs.reg_name) |
| 1265 | /* Gpr Registers access */ |
| 1266 | # define GPR_sig(reg_num, context) REG_sig(r##reg_num, context) |
| 1267 | # define IAR_sig(context) REG_sig(srr0, context) /* Program counter */ |
| 1268 | # define MSR_sig(context) REG_sig(srr1, context) /* Machine State Register (Supervisor) */ |
| 1269 | # define CTR_sig(context) REG_sig(ctr, context) |
| 1270 | # define XER_sig(context) REG_sig(xer, context) /* Link register */ |
| 1271 | # define LR_sig(context) REG_sig(lr, context) /* User's integer exception register */ |
| 1272 | # define CR_sig(context) REG_sig(cr, context) /* Condition register */ |
| 1273 | /* Float Registers access */ |
| 1274 | # define FLOAT_sig(reg_num, context) FLOATREG_sig(fpregs[reg_num], context) |
| 1275 | # define FPSCR_sig(context) ((double)FLOATREG_sig(fpscr, context)) |
| 1276 | /* Exception Registers access */ |
| 1277 | # define DAR_sig(context) EXCEPREG_sig(dar, context) /* Fault registers for coredump */ |
| 1278 | # define DSISR_sig(context) EXCEPREG_sig(dsisr, context) |
| 1279 | # define TRAP_sig(context) EXCEPREG_sig(exception, context) /* number of powerpc exception taken */ |
| 1280 | #endif /* __APPLE__ */ |
| 1281 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1282 | int cpu_signal_handler(int host_signum, void *pinfo, |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 1283 | void *puc) |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 1284 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1285 | siginfo_t *info = pinfo; |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 1286 | struct ucontext *uc = puc; |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 1287 | unsigned long pc; |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 1288 | int is_write; |
| 1289 | |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1290 | pc = IAR_sig(uc); |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 1291 | is_write = 0; |
| 1292 | #if 0 |
| 1293 | /* ppc 4xx case */ |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1294 | if (DSISR_sig(uc) & 0x00800000) |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 1295 | is_write = 1; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 1296 | #else |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 1297 | if (TRAP_sig(uc) != 0x400 && (DSISR_sig(uc) & 0x02000000)) |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 1298 | is_write = 1; |
| 1299 | #endif |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1300 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 1301 | is_write, &uc->uc_sigmask, puc); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 1302 | } |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 1303 | |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 1304 | #elif defined(__alpha__) |
| 1305 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1306 | int cpu_signal_handler(int host_signum, void *pinfo, |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 1307 | void *puc) |
| 1308 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1309 | siginfo_t *info = pinfo; |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 1310 | struct ucontext *uc = puc; |
| 1311 | uint32_t *pc = uc->uc_mcontext.sc_pc; |
| 1312 | uint32_t insn = *pc; |
| 1313 | int is_write = 0; |
| 1314 | |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1315 | /* XXX: need kernel patch to get write flag faster */ |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 1316 | switch (insn >> 26) { |
| 1317 | case 0x0d: // stw |
| 1318 | case 0x0e: // stb |
| 1319 | case 0x0f: // stq_u |
| 1320 | case 0x24: // stf |
| 1321 | case 0x25: // stg |
| 1322 | case 0x26: // sts |
| 1323 | case 0x27: // stt |
| 1324 | case 0x2c: // stl |
| 1325 | case 0x2d: // stq |
| 1326 | case 0x2e: // stl_c |
| 1327 | case 0x2f: // stq_c |
| 1328 | is_write = 1; |
| 1329 | } |
| 1330 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1331 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 1332 | is_write, &uc->uc_sigmask, puc); |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 1333 | } |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1334 | #elif defined(__sparc__) |
| 1335 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1336 | int cpu_signal_handler(int host_signum, void *pinfo, |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 1337 | void *puc) |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1338 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1339 | siginfo_t *info = pinfo; |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1340 | uint32_t *regs = (uint32_t *)(info + 1); |
| 1341 | void *sigmask = (regs + 20); |
| 1342 | unsigned long pc; |
| 1343 | int is_write; |
| 1344 | uint32_t insn; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1345 | |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1346 | /* XXX: is there a standard glibc define ? */ |
| 1347 | pc = regs[1]; |
| 1348 | /* XXX: need kernel patch to get write flag faster */ |
| 1349 | is_write = 0; |
| 1350 | insn = *(uint32_t *)pc; |
| 1351 | if ((insn >> 30) == 3) { |
| 1352 | switch((insn >> 19) & 0x3f) { |
| 1353 | case 0x05: // stb |
| 1354 | case 0x06: // sth |
| 1355 | case 0x04: // st |
| 1356 | case 0x07: // std |
| 1357 | case 0x24: // stf |
| 1358 | case 0x27: // stdf |
| 1359 | case 0x25: // stfsr |
| 1360 | is_write = 1; |
| 1361 | break; |
| 1362 | } |
| 1363 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1364 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 1365 | is_write, sigmask, NULL); |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1366 | } |
| 1367 | |
| 1368 | #elif defined(__arm__) |
| 1369 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1370 | int cpu_signal_handler(int host_signum, void *pinfo, |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 1371 | void *puc) |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1372 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1373 | siginfo_t *info = pinfo; |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1374 | struct ucontext *uc = puc; |
| 1375 | unsigned long pc; |
| 1376 | int is_write; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1377 | |
balrog | 4eee57f | 2008-05-06 14:47:19 +0000 | [diff] [blame] | 1378 | pc = uc->uc_mcontext.arm_pc; |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1379 | /* XXX: compute is_write */ |
| 1380 | is_write = 0; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1381 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1382 | is_write, |
pbrook | f3a9676 | 2006-07-29 19:09:31 +0000 | [diff] [blame] | 1383 | &uc->uc_sigmask, puc); |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 1384 | } |
| 1385 | |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 1386 | #elif defined(__mc68000) |
| 1387 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1388 | int cpu_signal_handler(int host_signum, void *pinfo, |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 1389 | void *puc) |
| 1390 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1391 | siginfo_t *info = pinfo; |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 1392 | struct ucontext *uc = puc; |
| 1393 | unsigned long pc; |
| 1394 | int is_write; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1395 | |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 1396 | pc = uc->uc_mcontext.gregs[16]; |
| 1397 | /* XXX: compute is_write */ |
| 1398 | is_write = 0; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1399 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 1400 | is_write, |
bellard | bf3e8bf | 2004-02-16 21:58:54 +0000 | [diff] [blame] | 1401 | &uc->uc_sigmask, puc); |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 1402 | } |
| 1403 | |
bellard | b8076a7 | 2005-04-07 22:20:31 +0000 | [diff] [blame] | 1404 | #elif defined(__ia64) |
| 1405 | |
| 1406 | #ifndef __ISR_VALID |
| 1407 | /* This ought to be in <bits/siginfo.h>... */ |
| 1408 | # define __ISR_VALID 1 |
bellard | b8076a7 | 2005-04-07 22:20:31 +0000 | [diff] [blame] | 1409 | #endif |
| 1410 | |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1411 | int cpu_signal_handler(int host_signum, void *pinfo, void *puc) |
bellard | b8076a7 | 2005-04-07 22:20:31 +0000 | [diff] [blame] | 1412 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1413 | siginfo_t *info = pinfo; |
bellard | b8076a7 | 2005-04-07 22:20:31 +0000 | [diff] [blame] | 1414 | struct ucontext *uc = puc; |
| 1415 | unsigned long ip; |
| 1416 | int is_write = 0; |
| 1417 | |
| 1418 | ip = uc->uc_mcontext.sc_ip; |
| 1419 | switch (host_signum) { |
| 1420 | case SIGILL: |
| 1421 | case SIGFPE: |
| 1422 | case SIGSEGV: |
| 1423 | case SIGBUS: |
| 1424 | case SIGTRAP: |
bellard | fd4a43e | 2006-04-24 20:32:17 +0000 | [diff] [blame] | 1425 | if (info->si_code && (info->si_segvflags & __ISR_VALID)) |
bellard | b8076a7 | 2005-04-07 22:20:31 +0000 | [diff] [blame] | 1426 | /* ISR.W (write-access) is bit 33: */ |
| 1427 | is_write = (info->si_isr >> 33) & 1; |
| 1428 | break; |
| 1429 | |
| 1430 | default: |
| 1431 | break; |
| 1432 | } |
| 1433 | return handle_cpu_signal(ip, (unsigned long)info->si_addr, |
| 1434 | is_write, |
| 1435 | &uc->uc_sigmask, puc); |
| 1436 | } |
| 1437 | |
bellard | 90cb949 | 2005-07-24 15:11:38 +0000 | [diff] [blame] | 1438 | #elif defined(__s390__) |
| 1439 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1440 | int cpu_signal_handler(int host_signum, void *pinfo, |
bellard | 90cb949 | 2005-07-24 15:11:38 +0000 | [diff] [blame] | 1441 | void *puc) |
| 1442 | { |
ths | 5a7b542 | 2007-01-31 12:16:51 +0000 | [diff] [blame] | 1443 | siginfo_t *info = pinfo; |
bellard | 90cb949 | 2005-07-24 15:11:38 +0000 | [diff] [blame] | 1444 | struct ucontext *uc = puc; |
| 1445 | unsigned long pc; |
| 1446 | int is_write; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1447 | |
bellard | 90cb949 | 2005-07-24 15:11:38 +0000 | [diff] [blame] | 1448 | pc = uc->uc_mcontext.psw.addr; |
| 1449 | /* XXX: compute is_write */ |
| 1450 | is_write = 0; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1451 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
ths | c4b89d1 | 2007-05-05 19:23:11 +0000 | [diff] [blame] | 1452 | is_write, &uc->uc_sigmask, puc); |
| 1453 | } |
| 1454 | |
| 1455 | #elif defined(__mips__) |
| 1456 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1457 | int cpu_signal_handler(int host_signum, void *pinfo, |
ths | c4b89d1 | 2007-05-05 19:23:11 +0000 | [diff] [blame] | 1458 | void *puc) |
| 1459 | { |
ths | 9617efe | 2007-05-08 21:05:55 +0000 | [diff] [blame] | 1460 | siginfo_t *info = pinfo; |
ths | c4b89d1 | 2007-05-05 19:23:11 +0000 | [diff] [blame] | 1461 | struct ucontext *uc = puc; |
| 1462 | greg_t pc = uc->uc_mcontext.pc; |
| 1463 | int is_write; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1464 | |
ths | c4b89d1 | 2007-05-05 19:23:11 +0000 | [diff] [blame] | 1465 | /* XXX: compute is_write */ |
| 1466 | is_write = 0; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1467 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
ths | c4b89d1 | 2007-05-05 19:23:11 +0000 | [diff] [blame] | 1468 | is_write, &uc->uc_sigmask, puc); |
bellard | 90cb949 | 2005-07-24 15:11:38 +0000 | [diff] [blame] | 1469 | } |
| 1470 | |
aurel32 | f54b3f9 | 2008-04-12 20:14:54 +0000 | [diff] [blame] | 1471 | #elif defined(__hppa__) |
| 1472 | |
| 1473 | int cpu_signal_handler(int host_signum, void *pinfo, |
| 1474 | void *puc) |
| 1475 | { |
| 1476 | struct siginfo *info = pinfo; |
| 1477 | struct ucontext *uc = puc; |
| 1478 | unsigned long pc; |
| 1479 | int is_write; |
| 1480 | |
| 1481 | pc = uc->uc_mcontext.sc_iaoq[0]; |
| 1482 | /* FIXME: compute is_write */ |
| 1483 | is_write = 0; |
| 1484 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 1485 | is_write, |
| 1486 | &uc->uc_sigmask, puc); |
| 1487 | } |
| 1488 | |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 1489 | #else |
| 1490 | |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 1491 | #error host CPU specific signal handler needed |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 1492 | |
| 1493 | #endif |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 1494 | |
| 1495 | #endif /* !defined(CONFIG_SOFTMMU) */ |