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