blob: 1ffeb8e86cd8916c726d6d75b130b385ad27d9c0 [file] [log] [blame]
bellard7d132992003-03-06 23:23:54 +00001/*
2 * i386 emulator main execution loop
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
bellard3ef693a2003-03-23 20:17:16 +00006 * 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.
bellard7d132992003-03-06 23:23:54 +000010 *
bellard3ef693a2003-03-23 20:17:16 +000011 * 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.
bellard7d132992003-03-06 23:23:54 +000015 *
bellard3ef693a2003-03-23 20:17:16 +000016 * 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
bellard7d132992003-03-06 23:23:54 +000019 */
bellarde4533c72003-06-15 19:51:39 +000020#include "config.h"
21#ifdef TARGET_I386
bellard7d132992003-03-06 23:23:54 +000022#include "exec-i386.h"
bellarde4533c72003-06-15 19:51:39 +000023#endif
24#ifdef TARGET_ARM
25#include "exec-arm.h"
26#endif
27
bellard956034d2003-04-29 20:40:53 +000028#include "disas.h"
bellard7d132992003-03-06 23:23:54 +000029
bellarddc990652003-03-19 00:00:28 +000030//#define DEBUG_EXEC
bellard9de5e442003-03-23 16:49:39 +000031//#define DEBUG_SIGNAL
bellard7d132992003-03-06 23:23:54 +000032
bellarde4533c72003-06-15 19:51:39 +000033#if defined(TARGET_ARM)
34/* XXX: unify with i386 target */
35void cpu_loop_exit(void)
36{
37 longjmp(env->jmp_env, 1);
38}
39#endif
40
bellard7d132992003-03-06 23:23:54 +000041/* main execution loop */
42
bellarde4533c72003-06-15 19:51:39 +000043int cpu_exec(CPUState *env1)
bellard7d132992003-03-06 23:23:54 +000044{
bellarde4533c72003-06-15 19:51:39 +000045 int saved_T0, saved_T1, saved_T2;
46 CPUState *saved_env;
bellard04369ff2003-03-20 22:33:23 +000047#ifdef reg_EAX
48 int saved_EAX;
49#endif
50#ifdef reg_ECX
51 int saved_ECX;
52#endif
53#ifdef reg_EDX
54 int saved_EDX;
55#endif
56#ifdef reg_EBX
57 int saved_EBX;
58#endif
59#ifdef reg_ESP
60 int saved_ESP;
61#endif
62#ifdef reg_EBP
63 int saved_EBP;
64#endif
65#ifdef reg_ESI
66 int saved_ESI;
67#endif
68#ifdef reg_EDI
69 int saved_EDI;
70#endif
bellard8c6939c2003-06-09 15:28:00 +000071#ifdef __sparc__
72 int saved_i7, tmp_T0;
73#endif
bellard68a79312003-06-30 13:12:32 +000074 int code_gen_size, ret, interrupt_request;
bellard7d132992003-03-06 23:23:54 +000075 void (*gen_func)(void);
bellard9de5e442003-03-23 16:49:39 +000076 TranslationBlock *tb, **ptb;
bellarddab2ed92003-03-22 15:23:14 +000077 uint8_t *tc_ptr, *cs_base, *pc;
bellard6dbad632003-03-16 18:05:05 +000078 unsigned int flags;
bellard8c6939c2003-06-09 15:28:00 +000079
bellard7d132992003-03-06 23:23:54 +000080 /* first we save global registers */
81 saved_T0 = T0;
82 saved_T1 = T1;
bellarde4533c72003-06-15 19:51:39 +000083 saved_T2 = T2;
bellard7d132992003-03-06 23:23:54 +000084 saved_env = env;
85 env = env1;
bellarde4533c72003-06-15 19:51:39 +000086#ifdef __sparc__
87 /* we also save i7 because longjmp may not restore it */
88 asm volatile ("mov %%i7, %0" : "=r" (saved_i7));
89#endif
90
91#if defined(TARGET_I386)
bellard04369ff2003-03-20 22:33:23 +000092#ifdef reg_EAX
93 saved_EAX = EAX;
94 EAX = env->regs[R_EAX];
95#endif
96#ifdef reg_ECX
97 saved_ECX = ECX;
98 ECX = env->regs[R_ECX];
99#endif
100#ifdef reg_EDX
101 saved_EDX = EDX;
102 EDX = env->regs[R_EDX];
103#endif
104#ifdef reg_EBX
105 saved_EBX = EBX;
106 EBX = env->regs[R_EBX];
107#endif
108#ifdef reg_ESP
109 saved_ESP = ESP;
110 ESP = env->regs[R_ESP];
111#endif
112#ifdef reg_EBP
113 saved_EBP = EBP;
114 EBP = env->regs[R_EBP];
115#endif
116#ifdef reg_ESI
117 saved_ESI = ESI;
118 ESI = env->regs[R_ESI];
119#endif
120#ifdef reg_EDI
121 saved_EDI = EDI;
122 EDI = env->regs[R_EDI];
123#endif
bellard7d132992003-03-06 23:23:54 +0000124
bellard9de5e442003-03-23 16:49:39 +0000125 /* put eflags in CPU temporary format */
bellardfc2b4c42003-03-29 16:52:44 +0000126 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
127 DF = 1 - (2 * ((env->eflags >> 10) & 1));
bellard9de5e442003-03-23 16:49:39 +0000128 CC_OP = CC_OP_EFLAGS;
bellardfc2b4c42003-03-29 16:52:44 +0000129 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000130#elif defined(TARGET_ARM)
131 {
132 unsigned int psr;
133 psr = env->cpsr;
134 env->CF = (psr >> 29) & 1;
135 env->NZF = (psr & 0xc0000000) ^ 0x40000000;
136 env->VF = (psr << 3) & 0x80000000;
137 env->cpsr = psr & ~0xf0000000;
138 }
139#else
140#error unsupported target CPU
141#endif
bellard3fb2ded2003-06-24 13:22:59 +0000142 env->exception_index = -1;
bellard9d27abd2003-05-10 13:13:54 +0000143
bellard7d132992003-03-06 23:23:54 +0000144 /* prepare setjmp context for exception handling */
bellard3fb2ded2003-06-24 13:22:59 +0000145 for(;;) {
146 if (setjmp(env->jmp_env) == 0) {
147 /* if an exception is pending, we execute it here */
148 if (env->exception_index >= 0) {
149 if (env->exception_index >= EXCP_INTERRUPT) {
150 /* exit request from the cpu execution loop */
151 ret = env->exception_index;
152 break;
153 } else if (env->user_mode_only) {
154 /* if user mode only, we simulate a fake exception
155 which will be hanlded outside the cpu execution
156 loop */
bellard83479e72003-06-25 16:12:37 +0000157#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000158 do_interrupt_user(env->exception_index,
159 env->exception_is_int,
160 env->error_code,
161 env->exception_next_eip);
bellard83479e72003-06-25 16:12:37 +0000162#endif
bellard3fb2ded2003-06-24 13:22:59 +0000163 ret = env->exception_index;
164 break;
165 } else {
bellard83479e72003-06-25 16:12:37 +0000166#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000167 /* simulate a real cpu exception. On i386, it can
168 trigger new exceptions, but we do not handle
169 double or triple faults yet. */
170 do_interrupt(env->exception_index,
171 env->exception_is_int,
172 env->error_code,
173 env->exception_next_eip);
bellard83479e72003-06-25 16:12:37 +0000174#endif
bellard3fb2ded2003-06-24 13:22:59 +0000175 }
176 env->exception_index = -1;
bellard9de5e442003-03-23 16:49:39 +0000177 }
bellard3fb2ded2003-06-24 13:22:59 +0000178 T0 = 0; /* force lookup of first TB */
179 for(;;) {
180#ifdef __sparc__
181 /* g1 can be modified by some libc? functions */
182 tmp_T0 = T0;
183#endif
bellard68a79312003-06-30 13:12:32 +0000184 interrupt_request = env->interrupt_request;
185 if (interrupt_request) {
186#if defined(TARGET_I386)
187 /* if hardware interrupt pending, we execute it */
188 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
189 (env->eflags & IF_MASK)) {
190 int intno;
191 intno = cpu_x86_get_pic_interrupt(env);
192 if (loglevel) {
193 fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno);
194 }
195 do_interrupt(intno, 0, 0, 0);
196 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
bellard907a5b22003-06-30 23:18:22 +0000197 /* ensure that no TB jump will be modified as
198 the program flow was changed */
199#ifdef __sparc__
200 tmp_T0 = 0;
201#else
202 T0 = 0;
203#endif
bellard68a79312003-06-30 13:12:32 +0000204 }
205#endif
206 if (interrupt_request & CPU_INTERRUPT_EXIT) {
207 env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
208 env->exception_index = EXCP_INTERRUPT;
209 cpu_loop_exit();
210 }
bellard3fb2ded2003-06-24 13:22:59 +0000211 }
212#ifdef DEBUG_EXEC
213 if (loglevel) {
214#if defined(TARGET_I386)
215 /* restore flags in standard format */
216 env->regs[R_EAX] = EAX;
217 env->regs[R_EBX] = EBX;
218 env->regs[R_ECX] = ECX;
219 env->regs[R_EDX] = EDX;
220 env->regs[R_ESI] = ESI;
221 env->regs[R_EDI] = EDI;
222 env->regs[R_EBP] = EBP;
223 env->regs[R_ESP] = ESP;
224 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard68a79312003-06-30 13:12:32 +0000225 cpu_x86_dump_state(env, logfile, X86_DUMP_CCOP);
bellard3fb2ded2003-06-24 13:22:59 +0000226 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000227#elif defined(TARGET_ARM)
bellard1b21b622003-07-09 17:16:27 +0000228 env->cpsr = compute_cpsr();
bellard3fb2ded2003-06-24 13:22:59 +0000229 cpu_arm_dump_state(env, logfile, 0);
bellard1b21b622003-07-09 17:16:27 +0000230 env->cpsr &= ~0xf0000000;
bellarde4533c72003-06-15 19:51:39 +0000231#else
232#error unsupported target CPU
233#endif
bellard3fb2ded2003-06-24 13:22:59 +0000234 }
bellard7d132992003-03-06 23:23:54 +0000235#endif
bellard3fb2ded2003-06-24 13:22:59 +0000236 /* we compute the CPU state. We assume it will not
237 change during the whole generated block. */
bellarde4533c72003-06-15 19:51:39 +0000238#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000239 flags = (env->segs[R_CS].flags & DESC_B_MASK)
240 >> (DESC_B_SHIFT - GEN_FLAG_CODE32_SHIFT);
241 flags |= (env->segs[R_SS].flags & DESC_B_MASK)
242 >> (DESC_B_SHIFT - GEN_FLAG_SS32_SHIFT);
243 flags |= (((unsigned long)env->segs[R_DS].base |
244 (unsigned long)env->segs[R_ES].base |
245 (unsigned long)env->segs[R_SS].base) != 0) <<
246 GEN_FLAG_ADDSEG_SHIFT;
bellarda412ac52003-07-26 18:01:40 +0000247 if (env->cr[0] & CR0_PE_MASK) {
248 if (!(env->eflags & VM_MASK))
249 flags |= (env->segs[R_CS].selector & 3) <<
250 GEN_FLAG_CPL_SHIFT;
251 else
252 flags |= (1 << GEN_FLAG_VM_SHIFT);
bellard3fb2ded2003-06-24 13:22:59 +0000253 }
254 flags |= (env->eflags & (IOPL_MASK | TF_MASK));
255 cs_base = env->segs[R_CS].base;
256 pc = cs_base + env->eip;
bellarde4533c72003-06-15 19:51:39 +0000257#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000258 flags = 0;
259 cs_base = 0;
260 pc = (uint8_t *)env->regs[15];
bellarde4533c72003-06-15 19:51:39 +0000261#else
262#error unsupported CPU
263#endif
bellard3fb2ded2003-06-24 13:22:59 +0000264 tb = tb_find(&ptb, (unsigned long)pc, (unsigned long)cs_base,
265 flags);
bellardd4e81642003-05-25 16:46:15 +0000266 if (!tb) {
bellard3fb2ded2003-06-24 13:22:59 +0000267 spin_lock(&tb_lock);
268 /* if no translated code available, then translate it now */
bellardd4e81642003-05-25 16:46:15 +0000269 tb = tb_alloc((unsigned long)pc);
bellard3fb2ded2003-06-24 13:22:59 +0000270 if (!tb) {
271 /* flush must be done */
272 tb_flush();
273 /* cannot fail at this point */
274 tb = tb_alloc((unsigned long)pc);
275 /* don't forget to invalidate previous TB info */
276 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
277 T0 = 0;
278 }
279 tc_ptr = code_gen_ptr;
280 tb->tc_ptr = tc_ptr;
281 tb->cs_base = (unsigned long)cs_base;
282 tb->flags = flags;
bellard4c3a88a2003-07-26 12:06:08 +0000283 ret = cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size);
bellarde4533c72003-06-15 19:51:39 +0000284#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000285 /* XXX: suppress that, this is incorrect */
286 /* if invalid instruction, signal it */
287 if (ret != 0) {
288 /* NOTE: the tb is allocated but not linked, so we
289 can leave it */
290 spin_unlock(&tb_lock);
291 raise_exception(EXCP06_ILLOP);
292 }
bellarde4533c72003-06-15 19:51:39 +0000293#endif
bellard3fb2ded2003-06-24 13:22:59 +0000294 *ptb = tb;
295 tb->hash_next = NULL;
296 tb_link(tb);
297 code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1));
298 spin_unlock(&tb_lock);
299 }
bellard9d27abd2003-05-10 13:13:54 +0000300#ifdef DEBUG_EXEC
bellard3fb2ded2003-06-24 13:22:59 +0000301 if (loglevel) {
302 fprintf(logfile, "Trace 0x%08lx [0x%08lx] %s\n",
303 (long)tb->tc_ptr, (long)tb->pc,
304 lookup_symbol((void *)tb->pc));
305 }
bellard9d27abd2003-05-10 13:13:54 +0000306#endif
bellard8c6939c2003-06-09 15:28:00 +0000307#ifdef __sparc__
bellard3fb2ded2003-06-24 13:22:59 +0000308 T0 = tmp_T0;
bellard8c6939c2003-06-09 15:28:00 +0000309#endif
bellard3fb2ded2003-06-24 13:22:59 +0000310 /* see if we can patch the calling TB. XXX: remove TF test */
bellard1b21b622003-07-09 17:16:27 +0000311 if (T0 != 0
bellard3fb2ded2003-06-24 13:22:59 +0000312#if defined(TARGET_I386)
313 && !(env->eflags & TF_MASK)
bellardae228532003-05-13 18:59:59 +0000314#endif
bellard3fb2ded2003-06-24 13:22:59 +0000315 ) {
316 spin_lock(&tb_lock);
317 tb_add_jump((TranslationBlock *)(T0 & ~3), T0 & 3, tb);
318 spin_unlock(&tb_lock);
319 }
bellard3fb2ded2003-06-24 13:22:59 +0000320 tc_ptr = tb->tc_ptr;
bellard83479e72003-06-25 16:12:37 +0000321 env->current_tb = tb;
bellard3fb2ded2003-06-24 13:22:59 +0000322 /* execute the generated code */
323 gen_func = (void *)tc_ptr;
324#if defined(__sparc__)
325 __asm__ __volatile__("call %0\n\t"
326 "mov %%o7,%%i0"
327 : /* no outputs */
328 : "r" (gen_func)
329 : "i0", "i1", "i2", "i3", "i4", "i5");
330#elif defined(__arm__)
331 asm volatile ("mov pc, %0\n\t"
332 ".global exec_loop\n\t"
333 "exec_loop:\n\t"
334 : /* no outputs */
335 : "r" (gen_func)
336 : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14");
337#else
338 gen_func();
339#endif
bellard83479e72003-06-25 16:12:37 +0000340 env->current_tb = NULL;
bellard3fb2ded2003-06-24 13:22:59 +0000341 }
342 } else {
bellard7d132992003-03-06 23:23:54 +0000343 }
bellard3fb2ded2003-06-24 13:22:59 +0000344 } /* for(;;) */
345
bellard7d132992003-03-06 23:23:54 +0000346
bellarde4533c72003-06-15 19:51:39 +0000347#if defined(TARGET_I386)
bellard9de5e442003-03-23 16:49:39 +0000348 /* restore flags in standard format */
bellardfc2b4c42003-03-29 16:52:44 +0000349 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard9de5e442003-03-23 16:49:39 +0000350
bellard7d132992003-03-06 23:23:54 +0000351 /* restore global registers */
bellard04369ff2003-03-20 22:33:23 +0000352#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
bellarde4533c72003-06-15 19:51:39 +0000376#elif defined(TARGET_ARM)
bellard1b21b622003-07-09 17:16:27 +0000377 env->cpsr = compute_cpsr();
bellarde4533c72003-06-15 19:51:39 +0000378#else
379#error unsupported target CPU
380#endif
bellard8c6939c2003-06-09 15:28:00 +0000381#ifdef __sparc__
382 asm volatile ("mov %0, %%i7" : : "r" (saved_i7));
383#endif
bellard7d132992003-03-06 23:23:54 +0000384 T0 = saved_T0;
385 T1 = saved_T1;
bellarde4533c72003-06-15 19:51:39 +0000386 T2 = saved_T2;
bellard7d132992003-03-06 23:23:54 +0000387 env = saved_env;
388 return ret;
389}
bellard6dbad632003-03-16 18:05:05 +0000390
bellarde4533c72003-06-15 19:51:39 +0000391#if defined(TARGET_I386)
392
bellard6dbad632003-03-16 18:05:05 +0000393void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
394{
395 CPUX86State *saved_env;
396
397 saved_env = env;
398 env = s;
bellarda412ac52003-07-26 18:01:40 +0000399 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
bellarda513fe12003-05-27 23:29:48 +0000400 SegmentCache *sc;
401 selector &= 0xffff;
bellard970a87a2003-06-21 13:13:25 +0000402 sc = &env->segs[seg_reg];
bellarda513fe12003-05-27 23:29:48 +0000403 sc->base = (void *)(selector << 4);
404 sc->limit = 0xffff;
bellard3fb2ded2003-06-24 13:22:59 +0000405 sc->flags = 0;
bellard970a87a2003-06-21 13:13:25 +0000406 sc->selector = selector;
bellarda513fe12003-05-27 23:29:48 +0000407 } else {
408 load_seg(seg_reg, selector, 0);
409 }
bellard6dbad632003-03-16 18:05:05 +0000410 env = saved_env;
411}
bellard9de5e442003-03-23 16:49:39 +0000412
bellardd0a1ffc2003-05-29 20:04:28 +0000413void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32)
414{
415 CPUX86State *saved_env;
416
417 saved_env = env;
418 env = s;
419
420 helper_fsave(ptr, data32);
421
422 env = saved_env;
423}
424
425void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32)
426{
427 CPUX86State *saved_env;
428
429 saved_env = env;
430 env = s;
431
432 helper_frstor(ptr, data32);
433
434 env = saved_env;
435}
436
bellarde4533c72003-06-15 19:51:39 +0000437#endif /* TARGET_I386 */
438
bellard9de5e442003-03-23 16:49:39 +0000439#undef EAX
440#undef ECX
441#undef EDX
442#undef EBX
443#undef ESP
444#undef EBP
445#undef ESI
446#undef EDI
447#undef EIP
448#include <signal.h>
449#include <sys/ucontext.h>
450
bellard3fb2ded2003-06-24 13:22:59 +0000451#if defined(TARGET_I386)
452
bellardb56dad12003-05-08 15:38:04 +0000453/* 'pc' is the host PC at which the exception was raised. 'address' is
bellardfd6ce8f2003-05-14 19:00:11 +0000454 the effective address of the memory exception. 'is_write' is 1 if a
455 write caused the exception and otherwise 0'. 'old_set' is the
456 signal set which should be restored */
bellard2b413142003-05-14 23:01:10 +0000457static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
458 int is_write, sigset_t *old_set)
bellard9de5e442003-03-23 16:49:39 +0000459{
bellarda513fe12003-05-27 23:29:48 +0000460 TranslationBlock *tb;
461 int ret;
bellard68a79312003-06-30 13:12:32 +0000462
bellard83479e72003-06-25 16:12:37 +0000463 if (cpu_single_env)
464 env = cpu_single_env; /* XXX: find a correct solution for multithread */
bellardfd6ce8f2003-05-14 19:00:11 +0000465#if defined(DEBUG_SIGNAL)
bellard3fb2ded2003-06-24 13:22:59 +0000466 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellardfd6ce8f2003-05-14 19:00:11 +0000467 pc, address, is_write, *(unsigned long *)old_set);
bellard9de5e442003-03-23 16:49:39 +0000468#endif
bellard25eb4482003-05-14 21:50:54 +0000469 /* XXX: locking issue */
bellardfd6ce8f2003-05-14 19:00:11 +0000470 if (is_write && page_unprotect(address)) {
bellardfd6ce8f2003-05-14 19:00:11 +0000471 return 1;
472 }
bellard3fb2ded2003-06-24 13:22:59 +0000473 /* see if it is an MMU fault */
474 ret = cpu_x86_handle_mmu_fault(env, address, is_write);
475 if (ret < 0)
476 return 0; /* not an MMU fault */
477 if (ret == 0)
478 return 1; /* the MMU fault was handled without causing real CPU fault */
479 /* now we have a real cpu fault */
bellarda513fe12003-05-27 23:29:48 +0000480 tb = tb_find_pc(pc);
481 if (tb) {
bellard9de5e442003-03-23 16:49:39 +0000482 /* the PC is inside the translated code. It means that we have
483 a virtual CPU fault */
bellard3fb2ded2003-06-24 13:22:59 +0000484 cpu_restore_state(tb, env, pc);
485 }
486#if 0
487 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
488 env->eip, env->cr[2], env->error_code);
489#endif
490 /* we restore the process signal mask as the sigreturn should
491 do it (XXX: use sigsetjmp) */
492 sigprocmask(SIG_SETMASK, old_set, NULL);
493 raise_exception_err(EXCP0E_PAGE, env->error_code);
494 /* never comes here */
495 return 1;
496}
497
bellarde4533c72003-06-15 19:51:39 +0000498#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000499static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
500 int is_write, sigset_t *old_set)
501{
502 /* XXX: do more */
503 return 0;
504}
bellarde4533c72003-06-15 19:51:39 +0000505#else
506#error unsupported target CPU
507#endif
bellard9de5e442003-03-23 16:49:39 +0000508
bellard2b413142003-05-14 23:01:10 +0000509#if defined(__i386__)
510
bellarde4533c72003-06-15 19:51:39 +0000511int cpu_signal_handler(int host_signum, struct siginfo *info,
512 void *puc)
bellard9de5e442003-03-23 16:49:39 +0000513{
bellard9de5e442003-03-23 16:49:39 +0000514 struct ucontext *uc = puc;
515 unsigned long pc;
bellard9de5e442003-03-23 16:49:39 +0000516
bellardd691f662003-03-24 21:58:34 +0000517#ifndef REG_EIP
518/* for glibc 2.1 */
bellardfd6ce8f2003-05-14 19:00:11 +0000519#define REG_EIP EIP
520#define REG_ERR ERR
521#define REG_TRAPNO TRAPNO
bellardd691f662003-03-24 21:58:34 +0000522#endif
bellardfc2b4c42003-03-29 16:52:44 +0000523 pc = uc->uc_mcontext.gregs[REG_EIP];
bellardfd6ce8f2003-05-14 19:00:11 +0000524 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
525 uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ?
526 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
bellard2b413142003-05-14 23:01:10 +0000527 &uc->uc_sigmask);
528}
529
bellard25eb4482003-05-14 21:50:54 +0000530#elif defined(__powerpc)
bellard2b413142003-05-14 23:01:10 +0000531
bellarde4533c72003-06-15 19:51:39 +0000532int cpu_signal_handler(int host_signum, struct siginfo *info,
533 void *puc)
bellard2b413142003-05-14 23:01:10 +0000534{
bellard25eb4482003-05-14 21:50:54 +0000535 struct ucontext *uc = puc;
536 struct pt_regs *regs = uc->uc_mcontext.regs;
537 unsigned long pc;
bellard25eb4482003-05-14 21:50:54 +0000538 int is_write;
539
540 pc = regs->nip;
bellard25eb4482003-05-14 21:50:54 +0000541 is_write = 0;
542#if 0
543 /* ppc 4xx case */
544 if (regs->dsisr & 0x00800000)
545 is_write = 1;
bellard9de5e442003-03-23 16:49:39 +0000546#else
bellard25eb4482003-05-14 21:50:54 +0000547 if (regs->trap != 0x400 && (regs->dsisr & 0x02000000))
548 is_write = 1;
549#endif
550 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellard2b413142003-05-14 23:01:10 +0000551 is_write, &uc->uc_sigmask);
bellard9de5e442003-03-23 16:49:39 +0000552}
bellard2b413142003-05-14 23:01:10 +0000553
bellard2f87c602003-06-02 20:38:09 +0000554#elif defined(__alpha__)
555
bellarde4533c72003-06-15 19:51:39 +0000556int cpu_signal_handler(int host_signum, struct siginfo *info,
bellard2f87c602003-06-02 20:38:09 +0000557 void *puc)
558{
559 struct ucontext *uc = puc;
560 uint32_t *pc = uc->uc_mcontext.sc_pc;
561 uint32_t insn = *pc;
562 int is_write = 0;
563
bellard8c6939c2003-06-09 15:28:00 +0000564 /* XXX: need kernel patch to get write flag faster */
bellard2f87c602003-06-02 20:38:09 +0000565 switch (insn >> 26) {
566 case 0x0d: // stw
567 case 0x0e: // stb
568 case 0x0f: // stq_u
569 case 0x24: // stf
570 case 0x25: // stg
571 case 0x26: // sts
572 case 0x27: // stt
573 case 0x2c: // stl
574 case 0x2d: // stq
575 case 0x2e: // stl_c
576 case 0x2f: // stq_c
577 is_write = 1;
578 }
579
580 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
581 is_write, &uc->uc_sigmask);
582}
bellard8c6939c2003-06-09 15:28:00 +0000583#elif defined(__sparc__)
584
bellarde4533c72003-06-15 19:51:39 +0000585int cpu_signal_handler(int host_signum, struct siginfo *info,
586 void *puc)
bellard8c6939c2003-06-09 15:28:00 +0000587{
588 uint32_t *regs = (uint32_t *)(info + 1);
589 void *sigmask = (regs + 20);
590 unsigned long pc;
591 int is_write;
592 uint32_t insn;
593
594 /* XXX: is there a standard glibc define ? */
595 pc = regs[1];
596 /* XXX: need kernel patch to get write flag faster */
597 is_write = 0;
598 insn = *(uint32_t *)pc;
599 if ((insn >> 30) == 3) {
600 switch((insn >> 19) & 0x3f) {
601 case 0x05: // stb
602 case 0x06: // sth
603 case 0x04: // st
604 case 0x07: // std
605 case 0x24: // stf
606 case 0x27: // stdf
607 case 0x25: // stfsr
608 is_write = 1;
609 break;
610 }
611 }
612 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
613 is_write, sigmask);
614}
615
616#elif defined(__arm__)
617
bellarde4533c72003-06-15 19:51:39 +0000618int cpu_signal_handler(int host_signum, struct siginfo *info,
619 void *puc)
bellard8c6939c2003-06-09 15:28:00 +0000620{
621 struct ucontext *uc = puc;
622 unsigned long pc;
623 int is_write;
624
625 pc = uc->uc_mcontext.gregs[R15];
626 /* XXX: compute is_write */
627 is_write = 0;
628 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
629 is_write,
630 &uc->uc_sigmask);
631}
632
bellard2b413142003-05-14 23:01:10 +0000633#else
634
bellard3fb2ded2003-06-24 13:22:59 +0000635#error host CPU specific signal handler needed
bellard2b413142003-05-14 23:01:10 +0000636
637#endif