bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 1 | /* |
| 2 | * i386 emulator main execution loop |
| 3 | * |
| 4 | * Copyright (c) 2003 Fabrice Bellard |
| 5 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 6 | * This library is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU Lesser General Public |
| 8 | * License as published by the Free Software Foundation; either |
| 9 | * version 2 of the License, or (at your option) any later version. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 10 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 11 | * This library is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * Lesser General Public License for more details. |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 15 | * |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 16 | * You should have received a copy of the GNU Lesser General Public |
| 17 | * License along with this library; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 19 | */ |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 20 | #include "config.h" |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 21 | #include "exec.h" |
bellard | 956034d | 2003-04-29 20:40:53 +0000 | [diff] [blame] | 22 | #include "disas.h" |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 23 | |
bellard | 36bdbe5 | 2003-11-19 22:12:02 +0000 | [diff] [blame] | 24 | int tb_invalidated_flag; |
| 25 | |
bellard | dc99065 | 2003-03-19 00:00:28 +0000 | [diff] [blame] | 26 | //#define DEBUG_EXEC |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 27 | //#define DEBUG_SIGNAL |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 28 | |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 29 | #if defined(TARGET_ARM) || defined(TARGET_SPARC) |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 30 | /* XXX: unify with i386 target */ |
| 31 | void cpu_loop_exit(void) |
| 32 | { |
| 33 | longjmp(env->jmp_env, 1); |
| 34 | } |
| 35 | #endif |
| 36 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 37 | /* main execution loop */ |
| 38 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 39 | int cpu_exec(CPUState *env1) |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 40 | { |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 41 | int saved_T0, saved_T1, saved_T2; |
| 42 | CPUState *saved_env; |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 43 | #ifdef reg_EAX |
| 44 | int saved_EAX; |
| 45 | #endif |
| 46 | #ifdef reg_ECX |
| 47 | int saved_ECX; |
| 48 | #endif |
| 49 | #ifdef reg_EDX |
| 50 | int saved_EDX; |
| 51 | #endif |
| 52 | #ifdef reg_EBX |
| 53 | int saved_EBX; |
| 54 | #endif |
| 55 | #ifdef reg_ESP |
| 56 | int saved_ESP; |
| 57 | #endif |
| 58 | #ifdef reg_EBP |
| 59 | int saved_EBP; |
| 60 | #endif |
| 61 | #ifdef reg_ESI |
| 62 | int saved_ESI; |
| 63 | #endif |
| 64 | #ifdef reg_EDI |
| 65 | int saved_EDI; |
| 66 | #endif |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 67 | #ifdef __sparc__ |
| 68 | int saved_i7, tmp_T0; |
| 69 | #endif |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 70 | int code_gen_size, ret, interrupt_request; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 71 | void (*gen_func)(void); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 72 | TranslationBlock *tb, **ptb; |
bellard | dab2ed9 | 2003-03-22 15:23:14 +0000 | [diff] [blame] | 73 | uint8_t *tc_ptr, *cs_base, *pc; |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 74 | unsigned int flags; |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 75 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 76 | /* first we save global registers */ |
| 77 | saved_T0 = T0; |
| 78 | saved_T1 = T1; |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 79 | saved_T2 = T2; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 80 | saved_env = env; |
| 81 | env = env1; |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 82 | #ifdef __sparc__ |
| 83 | /* we also save i7 because longjmp may not restore it */ |
| 84 | asm volatile ("mov %%i7, %0" : "=r" (saved_i7)); |
| 85 | #endif |
| 86 | |
| 87 | #if defined(TARGET_I386) |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 88 | #ifdef reg_EAX |
| 89 | saved_EAX = EAX; |
| 90 | EAX = env->regs[R_EAX]; |
| 91 | #endif |
| 92 | #ifdef reg_ECX |
| 93 | saved_ECX = ECX; |
| 94 | ECX = env->regs[R_ECX]; |
| 95 | #endif |
| 96 | #ifdef reg_EDX |
| 97 | saved_EDX = EDX; |
| 98 | EDX = env->regs[R_EDX]; |
| 99 | #endif |
| 100 | #ifdef reg_EBX |
| 101 | saved_EBX = EBX; |
| 102 | EBX = env->regs[R_EBX]; |
| 103 | #endif |
| 104 | #ifdef reg_ESP |
| 105 | saved_ESP = ESP; |
| 106 | ESP = env->regs[R_ESP]; |
| 107 | #endif |
| 108 | #ifdef reg_EBP |
| 109 | saved_EBP = EBP; |
| 110 | EBP = env->regs[R_EBP]; |
| 111 | #endif |
| 112 | #ifdef reg_ESI |
| 113 | saved_ESI = ESI; |
| 114 | ESI = env->regs[R_ESI]; |
| 115 | #endif |
| 116 | #ifdef reg_EDI |
| 117 | saved_EDI = EDI; |
| 118 | EDI = env->regs[R_EDI]; |
| 119 | #endif |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 120 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 121 | /* put eflags in CPU temporary format */ |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 122 | CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C); |
| 123 | DF = 1 - (2 * ((env->eflags >> 10) & 1)); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 124 | CC_OP = CC_OP_EFLAGS; |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 125 | 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] | 126 | #elif defined(TARGET_ARM) |
| 127 | { |
| 128 | unsigned int psr; |
| 129 | psr = env->cpsr; |
| 130 | env->CF = (psr >> 29) & 1; |
| 131 | env->NZF = (psr & 0xc0000000) ^ 0x40000000; |
| 132 | env->VF = (psr << 3) & 0x80000000; |
| 133 | env->cpsr = psr & ~0xf0000000; |
| 134 | } |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 135 | #elif defined(TARGET_SPARC) |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 136 | #elif defined(TARGET_PPC) |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 137 | #else |
| 138 | #error unsupported target CPU |
| 139 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 140 | env->exception_index = -1; |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 141 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 142 | /* prepare setjmp context for exception handling */ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 143 | for(;;) { |
| 144 | if (setjmp(env->jmp_env) == 0) { |
bellard | ee8b702 | 2004-02-03 23:35:10 +0000 | [diff] [blame^] | 145 | env->current_tb = NULL; |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 146 | /* if an exception is pending, we execute it here */ |
| 147 | if (env->exception_index >= 0) { |
| 148 | if (env->exception_index >= EXCP_INTERRUPT) { |
| 149 | /* exit request from the cpu execution loop */ |
| 150 | ret = env->exception_index; |
| 151 | break; |
| 152 | } else if (env->user_mode_only) { |
| 153 | /* if user mode only, we simulate a fake exception |
| 154 | which will be hanlded outside the cpu execution |
| 155 | loop */ |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 156 | #if defined(TARGET_I386) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 157 | do_interrupt_user(env->exception_index, |
| 158 | env->exception_is_int, |
| 159 | env->error_code, |
| 160 | env->exception_next_eip); |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 161 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 162 | ret = env->exception_index; |
| 163 | break; |
| 164 | } else { |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 165 | #if defined(TARGET_I386) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 166 | /* simulate a real cpu exception. On i386, it can |
| 167 | trigger new exceptions, but we do not handle |
| 168 | double or triple faults yet. */ |
| 169 | do_interrupt(env->exception_index, |
| 170 | env->exception_is_int, |
| 171 | env->error_code, |
bellard | d05e66d | 2003-08-20 21:34:35 +0000 | [diff] [blame] | 172 | env->exception_next_eip, 0); |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 173 | #elif defined(TARGET_PPC) |
| 174 | do_interrupt(env); |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 175 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 176 | } |
| 177 | env->exception_index = -1; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 178 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 179 | T0 = 0; /* force lookup of first TB */ |
| 180 | for(;;) { |
| 181 | #ifdef __sparc__ |
| 182 | /* g1 can be modified by some libc? functions */ |
| 183 | tmp_T0 = T0; |
| 184 | #endif |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 185 | interrupt_request = env->interrupt_request; |
bellard | 2e255c6 | 2003-08-21 23:25:21 +0000 | [diff] [blame] | 186 | if (__builtin_expect(interrupt_request, 0)) { |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 187 | #if defined(TARGET_I386) |
| 188 | /* if hardware interrupt pending, we execute it */ |
| 189 | if ((interrupt_request & CPU_INTERRUPT_HARD) && |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 190 | (env->eflags & IF_MASK) && |
| 191 | !(env->hflags & HF_INHIBIT_IRQ_MASK)) { |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 192 | int intno; |
| 193 | intno = cpu_x86_get_pic_interrupt(env); |
| 194 | if (loglevel) { |
| 195 | fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno); |
| 196 | } |
bellard | d05e66d | 2003-08-20 21:34:35 +0000 | [diff] [blame] | 197 | do_interrupt(intno, 0, 0, 0, 1); |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 198 | env->interrupt_request &= ~CPU_INTERRUPT_HARD; |
bellard | 907a5b2 | 2003-06-30 23:18:22 +0000 | [diff] [blame] | 199 | /* ensure that no TB jump will be modified as |
| 200 | the program flow was changed */ |
| 201 | #ifdef __sparc__ |
| 202 | tmp_T0 = 0; |
| 203 | #else |
| 204 | T0 = 0; |
| 205 | #endif |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 206 | } |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 207 | #elif defined(TARGET_PPC) |
| 208 | if ((interrupt_request & CPU_INTERRUPT_HARD)) { |
| 209 | do_queue_exception(EXCP_EXTERNAL); |
| 210 | if (check_exception_state(env)) |
| 211 | do_interrupt(env); |
| 212 | env->interrupt_request &= ~CPU_INTERRUPT_HARD; |
| 213 | } |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 214 | #endif |
| 215 | if (interrupt_request & CPU_INTERRUPT_EXIT) { |
| 216 | env->interrupt_request &= ~CPU_INTERRUPT_EXIT; |
| 217 | env->exception_index = EXCP_INTERRUPT; |
| 218 | cpu_loop_exit(); |
| 219 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 220 | } |
| 221 | #ifdef DEBUG_EXEC |
| 222 | if (loglevel) { |
| 223 | #if defined(TARGET_I386) |
| 224 | /* restore flags in standard format */ |
| 225 | env->regs[R_EAX] = EAX; |
| 226 | env->regs[R_EBX] = EBX; |
| 227 | env->regs[R_ECX] = ECX; |
| 228 | env->regs[R_EDX] = EDX; |
| 229 | env->regs[R_ESI] = ESI; |
| 230 | env->regs[R_EDI] = EDI; |
| 231 | env->regs[R_EBP] = EBP; |
| 232 | env->regs[R_ESP] = ESP; |
| 233 | env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK); |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 234 | cpu_x86_dump_state(env, logfile, X86_DUMP_CCOP); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 235 | 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] | 236 | #elif defined(TARGET_ARM) |
bellard | 1b21b62 | 2003-07-09 17:16:27 +0000 | [diff] [blame] | 237 | env->cpsr = compute_cpsr(); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 238 | cpu_arm_dump_state(env, logfile, 0); |
bellard | 1b21b62 | 2003-07-09 17:16:27 +0000 | [diff] [blame] | 239 | env->cpsr &= ~0xf0000000; |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 240 | #elif defined(TARGET_SPARC) |
bellard | 93a40ea | 2003-10-27 21:13:06 +0000 | [diff] [blame] | 241 | cpu_sparc_dump_state (env, logfile, 0); |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 242 | #elif defined(TARGET_PPC) |
| 243 | cpu_ppc_dump_state(env, logfile, 0); |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 244 | #else |
| 245 | #error unsupported target CPU |
| 246 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 247 | } |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 248 | #endif |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 249 | /* we record a subset of the CPU state. It will |
| 250 | always be the same before a given translated block |
| 251 | is executed. */ |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 252 | #if defined(TARGET_I386) |
bellard | 2e255c6 | 2003-08-21 23:25:21 +0000 | [diff] [blame] | 253 | flags = env->hflags; |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 254 | flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK)); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 255 | cs_base = env->segs[R_CS].base; |
| 256 | pc = cs_base + env->eip; |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 257 | #elif defined(TARGET_ARM) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 258 | flags = 0; |
| 259 | cs_base = 0; |
| 260 | pc = (uint8_t *)env->regs[15]; |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 261 | #elif defined(TARGET_SPARC) |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 262 | flags = 0; |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 263 | cs_base = (uint8_t *)env->npc; |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 264 | pc = (uint8_t *) env->pc; |
| 265 | #elif defined(TARGET_PPC) |
| 266 | flags = 0; |
| 267 | cs_base = 0; |
| 268 | pc = (uint8_t *)env->nip; |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 269 | #else |
| 270 | #error unsupported CPU |
| 271 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 272 | tb = tb_find(&ptb, (unsigned long)pc, (unsigned long)cs_base, |
| 273 | flags); |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 274 | if (!tb) { |
bellard | 1376847 | 2004-01-04 17:43:01 +0000 | [diff] [blame] | 275 | TranslationBlock **ptb1; |
| 276 | unsigned int h; |
| 277 | target_ulong phys_pc, phys_page1, phys_page2, virt_page2; |
| 278 | |
| 279 | |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 280 | spin_lock(&tb_lock); |
bellard | 1376847 | 2004-01-04 17:43:01 +0000 | [diff] [blame] | 281 | |
| 282 | tb_invalidated_flag = 0; |
| 283 | |
| 284 | /* find translated block using physical mappings */ |
| 285 | phys_pc = get_phys_addr_code(env, (unsigned long)pc); |
| 286 | phys_page1 = phys_pc & TARGET_PAGE_MASK; |
| 287 | phys_page2 = -1; |
| 288 | h = tb_phys_hash_func(phys_pc); |
| 289 | ptb1 = &tb_phys_hash[h]; |
| 290 | for(;;) { |
| 291 | tb = *ptb1; |
| 292 | if (!tb) |
| 293 | goto not_found; |
| 294 | if (tb->pc == (unsigned long)pc && |
| 295 | tb->page_addr[0] == phys_page1 && |
| 296 | tb->cs_base == (unsigned long)cs_base && |
| 297 | tb->flags == flags) { |
| 298 | /* check next page if needed */ |
bellard | b516f85 | 2004-01-18 21:50:04 +0000 | [diff] [blame] | 299 | if (tb->page_addr[1] != -1) { |
| 300 | virt_page2 = ((unsigned long)pc & TARGET_PAGE_MASK) + |
| 301 | TARGET_PAGE_SIZE; |
bellard | 1376847 | 2004-01-04 17:43:01 +0000 | [diff] [blame] | 302 | phys_page2 = get_phys_addr_code(env, virt_page2); |
| 303 | if (tb->page_addr[1] == phys_page2) |
| 304 | goto found; |
| 305 | } else { |
| 306 | goto found; |
| 307 | } |
| 308 | } |
| 309 | ptb1 = &tb->phys_hash_next; |
| 310 | } |
| 311 | not_found: |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 312 | /* if no translated code available, then translate it now */ |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 313 | tb = tb_alloc((unsigned long)pc); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 314 | if (!tb) { |
| 315 | /* flush must be done */ |
bellard | b453b70 | 2004-01-04 15:45:21 +0000 | [diff] [blame] | 316 | tb_flush(env); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 317 | /* cannot fail at this point */ |
| 318 | tb = tb_alloc((unsigned long)pc); |
| 319 | /* don't forget to invalidate previous TB info */ |
| 320 | ptb = &tb_hash[tb_hash_func((unsigned long)pc)]; |
| 321 | T0 = 0; |
| 322 | } |
| 323 | tc_ptr = code_gen_ptr; |
| 324 | tb->tc_ptr = tc_ptr; |
| 325 | tb->cs_base = (unsigned long)cs_base; |
| 326 | tb->flags = flags; |
bellard | facc68b | 2003-09-17 22:51:18 +0000 | [diff] [blame] | 327 | cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size); |
bellard | 1376847 | 2004-01-04 17:43:01 +0000 | [diff] [blame] | 328 | code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1)); |
| 329 | |
| 330 | /* check next page if needed */ |
| 331 | virt_page2 = ((unsigned long)pc + tb->size - 1) & TARGET_PAGE_MASK; |
| 332 | phys_page2 = -1; |
| 333 | if (((unsigned long)pc & TARGET_PAGE_MASK) != virt_page2) { |
| 334 | phys_page2 = get_phys_addr_code(env, virt_page2); |
| 335 | } |
| 336 | tb_link_phys(tb, phys_pc, phys_page2); |
| 337 | |
| 338 | found: |
bellard | 36bdbe5 | 2003-11-19 22:12:02 +0000 | [diff] [blame] | 339 | if (tb_invalidated_flag) { |
| 340 | /* as some TB could have been invalidated because |
| 341 | of memory exceptions while generating the code, we |
| 342 | must recompute the hash index here */ |
| 343 | ptb = &tb_hash[tb_hash_func((unsigned long)pc)]; |
| 344 | while (*ptb != NULL) |
| 345 | ptb = &(*ptb)->hash_next; |
| 346 | T0 = 0; |
| 347 | } |
bellard | 1376847 | 2004-01-04 17:43:01 +0000 | [diff] [blame] | 348 | /* we add the TB in the virtual pc hash table */ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 349 | *ptb = tb; |
| 350 | tb->hash_next = NULL; |
| 351 | tb_link(tb); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 352 | spin_unlock(&tb_lock); |
| 353 | } |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 354 | #ifdef DEBUG_EXEC |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 355 | if (loglevel) { |
| 356 | fprintf(logfile, "Trace 0x%08lx [0x%08lx] %s\n", |
| 357 | (long)tb->tc_ptr, (long)tb->pc, |
| 358 | lookup_symbol((void *)tb->pc)); |
| 359 | } |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 360 | #endif |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 361 | #ifdef __sparc__ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 362 | T0 = tmp_T0; |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 363 | #endif |
bellard | facc68b | 2003-09-17 22:51:18 +0000 | [diff] [blame] | 364 | /* see if we can patch the calling TB. */ |
| 365 | if (T0 != 0) { |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 366 | spin_lock(&tb_lock); |
| 367 | tb_add_jump((TranslationBlock *)(T0 & ~3), T0 & 3, tb); |
| 368 | spin_unlock(&tb_lock); |
| 369 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 370 | tc_ptr = tb->tc_ptr; |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 371 | env->current_tb = tb; |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 372 | /* execute the generated code */ |
| 373 | gen_func = (void *)tc_ptr; |
| 374 | #if defined(__sparc__) |
| 375 | __asm__ __volatile__("call %0\n\t" |
| 376 | "mov %%o7,%%i0" |
| 377 | : /* no outputs */ |
| 378 | : "r" (gen_func) |
| 379 | : "i0", "i1", "i2", "i3", "i4", "i5"); |
| 380 | #elif defined(__arm__) |
| 381 | asm volatile ("mov pc, %0\n\t" |
| 382 | ".global exec_loop\n\t" |
| 383 | "exec_loop:\n\t" |
| 384 | : /* no outputs */ |
| 385 | : "r" (gen_func) |
| 386 | : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14"); |
| 387 | #else |
| 388 | gen_func(); |
| 389 | #endif |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 390 | env->current_tb = NULL; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 391 | /* reset soft MMU for next block (it can currently |
| 392 | only be set by a memory fault) */ |
| 393 | #if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU) |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 394 | if (env->hflags & HF_SOFTMMU_MASK) { |
| 395 | env->hflags &= ~HF_SOFTMMU_MASK; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 396 | /* do not allow linking to another block */ |
| 397 | T0 = 0; |
| 398 | } |
| 399 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 400 | } |
| 401 | } else { |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 402 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 403 | } /* for(;;) */ |
| 404 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 405 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 406 | #if defined(TARGET_I386) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 407 | /* restore flags in standard format */ |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 408 | env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 409 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 410 | /* restore global registers */ |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 411 | #ifdef reg_EAX |
| 412 | EAX = saved_EAX; |
| 413 | #endif |
| 414 | #ifdef reg_ECX |
| 415 | ECX = saved_ECX; |
| 416 | #endif |
| 417 | #ifdef reg_EDX |
| 418 | EDX = saved_EDX; |
| 419 | #endif |
| 420 | #ifdef reg_EBX |
| 421 | EBX = saved_EBX; |
| 422 | #endif |
| 423 | #ifdef reg_ESP |
| 424 | ESP = saved_ESP; |
| 425 | #endif |
| 426 | #ifdef reg_EBP |
| 427 | EBP = saved_EBP; |
| 428 | #endif |
| 429 | #ifdef reg_ESI |
| 430 | ESI = saved_ESI; |
| 431 | #endif |
| 432 | #ifdef reg_EDI |
| 433 | EDI = saved_EDI; |
| 434 | #endif |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 435 | #elif defined(TARGET_ARM) |
bellard | 1b21b62 | 2003-07-09 17:16:27 +0000 | [diff] [blame] | 436 | env->cpsr = compute_cpsr(); |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 437 | #elif defined(TARGET_SPARC) |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 438 | #elif defined(TARGET_PPC) |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 439 | #else |
| 440 | #error unsupported target CPU |
| 441 | #endif |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 442 | #ifdef __sparc__ |
| 443 | asm volatile ("mov %0, %%i7" : : "r" (saved_i7)); |
| 444 | #endif |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 445 | T0 = saved_T0; |
| 446 | T1 = saved_T1; |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 447 | T2 = saved_T2; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 448 | env = saved_env; |
| 449 | return ret; |
| 450 | } |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 451 | |
bellard | 1a18c71 | 2003-10-30 01:07:51 +0000 | [diff] [blame] | 452 | #if defined(TARGET_I386) && defined(CONFIG_USER_ONLY) |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 453 | |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 454 | void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector) |
| 455 | { |
| 456 | CPUX86State *saved_env; |
| 457 | |
| 458 | saved_env = env; |
| 459 | env = s; |
bellard | a412ac5 | 2003-07-26 18:01:40 +0000 | [diff] [blame] | 460 | if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) { |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 461 | selector &= 0xffff; |
bellard | 2e255c6 | 2003-08-21 23:25:21 +0000 | [diff] [blame] | 462 | cpu_x86_load_seg_cache(env, seg_reg, selector, |
| 463 | (uint8_t *)(selector << 4), 0xffff, 0); |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 464 | } else { |
bellard | b453b70 | 2004-01-04 15:45:21 +0000 | [diff] [blame] | 465 | load_seg(seg_reg, selector); |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 466 | } |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 467 | env = saved_env; |
| 468 | } |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 469 | |
bellard | d0a1ffc | 2003-05-29 20:04:28 +0000 | [diff] [blame] | 470 | void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32) |
| 471 | { |
| 472 | CPUX86State *saved_env; |
| 473 | |
| 474 | saved_env = env; |
| 475 | env = s; |
| 476 | |
| 477 | helper_fsave(ptr, data32); |
| 478 | |
| 479 | env = saved_env; |
| 480 | } |
| 481 | |
| 482 | void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32) |
| 483 | { |
| 484 | CPUX86State *saved_env; |
| 485 | |
| 486 | saved_env = env; |
| 487 | env = s; |
| 488 | |
| 489 | helper_frstor(ptr, data32); |
| 490 | |
| 491 | env = saved_env; |
| 492 | } |
| 493 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 494 | #endif /* TARGET_I386 */ |
| 495 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 496 | #undef EAX |
| 497 | #undef ECX |
| 498 | #undef EDX |
| 499 | #undef EBX |
| 500 | #undef ESP |
| 501 | #undef EBP |
| 502 | #undef ESI |
| 503 | #undef EDI |
| 504 | #undef EIP |
| 505 | #include <signal.h> |
| 506 | #include <sys/ucontext.h> |
| 507 | |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 508 | #if defined(TARGET_I386) |
| 509 | |
bellard | b56dad1 | 2003-05-08 15:38:04 +0000 | [diff] [blame] | 510 | /* 'pc' is the host PC at which the exception was raised. 'address' is |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 511 | the effective address of the memory exception. 'is_write' is 1 if a |
| 512 | write caused the exception and otherwise 0'. 'old_set' is the |
| 513 | signal set which should be restored */ |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 514 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 515 | int is_write, sigset_t *old_set) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 516 | { |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 517 | TranslationBlock *tb; |
| 518 | int ret; |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 519 | |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 520 | if (cpu_single_env) |
| 521 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 522 | #if defined(DEBUG_SIGNAL) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 523 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 524 | pc, address, is_write, *(unsigned long *)old_set); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 525 | #endif |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 526 | /* XXX: locking issue */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 527 | if (is_write && page_unprotect(address)) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 528 | return 1; |
| 529 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 530 | /* see if it is an MMU fault */ |
bellard | 93a40ea | 2003-10-27 21:13:06 +0000 | [diff] [blame] | 531 | ret = cpu_x86_handle_mmu_fault(env, address, is_write, |
| 532 | ((env->hflags & HF_CPL_MASK) == 3), 0); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 533 | if (ret < 0) |
| 534 | return 0; /* not an MMU fault */ |
| 535 | if (ret == 0) |
| 536 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 537 | /* now we have a real cpu fault */ |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 538 | tb = tb_find_pc(pc); |
| 539 | if (tb) { |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 540 | /* the PC is inside the translated code. It means that we have |
| 541 | a virtual CPU fault */ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 542 | cpu_restore_state(tb, env, pc); |
| 543 | } |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 544 | if (ret == 1) { |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 545 | #if 0 |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 546 | printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n", |
| 547 | env->eip, env->cr[2], env->error_code); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 548 | #endif |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 549 | /* we restore the process signal mask as the sigreturn should |
| 550 | do it (XXX: use sigsetjmp) */ |
| 551 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 552 | raise_exception_err(EXCP0E_PAGE, env->error_code); |
| 553 | } else { |
| 554 | /* activate soft MMU for this block */ |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 555 | env->hflags |= HF_SOFTMMU_MASK; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 556 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 557 | cpu_loop_exit(); |
| 558 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 559 | /* never comes here */ |
| 560 | return 1; |
| 561 | } |
| 562 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 563 | #elif defined(TARGET_ARM) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 564 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 565 | int is_write, sigset_t *old_set) |
| 566 | { |
| 567 | /* XXX: do more */ |
| 568 | return 0; |
| 569 | } |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 570 | #elif defined(TARGET_SPARC) |
| 571 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 572 | int is_write, sigset_t *old_set) |
| 573 | { |
bellard | b453b70 | 2004-01-04 15:45:21 +0000 | [diff] [blame] | 574 | /* XXX: locking issue */ |
| 575 | if (is_write && page_unprotect(address)) { |
| 576 | return 1; |
| 577 | } |
| 578 | return 0; |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 579 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 580 | #elif defined (TARGET_PPC) |
| 581 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 582 | int is_write, sigset_t *old_set) |
| 583 | { |
| 584 | TranslationBlock *tb; |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 585 | int ret; |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 586 | |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 587 | #if 1 |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 588 | if (cpu_single_env) |
| 589 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
| 590 | #endif |
| 591 | #if defined(DEBUG_SIGNAL) |
| 592 | printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n", |
| 593 | pc, address, is_write, *(unsigned long *)old_set); |
| 594 | #endif |
| 595 | /* XXX: locking issue */ |
| 596 | if (is_write && page_unprotect(address)) { |
| 597 | return 1; |
| 598 | } |
| 599 | |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 600 | /* see if it is an MMU fault */ |
bellard | 7f957d2 | 2004-01-18 23:19:48 +0000 | [diff] [blame] | 601 | ret = cpu_ppc_handle_mmu_fault(env, address, is_write, msr_pr, 0); |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 602 | if (ret < 0) |
| 603 | return 0; /* not an MMU fault */ |
| 604 | if (ret == 0) |
| 605 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 606 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 607 | /* now we have a real cpu fault */ |
| 608 | tb = tb_find_pc(pc); |
| 609 | if (tb) { |
| 610 | /* the PC is inside the translated code. It means that we have |
| 611 | a virtual CPU fault */ |
| 612 | cpu_restore_state(tb, env, pc); |
| 613 | } |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 614 | if (ret == 1) { |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 615 | #if 0 |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 616 | printf("PF exception: NIP=0x%08x error=0x%x %p\n", |
| 617 | env->nip, env->error_code, tb); |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 618 | #endif |
| 619 | /* we restore the process signal mask as the sigreturn should |
| 620 | do it (XXX: use sigsetjmp) */ |
| 621 | sigprocmask(SIG_SETMASK, old_set, NULL); |
bellard | ce09776 | 2004-01-04 23:53:18 +0000 | [diff] [blame] | 622 | do_queue_exception_err(env->exception_index, env->error_code); |
| 623 | } else { |
| 624 | /* activate soft MMU for this block */ |
| 625 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 626 | cpu_loop_exit(); |
| 627 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 628 | /* never comes here */ |
| 629 | return 1; |
| 630 | } |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 631 | #else |
| 632 | #error unsupported target CPU |
| 633 | #endif |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 634 | |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 635 | #if defined(__i386__) |
| 636 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 637 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 638 | void *puc) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 639 | { |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 640 | struct ucontext *uc = puc; |
| 641 | unsigned long pc; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 642 | |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 643 | #ifndef REG_EIP |
| 644 | /* for glibc 2.1 */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 645 | #define REG_EIP EIP |
| 646 | #define REG_ERR ERR |
| 647 | #define REG_TRAPNO TRAPNO |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 648 | #endif |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 649 | pc = uc->uc_mcontext.gregs[REG_EIP]; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 650 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 651 | uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ? |
| 652 | (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0, |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 653 | &uc->uc_sigmask); |
| 654 | } |
| 655 | |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 656 | #elif defined(__powerpc) |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 657 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 658 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 659 | void *puc) |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 660 | { |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 661 | struct ucontext *uc = puc; |
| 662 | struct pt_regs *regs = uc->uc_mcontext.regs; |
| 663 | unsigned long pc; |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 664 | int is_write; |
| 665 | |
| 666 | pc = regs->nip; |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 667 | is_write = 0; |
| 668 | #if 0 |
| 669 | /* ppc 4xx case */ |
| 670 | if (regs->dsisr & 0x00800000) |
| 671 | is_write = 1; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 672 | #else |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 673 | if (regs->trap != 0x400 && (regs->dsisr & 0x02000000)) |
| 674 | is_write = 1; |
| 675 | #endif |
| 676 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 677 | is_write, &uc->uc_sigmask); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 678 | } |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 679 | |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 680 | #elif defined(__alpha__) |
| 681 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 682 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 683 | void *puc) |
| 684 | { |
| 685 | struct ucontext *uc = puc; |
| 686 | uint32_t *pc = uc->uc_mcontext.sc_pc; |
| 687 | uint32_t insn = *pc; |
| 688 | int is_write = 0; |
| 689 | |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 690 | /* XXX: need kernel patch to get write flag faster */ |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 691 | switch (insn >> 26) { |
| 692 | case 0x0d: // stw |
| 693 | case 0x0e: // stb |
| 694 | case 0x0f: // stq_u |
| 695 | case 0x24: // stf |
| 696 | case 0x25: // stg |
| 697 | case 0x26: // sts |
| 698 | case 0x27: // stt |
| 699 | case 0x2c: // stl |
| 700 | case 0x2d: // stq |
| 701 | case 0x2e: // stl_c |
| 702 | case 0x2f: // stq_c |
| 703 | is_write = 1; |
| 704 | } |
| 705 | |
| 706 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 707 | is_write, &uc->uc_sigmask); |
| 708 | } |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 709 | #elif defined(__sparc__) |
| 710 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 711 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 712 | void *puc) |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 713 | { |
| 714 | uint32_t *regs = (uint32_t *)(info + 1); |
| 715 | void *sigmask = (regs + 20); |
| 716 | unsigned long pc; |
| 717 | int is_write; |
| 718 | uint32_t insn; |
| 719 | |
| 720 | /* XXX: is there a standard glibc define ? */ |
| 721 | pc = regs[1]; |
| 722 | /* XXX: need kernel patch to get write flag faster */ |
| 723 | is_write = 0; |
| 724 | insn = *(uint32_t *)pc; |
| 725 | if ((insn >> 30) == 3) { |
| 726 | switch((insn >> 19) & 0x3f) { |
| 727 | case 0x05: // stb |
| 728 | case 0x06: // sth |
| 729 | case 0x04: // st |
| 730 | case 0x07: // std |
| 731 | case 0x24: // stf |
| 732 | case 0x27: // stdf |
| 733 | case 0x25: // stfsr |
| 734 | is_write = 1; |
| 735 | break; |
| 736 | } |
| 737 | } |
| 738 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 739 | is_write, sigmask); |
| 740 | } |
| 741 | |
| 742 | #elif defined(__arm__) |
| 743 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 744 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 745 | void *puc) |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 746 | { |
| 747 | struct ucontext *uc = puc; |
| 748 | unsigned long pc; |
| 749 | int is_write; |
| 750 | |
| 751 | pc = uc->uc_mcontext.gregs[R15]; |
| 752 | /* XXX: compute is_write */ |
| 753 | is_write = 0; |
| 754 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 755 | is_write, |
| 756 | &uc->uc_sigmask); |
| 757 | } |
| 758 | |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 759 | #elif defined(__mc68000) |
| 760 | |
| 761 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 762 | void *puc) |
| 763 | { |
| 764 | struct ucontext *uc = puc; |
| 765 | unsigned long pc; |
| 766 | int is_write; |
| 767 | |
| 768 | pc = uc->uc_mcontext.gregs[16]; |
| 769 | /* XXX: compute is_write */ |
| 770 | is_write = 0; |
| 771 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 772 | is_write, |
| 773 | &uc->uc_sigmask); |
| 774 | } |
| 775 | |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 776 | #else |
| 777 | |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 778 | #error host CPU specific signal handler needed |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 779 | |
| 780 | #endif |