blob: 035f104145d7cdbe813b1abbc62bb9c7b9ddb5e0 [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"
bellard93ac68b2003-09-30 20:57:29 +000021#include "exec.h"
bellard956034d2003-04-29 20:40:53 +000022#include "disas.h"
bellard7d132992003-03-06 23:23:54 +000023
bellarddc990652003-03-19 00:00:28 +000024//#define DEBUG_EXEC
bellard9de5e442003-03-23 16:49:39 +000025//#define DEBUG_SIGNAL
bellard7d132992003-03-06 23:23:54 +000026
bellard93ac68b2003-09-30 20:57:29 +000027#if defined(TARGET_ARM) || defined(TARGET_SPARC)
bellarde4533c72003-06-15 19:51:39 +000028/* XXX: unify with i386 target */
29void cpu_loop_exit(void)
30{
31 longjmp(env->jmp_env, 1);
32}
33#endif
34
bellard7d132992003-03-06 23:23:54 +000035/* main execution loop */
36
bellarde4533c72003-06-15 19:51:39 +000037int cpu_exec(CPUState *env1)
bellard7d132992003-03-06 23:23:54 +000038{
bellarde4533c72003-06-15 19:51:39 +000039 int saved_T0, saved_T1, saved_T2;
40 CPUState *saved_env;
bellard04369ff2003-03-20 22:33:23 +000041#ifdef reg_EAX
42 int saved_EAX;
43#endif
44#ifdef reg_ECX
45 int saved_ECX;
46#endif
47#ifdef reg_EDX
48 int saved_EDX;
49#endif
50#ifdef reg_EBX
51 int saved_EBX;
52#endif
53#ifdef reg_ESP
54 int saved_ESP;
55#endif
56#ifdef reg_EBP
57 int saved_EBP;
58#endif
59#ifdef reg_ESI
60 int saved_ESI;
61#endif
62#ifdef reg_EDI
63 int saved_EDI;
64#endif
bellard8c6939c2003-06-09 15:28:00 +000065#ifdef __sparc__
66 int saved_i7, tmp_T0;
67#endif
bellard68a79312003-06-30 13:12:32 +000068 int code_gen_size, ret, interrupt_request;
bellard7d132992003-03-06 23:23:54 +000069 void (*gen_func)(void);
bellard9de5e442003-03-23 16:49:39 +000070 TranslationBlock *tb, **ptb;
bellarddab2ed92003-03-22 15:23:14 +000071 uint8_t *tc_ptr, *cs_base, *pc;
bellard6dbad632003-03-16 18:05:05 +000072 unsigned int flags;
bellard8c6939c2003-06-09 15:28:00 +000073
bellard7d132992003-03-06 23:23:54 +000074 /* first we save global registers */
75 saved_T0 = T0;
76 saved_T1 = T1;
bellarde4533c72003-06-15 19:51:39 +000077 saved_T2 = T2;
bellard7d132992003-03-06 23:23:54 +000078 saved_env = env;
79 env = env1;
bellarde4533c72003-06-15 19:51:39 +000080#ifdef __sparc__
81 /* we also save i7 because longjmp may not restore it */
82 asm volatile ("mov %%i7, %0" : "=r" (saved_i7));
83#endif
84
85#if defined(TARGET_I386)
bellard04369ff2003-03-20 22:33:23 +000086#ifdef reg_EAX
87 saved_EAX = EAX;
88 EAX = env->regs[R_EAX];
89#endif
90#ifdef reg_ECX
91 saved_ECX = ECX;
92 ECX = env->regs[R_ECX];
93#endif
94#ifdef reg_EDX
95 saved_EDX = EDX;
96 EDX = env->regs[R_EDX];
97#endif
98#ifdef reg_EBX
99 saved_EBX = EBX;
100 EBX = env->regs[R_EBX];
101#endif
102#ifdef reg_ESP
103 saved_ESP = ESP;
104 ESP = env->regs[R_ESP];
105#endif
106#ifdef reg_EBP
107 saved_EBP = EBP;
108 EBP = env->regs[R_EBP];
109#endif
110#ifdef reg_ESI
111 saved_ESI = ESI;
112 ESI = env->regs[R_ESI];
113#endif
114#ifdef reg_EDI
115 saved_EDI = EDI;
116 EDI = env->regs[R_EDI];
117#endif
bellard7d132992003-03-06 23:23:54 +0000118
bellard9de5e442003-03-23 16:49:39 +0000119 /* put eflags in CPU temporary format */
bellardfc2b4c42003-03-29 16:52:44 +0000120 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
121 DF = 1 - (2 * ((env->eflags >> 10) & 1));
bellard9de5e442003-03-23 16:49:39 +0000122 CC_OP = CC_OP_EFLAGS;
bellardfc2b4c42003-03-29 16:52:44 +0000123 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000124#elif defined(TARGET_ARM)
125 {
126 unsigned int psr;
127 psr = env->cpsr;
128 env->CF = (psr >> 29) & 1;
129 env->NZF = (psr & 0xc0000000) ^ 0x40000000;
130 env->VF = (psr << 3) & 0x80000000;
131 env->cpsr = psr & ~0xf0000000;
132 }
bellard93ac68b2003-09-30 20:57:29 +0000133#elif defined(TARGET_SPARC)
bellarde4533c72003-06-15 19:51:39 +0000134#else
135#error unsupported target CPU
136#endif
bellard3fb2ded2003-06-24 13:22:59 +0000137 env->exception_index = -1;
bellard9d27abd2003-05-10 13:13:54 +0000138
bellard7d132992003-03-06 23:23:54 +0000139 /* prepare setjmp context for exception handling */
bellard3fb2ded2003-06-24 13:22:59 +0000140 for(;;) {
141 if (setjmp(env->jmp_env) == 0) {
142 /* if an exception is pending, we execute it here */
143 if (env->exception_index >= 0) {
144 if (env->exception_index >= EXCP_INTERRUPT) {
145 /* exit request from the cpu execution loop */
146 ret = env->exception_index;
147 break;
148 } else if (env->user_mode_only) {
149 /* if user mode only, we simulate a fake exception
150 which will be hanlded outside the cpu execution
151 loop */
bellard83479e72003-06-25 16:12:37 +0000152#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000153 do_interrupt_user(env->exception_index,
154 env->exception_is_int,
155 env->error_code,
156 env->exception_next_eip);
bellard83479e72003-06-25 16:12:37 +0000157#endif
bellard3fb2ded2003-06-24 13:22:59 +0000158 ret = env->exception_index;
159 break;
160 } else {
bellard83479e72003-06-25 16:12:37 +0000161#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000162 /* simulate a real cpu exception. On i386, it can
163 trigger new exceptions, but we do not handle
164 double or triple faults yet. */
165 do_interrupt(env->exception_index,
166 env->exception_is_int,
167 env->error_code,
bellardd05e66d2003-08-20 21:34:35 +0000168 env->exception_next_eip, 0);
bellard83479e72003-06-25 16:12:37 +0000169#endif
bellard3fb2ded2003-06-24 13:22:59 +0000170 }
171 env->exception_index = -1;
bellard9de5e442003-03-23 16:49:39 +0000172 }
bellard3fb2ded2003-06-24 13:22:59 +0000173 T0 = 0; /* force lookup of first TB */
174 for(;;) {
175#ifdef __sparc__
176 /* g1 can be modified by some libc? functions */
177 tmp_T0 = T0;
178#endif
bellard68a79312003-06-30 13:12:32 +0000179 interrupt_request = env->interrupt_request;
bellard2e255c62003-08-21 23:25:21 +0000180 if (__builtin_expect(interrupt_request, 0)) {
bellard68a79312003-06-30 13:12:32 +0000181#if defined(TARGET_I386)
182 /* if hardware interrupt pending, we execute it */
183 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
bellard3f337312003-08-20 23:02:09 +0000184 (env->eflags & IF_MASK) &&
185 !(env->hflags & HF_INHIBIT_IRQ_MASK)) {
bellard68a79312003-06-30 13:12:32 +0000186 int intno;
187 intno = cpu_x86_get_pic_interrupt(env);
188 if (loglevel) {
189 fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno);
190 }
bellardd05e66d2003-08-20 21:34:35 +0000191 do_interrupt(intno, 0, 0, 0, 1);
bellard68a79312003-06-30 13:12:32 +0000192 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
bellard907a5b22003-06-30 23:18:22 +0000193 /* ensure that no TB jump will be modified as
194 the program flow was changed */
195#ifdef __sparc__
196 tmp_T0 = 0;
197#else
198 T0 = 0;
199#endif
bellard68a79312003-06-30 13:12:32 +0000200 }
201#endif
202 if (interrupt_request & CPU_INTERRUPT_EXIT) {
203 env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
204 env->exception_index = EXCP_INTERRUPT;
205 cpu_loop_exit();
206 }
bellard3fb2ded2003-06-24 13:22:59 +0000207 }
208#ifdef DEBUG_EXEC
209 if (loglevel) {
210#if defined(TARGET_I386)
211 /* restore flags in standard format */
212 env->regs[R_EAX] = EAX;
213 env->regs[R_EBX] = EBX;
214 env->regs[R_ECX] = ECX;
215 env->regs[R_EDX] = EDX;
216 env->regs[R_ESI] = ESI;
217 env->regs[R_EDI] = EDI;
218 env->regs[R_EBP] = EBP;
219 env->regs[R_ESP] = ESP;
220 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard68a79312003-06-30 13:12:32 +0000221 cpu_x86_dump_state(env, logfile, X86_DUMP_CCOP);
bellard3fb2ded2003-06-24 13:22:59 +0000222 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000223#elif defined(TARGET_ARM)
bellard1b21b622003-07-09 17:16:27 +0000224 env->cpsr = compute_cpsr();
bellard3fb2ded2003-06-24 13:22:59 +0000225 cpu_arm_dump_state(env, logfile, 0);
bellard1b21b622003-07-09 17:16:27 +0000226 env->cpsr &= ~0xf0000000;
bellard93ac68b2003-09-30 20:57:29 +0000227#elif defined(TARGET_SPARC)
228 cpu_sparc_dump_state (env, logfile, 0);
bellarde4533c72003-06-15 19:51:39 +0000229#else
230#error unsupported target CPU
231#endif
bellard3fb2ded2003-06-24 13:22:59 +0000232 }
bellard7d132992003-03-06 23:23:54 +0000233#endif
bellard3f337312003-08-20 23:02:09 +0000234 /* we record a subset of the CPU state. It will
235 always be the same before a given translated block
236 is executed. */
bellarde4533c72003-06-15 19:51:39 +0000237#if defined(TARGET_I386)
bellard2e255c62003-08-21 23:25:21 +0000238 flags = env->hflags;
bellard3f337312003-08-20 23:02:09 +0000239 flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK));
bellard3fb2ded2003-06-24 13:22:59 +0000240 cs_base = env->segs[R_CS].base;
241 pc = cs_base + env->eip;
bellarde4533c72003-06-15 19:51:39 +0000242#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000243 flags = 0;
244 cs_base = 0;
245 pc = (uint8_t *)env->regs[15];
bellard93ac68b2003-09-30 20:57:29 +0000246#elif defined(TARGET_SPARC)
247 flags = 0;
248 cs_base = 0;
249 if (env->npc) {
250 env->pc = env->npc;
251 env->npc = 0;
252 }
253 pc = (uint8_t *) env->pc;
bellarde4533c72003-06-15 19:51:39 +0000254#else
255#error unsupported CPU
256#endif
bellard3fb2ded2003-06-24 13:22:59 +0000257 tb = tb_find(&ptb, (unsigned long)pc, (unsigned long)cs_base,
258 flags);
bellardd4e81642003-05-25 16:46:15 +0000259 if (!tb) {
bellard3fb2ded2003-06-24 13:22:59 +0000260 spin_lock(&tb_lock);
261 /* if no translated code available, then translate it now */
bellardd4e81642003-05-25 16:46:15 +0000262 tb = tb_alloc((unsigned long)pc);
bellard3fb2ded2003-06-24 13:22:59 +0000263 if (!tb) {
264 /* flush must be done */
265 tb_flush();
266 /* cannot fail at this point */
267 tb = tb_alloc((unsigned long)pc);
268 /* don't forget to invalidate previous TB info */
269 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
270 T0 = 0;
271 }
272 tc_ptr = code_gen_ptr;
273 tb->tc_ptr = tc_ptr;
274 tb->cs_base = (unsigned long)cs_base;
275 tb->flags = flags;
bellardfacc68b2003-09-17 22:51:18 +0000276 cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size);
bellard3fb2ded2003-06-24 13:22:59 +0000277 *ptb = tb;
278 tb->hash_next = NULL;
279 tb_link(tb);
280 code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1));
281 spin_unlock(&tb_lock);
282 }
bellard9d27abd2003-05-10 13:13:54 +0000283#ifdef DEBUG_EXEC
bellard3fb2ded2003-06-24 13:22:59 +0000284 if (loglevel) {
285 fprintf(logfile, "Trace 0x%08lx [0x%08lx] %s\n",
286 (long)tb->tc_ptr, (long)tb->pc,
287 lookup_symbol((void *)tb->pc));
288 }
bellard9d27abd2003-05-10 13:13:54 +0000289#endif
bellard8c6939c2003-06-09 15:28:00 +0000290#ifdef __sparc__
bellard3fb2ded2003-06-24 13:22:59 +0000291 T0 = tmp_T0;
bellard8c6939c2003-06-09 15:28:00 +0000292#endif
bellardfacc68b2003-09-17 22:51:18 +0000293 /* see if we can patch the calling TB. */
294 if (T0 != 0) {
bellard3fb2ded2003-06-24 13:22:59 +0000295 spin_lock(&tb_lock);
296 tb_add_jump((TranslationBlock *)(T0 & ~3), T0 & 3, tb);
297 spin_unlock(&tb_lock);
298 }
bellard3fb2ded2003-06-24 13:22:59 +0000299 tc_ptr = tb->tc_ptr;
bellard83479e72003-06-25 16:12:37 +0000300 env->current_tb = tb;
bellard3fb2ded2003-06-24 13:22:59 +0000301 /* execute the generated code */
302 gen_func = (void *)tc_ptr;
303#if defined(__sparc__)
304 __asm__ __volatile__("call %0\n\t"
305 "mov %%o7,%%i0"
306 : /* no outputs */
307 : "r" (gen_func)
308 : "i0", "i1", "i2", "i3", "i4", "i5");
309#elif defined(__arm__)
310 asm volatile ("mov pc, %0\n\t"
311 ".global exec_loop\n\t"
312 "exec_loop:\n\t"
313 : /* no outputs */
314 : "r" (gen_func)
315 : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14");
316#else
317 gen_func();
318#endif
bellard83479e72003-06-25 16:12:37 +0000319 env->current_tb = NULL;
bellard4cbf74b2003-08-10 21:48:43 +0000320 /* reset soft MMU for next block (it can currently
321 only be set by a memory fault) */
322#if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU)
bellard3f337312003-08-20 23:02:09 +0000323 if (env->hflags & HF_SOFTMMU_MASK) {
324 env->hflags &= ~HF_SOFTMMU_MASK;
bellard4cbf74b2003-08-10 21:48:43 +0000325 /* do not allow linking to another block */
326 T0 = 0;
327 }
328#endif
bellard3fb2ded2003-06-24 13:22:59 +0000329 }
330 } else {
bellard7d132992003-03-06 23:23:54 +0000331 }
bellard3fb2ded2003-06-24 13:22:59 +0000332 } /* for(;;) */
333
bellard7d132992003-03-06 23:23:54 +0000334
bellarde4533c72003-06-15 19:51:39 +0000335#if defined(TARGET_I386)
bellard9de5e442003-03-23 16:49:39 +0000336 /* restore flags in standard format */
bellardfc2b4c42003-03-29 16:52:44 +0000337 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard9de5e442003-03-23 16:49:39 +0000338
bellard7d132992003-03-06 23:23:54 +0000339 /* restore global registers */
bellard04369ff2003-03-20 22:33:23 +0000340#ifdef reg_EAX
341 EAX = saved_EAX;
342#endif
343#ifdef reg_ECX
344 ECX = saved_ECX;
345#endif
346#ifdef reg_EDX
347 EDX = saved_EDX;
348#endif
349#ifdef reg_EBX
350 EBX = saved_EBX;
351#endif
352#ifdef reg_ESP
353 ESP = saved_ESP;
354#endif
355#ifdef reg_EBP
356 EBP = saved_EBP;
357#endif
358#ifdef reg_ESI
359 ESI = saved_ESI;
360#endif
361#ifdef reg_EDI
362 EDI = saved_EDI;
363#endif
bellarde4533c72003-06-15 19:51:39 +0000364#elif defined(TARGET_ARM)
bellard1b21b622003-07-09 17:16:27 +0000365 env->cpsr = compute_cpsr();
bellard93ac68b2003-09-30 20:57:29 +0000366#elif defined(TARGET_SPARC)
bellarde4533c72003-06-15 19:51:39 +0000367#else
368#error unsupported target CPU
369#endif
bellard8c6939c2003-06-09 15:28:00 +0000370#ifdef __sparc__
371 asm volatile ("mov %0, %%i7" : : "r" (saved_i7));
372#endif
bellard7d132992003-03-06 23:23:54 +0000373 T0 = saved_T0;
374 T1 = saved_T1;
bellarde4533c72003-06-15 19:51:39 +0000375 T2 = saved_T2;
bellard7d132992003-03-06 23:23:54 +0000376 env = saved_env;
377 return ret;
378}
bellard6dbad632003-03-16 18:05:05 +0000379
bellarde4533c72003-06-15 19:51:39 +0000380#if defined(TARGET_I386)
381
bellard6dbad632003-03-16 18:05:05 +0000382void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
383{
384 CPUX86State *saved_env;
385
386 saved_env = env;
387 env = s;
bellarda412ac52003-07-26 18:01:40 +0000388 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
bellarda513fe12003-05-27 23:29:48 +0000389 selector &= 0xffff;
bellard2e255c62003-08-21 23:25:21 +0000390 cpu_x86_load_seg_cache(env, seg_reg, selector,
391 (uint8_t *)(selector << 4), 0xffff, 0);
bellarda513fe12003-05-27 23:29:48 +0000392 } else {
393 load_seg(seg_reg, selector, 0);
394 }
bellard6dbad632003-03-16 18:05:05 +0000395 env = saved_env;
396}
bellard9de5e442003-03-23 16:49:39 +0000397
bellardd0a1ffc2003-05-29 20:04:28 +0000398void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32)
399{
400 CPUX86State *saved_env;
401
402 saved_env = env;
403 env = s;
404
405 helper_fsave(ptr, data32);
406
407 env = saved_env;
408}
409
410void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32)
411{
412 CPUX86State *saved_env;
413
414 saved_env = env;
415 env = s;
416
417 helper_frstor(ptr, data32);
418
419 env = saved_env;
420}
421
bellarde4533c72003-06-15 19:51:39 +0000422#endif /* TARGET_I386 */
423
bellard9de5e442003-03-23 16:49:39 +0000424#undef EAX
425#undef ECX
426#undef EDX
427#undef EBX
428#undef ESP
429#undef EBP
430#undef ESI
431#undef EDI
432#undef EIP
433#include <signal.h>
434#include <sys/ucontext.h>
435
bellard3fb2ded2003-06-24 13:22:59 +0000436#if defined(TARGET_I386)
437
bellardb56dad12003-05-08 15:38:04 +0000438/* 'pc' is the host PC at which the exception was raised. 'address' is
bellardfd6ce8f2003-05-14 19:00:11 +0000439 the effective address of the memory exception. 'is_write' is 1 if a
440 write caused the exception and otherwise 0'. 'old_set' is the
441 signal set which should be restored */
bellard2b413142003-05-14 23:01:10 +0000442static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
443 int is_write, sigset_t *old_set)
bellard9de5e442003-03-23 16:49:39 +0000444{
bellarda513fe12003-05-27 23:29:48 +0000445 TranslationBlock *tb;
446 int ret;
bellard68a79312003-06-30 13:12:32 +0000447
bellard83479e72003-06-25 16:12:37 +0000448 if (cpu_single_env)
449 env = cpu_single_env; /* XXX: find a correct solution for multithread */
bellardfd6ce8f2003-05-14 19:00:11 +0000450#if defined(DEBUG_SIGNAL)
bellard3fb2ded2003-06-24 13:22:59 +0000451 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellardfd6ce8f2003-05-14 19:00:11 +0000452 pc, address, is_write, *(unsigned long *)old_set);
bellard9de5e442003-03-23 16:49:39 +0000453#endif
bellard25eb4482003-05-14 21:50:54 +0000454 /* XXX: locking issue */
bellardfd6ce8f2003-05-14 19:00:11 +0000455 if (is_write && page_unprotect(address)) {
bellardfd6ce8f2003-05-14 19:00:11 +0000456 return 1;
457 }
bellard3fb2ded2003-06-24 13:22:59 +0000458 /* see if it is an MMU fault */
459 ret = cpu_x86_handle_mmu_fault(env, address, is_write);
460 if (ret < 0)
461 return 0; /* not an MMU fault */
462 if (ret == 0)
463 return 1; /* the MMU fault was handled without causing real CPU fault */
464 /* now we have a real cpu fault */
bellarda513fe12003-05-27 23:29:48 +0000465 tb = tb_find_pc(pc);
466 if (tb) {
bellard9de5e442003-03-23 16:49:39 +0000467 /* the PC is inside the translated code. It means that we have
468 a virtual CPU fault */
bellard3fb2ded2003-06-24 13:22:59 +0000469 cpu_restore_state(tb, env, pc);
470 }
bellard4cbf74b2003-08-10 21:48:43 +0000471 if (ret == 1) {
bellard3fb2ded2003-06-24 13:22:59 +0000472#if 0
bellard4cbf74b2003-08-10 21:48:43 +0000473 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
474 env->eip, env->cr[2], env->error_code);
bellard3fb2ded2003-06-24 13:22:59 +0000475#endif
bellard4cbf74b2003-08-10 21:48:43 +0000476 /* we restore the process signal mask as the sigreturn should
477 do it (XXX: use sigsetjmp) */
478 sigprocmask(SIG_SETMASK, old_set, NULL);
479 raise_exception_err(EXCP0E_PAGE, env->error_code);
480 } else {
481 /* activate soft MMU for this block */
bellard3f337312003-08-20 23:02:09 +0000482 env->hflags |= HF_SOFTMMU_MASK;
bellard4cbf74b2003-08-10 21:48:43 +0000483 sigprocmask(SIG_SETMASK, old_set, NULL);
484 cpu_loop_exit();
485 }
bellard3fb2ded2003-06-24 13:22:59 +0000486 /* never comes here */
487 return 1;
488}
489
bellarde4533c72003-06-15 19:51:39 +0000490#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000491static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
492 int is_write, sigset_t *old_set)
493{
494 /* XXX: do more */
495 return 0;
496}
bellard93ac68b2003-09-30 20:57:29 +0000497#elif defined(TARGET_SPARC)
498static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
499 int is_write, sigset_t *old_set)
500{
501 return 0;
502}
bellarde4533c72003-06-15 19:51:39 +0000503#else
504#error unsupported target CPU
505#endif
bellard9de5e442003-03-23 16:49:39 +0000506
bellard2b413142003-05-14 23:01:10 +0000507#if defined(__i386__)
508
bellarde4533c72003-06-15 19:51:39 +0000509int cpu_signal_handler(int host_signum, struct siginfo *info,
510 void *puc)
bellard9de5e442003-03-23 16:49:39 +0000511{
bellard9de5e442003-03-23 16:49:39 +0000512 struct ucontext *uc = puc;
513 unsigned long pc;
bellard9de5e442003-03-23 16:49:39 +0000514
bellardd691f662003-03-24 21:58:34 +0000515#ifndef REG_EIP
516/* for glibc 2.1 */
bellardfd6ce8f2003-05-14 19:00:11 +0000517#define REG_EIP EIP
518#define REG_ERR ERR
519#define REG_TRAPNO TRAPNO
bellardd691f662003-03-24 21:58:34 +0000520#endif
bellardfc2b4c42003-03-29 16:52:44 +0000521 pc = uc->uc_mcontext.gregs[REG_EIP];
bellardfd6ce8f2003-05-14 19:00:11 +0000522 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
523 uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ?
524 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
bellard2b413142003-05-14 23:01:10 +0000525 &uc->uc_sigmask);
526}
527
bellard25eb4482003-05-14 21:50:54 +0000528#elif defined(__powerpc)
bellard2b413142003-05-14 23:01:10 +0000529
bellarde4533c72003-06-15 19:51:39 +0000530int cpu_signal_handler(int host_signum, struct siginfo *info,
531 void *puc)
bellard2b413142003-05-14 23:01:10 +0000532{
bellard25eb4482003-05-14 21:50:54 +0000533 struct ucontext *uc = puc;
534 struct pt_regs *regs = uc->uc_mcontext.regs;
535 unsigned long pc;
bellard25eb4482003-05-14 21:50:54 +0000536 int is_write;
537
538 pc = regs->nip;
bellard25eb4482003-05-14 21:50:54 +0000539 is_write = 0;
540#if 0
541 /* ppc 4xx case */
542 if (regs->dsisr & 0x00800000)
543 is_write = 1;
bellard9de5e442003-03-23 16:49:39 +0000544#else
bellard25eb4482003-05-14 21:50:54 +0000545 if (regs->trap != 0x400 && (regs->dsisr & 0x02000000))
546 is_write = 1;
547#endif
548 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellard2b413142003-05-14 23:01:10 +0000549 is_write, &uc->uc_sigmask);
bellard9de5e442003-03-23 16:49:39 +0000550}
bellard2b413142003-05-14 23:01:10 +0000551
bellard2f87c602003-06-02 20:38:09 +0000552#elif defined(__alpha__)
553
bellarde4533c72003-06-15 19:51:39 +0000554int cpu_signal_handler(int host_signum, struct siginfo *info,
bellard2f87c602003-06-02 20:38:09 +0000555 void *puc)
556{
557 struct ucontext *uc = puc;
558 uint32_t *pc = uc->uc_mcontext.sc_pc;
559 uint32_t insn = *pc;
560 int is_write = 0;
561
bellard8c6939c2003-06-09 15:28:00 +0000562 /* XXX: need kernel patch to get write flag faster */
bellard2f87c602003-06-02 20:38:09 +0000563 switch (insn >> 26) {
564 case 0x0d: // stw
565 case 0x0e: // stb
566 case 0x0f: // stq_u
567 case 0x24: // stf
568 case 0x25: // stg
569 case 0x26: // sts
570 case 0x27: // stt
571 case 0x2c: // stl
572 case 0x2d: // stq
573 case 0x2e: // stl_c
574 case 0x2f: // stq_c
575 is_write = 1;
576 }
577
578 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
579 is_write, &uc->uc_sigmask);
580}
bellard8c6939c2003-06-09 15:28:00 +0000581#elif defined(__sparc__)
582
bellarde4533c72003-06-15 19:51:39 +0000583int cpu_signal_handler(int host_signum, struct siginfo *info,
584 void *puc)
bellard8c6939c2003-06-09 15:28:00 +0000585{
586 uint32_t *regs = (uint32_t *)(info + 1);
587 void *sigmask = (regs + 20);
588 unsigned long pc;
589 int is_write;
590 uint32_t insn;
591
592 /* XXX: is there a standard glibc define ? */
593 pc = regs[1];
594 /* XXX: need kernel patch to get write flag faster */
595 is_write = 0;
596 insn = *(uint32_t *)pc;
597 if ((insn >> 30) == 3) {
598 switch((insn >> 19) & 0x3f) {
599 case 0x05: // stb
600 case 0x06: // sth
601 case 0x04: // st
602 case 0x07: // std
603 case 0x24: // stf
604 case 0x27: // stdf
605 case 0x25: // stfsr
606 is_write = 1;
607 break;
608 }
609 }
610 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
611 is_write, sigmask);
612}
613
614#elif defined(__arm__)
615
bellarde4533c72003-06-15 19:51:39 +0000616int cpu_signal_handler(int host_signum, struct siginfo *info,
617 void *puc)
bellard8c6939c2003-06-09 15:28:00 +0000618{
619 struct ucontext *uc = puc;
620 unsigned long pc;
621 int is_write;
622
623 pc = uc->uc_mcontext.gregs[R15];
624 /* XXX: compute is_write */
625 is_write = 0;
626 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
627 is_write,
628 &uc->uc_sigmask);
629}
630
bellard38e584a2003-08-10 22:14:22 +0000631#elif defined(__mc68000)
632
633int cpu_signal_handler(int host_signum, struct siginfo *info,
634 void *puc)
635{
636 struct ucontext *uc = puc;
637 unsigned long pc;
638 int is_write;
639
640 pc = uc->uc_mcontext.gregs[16];
641 /* XXX: compute is_write */
642 is_write = 0;
643 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
644 is_write,
645 &uc->uc_sigmask);
646}
647
bellard2b413142003-05-14 23:01:10 +0000648#else
649
bellard3fb2ded2003-06-24 13:22:59 +0000650#error host CPU specific signal handler needed
bellard2b413142003-05-14 23:01:10 +0000651
652#endif