blob: 5507c04dd04bfe5c95ccb516e156e65346d35744 [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
bellard36bdbe52003-11-19 22:12:02 +000024int tb_invalidated_flag;
25
bellarddc990652003-03-19 00:00:28 +000026//#define DEBUG_EXEC
bellard9de5e442003-03-23 16:49:39 +000027//#define DEBUG_SIGNAL
bellard7d132992003-03-06 23:23:54 +000028
bellard93ac68b2003-09-30 20:57:29 +000029#if defined(TARGET_ARM) || defined(TARGET_SPARC)
bellarde4533c72003-06-15 19:51:39 +000030/* XXX: unify with i386 target */
31void cpu_loop_exit(void)
32{
33 longjmp(env->jmp_env, 1);
34}
35#endif
36
bellard7d132992003-03-06 23:23:54 +000037/* main execution loop */
38
bellarde4533c72003-06-15 19:51:39 +000039int cpu_exec(CPUState *env1)
bellard7d132992003-03-06 23:23:54 +000040{
bellarde4533c72003-06-15 19:51:39 +000041 int saved_T0, saved_T1, saved_T2;
42 CPUState *saved_env;
bellard04369ff2003-03-20 22:33:23 +000043#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
bellard8c6939c2003-06-09 15:28:00 +000067#ifdef __sparc__
68 int saved_i7, tmp_T0;
69#endif
bellard68a79312003-06-30 13:12:32 +000070 int code_gen_size, ret, interrupt_request;
bellard7d132992003-03-06 23:23:54 +000071 void (*gen_func)(void);
bellard9de5e442003-03-23 16:49:39 +000072 TranslationBlock *tb, **ptb;
bellarddab2ed92003-03-22 15:23:14 +000073 uint8_t *tc_ptr, *cs_base, *pc;
bellard6dbad632003-03-16 18:05:05 +000074 unsigned int flags;
bellard8c6939c2003-06-09 15:28:00 +000075
bellard7d132992003-03-06 23:23:54 +000076 /* first we save global registers */
77 saved_T0 = T0;
78 saved_T1 = T1;
bellarde4533c72003-06-15 19:51:39 +000079 saved_T2 = T2;
bellard7d132992003-03-06 23:23:54 +000080 saved_env = env;
81 env = env1;
bellarde4533c72003-06-15 19:51:39 +000082#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)
bellard04369ff2003-03-20 22:33:23 +000088#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
bellard7d132992003-03-06 23:23:54 +0000120
bellard9de5e442003-03-23 16:49:39 +0000121 /* put eflags in CPU temporary format */
bellardfc2b4c42003-03-29 16:52:44 +0000122 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
123 DF = 1 - (2 * ((env->eflags >> 10) & 1));
bellard9de5e442003-03-23 16:49:39 +0000124 CC_OP = CC_OP_EFLAGS;
bellardfc2b4c42003-03-29 16:52:44 +0000125 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000126#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 }
bellard93ac68b2003-09-30 20:57:29 +0000135#elif defined(TARGET_SPARC)
bellard67867302003-11-23 17:05:30 +0000136#elif defined(TARGET_PPC)
bellarde4533c72003-06-15 19:51:39 +0000137#else
138#error unsupported target CPU
139#endif
bellard3fb2ded2003-06-24 13:22:59 +0000140 env->exception_index = -1;
bellard9d27abd2003-05-10 13:13:54 +0000141
bellard7d132992003-03-06 23:23:54 +0000142 /* prepare setjmp context for exception handling */
bellard3fb2ded2003-06-24 13:22:59 +0000143 for(;;) {
144 if (setjmp(env->jmp_env) == 0) {
145 /* if an exception is pending, we execute it here */
146 if (env->exception_index >= 0) {
147 if (env->exception_index >= EXCP_INTERRUPT) {
148 /* exit request from the cpu execution loop */
149 ret = env->exception_index;
150 break;
151 } else if (env->user_mode_only) {
152 /* if user mode only, we simulate a fake exception
153 which will be hanlded outside the cpu execution
154 loop */
bellard83479e72003-06-25 16:12:37 +0000155#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000156 do_interrupt_user(env->exception_index,
157 env->exception_is_int,
158 env->error_code,
159 env->exception_next_eip);
bellard83479e72003-06-25 16:12:37 +0000160#endif
bellard3fb2ded2003-06-24 13:22:59 +0000161 ret = env->exception_index;
162 break;
163 } else {
bellard83479e72003-06-25 16:12:37 +0000164#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000165 /* simulate a real cpu exception. On i386, it can
166 trigger new exceptions, but we do not handle
167 double or triple faults yet. */
168 do_interrupt(env->exception_index,
169 env->exception_is_int,
170 env->error_code,
bellardd05e66d2003-08-20 21:34:35 +0000171 env->exception_next_eip, 0);
bellard83479e72003-06-25 16:12:37 +0000172#endif
bellard3fb2ded2003-06-24 13:22:59 +0000173 }
174 env->exception_index = -1;
bellard9de5e442003-03-23 16:49:39 +0000175 }
bellard3fb2ded2003-06-24 13:22:59 +0000176 T0 = 0; /* force lookup of first TB */
177 for(;;) {
178#ifdef __sparc__
179 /* g1 can be modified by some libc? functions */
180 tmp_T0 = T0;
181#endif
bellard68a79312003-06-30 13:12:32 +0000182 interrupt_request = env->interrupt_request;
bellard2e255c62003-08-21 23:25:21 +0000183 if (__builtin_expect(interrupt_request, 0)) {
bellard68a79312003-06-30 13:12:32 +0000184#if defined(TARGET_I386)
185 /* if hardware interrupt pending, we execute it */
186 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
bellard3f337312003-08-20 23:02:09 +0000187 (env->eflags & IF_MASK) &&
188 !(env->hflags & HF_INHIBIT_IRQ_MASK)) {
bellard68a79312003-06-30 13:12:32 +0000189 int intno;
190 intno = cpu_x86_get_pic_interrupt(env);
191 if (loglevel) {
192 fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno);
193 }
bellardd05e66d2003-08-20 21:34:35 +0000194 do_interrupt(intno, 0, 0, 0, 1);
bellard68a79312003-06-30 13:12:32 +0000195 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
bellard907a5b22003-06-30 23:18:22 +0000196 /* ensure that no TB jump will be modified as
197 the program flow was changed */
198#ifdef __sparc__
199 tmp_T0 = 0;
200#else
201 T0 = 0;
202#endif
bellard68a79312003-06-30 13:12:32 +0000203 }
204#endif
205 if (interrupt_request & CPU_INTERRUPT_EXIT) {
206 env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
207 env->exception_index = EXCP_INTERRUPT;
208 cpu_loop_exit();
209 }
bellard3fb2ded2003-06-24 13:22:59 +0000210 }
211#ifdef DEBUG_EXEC
212 if (loglevel) {
213#if defined(TARGET_I386)
214 /* restore flags in standard format */
215 env->regs[R_EAX] = EAX;
216 env->regs[R_EBX] = EBX;
217 env->regs[R_ECX] = ECX;
218 env->regs[R_EDX] = EDX;
219 env->regs[R_ESI] = ESI;
220 env->regs[R_EDI] = EDI;
221 env->regs[R_EBP] = EBP;
222 env->regs[R_ESP] = ESP;
223 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard68a79312003-06-30 13:12:32 +0000224 cpu_x86_dump_state(env, logfile, X86_DUMP_CCOP);
bellard3fb2ded2003-06-24 13:22:59 +0000225 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000226#elif defined(TARGET_ARM)
bellard1b21b622003-07-09 17:16:27 +0000227 env->cpsr = compute_cpsr();
bellard3fb2ded2003-06-24 13:22:59 +0000228 cpu_arm_dump_state(env, logfile, 0);
bellard1b21b622003-07-09 17:16:27 +0000229 env->cpsr &= ~0xf0000000;
bellard93ac68b2003-09-30 20:57:29 +0000230#elif defined(TARGET_SPARC)
bellard93a40ea2003-10-27 21:13:06 +0000231 cpu_sparc_dump_state (env, logfile, 0);
bellard67867302003-11-23 17:05:30 +0000232#elif defined(TARGET_PPC)
233 cpu_ppc_dump_state(env, logfile, 0);
bellarde4533c72003-06-15 19:51:39 +0000234#else
235#error unsupported target CPU
236#endif
bellard3fb2ded2003-06-24 13:22:59 +0000237 }
bellard7d132992003-03-06 23:23:54 +0000238#endif
bellard3f337312003-08-20 23:02:09 +0000239 /* we record a subset of the CPU state. It will
240 always be the same before a given translated block
241 is executed. */
bellarde4533c72003-06-15 19:51:39 +0000242#if defined(TARGET_I386)
bellard2e255c62003-08-21 23:25:21 +0000243 flags = env->hflags;
bellard3f337312003-08-20 23:02:09 +0000244 flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK));
bellard3fb2ded2003-06-24 13:22:59 +0000245 cs_base = env->segs[R_CS].base;
246 pc = cs_base + env->eip;
bellarde4533c72003-06-15 19:51:39 +0000247#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000248 flags = 0;
249 cs_base = 0;
250 pc = (uint8_t *)env->regs[15];
bellard93ac68b2003-09-30 20:57:29 +0000251#elif defined(TARGET_SPARC)
bellard67867302003-11-23 17:05:30 +0000252 flags = 0;
253 cs_base = 0;
254 if (env->npc) {
255 env->pc = env->npc;
256 env->npc = 0;
257 }
258 pc = (uint8_t *) env->pc;
259#elif defined(TARGET_PPC)
260 flags = 0;
261 cs_base = 0;
262 pc = (uint8_t *)env->nip;
bellarde4533c72003-06-15 19:51:39 +0000263#else
264#error unsupported CPU
265#endif
bellard3fb2ded2003-06-24 13:22:59 +0000266 tb = tb_find(&ptb, (unsigned long)pc, (unsigned long)cs_base,
267 flags);
bellardd4e81642003-05-25 16:46:15 +0000268 if (!tb) {
bellard3fb2ded2003-06-24 13:22:59 +0000269 spin_lock(&tb_lock);
270 /* if no translated code available, then translate it now */
bellardd4e81642003-05-25 16:46:15 +0000271 tb = tb_alloc((unsigned long)pc);
bellard3fb2ded2003-06-24 13:22:59 +0000272 if (!tb) {
273 /* flush must be done */
274 tb_flush();
275 /* cannot fail at this point */
276 tb = tb_alloc((unsigned long)pc);
277 /* don't forget to invalidate previous TB info */
278 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
279 T0 = 0;
280 }
281 tc_ptr = code_gen_ptr;
282 tb->tc_ptr = tc_ptr;
283 tb->cs_base = (unsigned long)cs_base;
284 tb->flags = flags;
bellard36bdbe52003-11-19 22:12:02 +0000285 tb_invalidated_flag = 0;
bellardfacc68b2003-09-17 22:51:18 +0000286 cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size);
bellard36bdbe52003-11-19 22:12:02 +0000287 if (tb_invalidated_flag) {
288 /* as some TB could have been invalidated because
289 of memory exceptions while generating the code, we
290 must recompute the hash index here */
291 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
292 while (*ptb != NULL)
293 ptb = &(*ptb)->hash_next;
294 T0 = 0;
295 }
bellard3fb2ded2003-06-24 13:22:59 +0000296 *ptb = tb;
297 tb->hash_next = NULL;
298 tb_link(tb);
299 code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1));
300 spin_unlock(&tb_lock);
301 }
bellard9d27abd2003-05-10 13:13:54 +0000302#ifdef DEBUG_EXEC
bellard3fb2ded2003-06-24 13:22:59 +0000303 if (loglevel) {
304 fprintf(logfile, "Trace 0x%08lx [0x%08lx] %s\n",
305 (long)tb->tc_ptr, (long)tb->pc,
306 lookup_symbol((void *)tb->pc));
307 }
bellard9d27abd2003-05-10 13:13:54 +0000308#endif
bellard8c6939c2003-06-09 15:28:00 +0000309#ifdef __sparc__
bellard3fb2ded2003-06-24 13:22:59 +0000310 T0 = tmp_T0;
bellard8c6939c2003-06-09 15:28:00 +0000311#endif
bellardfacc68b2003-09-17 22:51:18 +0000312 /* see if we can patch the calling TB. */
313 if (T0 != 0) {
bellard3fb2ded2003-06-24 13:22:59 +0000314 spin_lock(&tb_lock);
315 tb_add_jump((TranslationBlock *)(T0 & ~3), T0 & 3, tb);
316 spin_unlock(&tb_lock);
317 }
bellard3fb2ded2003-06-24 13:22:59 +0000318 tc_ptr = tb->tc_ptr;
bellard83479e72003-06-25 16:12:37 +0000319 env->current_tb = tb;
bellard3fb2ded2003-06-24 13:22:59 +0000320 /* execute the generated code */
321 gen_func = (void *)tc_ptr;
322#if defined(__sparc__)
323 __asm__ __volatile__("call %0\n\t"
324 "mov %%o7,%%i0"
325 : /* no outputs */
326 : "r" (gen_func)
327 : "i0", "i1", "i2", "i3", "i4", "i5");
328#elif defined(__arm__)
329 asm volatile ("mov pc, %0\n\t"
330 ".global exec_loop\n\t"
331 "exec_loop:\n\t"
332 : /* no outputs */
333 : "r" (gen_func)
334 : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14");
335#else
336 gen_func();
337#endif
bellard83479e72003-06-25 16:12:37 +0000338 env->current_tb = NULL;
bellard4cbf74b2003-08-10 21:48:43 +0000339 /* reset soft MMU for next block (it can currently
340 only be set by a memory fault) */
341#if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU)
bellard3f337312003-08-20 23:02:09 +0000342 if (env->hflags & HF_SOFTMMU_MASK) {
343 env->hflags &= ~HF_SOFTMMU_MASK;
bellard4cbf74b2003-08-10 21:48:43 +0000344 /* do not allow linking to another block */
345 T0 = 0;
346 }
347#endif
bellard3fb2ded2003-06-24 13:22:59 +0000348 }
349 } else {
bellard7d132992003-03-06 23:23:54 +0000350 }
bellard3fb2ded2003-06-24 13:22:59 +0000351 } /* for(;;) */
352
bellard7d132992003-03-06 23:23:54 +0000353
bellarde4533c72003-06-15 19:51:39 +0000354#if defined(TARGET_I386)
bellard9de5e442003-03-23 16:49:39 +0000355 /* restore flags in standard format */
bellardfc2b4c42003-03-29 16:52:44 +0000356 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard9de5e442003-03-23 16:49:39 +0000357
bellard7d132992003-03-06 23:23:54 +0000358 /* restore global registers */
bellard04369ff2003-03-20 22:33:23 +0000359#ifdef reg_EAX
360 EAX = saved_EAX;
361#endif
362#ifdef reg_ECX
363 ECX = saved_ECX;
364#endif
365#ifdef reg_EDX
366 EDX = saved_EDX;
367#endif
368#ifdef reg_EBX
369 EBX = saved_EBX;
370#endif
371#ifdef reg_ESP
372 ESP = saved_ESP;
373#endif
374#ifdef reg_EBP
375 EBP = saved_EBP;
376#endif
377#ifdef reg_ESI
378 ESI = saved_ESI;
379#endif
380#ifdef reg_EDI
381 EDI = saved_EDI;
382#endif
bellarde4533c72003-06-15 19:51:39 +0000383#elif defined(TARGET_ARM)
bellard1b21b622003-07-09 17:16:27 +0000384 env->cpsr = compute_cpsr();
bellard93ac68b2003-09-30 20:57:29 +0000385#elif defined(TARGET_SPARC)
bellard67867302003-11-23 17:05:30 +0000386#elif defined(TARGET_PPC)
bellarde4533c72003-06-15 19:51:39 +0000387#else
388#error unsupported target CPU
389#endif
bellard8c6939c2003-06-09 15:28:00 +0000390#ifdef __sparc__
391 asm volatile ("mov %0, %%i7" : : "r" (saved_i7));
392#endif
bellard7d132992003-03-06 23:23:54 +0000393 T0 = saved_T0;
394 T1 = saved_T1;
bellarde4533c72003-06-15 19:51:39 +0000395 T2 = saved_T2;
bellard7d132992003-03-06 23:23:54 +0000396 env = saved_env;
397 return ret;
398}
bellard6dbad632003-03-16 18:05:05 +0000399
bellard1a18c712003-10-30 01:07:51 +0000400#if defined(TARGET_I386) && defined(CONFIG_USER_ONLY)
bellarde4533c72003-06-15 19:51:39 +0000401
bellard6dbad632003-03-16 18:05:05 +0000402void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
403{
404 CPUX86State *saved_env;
405
406 saved_env = env;
407 env = s;
bellarda412ac52003-07-26 18:01:40 +0000408 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
bellarda513fe12003-05-27 23:29:48 +0000409 selector &= 0xffff;
bellard2e255c62003-08-21 23:25:21 +0000410 cpu_x86_load_seg_cache(env, seg_reg, selector,
411 (uint8_t *)(selector << 4), 0xffff, 0);
bellarda513fe12003-05-27 23:29:48 +0000412 } else {
413 load_seg(seg_reg, selector, 0);
414 }
bellard6dbad632003-03-16 18:05:05 +0000415 env = saved_env;
416}
bellard9de5e442003-03-23 16:49:39 +0000417
bellardd0a1ffc2003-05-29 20:04:28 +0000418void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32)
419{
420 CPUX86State *saved_env;
421
422 saved_env = env;
423 env = s;
424
425 helper_fsave(ptr, data32);
426
427 env = saved_env;
428}
429
430void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32)
431{
432 CPUX86State *saved_env;
433
434 saved_env = env;
435 env = s;
436
437 helper_frstor(ptr, data32);
438
439 env = saved_env;
440}
441
bellarde4533c72003-06-15 19:51:39 +0000442#endif /* TARGET_I386 */
443
bellard9de5e442003-03-23 16:49:39 +0000444#undef EAX
445#undef ECX
446#undef EDX
447#undef EBX
448#undef ESP
449#undef EBP
450#undef ESI
451#undef EDI
452#undef EIP
453#include <signal.h>
454#include <sys/ucontext.h>
455
bellard3fb2ded2003-06-24 13:22:59 +0000456#if defined(TARGET_I386)
457
bellardb56dad12003-05-08 15:38:04 +0000458/* 'pc' is the host PC at which the exception was raised. 'address' is
bellardfd6ce8f2003-05-14 19:00:11 +0000459 the effective address of the memory exception. 'is_write' is 1 if a
460 write caused the exception and otherwise 0'. 'old_set' is the
461 signal set which should be restored */
bellard2b413142003-05-14 23:01:10 +0000462static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
463 int is_write, sigset_t *old_set)
bellard9de5e442003-03-23 16:49:39 +0000464{
bellarda513fe12003-05-27 23:29:48 +0000465 TranslationBlock *tb;
466 int ret;
bellard68a79312003-06-30 13:12:32 +0000467
bellard83479e72003-06-25 16:12:37 +0000468 if (cpu_single_env)
469 env = cpu_single_env; /* XXX: find a correct solution for multithread */
bellardfd6ce8f2003-05-14 19:00:11 +0000470#if defined(DEBUG_SIGNAL)
bellard3fb2ded2003-06-24 13:22:59 +0000471 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellardfd6ce8f2003-05-14 19:00:11 +0000472 pc, address, is_write, *(unsigned long *)old_set);
bellard9de5e442003-03-23 16:49:39 +0000473#endif
bellard25eb4482003-05-14 21:50:54 +0000474 /* XXX: locking issue */
bellardfd6ce8f2003-05-14 19:00:11 +0000475 if (is_write && page_unprotect(address)) {
bellardfd6ce8f2003-05-14 19:00:11 +0000476 return 1;
477 }
bellard3fb2ded2003-06-24 13:22:59 +0000478 /* see if it is an MMU fault */
bellard93a40ea2003-10-27 21:13:06 +0000479 ret = cpu_x86_handle_mmu_fault(env, address, is_write,
480 ((env->hflags & HF_CPL_MASK) == 3), 0);
bellard3fb2ded2003-06-24 13:22:59 +0000481 if (ret < 0)
482 return 0; /* not an MMU fault */
483 if (ret == 0)
484 return 1; /* the MMU fault was handled without causing real CPU fault */
485 /* now we have a real cpu fault */
bellarda513fe12003-05-27 23:29:48 +0000486 tb = tb_find_pc(pc);
487 if (tb) {
bellard9de5e442003-03-23 16:49:39 +0000488 /* the PC is inside the translated code. It means that we have
489 a virtual CPU fault */
bellard3fb2ded2003-06-24 13:22:59 +0000490 cpu_restore_state(tb, env, pc);
491 }
bellard4cbf74b2003-08-10 21:48:43 +0000492 if (ret == 1) {
bellard3fb2ded2003-06-24 13:22:59 +0000493#if 0
bellard4cbf74b2003-08-10 21:48:43 +0000494 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
495 env->eip, env->cr[2], env->error_code);
bellard3fb2ded2003-06-24 13:22:59 +0000496#endif
bellard4cbf74b2003-08-10 21:48:43 +0000497 /* we restore the process signal mask as the sigreturn should
498 do it (XXX: use sigsetjmp) */
499 sigprocmask(SIG_SETMASK, old_set, NULL);
500 raise_exception_err(EXCP0E_PAGE, env->error_code);
501 } else {
502 /* activate soft MMU for this block */
bellard3f337312003-08-20 23:02:09 +0000503 env->hflags |= HF_SOFTMMU_MASK;
bellard4cbf74b2003-08-10 21:48:43 +0000504 sigprocmask(SIG_SETMASK, old_set, NULL);
505 cpu_loop_exit();
506 }
bellard3fb2ded2003-06-24 13:22:59 +0000507 /* never comes here */
508 return 1;
509}
510
bellarde4533c72003-06-15 19:51:39 +0000511#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000512static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
513 int is_write, sigset_t *old_set)
514{
515 /* XXX: do more */
516 return 0;
517}
bellard93ac68b2003-09-30 20:57:29 +0000518#elif defined(TARGET_SPARC)
519static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
520 int is_write, sigset_t *old_set)
521{
522 return 0;
523}
bellard67867302003-11-23 17:05:30 +0000524#elif defined (TARGET_PPC)
525static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
526 int is_write, sigset_t *old_set)
527{
528 TranslationBlock *tb;
529
530#if 0
531 if (cpu_single_env)
532 env = cpu_single_env; /* XXX: find a correct solution for multithread */
533#endif
534#if defined(DEBUG_SIGNAL)
535 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
536 pc, address, is_write, *(unsigned long *)old_set);
537#endif
538 /* XXX: locking issue */
539 if (is_write && page_unprotect(address)) {
540 return 1;
541 }
542
543 /* now we have a real cpu fault */
544 tb = tb_find_pc(pc);
545 if (tb) {
546 /* the PC is inside the translated code. It means that we have
547 a virtual CPU fault */
548 cpu_restore_state(tb, env, pc);
549 }
550#if 0
551 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
552 env->eip, env->cr[2], env->error_code);
553#endif
554 /* we restore the process signal mask as the sigreturn should
555 do it (XXX: use sigsetjmp) */
556 sigprocmask(SIG_SETMASK, old_set, NULL);
557 raise_exception_err(EXCP_PROGRAM, env->error_code);
558 /* never comes here */
559 return 1;
560}
bellarde4533c72003-06-15 19:51:39 +0000561#else
562#error unsupported target CPU
563#endif
bellard9de5e442003-03-23 16:49:39 +0000564
bellard2b413142003-05-14 23:01:10 +0000565#if defined(__i386__)
566
bellarde4533c72003-06-15 19:51:39 +0000567int cpu_signal_handler(int host_signum, struct siginfo *info,
568 void *puc)
bellard9de5e442003-03-23 16:49:39 +0000569{
bellard9de5e442003-03-23 16:49:39 +0000570 struct ucontext *uc = puc;
571 unsigned long pc;
bellard9de5e442003-03-23 16:49:39 +0000572
bellardd691f662003-03-24 21:58:34 +0000573#ifndef REG_EIP
574/* for glibc 2.1 */
bellardfd6ce8f2003-05-14 19:00:11 +0000575#define REG_EIP EIP
576#define REG_ERR ERR
577#define REG_TRAPNO TRAPNO
bellardd691f662003-03-24 21:58:34 +0000578#endif
bellardfc2b4c42003-03-29 16:52:44 +0000579 pc = uc->uc_mcontext.gregs[REG_EIP];
bellardfd6ce8f2003-05-14 19:00:11 +0000580 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
581 uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ?
582 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
bellard2b413142003-05-14 23:01:10 +0000583 &uc->uc_sigmask);
584}
585
bellard25eb4482003-05-14 21:50:54 +0000586#elif defined(__powerpc)
bellard2b413142003-05-14 23:01:10 +0000587
bellarde4533c72003-06-15 19:51:39 +0000588int cpu_signal_handler(int host_signum, struct siginfo *info,
589 void *puc)
bellard2b413142003-05-14 23:01:10 +0000590{
bellard25eb4482003-05-14 21:50:54 +0000591 struct ucontext *uc = puc;
592 struct pt_regs *regs = uc->uc_mcontext.regs;
593 unsigned long pc;
bellard25eb4482003-05-14 21:50:54 +0000594 int is_write;
595
596 pc = regs->nip;
bellard25eb4482003-05-14 21:50:54 +0000597 is_write = 0;
598#if 0
599 /* ppc 4xx case */
600 if (regs->dsisr & 0x00800000)
601 is_write = 1;
bellard9de5e442003-03-23 16:49:39 +0000602#else
bellard25eb4482003-05-14 21:50:54 +0000603 if (regs->trap != 0x400 && (regs->dsisr & 0x02000000))
604 is_write = 1;
605#endif
606 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellard2b413142003-05-14 23:01:10 +0000607 is_write, &uc->uc_sigmask);
bellard9de5e442003-03-23 16:49:39 +0000608}
bellard2b413142003-05-14 23:01:10 +0000609
bellard2f87c602003-06-02 20:38:09 +0000610#elif defined(__alpha__)
611
bellarde4533c72003-06-15 19:51:39 +0000612int cpu_signal_handler(int host_signum, struct siginfo *info,
bellard2f87c602003-06-02 20:38:09 +0000613 void *puc)
614{
615 struct ucontext *uc = puc;
616 uint32_t *pc = uc->uc_mcontext.sc_pc;
617 uint32_t insn = *pc;
618 int is_write = 0;
619
bellard8c6939c2003-06-09 15:28:00 +0000620 /* XXX: need kernel patch to get write flag faster */
bellard2f87c602003-06-02 20:38:09 +0000621 switch (insn >> 26) {
622 case 0x0d: // stw
623 case 0x0e: // stb
624 case 0x0f: // stq_u
625 case 0x24: // stf
626 case 0x25: // stg
627 case 0x26: // sts
628 case 0x27: // stt
629 case 0x2c: // stl
630 case 0x2d: // stq
631 case 0x2e: // stl_c
632 case 0x2f: // stq_c
633 is_write = 1;
634 }
635
636 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
637 is_write, &uc->uc_sigmask);
638}
bellard8c6939c2003-06-09 15:28:00 +0000639#elif defined(__sparc__)
640
bellarde4533c72003-06-15 19:51:39 +0000641int cpu_signal_handler(int host_signum, struct siginfo *info,
642 void *puc)
bellard8c6939c2003-06-09 15:28:00 +0000643{
644 uint32_t *regs = (uint32_t *)(info + 1);
645 void *sigmask = (regs + 20);
646 unsigned long pc;
647 int is_write;
648 uint32_t insn;
649
650 /* XXX: is there a standard glibc define ? */
651 pc = regs[1];
652 /* XXX: need kernel patch to get write flag faster */
653 is_write = 0;
654 insn = *(uint32_t *)pc;
655 if ((insn >> 30) == 3) {
656 switch((insn >> 19) & 0x3f) {
657 case 0x05: // stb
658 case 0x06: // sth
659 case 0x04: // st
660 case 0x07: // std
661 case 0x24: // stf
662 case 0x27: // stdf
663 case 0x25: // stfsr
664 is_write = 1;
665 break;
666 }
667 }
668 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
669 is_write, sigmask);
670}
671
672#elif defined(__arm__)
673
bellarde4533c72003-06-15 19:51:39 +0000674int cpu_signal_handler(int host_signum, struct siginfo *info,
675 void *puc)
bellard8c6939c2003-06-09 15:28:00 +0000676{
677 struct ucontext *uc = puc;
678 unsigned long pc;
679 int is_write;
680
681 pc = uc->uc_mcontext.gregs[R15];
682 /* XXX: compute is_write */
683 is_write = 0;
684 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
685 is_write,
686 &uc->uc_sigmask);
687}
688
bellard38e584a2003-08-10 22:14:22 +0000689#elif defined(__mc68000)
690
691int cpu_signal_handler(int host_signum, struct siginfo *info,
692 void *puc)
693{
694 struct ucontext *uc = puc;
695 unsigned long pc;
696 int is_write;
697
698 pc = uc->uc_mcontext.gregs[16];
699 /* XXX: compute is_write */
700 is_write = 0;
701 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
702 is_write,
703 &uc->uc_sigmask);
704}
705
bellard2b413142003-05-14 23:01:10 +0000706#else
707
bellard3fb2ded2003-06-24 13:22:59 +0000708#error host CPU specific signal handler needed
bellard2b413142003-05-14 23:01:10 +0000709
710#endif