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 | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 136 | #else |
| 137 | #error unsupported target CPU |
| 138 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 139 | env->exception_index = -1; |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 140 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 141 | /* prepare setjmp context for exception handling */ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 142 | for(;;) { |
| 143 | if (setjmp(env->jmp_env) == 0) { |
| 144 | /* if an exception is pending, we execute it here */ |
| 145 | if (env->exception_index >= 0) { |
| 146 | if (env->exception_index >= EXCP_INTERRUPT) { |
| 147 | /* exit request from the cpu execution loop */ |
| 148 | ret = env->exception_index; |
| 149 | break; |
| 150 | } else if (env->user_mode_only) { |
| 151 | /* if user mode only, we simulate a fake exception |
| 152 | which will be hanlded outside the cpu execution |
| 153 | loop */ |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 154 | #if defined(TARGET_I386) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 155 | do_interrupt_user(env->exception_index, |
| 156 | env->exception_is_int, |
| 157 | env->error_code, |
| 158 | env->exception_next_eip); |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 159 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 160 | ret = env->exception_index; |
| 161 | break; |
| 162 | } else { |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 163 | #if defined(TARGET_I386) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 164 | /* simulate a real cpu exception. On i386, it can |
| 165 | trigger new exceptions, but we do not handle |
| 166 | double or triple faults yet. */ |
| 167 | do_interrupt(env->exception_index, |
| 168 | env->exception_is_int, |
| 169 | env->error_code, |
bellard | d05e66d | 2003-08-20 21:34:35 +0000 | [diff] [blame] | 170 | env->exception_next_eip, 0); |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 171 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 172 | } |
| 173 | env->exception_index = -1; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 174 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 175 | T0 = 0; /* force lookup of first TB */ |
| 176 | for(;;) { |
| 177 | #ifdef __sparc__ |
| 178 | /* g1 can be modified by some libc? functions */ |
| 179 | tmp_T0 = T0; |
| 180 | #endif |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 181 | interrupt_request = env->interrupt_request; |
bellard | 2e255c6 | 2003-08-21 23:25:21 +0000 | [diff] [blame] | 182 | if (__builtin_expect(interrupt_request, 0)) { |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 183 | #if defined(TARGET_I386) |
| 184 | /* if hardware interrupt pending, we execute it */ |
| 185 | if ((interrupt_request & CPU_INTERRUPT_HARD) && |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 186 | (env->eflags & IF_MASK) && |
| 187 | !(env->hflags & HF_INHIBIT_IRQ_MASK)) { |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 188 | int intno; |
| 189 | intno = cpu_x86_get_pic_interrupt(env); |
| 190 | if (loglevel) { |
| 191 | fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno); |
| 192 | } |
bellard | d05e66d | 2003-08-20 21:34:35 +0000 | [diff] [blame] | 193 | do_interrupt(intno, 0, 0, 0, 1); |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 194 | env->interrupt_request &= ~CPU_INTERRUPT_HARD; |
bellard | 907a5b2 | 2003-06-30 23:18:22 +0000 | [diff] [blame] | 195 | /* ensure that no TB jump will be modified as |
| 196 | the program flow was changed */ |
| 197 | #ifdef __sparc__ |
| 198 | tmp_T0 = 0; |
| 199 | #else |
| 200 | T0 = 0; |
| 201 | #endif |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 202 | } |
| 203 | #endif |
| 204 | if (interrupt_request & CPU_INTERRUPT_EXIT) { |
| 205 | env->interrupt_request &= ~CPU_INTERRUPT_EXIT; |
| 206 | env->exception_index = EXCP_INTERRUPT; |
| 207 | cpu_loop_exit(); |
| 208 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 209 | } |
| 210 | #ifdef DEBUG_EXEC |
| 211 | if (loglevel) { |
| 212 | #if defined(TARGET_I386) |
| 213 | /* restore flags in standard format */ |
| 214 | env->regs[R_EAX] = EAX; |
| 215 | env->regs[R_EBX] = EBX; |
| 216 | env->regs[R_ECX] = ECX; |
| 217 | env->regs[R_EDX] = EDX; |
| 218 | env->regs[R_ESI] = ESI; |
| 219 | env->regs[R_EDI] = EDI; |
| 220 | env->regs[R_EBP] = EBP; |
| 221 | env->regs[R_ESP] = ESP; |
| 222 | env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK); |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 223 | cpu_x86_dump_state(env, logfile, X86_DUMP_CCOP); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 224 | 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] | 225 | #elif defined(TARGET_ARM) |
bellard | 1b21b62 | 2003-07-09 17:16:27 +0000 | [diff] [blame] | 226 | env->cpsr = compute_cpsr(); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 227 | cpu_arm_dump_state(env, logfile, 0); |
bellard | 1b21b62 | 2003-07-09 17:16:27 +0000 | [diff] [blame] | 228 | env->cpsr &= ~0xf0000000; |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 229 | #elif defined(TARGET_SPARC) |
bellard | 93a40ea | 2003-10-27 21:13:06 +0000 | [diff] [blame] | 230 | cpu_sparc_dump_state (env, logfile, 0); |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 231 | #else |
| 232 | #error unsupported target CPU |
| 233 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 234 | } |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 235 | #endif |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 236 | /* we record a subset of the CPU state. It will |
| 237 | always be the same before a given translated block |
| 238 | is executed. */ |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 239 | #if defined(TARGET_I386) |
bellard | 2e255c6 | 2003-08-21 23:25:21 +0000 | [diff] [blame] | 240 | flags = env->hflags; |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 241 | flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK)); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 242 | cs_base = env->segs[R_CS].base; |
| 243 | pc = cs_base + env->eip; |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 244 | #elif defined(TARGET_ARM) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 245 | flags = 0; |
| 246 | cs_base = 0; |
| 247 | pc = (uint8_t *)env->regs[15]; |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 248 | #elif defined(TARGET_SPARC) |
| 249 | flags = 0; |
| 250 | cs_base = 0; |
| 251 | if (env->npc) { |
| 252 | env->pc = env->npc; |
| 253 | env->npc = 0; |
| 254 | } |
| 255 | pc = (uint8_t *) env->pc; |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 256 | #else |
| 257 | #error unsupported CPU |
| 258 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 259 | tb = tb_find(&ptb, (unsigned long)pc, (unsigned long)cs_base, |
| 260 | flags); |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 261 | if (!tb) { |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 262 | spin_lock(&tb_lock); |
| 263 | /* if no translated code available, then translate it now */ |
bellard | d4e8164 | 2003-05-25 16:46:15 +0000 | [diff] [blame] | 264 | tb = tb_alloc((unsigned long)pc); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 265 | if (!tb) { |
| 266 | /* flush must be done */ |
| 267 | tb_flush(); |
| 268 | /* cannot fail at this point */ |
| 269 | tb = tb_alloc((unsigned long)pc); |
| 270 | /* don't forget to invalidate previous TB info */ |
| 271 | ptb = &tb_hash[tb_hash_func((unsigned long)pc)]; |
| 272 | T0 = 0; |
| 273 | } |
| 274 | tc_ptr = code_gen_ptr; |
| 275 | tb->tc_ptr = tc_ptr; |
| 276 | tb->cs_base = (unsigned long)cs_base; |
| 277 | tb->flags = flags; |
bellard | 36bdbe5 | 2003-11-19 22:12:02 +0000 | [diff] [blame^] | 278 | tb_invalidated_flag = 0; |
bellard | facc68b | 2003-09-17 22:51:18 +0000 | [diff] [blame] | 279 | cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size); |
bellard | 36bdbe5 | 2003-11-19 22:12:02 +0000 | [diff] [blame^] | 280 | if (tb_invalidated_flag) { |
| 281 | /* as some TB could have been invalidated because |
| 282 | of memory exceptions while generating the code, we |
| 283 | must recompute the hash index here */ |
| 284 | ptb = &tb_hash[tb_hash_func((unsigned long)pc)]; |
| 285 | while (*ptb != NULL) |
| 286 | ptb = &(*ptb)->hash_next; |
| 287 | T0 = 0; |
| 288 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 289 | *ptb = tb; |
| 290 | tb->hash_next = NULL; |
| 291 | tb_link(tb); |
| 292 | code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1)); |
| 293 | spin_unlock(&tb_lock); |
| 294 | } |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 295 | #ifdef DEBUG_EXEC |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 296 | if (loglevel) { |
| 297 | fprintf(logfile, "Trace 0x%08lx [0x%08lx] %s\n", |
| 298 | (long)tb->tc_ptr, (long)tb->pc, |
| 299 | lookup_symbol((void *)tb->pc)); |
| 300 | } |
bellard | 9d27abd | 2003-05-10 13:13:54 +0000 | [diff] [blame] | 301 | #endif |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 302 | #ifdef __sparc__ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 303 | T0 = tmp_T0; |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 304 | #endif |
bellard | facc68b | 2003-09-17 22:51:18 +0000 | [diff] [blame] | 305 | /* see if we can patch the calling TB. */ |
| 306 | if (T0 != 0) { |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 307 | spin_lock(&tb_lock); |
| 308 | tb_add_jump((TranslationBlock *)(T0 & ~3), T0 & 3, tb); |
| 309 | spin_unlock(&tb_lock); |
| 310 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 311 | tc_ptr = tb->tc_ptr; |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 312 | env->current_tb = tb; |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 313 | /* execute the generated code */ |
| 314 | gen_func = (void *)tc_ptr; |
| 315 | #if defined(__sparc__) |
| 316 | __asm__ __volatile__("call %0\n\t" |
| 317 | "mov %%o7,%%i0" |
| 318 | : /* no outputs */ |
| 319 | : "r" (gen_func) |
| 320 | : "i0", "i1", "i2", "i3", "i4", "i5"); |
| 321 | #elif defined(__arm__) |
| 322 | asm volatile ("mov pc, %0\n\t" |
| 323 | ".global exec_loop\n\t" |
| 324 | "exec_loop:\n\t" |
| 325 | : /* no outputs */ |
| 326 | : "r" (gen_func) |
| 327 | : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14"); |
| 328 | #else |
| 329 | gen_func(); |
| 330 | #endif |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 331 | env->current_tb = NULL; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 332 | /* reset soft MMU for next block (it can currently |
| 333 | only be set by a memory fault) */ |
| 334 | #if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU) |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 335 | if (env->hflags & HF_SOFTMMU_MASK) { |
| 336 | env->hflags &= ~HF_SOFTMMU_MASK; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 337 | /* do not allow linking to another block */ |
| 338 | T0 = 0; |
| 339 | } |
| 340 | #endif |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 341 | } |
| 342 | } else { |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 343 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 344 | } /* for(;;) */ |
| 345 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 346 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 347 | #if defined(TARGET_I386) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 348 | /* restore flags in standard format */ |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 349 | env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 350 | |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 351 | /* restore global registers */ |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 352 | #ifdef reg_EAX |
| 353 | EAX = saved_EAX; |
| 354 | #endif |
| 355 | #ifdef reg_ECX |
| 356 | ECX = saved_ECX; |
| 357 | #endif |
| 358 | #ifdef reg_EDX |
| 359 | EDX = saved_EDX; |
| 360 | #endif |
| 361 | #ifdef reg_EBX |
| 362 | EBX = saved_EBX; |
| 363 | #endif |
| 364 | #ifdef reg_ESP |
| 365 | ESP = saved_ESP; |
| 366 | #endif |
| 367 | #ifdef reg_EBP |
| 368 | EBP = saved_EBP; |
| 369 | #endif |
| 370 | #ifdef reg_ESI |
| 371 | ESI = saved_ESI; |
| 372 | #endif |
| 373 | #ifdef reg_EDI |
| 374 | EDI = saved_EDI; |
| 375 | #endif |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 376 | #elif defined(TARGET_ARM) |
bellard | 1b21b62 | 2003-07-09 17:16:27 +0000 | [diff] [blame] | 377 | env->cpsr = compute_cpsr(); |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 378 | #elif defined(TARGET_SPARC) |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 379 | #else |
| 380 | #error unsupported target CPU |
| 381 | #endif |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 382 | #ifdef __sparc__ |
| 383 | asm volatile ("mov %0, %%i7" : : "r" (saved_i7)); |
| 384 | #endif |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 385 | T0 = saved_T0; |
| 386 | T1 = saved_T1; |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 387 | T2 = saved_T2; |
bellard | 7d13299 | 2003-03-06 23:23:54 +0000 | [diff] [blame] | 388 | env = saved_env; |
| 389 | return ret; |
| 390 | } |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 391 | |
bellard | 1a18c71 | 2003-10-30 01:07:51 +0000 | [diff] [blame] | 392 | #if defined(TARGET_I386) && defined(CONFIG_USER_ONLY) |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 393 | |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 394 | void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector) |
| 395 | { |
| 396 | CPUX86State *saved_env; |
| 397 | |
| 398 | saved_env = env; |
| 399 | env = s; |
bellard | a412ac5 | 2003-07-26 18:01:40 +0000 | [diff] [blame] | 400 | if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) { |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 401 | selector &= 0xffff; |
bellard | 2e255c6 | 2003-08-21 23:25:21 +0000 | [diff] [blame] | 402 | cpu_x86_load_seg_cache(env, seg_reg, selector, |
| 403 | (uint8_t *)(selector << 4), 0xffff, 0); |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 404 | } else { |
| 405 | load_seg(seg_reg, selector, 0); |
| 406 | } |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 407 | env = saved_env; |
| 408 | } |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 409 | |
bellard | d0a1ffc | 2003-05-29 20:04:28 +0000 | [diff] [blame] | 410 | void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32) |
| 411 | { |
| 412 | CPUX86State *saved_env; |
| 413 | |
| 414 | saved_env = env; |
| 415 | env = s; |
| 416 | |
| 417 | helper_fsave(ptr, data32); |
| 418 | |
| 419 | env = saved_env; |
| 420 | } |
| 421 | |
| 422 | void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32) |
| 423 | { |
| 424 | CPUX86State *saved_env; |
| 425 | |
| 426 | saved_env = env; |
| 427 | env = s; |
| 428 | |
| 429 | helper_frstor(ptr, data32); |
| 430 | |
| 431 | env = saved_env; |
| 432 | } |
| 433 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 434 | #endif /* TARGET_I386 */ |
| 435 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 436 | #undef EAX |
| 437 | #undef ECX |
| 438 | #undef EDX |
| 439 | #undef EBX |
| 440 | #undef ESP |
| 441 | #undef EBP |
| 442 | #undef ESI |
| 443 | #undef EDI |
| 444 | #undef EIP |
| 445 | #include <signal.h> |
| 446 | #include <sys/ucontext.h> |
| 447 | |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 448 | #if defined(TARGET_I386) |
| 449 | |
bellard | b56dad1 | 2003-05-08 15:38:04 +0000 | [diff] [blame] | 450 | /* 'pc' is the host PC at which the exception was raised. 'address' is |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 451 | the effective address of the memory exception. 'is_write' is 1 if a |
| 452 | write caused the exception and otherwise 0'. 'old_set' is the |
| 453 | signal set which should be restored */ |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 454 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 455 | int is_write, sigset_t *old_set) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 456 | { |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 457 | TranslationBlock *tb; |
| 458 | int ret; |
bellard | 68a7931 | 2003-06-30 13:12:32 +0000 | [diff] [blame] | 459 | |
bellard | 83479e7 | 2003-06-25 16:12:37 +0000 | [diff] [blame] | 460 | if (cpu_single_env) |
| 461 | env = cpu_single_env; /* XXX: find a correct solution for multithread */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 462 | #if defined(DEBUG_SIGNAL) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 463 | 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] | 464 | pc, address, is_write, *(unsigned long *)old_set); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 465 | #endif |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 466 | /* XXX: locking issue */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 467 | if (is_write && page_unprotect(address)) { |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 468 | return 1; |
| 469 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 470 | /* see if it is an MMU fault */ |
bellard | 93a40ea | 2003-10-27 21:13:06 +0000 | [diff] [blame] | 471 | ret = cpu_x86_handle_mmu_fault(env, address, is_write, |
| 472 | ((env->hflags & HF_CPL_MASK) == 3), 0); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 473 | if (ret < 0) |
| 474 | return 0; /* not an MMU fault */ |
| 475 | if (ret == 0) |
| 476 | return 1; /* the MMU fault was handled without causing real CPU fault */ |
| 477 | /* now we have a real cpu fault */ |
bellard | a513fe1 | 2003-05-27 23:29:48 +0000 | [diff] [blame] | 478 | tb = tb_find_pc(pc); |
| 479 | if (tb) { |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 480 | /* the PC is inside the translated code. It means that we have |
| 481 | a virtual CPU fault */ |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 482 | cpu_restore_state(tb, env, pc); |
| 483 | } |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 484 | if (ret == 1) { |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 485 | #if 0 |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 486 | printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n", |
| 487 | env->eip, env->cr[2], env->error_code); |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 488 | #endif |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 489 | /* we restore the process signal mask as the sigreturn should |
| 490 | do it (XXX: use sigsetjmp) */ |
| 491 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 492 | raise_exception_err(EXCP0E_PAGE, env->error_code); |
| 493 | } else { |
| 494 | /* activate soft MMU for this block */ |
bellard | 3f33731 | 2003-08-20 23:02:09 +0000 | [diff] [blame] | 495 | env->hflags |= HF_SOFTMMU_MASK; |
bellard | 4cbf74b | 2003-08-10 21:48:43 +0000 | [diff] [blame] | 496 | sigprocmask(SIG_SETMASK, old_set, NULL); |
| 497 | cpu_loop_exit(); |
| 498 | } |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 499 | /* never comes here */ |
| 500 | return 1; |
| 501 | } |
| 502 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 503 | #elif defined(TARGET_ARM) |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 504 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 505 | int is_write, sigset_t *old_set) |
| 506 | { |
| 507 | /* XXX: do more */ |
| 508 | return 0; |
| 509 | } |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 510 | #elif defined(TARGET_SPARC) |
| 511 | static inline int handle_cpu_signal(unsigned long pc, unsigned long address, |
| 512 | int is_write, sigset_t *old_set) |
| 513 | { |
| 514 | return 0; |
| 515 | } |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 516 | #else |
| 517 | #error unsupported target CPU |
| 518 | #endif |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 519 | |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 520 | #if defined(__i386__) |
| 521 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 522 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 523 | void *puc) |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 524 | { |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 525 | struct ucontext *uc = puc; |
| 526 | unsigned long pc; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 527 | |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 528 | #ifndef REG_EIP |
| 529 | /* for glibc 2.1 */ |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 530 | #define REG_EIP EIP |
| 531 | #define REG_ERR ERR |
| 532 | #define REG_TRAPNO TRAPNO |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 533 | #endif |
bellard | fc2b4c4 | 2003-03-29 16:52:44 +0000 | [diff] [blame] | 534 | pc = uc->uc_mcontext.gregs[REG_EIP]; |
bellard | fd6ce8f | 2003-05-14 19:00:11 +0000 | [diff] [blame] | 535 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 536 | uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ? |
| 537 | (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0, |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 538 | &uc->uc_sigmask); |
| 539 | } |
| 540 | |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 541 | #elif defined(__powerpc) |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 542 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 543 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 544 | void *puc) |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 545 | { |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 546 | struct ucontext *uc = puc; |
| 547 | struct pt_regs *regs = uc->uc_mcontext.regs; |
| 548 | unsigned long pc; |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 549 | int is_write; |
| 550 | |
| 551 | pc = regs->nip; |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 552 | is_write = 0; |
| 553 | #if 0 |
| 554 | /* ppc 4xx case */ |
| 555 | if (regs->dsisr & 0x00800000) |
| 556 | is_write = 1; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 557 | #else |
bellard | 25eb448 | 2003-05-14 21:50:54 +0000 | [diff] [blame] | 558 | if (regs->trap != 0x400 && (regs->dsisr & 0x02000000)) |
| 559 | is_write = 1; |
| 560 | #endif |
| 561 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 562 | is_write, &uc->uc_sigmask); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 563 | } |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 564 | |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 565 | #elif defined(__alpha__) |
| 566 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 567 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 568 | void *puc) |
| 569 | { |
| 570 | struct ucontext *uc = puc; |
| 571 | uint32_t *pc = uc->uc_mcontext.sc_pc; |
| 572 | uint32_t insn = *pc; |
| 573 | int is_write = 0; |
| 574 | |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 575 | /* XXX: need kernel patch to get write flag faster */ |
bellard | 2f87c60 | 2003-06-02 20:38:09 +0000 | [diff] [blame] | 576 | switch (insn >> 26) { |
| 577 | case 0x0d: // stw |
| 578 | case 0x0e: // stb |
| 579 | case 0x0f: // stq_u |
| 580 | case 0x24: // stf |
| 581 | case 0x25: // stg |
| 582 | case 0x26: // sts |
| 583 | case 0x27: // stt |
| 584 | case 0x2c: // stl |
| 585 | case 0x2d: // stq |
| 586 | case 0x2e: // stl_c |
| 587 | case 0x2f: // stq_c |
| 588 | is_write = 1; |
| 589 | } |
| 590 | |
| 591 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 592 | is_write, &uc->uc_sigmask); |
| 593 | } |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 594 | #elif defined(__sparc__) |
| 595 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 596 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 597 | void *puc) |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 598 | { |
| 599 | uint32_t *regs = (uint32_t *)(info + 1); |
| 600 | void *sigmask = (regs + 20); |
| 601 | unsigned long pc; |
| 602 | int is_write; |
| 603 | uint32_t insn; |
| 604 | |
| 605 | /* XXX: is there a standard glibc define ? */ |
| 606 | pc = regs[1]; |
| 607 | /* XXX: need kernel patch to get write flag faster */ |
| 608 | is_write = 0; |
| 609 | insn = *(uint32_t *)pc; |
| 610 | if ((insn >> 30) == 3) { |
| 611 | switch((insn >> 19) & 0x3f) { |
| 612 | case 0x05: // stb |
| 613 | case 0x06: // sth |
| 614 | case 0x04: // st |
| 615 | case 0x07: // std |
| 616 | case 0x24: // stf |
| 617 | case 0x27: // stdf |
| 618 | case 0x25: // stfsr |
| 619 | is_write = 1; |
| 620 | break; |
| 621 | } |
| 622 | } |
| 623 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 624 | is_write, sigmask); |
| 625 | } |
| 626 | |
| 627 | #elif defined(__arm__) |
| 628 | |
bellard | e4533c7 | 2003-06-15 19:51:39 +0000 | [diff] [blame] | 629 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 630 | void *puc) |
bellard | 8c6939c | 2003-06-09 15:28:00 +0000 | [diff] [blame] | 631 | { |
| 632 | struct ucontext *uc = puc; |
| 633 | unsigned long pc; |
| 634 | int is_write; |
| 635 | |
| 636 | pc = uc->uc_mcontext.gregs[R15]; |
| 637 | /* XXX: compute is_write */ |
| 638 | is_write = 0; |
| 639 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 640 | is_write, |
| 641 | &uc->uc_sigmask); |
| 642 | } |
| 643 | |
bellard | 38e584a | 2003-08-10 22:14:22 +0000 | [diff] [blame] | 644 | #elif defined(__mc68000) |
| 645 | |
| 646 | int cpu_signal_handler(int host_signum, struct siginfo *info, |
| 647 | void *puc) |
| 648 | { |
| 649 | struct ucontext *uc = puc; |
| 650 | unsigned long pc; |
| 651 | int is_write; |
| 652 | |
| 653 | pc = uc->uc_mcontext.gregs[16]; |
| 654 | /* XXX: compute is_write */ |
| 655 | is_write = 0; |
| 656 | return handle_cpu_signal(pc, (unsigned long)info->si_addr, |
| 657 | is_write, |
| 658 | &uc->uc_sigmask); |
| 659 | } |
| 660 | |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 661 | #else |
| 662 | |
bellard | 3fb2ded | 2003-06-24 13:22:59 +0000 | [diff] [blame] | 663 | #error host CPU specific signal handler needed |
bellard | 2b41314 | 2003-05-14 23:01:10 +0000 | [diff] [blame] | 664 | |
| 665 | #endif |