blob: aa713c9a63c5888a30684eb6b910c5877fd5061d [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
bellardfbf9eeb2004-04-25 21:21:33 +000024#if !defined(CONFIG_SOFTMMU)
25#undef EAX
26#undef ECX
27#undef EDX
28#undef EBX
29#undef ESP
30#undef EBP
31#undef ESI
32#undef EDI
33#undef EIP
34#include <signal.h>
35#include <sys/ucontext.h>
36#endif
37
bellard36bdbe52003-11-19 22:12:02 +000038int tb_invalidated_flag;
39
bellarddc990652003-03-19 00:00:28 +000040//#define DEBUG_EXEC
bellard9de5e442003-03-23 16:49:39 +000041//#define DEBUG_SIGNAL
bellard7d132992003-03-06 23:23:54 +000042
bellard93ac68b2003-09-30 20:57:29 +000043#if defined(TARGET_ARM) || defined(TARGET_SPARC)
bellarde4533c72003-06-15 19:51:39 +000044/* XXX: unify with i386 target */
45void cpu_loop_exit(void)
46{
47 longjmp(env->jmp_env, 1);
48}
49#endif
50
bellardfbf9eeb2004-04-25 21:21:33 +000051/* exit the current TB from a signal handler. The host registers are
52 restored in a state compatible with the CPU emulator
53 */
54void cpu_resume_from_signal(CPUState *env1, void *puc)
55{
56#if !defined(CONFIG_SOFTMMU)
57 struct ucontext *uc = puc;
58#endif
59
60 env = env1;
61
62 /* XXX: restore cpu registers saved in host registers */
63
64#if !defined(CONFIG_SOFTMMU)
65 if (puc) {
66 /* XXX: use siglongjmp ? */
67 sigprocmask(SIG_SETMASK, &uc->uc_sigmask, NULL);
68 }
69#endif
70 longjmp(env->jmp_env, 1);
71}
72
bellard7d132992003-03-06 23:23:54 +000073/* main execution loop */
74
bellarde4533c72003-06-15 19:51:39 +000075int cpu_exec(CPUState *env1)
bellard7d132992003-03-06 23:23:54 +000076{
bellarde4533c72003-06-15 19:51:39 +000077 int saved_T0, saved_T1, saved_T2;
78 CPUState *saved_env;
bellard04369ff2003-03-20 22:33:23 +000079#ifdef reg_EAX
80 int saved_EAX;
81#endif
82#ifdef reg_ECX
83 int saved_ECX;
84#endif
85#ifdef reg_EDX
86 int saved_EDX;
87#endif
88#ifdef reg_EBX
89 int saved_EBX;
90#endif
91#ifdef reg_ESP
92 int saved_ESP;
93#endif
94#ifdef reg_EBP
95 int saved_EBP;
96#endif
97#ifdef reg_ESI
98 int saved_ESI;
99#endif
100#ifdef reg_EDI
101 int saved_EDI;
102#endif
bellard8c6939c2003-06-09 15:28:00 +0000103#ifdef __sparc__
104 int saved_i7, tmp_T0;
105#endif
bellard68a79312003-06-30 13:12:32 +0000106 int code_gen_size, ret, interrupt_request;
bellard7d132992003-03-06 23:23:54 +0000107 void (*gen_func)(void);
bellard9de5e442003-03-23 16:49:39 +0000108 TranslationBlock *tb, **ptb;
bellarddab2ed92003-03-22 15:23:14 +0000109 uint8_t *tc_ptr, *cs_base, *pc;
bellard6dbad632003-03-16 18:05:05 +0000110 unsigned int flags;
bellard8c6939c2003-06-09 15:28:00 +0000111
bellard7d132992003-03-06 23:23:54 +0000112 /* first we save global registers */
113 saved_T0 = T0;
114 saved_T1 = T1;
bellarde4533c72003-06-15 19:51:39 +0000115 saved_T2 = T2;
bellard7d132992003-03-06 23:23:54 +0000116 saved_env = env;
117 env = env1;
bellarde4533c72003-06-15 19:51:39 +0000118#ifdef __sparc__
119 /* we also save i7 because longjmp may not restore it */
120 asm volatile ("mov %%i7, %0" : "=r" (saved_i7));
121#endif
122
123#if defined(TARGET_I386)
bellard04369ff2003-03-20 22:33:23 +0000124#ifdef reg_EAX
125 saved_EAX = EAX;
126 EAX = env->regs[R_EAX];
127#endif
128#ifdef reg_ECX
129 saved_ECX = ECX;
130 ECX = env->regs[R_ECX];
131#endif
132#ifdef reg_EDX
133 saved_EDX = EDX;
134 EDX = env->regs[R_EDX];
135#endif
136#ifdef reg_EBX
137 saved_EBX = EBX;
138 EBX = env->regs[R_EBX];
139#endif
140#ifdef reg_ESP
141 saved_ESP = ESP;
142 ESP = env->regs[R_ESP];
143#endif
144#ifdef reg_EBP
145 saved_EBP = EBP;
146 EBP = env->regs[R_EBP];
147#endif
148#ifdef reg_ESI
149 saved_ESI = ESI;
150 ESI = env->regs[R_ESI];
151#endif
152#ifdef reg_EDI
153 saved_EDI = EDI;
154 EDI = env->regs[R_EDI];
155#endif
bellard7d132992003-03-06 23:23:54 +0000156
bellard9de5e442003-03-23 16:49:39 +0000157 /* put eflags in CPU temporary format */
bellardfc2b4c42003-03-29 16:52:44 +0000158 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
159 DF = 1 - (2 * ((env->eflags >> 10) & 1));
bellard9de5e442003-03-23 16:49:39 +0000160 CC_OP = CC_OP_EFLAGS;
bellardfc2b4c42003-03-29 16:52:44 +0000161 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000162#elif defined(TARGET_ARM)
163 {
164 unsigned int psr;
165 psr = env->cpsr;
166 env->CF = (psr >> 29) & 1;
167 env->NZF = (psr & 0xc0000000) ^ 0x40000000;
168 env->VF = (psr << 3) & 0x80000000;
169 env->cpsr = psr & ~0xf0000000;
170 }
bellard93ac68b2003-09-30 20:57:29 +0000171#elif defined(TARGET_SPARC)
bellard67867302003-11-23 17:05:30 +0000172#elif defined(TARGET_PPC)
bellarde4533c72003-06-15 19:51:39 +0000173#else
174#error unsupported target CPU
175#endif
bellard3fb2ded2003-06-24 13:22:59 +0000176 env->exception_index = -1;
bellard9d27abd2003-05-10 13:13:54 +0000177
bellard7d132992003-03-06 23:23:54 +0000178 /* prepare setjmp context for exception handling */
bellard3fb2ded2003-06-24 13:22:59 +0000179 for(;;) {
180 if (setjmp(env->jmp_env) == 0) {
bellardee8b7022004-02-03 23:35:10 +0000181 env->current_tb = NULL;
bellard3fb2ded2003-06-24 13:22:59 +0000182 /* if an exception is pending, we execute it here */
183 if (env->exception_index >= 0) {
184 if (env->exception_index >= EXCP_INTERRUPT) {
185 /* exit request from the cpu execution loop */
186 ret = env->exception_index;
187 break;
188 } else if (env->user_mode_only) {
189 /* if user mode only, we simulate a fake exception
190 which will be hanlded outside the cpu execution
191 loop */
bellard83479e72003-06-25 16:12:37 +0000192#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000193 do_interrupt_user(env->exception_index,
194 env->exception_is_int,
195 env->error_code,
196 env->exception_next_eip);
bellard83479e72003-06-25 16:12:37 +0000197#endif
bellard3fb2ded2003-06-24 13:22:59 +0000198 ret = env->exception_index;
199 break;
200 } else {
bellard83479e72003-06-25 16:12:37 +0000201#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000202 /* simulate a real cpu exception. On i386, it can
203 trigger new exceptions, but we do not handle
204 double or triple faults yet. */
205 do_interrupt(env->exception_index,
206 env->exception_is_int,
207 env->error_code,
bellardd05e66d2003-08-20 21:34:35 +0000208 env->exception_next_eip, 0);
bellardce097762004-01-04 23:53:18 +0000209#elif defined(TARGET_PPC)
210 do_interrupt(env);
bellard83479e72003-06-25 16:12:37 +0000211#endif
bellard3fb2ded2003-06-24 13:22:59 +0000212 }
213 env->exception_index = -1;
bellard9de5e442003-03-23 16:49:39 +0000214 }
bellard3fb2ded2003-06-24 13:22:59 +0000215 T0 = 0; /* force lookup of first TB */
216 for(;;) {
217#ifdef __sparc__
218 /* g1 can be modified by some libc? functions */
219 tmp_T0 = T0;
220#endif
bellard68a79312003-06-30 13:12:32 +0000221 interrupt_request = env->interrupt_request;
bellard2e255c62003-08-21 23:25:21 +0000222 if (__builtin_expect(interrupt_request, 0)) {
bellard68a79312003-06-30 13:12:32 +0000223#if defined(TARGET_I386)
224 /* if hardware interrupt pending, we execute it */
225 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
bellard3f337312003-08-20 23:02:09 +0000226 (env->eflags & IF_MASK) &&
227 !(env->hflags & HF_INHIBIT_IRQ_MASK)) {
bellard68a79312003-06-30 13:12:32 +0000228 int intno;
bellardfbf9eeb2004-04-25 21:21:33 +0000229 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
bellarda541f292004-04-12 20:39:29 +0000230 intno = cpu_get_pic_interrupt(env);
bellardf193c792004-03-21 17:06:25 +0000231 if (loglevel & CPU_LOG_TB_IN_ASM) {
bellard68a79312003-06-30 13:12:32 +0000232 fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno);
233 }
bellardd05e66d2003-08-20 21:34:35 +0000234 do_interrupt(intno, 0, 0, 0, 1);
bellard907a5b22003-06-30 23:18:22 +0000235 /* ensure that no TB jump will be modified as
236 the program flow was changed */
237#ifdef __sparc__
238 tmp_T0 = 0;
239#else
240 T0 = 0;
241#endif
bellard68a79312003-06-30 13:12:32 +0000242 }
bellardce097762004-01-04 23:53:18 +0000243#elif defined(TARGET_PPC)
bellard9fddaa02004-05-21 12:59:32 +0000244#if 0
245 if ((interrupt_request & CPU_INTERRUPT_RESET)) {
246 cpu_ppc_reset(env);
247 }
248#endif
249 if (msr_ee != 0) {
bellardce097762004-01-04 23:53:18 +0000250 if ((interrupt_request & CPU_INTERRUPT_HARD)) {
bellard9fddaa02004-05-21 12:59:32 +0000251 /* Raise it */
252 env->exception_index = EXCP_EXTERNAL;
253 env->error_code = 0;
bellardce097762004-01-04 23:53:18 +0000254 do_interrupt(env);
255 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
bellard9fddaa02004-05-21 12:59:32 +0000256 } else if ((interrupt_request & CPU_INTERRUPT_TIMER)) {
257 /* Raise it */
258 env->exception_index = EXCP_DECR;
259 env->error_code = 0;
260 do_interrupt(env);
261 env->interrupt_request &= ~CPU_INTERRUPT_TIMER;
262 }
bellardce097762004-01-04 23:53:18 +0000263 }
bellard68a79312003-06-30 13:12:32 +0000264#endif
bellardbf3e8bf2004-02-16 21:58:54 +0000265 if (interrupt_request & CPU_INTERRUPT_EXITTB) {
266 env->interrupt_request &= ~CPU_INTERRUPT_EXITTB;
267 /* ensure that no TB jump will be modified as
268 the program flow was changed */
269#ifdef __sparc__
270 tmp_T0 = 0;
271#else
272 T0 = 0;
273#endif
274 }
bellard68a79312003-06-30 13:12:32 +0000275 if (interrupt_request & CPU_INTERRUPT_EXIT) {
276 env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
277 env->exception_index = EXCP_INTERRUPT;
278 cpu_loop_exit();
279 }
bellard3fb2ded2003-06-24 13:22:59 +0000280 }
281#ifdef DEBUG_EXEC
bellardf193c792004-03-21 17:06:25 +0000282 if (loglevel & CPU_LOG_EXEC) {
bellard3fb2ded2003-06-24 13:22:59 +0000283#if defined(TARGET_I386)
284 /* restore flags in standard format */
285 env->regs[R_EAX] = EAX;
286 env->regs[R_EBX] = EBX;
287 env->regs[R_ECX] = ECX;
288 env->regs[R_EDX] = EDX;
289 env->regs[R_ESI] = ESI;
290 env->regs[R_EDI] = EDI;
291 env->regs[R_EBP] = EBP;
292 env->regs[R_ESP] = ESP;
293 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard68a79312003-06-30 13:12:32 +0000294 cpu_x86_dump_state(env, logfile, X86_DUMP_CCOP);
bellard3fb2ded2003-06-24 13:22:59 +0000295 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000296#elif defined(TARGET_ARM)
bellard1b21b622003-07-09 17:16:27 +0000297 env->cpsr = compute_cpsr();
bellard3fb2ded2003-06-24 13:22:59 +0000298 cpu_arm_dump_state(env, logfile, 0);
bellard1b21b622003-07-09 17:16:27 +0000299 env->cpsr &= ~0xf0000000;
bellard93ac68b2003-09-30 20:57:29 +0000300#elif defined(TARGET_SPARC)
bellard93a40ea2003-10-27 21:13:06 +0000301 cpu_sparc_dump_state (env, logfile, 0);
bellard67867302003-11-23 17:05:30 +0000302#elif defined(TARGET_PPC)
303 cpu_ppc_dump_state(env, logfile, 0);
bellarde4533c72003-06-15 19:51:39 +0000304#else
305#error unsupported target CPU
306#endif
bellard3fb2ded2003-06-24 13:22:59 +0000307 }
bellard7d132992003-03-06 23:23:54 +0000308#endif
bellard3f337312003-08-20 23:02:09 +0000309 /* we record a subset of the CPU state. It will
310 always be the same before a given translated block
311 is executed. */
bellarde4533c72003-06-15 19:51:39 +0000312#if defined(TARGET_I386)
bellard2e255c62003-08-21 23:25:21 +0000313 flags = env->hflags;
bellard3f337312003-08-20 23:02:09 +0000314 flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK));
bellard3fb2ded2003-06-24 13:22:59 +0000315 cs_base = env->segs[R_CS].base;
316 pc = cs_base + env->eip;
bellarde4533c72003-06-15 19:51:39 +0000317#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000318 flags = 0;
319 cs_base = 0;
320 pc = (uint8_t *)env->regs[15];
bellard93ac68b2003-09-30 20:57:29 +0000321#elif defined(TARGET_SPARC)
bellard67867302003-11-23 17:05:30 +0000322 flags = 0;
bellardce097762004-01-04 23:53:18 +0000323 cs_base = (uint8_t *)env->npc;
bellard67867302003-11-23 17:05:30 +0000324 pc = (uint8_t *) env->pc;
325#elif defined(TARGET_PPC)
326 flags = 0;
327 cs_base = 0;
328 pc = (uint8_t *)env->nip;
bellarde4533c72003-06-15 19:51:39 +0000329#else
330#error unsupported CPU
331#endif
bellard3fb2ded2003-06-24 13:22:59 +0000332 tb = tb_find(&ptb, (unsigned long)pc, (unsigned long)cs_base,
333 flags);
bellardd4e81642003-05-25 16:46:15 +0000334 if (!tb) {
bellard13768472004-01-04 17:43:01 +0000335 TranslationBlock **ptb1;
336 unsigned int h;
337 target_ulong phys_pc, phys_page1, phys_page2, virt_page2;
338
339
bellard3fb2ded2003-06-24 13:22:59 +0000340 spin_lock(&tb_lock);
bellard13768472004-01-04 17:43:01 +0000341
342 tb_invalidated_flag = 0;
343
344 /* find translated block using physical mappings */
345 phys_pc = get_phys_addr_code(env, (unsigned long)pc);
346 phys_page1 = phys_pc & TARGET_PAGE_MASK;
347 phys_page2 = -1;
348 h = tb_phys_hash_func(phys_pc);
349 ptb1 = &tb_phys_hash[h];
350 for(;;) {
351 tb = *ptb1;
352 if (!tb)
353 goto not_found;
354 if (tb->pc == (unsigned long)pc &&
355 tb->page_addr[0] == phys_page1 &&
356 tb->cs_base == (unsigned long)cs_base &&
357 tb->flags == flags) {
358 /* check next page if needed */
bellardb516f852004-01-18 21:50:04 +0000359 if (tb->page_addr[1] != -1) {
360 virt_page2 = ((unsigned long)pc & TARGET_PAGE_MASK) +
361 TARGET_PAGE_SIZE;
bellard13768472004-01-04 17:43:01 +0000362 phys_page2 = get_phys_addr_code(env, virt_page2);
363 if (tb->page_addr[1] == phys_page2)
364 goto found;
365 } else {
366 goto found;
367 }
368 }
369 ptb1 = &tb->phys_hash_next;
370 }
371 not_found:
bellard3fb2ded2003-06-24 13:22:59 +0000372 /* if no translated code available, then translate it now */
bellardd4e81642003-05-25 16:46:15 +0000373 tb = tb_alloc((unsigned long)pc);
bellard3fb2ded2003-06-24 13:22:59 +0000374 if (!tb) {
375 /* flush must be done */
bellardb453b702004-01-04 15:45:21 +0000376 tb_flush(env);
bellard3fb2ded2003-06-24 13:22:59 +0000377 /* cannot fail at this point */
378 tb = tb_alloc((unsigned long)pc);
379 /* don't forget to invalidate previous TB info */
380 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
381 T0 = 0;
382 }
383 tc_ptr = code_gen_ptr;
384 tb->tc_ptr = tc_ptr;
385 tb->cs_base = (unsigned long)cs_base;
386 tb->flags = flags;
bellardfacc68b2003-09-17 22:51:18 +0000387 cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size);
bellard13768472004-01-04 17:43:01 +0000388 code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1));
389
390 /* check next page if needed */
391 virt_page2 = ((unsigned long)pc + tb->size - 1) & TARGET_PAGE_MASK;
392 phys_page2 = -1;
393 if (((unsigned long)pc & TARGET_PAGE_MASK) != virt_page2) {
394 phys_page2 = get_phys_addr_code(env, virt_page2);
395 }
396 tb_link_phys(tb, phys_pc, phys_page2);
397
398 found:
bellard36bdbe52003-11-19 22:12:02 +0000399 if (tb_invalidated_flag) {
400 /* as some TB could have been invalidated because
401 of memory exceptions while generating the code, we
402 must recompute the hash index here */
403 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
404 while (*ptb != NULL)
405 ptb = &(*ptb)->hash_next;
406 T0 = 0;
407 }
bellard13768472004-01-04 17:43:01 +0000408 /* we add the TB in the virtual pc hash table */
bellard3fb2ded2003-06-24 13:22:59 +0000409 *ptb = tb;
410 tb->hash_next = NULL;
411 tb_link(tb);
bellard3fb2ded2003-06-24 13:22:59 +0000412 spin_unlock(&tb_lock);
413 }
bellard9d27abd2003-05-10 13:13:54 +0000414#ifdef DEBUG_EXEC
bellardf193c792004-03-21 17:06:25 +0000415 if (loglevel & CPU_LOG_EXEC) {
bellard3fb2ded2003-06-24 13:22:59 +0000416 fprintf(logfile, "Trace 0x%08lx [0x%08lx] %s\n",
417 (long)tb->tc_ptr, (long)tb->pc,
418 lookup_symbol((void *)tb->pc));
419 }
bellard9d27abd2003-05-10 13:13:54 +0000420#endif
bellard8c6939c2003-06-09 15:28:00 +0000421#ifdef __sparc__
bellard3fb2ded2003-06-24 13:22:59 +0000422 T0 = tmp_T0;
bellard8c6939c2003-06-09 15:28:00 +0000423#endif
bellardfacc68b2003-09-17 22:51:18 +0000424 /* see if we can patch the calling TB. */
bellardbf3e8bf2004-02-16 21:58:54 +0000425 if (T0 != 0
426#if defined(TARGET_I386) && defined(USE_CODE_COPY)
427 && (tb->cflags & CF_CODE_COPY) ==
428 (((TranslationBlock *)(T0 & ~3))->cflags & CF_CODE_COPY)
429#endif
430 ) {
bellard3fb2ded2003-06-24 13:22:59 +0000431 spin_lock(&tb_lock);
432 tb_add_jump((TranslationBlock *)(T0 & ~3), T0 & 3, tb);
bellard97eb5b12004-02-25 23:19:55 +0000433#if defined(USE_CODE_COPY)
434 /* propagates the FP use info */
435 ((TranslationBlock *)(T0 & ~3))->cflags |=
436 (tb->cflags & CF_FP_USED);
437#endif
bellard3fb2ded2003-06-24 13:22:59 +0000438 spin_unlock(&tb_lock);
439 }
bellard3fb2ded2003-06-24 13:22:59 +0000440 tc_ptr = tb->tc_ptr;
bellard83479e72003-06-25 16:12:37 +0000441 env->current_tb = tb;
bellard3fb2ded2003-06-24 13:22:59 +0000442 /* execute the generated code */
443 gen_func = (void *)tc_ptr;
444#if defined(__sparc__)
445 __asm__ __volatile__("call %0\n\t"
446 "mov %%o7,%%i0"
447 : /* no outputs */
448 : "r" (gen_func)
449 : "i0", "i1", "i2", "i3", "i4", "i5");
450#elif defined(__arm__)
451 asm volatile ("mov pc, %0\n\t"
452 ".global exec_loop\n\t"
453 "exec_loop:\n\t"
454 : /* no outputs */
455 : "r" (gen_func)
456 : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14");
bellardbf3e8bf2004-02-16 21:58:54 +0000457#elif defined(TARGET_I386) && defined(USE_CODE_COPY)
458{
459 if (!(tb->cflags & CF_CODE_COPY)) {
bellard97eb5b12004-02-25 23:19:55 +0000460 if ((tb->cflags & CF_FP_USED) && env->native_fp_regs) {
461 save_native_fp_state(env);
462 }
bellardbf3e8bf2004-02-16 21:58:54 +0000463 gen_func();
464 } else {
bellard97eb5b12004-02-25 23:19:55 +0000465 if ((tb->cflags & CF_FP_USED) && !env->native_fp_regs) {
466 restore_native_fp_state(env);
467 }
bellardbf3e8bf2004-02-16 21:58:54 +0000468 /* we work with native eflags */
469 CC_SRC = cc_table[CC_OP].compute_all();
470 CC_OP = CC_OP_EFLAGS;
471 asm(".globl exec_loop\n"
472 "\n"
473 "debug1:\n"
474 " pushl %%ebp\n"
475 " fs movl %10, %9\n"
476 " fs movl %11, %%eax\n"
477 " andl $0x400, %%eax\n"
478 " fs orl %8, %%eax\n"
479 " pushl %%eax\n"
480 " popf\n"
481 " fs movl %%esp, %12\n"
482 " fs movl %0, %%eax\n"
483 " fs movl %1, %%ecx\n"
484 " fs movl %2, %%edx\n"
485 " fs movl %3, %%ebx\n"
486 " fs movl %4, %%esp\n"
487 " fs movl %5, %%ebp\n"
488 " fs movl %6, %%esi\n"
489 " fs movl %7, %%edi\n"
490 " fs jmp *%9\n"
491 "exec_loop:\n"
492 " fs movl %%esp, %4\n"
493 " fs movl %12, %%esp\n"
494 " fs movl %%eax, %0\n"
495 " fs movl %%ecx, %1\n"
496 " fs movl %%edx, %2\n"
497 " fs movl %%ebx, %3\n"
498 " fs movl %%ebp, %5\n"
499 " fs movl %%esi, %6\n"
500 " fs movl %%edi, %7\n"
501 " pushf\n"
502 " popl %%eax\n"
503 " movl %%eax, %%ecx\n"
504 " andl $0x400, %%ecx\n"
505 " shrl $9, %%ecx\n"
506 " andl $0x8d5, %%eax\n"
507 " fs movl %%eax, %8\n"
508 " movl $1, %%eax\n"
509 " subl %%ecx, %%eax\n"
510 " fs movl %%eax, %11\n"
511 " fs movl %9, %%ebx\n" /* get T0 value */
512 " popl %%ebp\n"
513 :
514 : "m" (*(uint8_t *)offsetof(CPUState, regs[0])),
515 "m" (*(uint8_t *)offsetof(CPUState, regs[1])),
516 "m" (*(uint8_t *)offsetof(CPUState, regs[2])),
517 "m" (*(uint8_t *)offsetof(CPUState, regs[3])),
518 "m" (*(uint8_t *)offsetof(CPUState, regs[4])),
519 "m" (*(uint8_t *)offsetof(CPUState, regs[5])),
520 "m" (*(uint8_t *)offsetof(CPUState, regs[6])),
521 "m" (*(uint8_t *)offsetof(CPUState, regs[7])),
522 "m" (*(uint8_t *)offsetof(CPUState, cc_src)),
523 "m" (*(uint8_t *)offsetof(CPUState, tmp0)),
524 "a" (gen_func),
525 "m" (*(uint8_t *)offsetof(CPUState, df)),
526 "m" (*(uint8_t *)offsetof(CPUState, saved_esp))
527 : "%ecx", "%edx"
528 );
529 }
530}
bellard3fb2ded2003-06-24 13:22:59 +0000531#else
532 gen_func();
533#endif
bellard83479e72003-06-25 16:12:37 +0000534 env->current_tb = NULL;
bellard4cbf74b2003-08-10 21:48:43 +0000535 /* reset soft MMU for next block (it can currently
536 only be set by a memory fault) */
537#if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU)
bellard3f337312003-08-20 23:02:09 +0000538 if (env->hflags & HF_SOFTMMU_MASK) {
539 env->hflags &= ~HF_SOFTMMU_MASK;
bellard4cbf74b2003-08-10 21:48:43 +0000540 /* do not allow linking to another block */
541 T0 = 0;
542 }
543#endif
bellard3fb2ded2003-06-24 13:22:59 +0000544 }
545 } else {
bellard7d132992003-03-06 23:23:54 +0000546 }
bellard3fb2ded2003-06-24 13:22:59 +0000547 } /* for(;;) */
548
bellard7d132992003-03-06 23:23:54 +0000549
bellarde4533c72003-06-15 19:51:39 +0000550#if defined(TARGET_I386)
bellard97eb5b12004-02-25 23:19:55 +0000551#if defined(USE_CODE_COPY)
552 if (env->native_fp_regs) {
553 save_native_fp_state(env);
554 }
555#endif
bellard9de5e442003-03-23 16:49:39 +0000556 /* restore flags in standard format */
bellardfc2b4c42003-03-29 16:52:44 +0000557 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard9de5e442003-03-23 16:49:39 +0000558
bellard7d132992003-03-06 23:23:54 +0000559 /* restore global registers */
bellard04369ff2003-03-20 22:33:23 +0000560#ifdef reg_EAX
561 EAX = saved_EAX;
562#endif
563#ifdef reg_ECX
564 ECX = saved_ECX;
565#endif
566#ifdef reg_EDX
567 EDX = saved_EDX;
568#endif
569#ifdef reg_EBX
570 EBX = saved_EBX;
571#endif
572#ifdef reg_ESP
573 ESP = saved_ESP;
574#endif
575#ifdef reg_EBP
576 EBP = saved_EBP;
577#endif
578#ifdef reg_ESI
579 ESI = saved_ESI;
580#endif
581#ifdef reg_EDI
582 EDI = saved_EDI;
583#endif
bellarde4533c72003-06-15 19:51:39 +0000584#elif defined(TARGET_ARM)
bellard1b21b622003-07-09 17:16:27 +0000585 env->cpsr = compute_cpsr();
bellard93ac68b2003-09-30 20:57:29 +0000586#elif defined(TARGET_SPARC)
bellard67867302003-11-23 17:05:30 +0000587#elif defined(TARGET_PPC)
bellarde4533c72003-06-15 19:51:39 +0000588#else
589#error unsupported target CPU
590#endif
bellard8c6939c2003-06-09 15:28:00 +0000591#ifdef __sparc__
592 asm volatile ("mov %0, %%i7" : : "r" (saved_i7));
593#endif
bellard7d132992003-03-06 23:23:54 +0000594 T0 = saved_T0;
595 T1 = saved_T1;
bellarde4533c72003-06-15 19:51:39 +0000596 T2 = saved_T2;
bellard7d132992003-03-06 23:23:54 +0000597 env = saved_env;
598 return ret;
599}
bellard6dbad632003-03-16 18:05:05 +0000600
bellardfbf9eeb2004-04-25 21:21:33 +0000601/* must only be called from the generated code as an exception can be
602 generated */
603void tb_invalidate_page_range(target_ulong start, target_ulong end)
604{
bellarddc5d0b32004-06-22 18:43:30 +0000605 /* XXX: cannot enable it yet because it yields to MMU exception
606 where NIP != read address on PowerPC */
607#if 0
bellardfbf9eeb2004-04-25 21:21:33 +0000608 target_ulong phys_addr;
609 phys_addr = get_phys_addr_code(env, start);
610 tb_invalidate_phys_page_range(phys_addr, phys_addr + end - start, 0);
bellarddc5d0b32004-06-22 18:43:30 +0000611#endif
bellardfbf9eeb2004-04-25 21:21:33 +0000612}
613
bellard1a18c712003-10-30 01:07:51 +0000614#if defined(TARGET_I386) && defined(CONFIG_USER_ONLY)
bellarde4533c72003-06-15 19:51:39 +0000615
bellard6dbad632003-03-16 18:05:05 +0000616void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
617{
618 CPUX86State *saved_env;
619
620 saved_env = env;
621 env = s;
bellarda412ac52003-07-26 18:01:40 +0000622 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
bellarda513fe12003-05-27 23:29:48 +0000623 selector &= 0xffff;
bellard2e255c62003-08-21 23:25:21 +0000624 cpu_x86_load_seg_cache(env, seg_reg, selector,
625 (uint8_t *)(selector << 4), 0xffff, 0);
bellarda513fe12003-05-27 23:29:48 +0000626 } else {
bellardb453b702004-01-04 15:45:21 +0000627 load_seg(seg_reg, selector);
bellarda513fe12003-05-27 23:29:48 +0000628 }
bellard6dbad632003-03-16 18:05:05 +0000629 env = saved_env;
630}
bellard9de5e442003-03-23 16:49:39 +0000631
bellardd0a1ffc2003-05-29 20:04:28 +0000632void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32)
633{
634 CPUX86State *saved_env;
635
636 saved_env = env;
637 env = s;
638
639 helper_fsave(ptr, data32);
640
641 env = saved_env;
642}
643
644void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32)
645{
646 CPUX86State *saved_env;
647
648 saved_env = env;
649 env = s;
650
651 helper_frstor(ptr, data32);
652
653 env = saved_env;
654}
655
bellarde4533c72003-06-15 19:51:39 +0000656#endif /* TARGET_I386 */
657
bellard67b915a2004-03-31 23:37:16 +0000658#if !defined(CONFIG_SOFTMMU)
659
bellard3fb2ded2003-06-24 13:22:59 +0000660#if defined(TARGET_I386)
661
bellardb56dad12003-05-08 15:38:04 +0000662/* 'pc' is the host PC at which the exception was raised. 'address' is
bellardfd6ce8f2003-05-14 19:00:11 +0000663 the effective address of the memory exception. 'is_write' is 1 if a
664 write caused the exception and otherwise 0'. 'old_set' is the
665 signal set which should be restored */
bellard2b413142003-05-14 23:01:10 +0000666static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bellardbf3e8bf2004-02-16 21:58:54 +0000667 int is_write, sigset_t *old_set,
668 void *puc)
bellard9de5e442003-03-23 16:49:39 +0000669{
bellarda513fe12003-05-27 23:29:48 +0000670 TranslationBlock *tb;
671 int ret;
bellard68a79312003-06-30 13:12:32 +0000672
bellard83479e72003-06-25 16:12:37 +0000673 if (cpu_single_env)
674 env = cpu_single_env; /* XXX: find a correct solution for multithread */
bellardfd6ce8f2003-05-14 19:00:11 +0000675#if defined(DEBUG_SIGNAL)
bellardbf3e8bf2004-02-16 21:58:54 +0000676 qemu_printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
677 pc, address, is_write, *(unsigned long *)old_set);
bellard9de5e442003-03-23 16:49:39 +0000678#endif
bellard25eb4482003-05-14 21:50:54 +0000679 /* XXX: locking issue */
bellardfbf9eeb2004-04-25 21:21:33 +0000680 if (is_write && page_unprotect(address, pc, puc)) {
bellardfd6ce8f2003-05-14 19:00:11 +0000681 return 1;
682 }
bellardfbf9eeb2004-04-25 21:21:33 +0000683
bellard3fb2ded2003-06-24 13:22:59 +0000684 /* see if it is an MMU fault */
bellard93a40ea2003-10-27 21:13:06 +0000685 ret = cpu_x86_handle_mmu_fault(env, address, is_write,
686 ((env->hflags & HF_CPL_MASK) == 3), 0);
bellard3fb2ded2003-06-24 13:22:59 +0000687 if (ret < 0)
688 return 0; /* not an MMU fault */
689 if (ret == 0)
690 return 1; /* the MMU fault was handled without causing real CPU fault */
691 /* now we have a real cpu fault */
bellarda513fe12003-05-27 23:29:48 +0000692 tb = tb_find_pc(pc);
693 if (tb) {
bellard9de5e442003-03-23 16:49:39 +0000694 /* the PC is inside the translated code. It means that we have
695 a virtual CPU fault */
bellardbf3e8bf2004-02-16 21:58:54 +0000696 cpu_restore_state(tb, env, pc, puc);
bellard3fb2ded2003-06-24 13:22:59 +0000697 }
bellard4cbf74b2003-08-10 21:48:43 +0000698 if (ret == 1) {
bellard3fb2ded2003-06-24 13:22:59 +0000699#if 0
bellard4cbf74b2003-08-10 21:48:43 +0000700 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
701 env->eip, env->cr[2], env->error_code);
bellard3fb2ded2003-06-24 13:22:59 +0000702#endif
bellard4cbf74b2003-08-10 21:48:43 +0000703 /* we restore the process signal mask as the sigreturn should
704 do it (XXX: use sigsetjmp) */
705 sigprocmask(SIG_SETMASK, old_set, NULL);
706 raise_exception_err(EXCP0E_PAGE, env->error_code);
707 } else {
708 /* activate soft MMU for this block */
bellard3f337312003-08-20 23:02:09 +0000709 env->hflags |= HF_SOFTMMU_MASK;
bellardfbf9eeb2004-04-25 21:21:33 +0000710 cpu_resume_from_signal(env, puc);
bellard4cbf74b2003-08-10 21:48:43 +0000711 }
bellard3fb2ded2003-06-24 13:22:59 +0000712 /* never comes here */
713 return 1;
714}
715
bellarde4533c72003-06-15 19:51:39 +0000716#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000717static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bellardbf3e8bf2004-02-16 21:58:54 +0000718 int is_write, sigset_t *old_set,
719 void *puc)
bellard3fb2ded2003-06-24 13:22:59 +0000720{
721 /* XXX: do more */
722 return 0;
723}
bellard93ac68b2003-09-30 20:57:29 +0000724#elif defined(TARGET_SPARC)
725static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bellardbf3e8bf2004-02-16 21:58:54 +0000726 int is_write, sigset_t *old_set,
727 void *puc)
bellard93ac68b2003-09-30 20:57:29 +0000728{
bellardb453b702004-01-04 15:45:21 +0000729 /* XXX: locking issue */
bellardfbf9eeb2004-04-25 21:21:33 +0000730 if (is_write && page_unprotect(address, pc, puc)) {
bellardb453b702004-01-04 15:45:21 +0000731 return 1;
732 }
733 return 0;
bellard93ac68b2003-09-30 20:57:29 +0000734}
bellard67867302003-11-23 17:05:30 +0000735#elif defined (TARGET_PPC)
736static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bellardbf3e8bf2004-02-16 21:58:54 +0000737 int is_write, sigset_t *old_set,
738 void *puc)
bellard67867302003-11-23 17:05:30 +0000739{
740 TranslationBlock *tb;
bellardce097762004-01-04 23:53:18 +0000741 int ret;
bellard67867302003-11-23 17:05:30 +0000742
bellardce097762004-01-04 23:53:18 +0000743#if 1
bellard67867302003-11-23 17:05:30 +0000744 if (cpu_single_env)
745 env = cpu_single_env; /* XXX: find a correct solution for multithread */
746#endif
747#if defined(DEBUG_SIGNAL)
748 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
749 pc, address, is_write, *(unsigned long *)old_set);
750#endif
751 /* XXX: locking issue */
bellardfbf9eeb2004-04-25 21:21:33 +0000752 if (is_write && page_unprotect(address, pc, puc)) {
bellard67867302003-11-23 17:05:30 +0000753 return 1;
754 }
755
bellardce097762004-01-04 23:53:18 +0000756 /* see if it is an MMU fault */
bellard7f957d22004-01-18 23:19:48 +0000757 ret = cpu_ppc_handle_mmu_fault(env, address, is_write, msr_pr, 0);
bellardce097762004-01-04 23:53:18 +0000758 if (ret < 0)
759 return 0; /* not an MMU fault */
760 if (ret == 0)
761 return 1; /* the MMU fault was handled without causing real CPU fault */
762
bellard67867302003-11-23 17:05:30 +0000763 /* now we have a real cpu fault */
764 tb = tb_find_pc(pc);
765 if (tb) {
766 /* the PC is inside the translated code. It means that we have
767 a virtual CPU fault */
bellardbf3e8bf2004-02-16 21:58:54 +0000768 cpu_restore_state(tb, env, pc, puc);
bellard67867302003-11-23 17:05:30 +0000769 }
bellardce097762004-01-04 23:53:18 +0000770 if (ret == 1) {
bellard67867302003-11-23 17:05:30 +0000771#if 0
bellardce097762004-01-04 23:53:18 +0000772 printf("PF exception: NIP=0x%08x error=0x%x %p\n",
773 env->nip, env->error_code, tb);
bellard67867302003-11-23 17:05:30 +0000774#endif
775 /* we restore the process signal mask as the sigreturn should
776 do it (XXX: use sigsetjmp) */
bellardbf3e8bf2004-02-16 21:58:54 +0000777 sigprocmask(SIG_SETMASK, old_set, NULL);
bellard9fddaa02004-05-21 12:59:32 +0000778 do_raise_exception_err(env->exception_index, env->error_code);
bellardce097762004-01-04 23:53:18 +0000779 } else {
780 /* activate soft MMU for this block */
bellardfbf9eeb2004-04-25 21:21:33 +0000781 cpu_resume_from_signal(env, puc);
bellardce097762004-01-04 23:53:18 +0000782 }
bellard67867302003-11-23 17:05:30 +0000783 /* never comes here */
784 return 1;
785}
bellarde4533c72003-06-15 19:51:39 +0000786#else
787#error unsupported target CPU
788#endif
bellard9de5e442003-03-23 16:49:39 +0000789
bellard2b413142003-05-14 23:01:10 +0000790#if defined(__i386__)
791
bellardbf3e8bf2004-02-16 21:58:54 +0000792#if defined(USE_CODE_COPY)
793static void cpu_send_trap(unsigned long pc, int trap,
794 struct ucontext *uc)
795{
796 TranslationBlock *tb;
797
798 if (cpu_single_env)
799 env = cpu_single_env; /* XXX: find a correct solution for multithread */
800 /* now we have a real cpu fault */
801 tb = tb_find_pc(pc);
802 if (tb) {
803 /* the PC is inside the translated code. It means that we have
804 a virtual CPU fault */
805 cpu_restore_state(tb, env, pc, uc);
806 }
807 sigprocmask(SIG_SETMASK, &uc->uc_sigmask, NULL);
808 raise_exception_err(trap, env->error_code);
809}
810#endif
811
bellarde4533c72003-06-15 19:51:39 +0000812int cpu_signal_handler(int host_signum, struct siginfo *info,
813 void *puc)
bellard9de5e442003-03-23 16:49:39 +0000814{
bellard9de5e442003-03-23 16:49:39 +0000815 struct ucontext *uc = puc;
816 unsigned long pc;
bellardbf3e8bf2004-02-16 21:58:54 +0000817 int trapno;
bellard97eb5b12004-02-25 23:19:55 +0000818
bellardd691f662003-03-24 21:58:34 +0000819#ifndef REG_EIP
820/* for glibc 2.1 */
bellardfd6ce8f2003-05-14 19:00:11 +0000821#define REG_EIP EIP
822#define REG_ERR ERR
823#define REG_TRAPNO TRAPNO
bellardd691f662003-03-24 21:58:34 +0000824#endif
bellardfc2b4c42003-03-29 16:52:44 +0000825 pc = uc->uc_mcontext.gregs[REG_EIP];
bellardbf3e8bf2004-02-16 21:58:54 +0000826 trapno = uc->uc_mcontext.gregs[REG_TRAPNO];
827#if defined(TARGET_I386) && defined(USE_CODE_COPY)
828 if (trapno == 0x00 || trapno == 0x05) {
829 /* send division by zero or bound exception */
830 cpu_send_trap(pc, trapno, uc);
831 return 1;
832 } else
833#endif
834 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
835 trapno == 0xe ?
836 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
837 &uc->uc_sigmask, puc);
bellard2b413142003-05-14 23:01:10 +0000838}
839
bellardbc51c5c2004-03-17 23:46:04 +0000840#elif defined(__x86_64__)
841
842int cpu_signal_handler(int host_signum, struct siginfo *info,
843 void *puc)
844{
845 struct ucontext *uc = puc;
846 unsigned long pc;
847
848 pc = uc->uc_mcontext.gregs[REG_RIP];
849 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
850 uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ?
851 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
852 &uc->uc_sigmask, puc);
853}
854
bellard25eb4482003-05-14 21:50:54 +0000855#elif defined(__powerpc)
bellard2b413142003-05-14 23:01:10 +0000856
bellarde4533c72003-06-15 19:51:39 +0000857int cpu_signal_handler(int host_signum, struct siginfo *info,
858 void *puc)
bellard2b413142003-05-14 23:01:10 +0000859{
bellard25eb4482003-05-14 21:50:54 +0000860 struct ucontext *uc = puc;
861 struct pt_regs *regs = uc->uc_mcontext.regs;
862 unsigned long pc;
bellard25eb4482003-05-14 21:50:54 +0000863 int is_write;
864
865 pc = regs->nip;
bellard25eb4482003-05-14 21:50:54 +0000866 is_write = 0;
867#if 0
868 /* ppc 4xx case */
869 if (regs->dsisr & 0x00800000)
870 is_write = 1;
bellard9de5e442003-03-23 16:49:39 +0000871#else
bellard25eb4482003-05-14 21:50:54 +0000872 if (regs->trap != 0x400 && (regs->dsisr & 0x02000000))
873 is_write = 1;
874#endif
875 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellardbf3e8bf2004-02-16 21:58:54 +0000876 is_write, &uc->uc_sigmask, puc);
bellard9de5e442003-03-23 16:49:39 +0000877}
bellard2b413142003-05-14 23:01:10 +0000878
bellard2f87c602003-06-02 20:38:09 +0000879#elif defined(__alpha__)
880
bellarde4533c72003-06-15 19:51:39 +0000881int cpu_signal_handler(int host_signum, struct siginfo *info,
bellard2f87c602003-06-02 20:38:09 +0000882 void *puc)
883{
884 struct ucontext *uc = puc;
885 uint32_t *pc = uc->uc_mcontext.sc_pc;
886 uint32_t insn = *pc;
887 int is_write = 0;
888
bellard8c6939c2003-06-09 15:28:00 +0000889 /* XXX: need kernel patch to get write flag faster */
bellard2f87c602003-06-02 20:38:09 +0000890 switch (insn >> 26) {
891 case 0x0d: // stw
892 case 0x0e: // stb
893 case 0x0f: // stq_u
894 case 0x24: // stf
895 case 0x25: // stg
896 case 0x26: // sts
897 case 0x27: // stt
898 case 0x2c: // stl
899 case 0x2d: // stq
900 case 0x2e: // stl_c
901 case 0x2f: // stq_c
902 is_write = 1;
903 }
904
905 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellardbf3e8bf2004-02-16 21:58:54 +0000906 is_write, &uc->uc_sigmask, puc);
bellard2f87c602003-06-02 20:38:09 +0000907}
bellard8c6939c2003-06-09 15:28:00 +0000908#elif defined(__sparc__)
909
bellarde4533c72003-06-15 19:51:39 +0000910int cpu_signal_handler(int host_signum, struct siginfo *info,
911 void *puc)
bellard8c6939c2003-06-09 15:28:00 +0000912{
913 uint32_t *regs = (uint32_t *)(info + 1);
914 void *sigmask = (regs + 20);
915 unsigned long pc;
916 int is_write;
917 uint32_t insn;
918
919 /* XXX: is there a standard glibc define ? */
920 pc = regs[1];
921 /* XXX: need kernel patch to get write flag faster */
922 is_write = 0;
923 insn = *(uint32_t *)pc;
924 if ((insn >> 30) == 3) {
925 switch((insn >> 19) & 0x3f) {
926 case 0x05: // stb
927 case 0x06: // sth
928 case 0x04: // st
929 case 0x07: // std
930 case 0x24: // stf
931 case 0x27: // stdf
932 case 0x25: // stfsr
933 is_write = 1;
934 break;
935 }
936 }
937 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellardbf3e8bf2004-02-16 21:58:54 +0000938 is_write, sigmask, NULL);
bellard8c6939c2003-06-09 15:28:00 +0000939}
940
941#elif defined(__arm__)
942
bellarde4533c72003-06-15 19:51:39 +0000943int cpu_signal_handler(int host_signum, struct siginfo *info,
944 void *puc)
bellard8c6939c2003-06-09 15:28:00 +0000945{
946 struct ucontext *uc = puc;
947 unsigned long pc;
948 int is_write;
949
950 pc = uc->uc_mcontext.gregs[R15];
951 /* XXX: compute is_write */
952 is_write = 0;
953 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
954 is_write,
955 &uc->uc_sigmask);
956}
957
bellard38e584a2003-08-10 22:14:22 +0000958#elif defined(__mc68000)
959
960int cpu_signal_handler(int host_signum, struct siginfo *info,
961 void *puc)
962{
963 struct ucontext *uc = puc;
964 unsigned long pc;
965 int is_write;
966
967 pc = uc->uc_mcontext.gregs[16];
968 /* XXX: compute is_write */
969 is_write = 0;
970 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
971 is_write,
bellardbf3e8bf2004-02-16 21:58:54 +0000972 &uc->uc_sigmask, puc);
bellard38e584a2003-08-10 22:14:22 +0000973}
974
bellard2b413142003-05-14 23:01:10 +0000975#else
976
bellard3fb2ded2003-06-24 13:22:59 +0000977#error host CPU specific signal handler needed
bellard2b413142003-05-14 23:01:10 +0000978
979#endif
bellard67b915a2004-03-31 23:37:16 +0000980
981#endif /* !defined(CONFIG_SOFTMMU) */