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