]> Git Repo - qemu.git/blame - cpu-exec.c
added linux < 2.4.21 vm86 bug workaround - added extensive TF flag test
[qemu.git] / cpu-exec.c
CommitLineData
7d13299d
FB
1/*
2 * i386 emulator main execution loop
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
3ef693a0
FB
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
7d13299d 10 *
3ef693a0
FB
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
7d13299d 15 *
3ef693a0
FB
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
7d13299d 19 */
e4533c7a
FB
20#include "config.h"
21#ifdef TARGET_I386
7d13299d 22#include "exec-i386.h"
e4533c7a
FB
23#endif
24#ifdef TARGET_ARM
25#include "exec-arm.h"
26#endif
27
956034d7 28#include "disas.h"
7d13299d 29
dc99065b 30//#define DEBUG_EXEC
9de5e440 31//#define DEBUG_SIGNAL
7d13299d 32
e4533c7a
FB
33#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
7d13299d
FB
41/* main execution loop */
42
e4533c7a 43int cpu_exec(CPUState *env1)
7d13299d 44{
e4533c7a
FB
45 int saved_T0, saved_T1, saved_T2;
46 CPUState *saved_env;
04369ff2
FB
47#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;
8c6939c0
FB
70#endif
71#ifdef __sparc__
72 int saved_i7, tmp_T0;
04369ff2 73#endif
68a79315 74 int code_gen_size, ret, interrupt_request;
7d13299d 75 void (*gen_func)(void);
9de5e440 76 TranslationBlock *tb, **ptb;
dab2ed99 77 uint8_t *tc_ptr, *cs_base, *pc;
6dbad63e 78 unsigned int flags;
8c6939c0 79
7d13299d
FB
80 /* first we save global registers */
81 saved_T0 = T0;
82 saved_T1 = T1;
e4533c7a 83 saved_T2 = T2;
7d13299d
FB
84 saved_env = env;
85 env = env1;
e4533c7a
FB
86#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)
04369ff2
FB
92#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
7d13299d 124
9de5e440 125 /* put eflags in CPU temporary format */
fc2b4c48
FB
126 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
127 DF = 1 - (2 * ((env->eflags >> 10) & 1));
9de5e440 128 CC_OP = CC_OP_EFLAGS;
fc2b4c48 129 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
e4533c7a
FB
130#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
3fb2ded1 142 env->exception_index = -1;
9d27abd9 143
7d13299d 144 /* prepare setjmp context for exception handling */
3fb2ded1
FB
145 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 */
83479e77 157#if defined(TARGET_I386)
3fb2ded1
FB
158 do_interrupt_user(env->exception_index,
159 env->exception_is_int,
160 env->error_code,
161 env->exception_next_eip);
83479e77 162#endif
3fb2ded1
FB
163 ret = env->exception_index;
164 break;
165 } else {
83479e77 166#if defined(TARGET_I386)
3fb2ded1
FB
167 /* 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,
d05e66d2 173 env->exception_next_eip, 0);
83479e77 174#endif
3fb2ded1
FB
175 }
176 env->exception_index = -1;
177 }
3fb2ded1
FB
178 T0 = 0; /* force lookup of first TB */
179 for(;;) {
8c6939c0 180#ifdef __sparc__
3fb2ded1
FB
181 /* g1 can be modified by some libc? functions */
182 tmp_T0 = T0;
8c6939c0 183#endif
68a79315 184 interrupt_request = env->interrupt_request;
2e255c6b 185 if (__builtin_expect(interrupt_request, 0)) {
68a79315
FB
186#if defined(TARGET_I386)
187 /* if hardware interrupt pending, we execute it */
188 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
3f337316
FB
189 (env->eflags & IF_MASK) &&
190 !(env->hflags & HF_INHIBIT_IRQ_MASK)) {
68a79315
FB
191 int intno;
192 intno = cpu_x86_get_pic_interrupt(env);
193 if (loglevel) {
194 fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno);
195 }
d05e66d2 196 do_interrupt(intno, 0, 0, 0, 1);
68a79315 197 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
907a5b26
FB
198 /* ensure that no TB jump will be modified as
199 the program flow was changed */
200#ifdef __sparc__
201 tmp_T0 = 0;
202#else
203 T0 = 0;
204#endif
68a79315
FB
205 }
206#endif
207 if (interrupt_request & CPU_INTERRUPT_EXIT) {
208 env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
209 env->exception_index = EXCP_INTERRUPT;
210 cpu_loop_exit();
211 }
3fb2ded1 212 }
7d13299d 213#ifdef DEBUG_EXEC
3fb2ded1 214 if (loglevel) {
e4533c7a 215#if defined(TARGET_I386)
3fb2ded1
FB
216 /* restore flags in standard format */
217 env->regs[R_EAX] = EAX;
218 env->regs[R_EBX] = EBX;
219 env->regs[R_ECX] = ECX;
220 env->regs[R_EDX] = EDX;
221 env->regs[R_ESI] = ESI;
222 env->regs[R_EDI] = EDI;
223 env->regs[R_EBP] = EBP;
224 env->regs[R_ESP] = ESP;
225 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
68a79315 226 cpu_x86_dump_state(env, logfile, X86_DUMP_CCOP);
3fb2ded1 227 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
e4533c7a 228#elif defined(TARGET_ARM)
1b21b62a 229 env->cpsr = compute_cpsr();
3fb2ded1 230 cpu_arm_dump_state(env, logfile, 0);
1b21b62a 231 env->cpsr &= ~0xf0000000;
e4533c7a
FB
232#else
233#error unsupported target CPU
234#endif
3fb2ded1 235 }
7d13299d 236#endif
3f337316
FB
237 /* we record a subset of the CPU state. It will
238 always be the same before a given translated block
239 is executed. */
e4533c7a 240#if defined(TARGET_I386)
2e255c6b 241 flags = env->hflags;
3f337316 242 flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK));
3fb2ded1
FB
243 cs_base = env->segs[R_CS].base;
244 pc = cs_base + env->eip;
e4533c7a 245#elif defined(TARGET_ARM)
3fb2ded1
FB
246 flags = 0;
247 cs_base = 0;
248 pc = (uint8_t *)env->regs[15];
e4533c7a
FB
249#else
250#error unsupported CPU
251#endif
3fb2ded1
FB
252 tb = tb_find(&ptb, (unsigned long)pc, (unsigned long)cs_base,
253 flags);
d4e8164f 254 if (!tb) {
3fb2ded1
FB
255 spin_lock(&tb_lock);
256 /* if no translated code available, then translate it now */
d4e8164f 257 tb = tb_alloc((unsigned long)pc);
3fb2ded1
FB
258 if (!tb) {
259 /* flush must be done */
260 tb_flush();
261 /* cannot fail at this point */
262 tb = tb_alloc((unsigned long)pc);
263 /* don't forget to invalidate previous TB info */
264 ptb = &tb_hash[tb_hash_func((unsigned long)pc)];
265 T0 = 0;
266 }
267 tc_ptr = code_gen_ptr;
268 tb->tc_ptr = tc_ptr;
269 tb->cs_base = (unsigned long)cs_base;
270 tb->flags = flags;
4c3a88a2 271 ret = cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size);
e4533c7a 272#if defined(TARGET_I386)
3fb2ded1
FB
273 /* XXX: suppress that, this is incorrect */
274 /* if invalid instruction, signal it */
275 if (ret != 0) {
276 /* NOTE: the tb is allocated but not linked, so we
277 can leave it */
278 spin_unlock(&tb_lock);
279 raise_exception(EXCP06_ILLOP);
280 }
281#endif
282 *ptb = tb;
283 tb->hash_next = NULL;
284 tb_link(tb);
285 code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1));
25eb4484 286 spin_unlock(&tb_lock);
9de5e440 287 }
9d27abd9 288#ifdef DEBUG_EXEC
3fb2ded1
FB
289 if (loglevel) {
290 fprintf(logfile, "Trace 0x%08lx [0x%08lx] %s\n",
291 (long)tb->tc_ptr, (long)tb->pc,
292 lookup_symbol((void *)tb->pc));
293 }
9d27abd9 294#endif
8c6939c0 295#ifdef __sparc__
3fb2ded1 296 T0 = tmp_T0;
8c6939c0 297#endif
3fb2ded1 298 /* see if we can patch the calling TB. XXX: remove TF test */
1b21b62a 299 if (T0 != 0
e4533c7a 300#if defined(TARGET_I386)
3fb2ded1 301 && !(env->eflags & TF_MASK)
e4533c7a 302#endif
3fb2ded1
FB
303 ) {
304 spin_lock(&tb_lock);
305 tb_add_jump((TranslationBlock *)(T0 & ~3), T0 & 3, tb);
306 spin_unlock(&tb_lock);
307 }
3fb2ded1 308 tc_ptr = tb->tc_ptr;
83479e77 309 env->current_tb = tb;
3fb2ded1
FB
310 /* execute the generated code */
311 gen_func = (void *)tc_ptr;
8c6939c0 312#if defined(__sparc__)
3fb2ded1
FB
313 __asm__ __volatile__("call %0\n\t"
314 "mov %%o7,%%i0"
315 : /* no outputs */
316 : "r" (gen_func)
317 : "i0", "i1", "i2", "i3", "i4", "i5");
8c6939c0 318#elif defined(__arm__)
3fb2ded1
FB
319 asm volatile ("mov pc, %0\n\t"
320 ".global exec_loop\n\t"
321 "exec_loop:\n\t"
322 : /* no outputs */
323 : "r" (gen_func)
324 : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14");
ae228531 325#else
3fb2ded1 326 gen_func();
ae228531 327#endif
83479e77 328 env->current_tb = NULL;
4cbf74b6
FB
329 /* reset soft MMU for next block (it can currently
330 only be set by a memory fault) */
331#if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU)
3f337316
FB
332 if (env->hflags & HF_SOFTMMU_MASK) {
333 env->hflags &= ~HF_SOFTMMU_MASK;
4cbf74b6
FB
334 /* do not allow linking to another block */
335 T0 = 0;
336 }
337#endif
3fb2ded1
FB
338 }
339 } else {
7d13299d 340 }
3fb2ded1
FB
341 } /* for(;;) */
342
7d13299d 343
e4533c7a 344#if defined(TARGET_I386)
9de5e440 345 /* restore flags in standard format */
fc2b4c48 346 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
9de5e440 347
7d13299d 348 /* restore global registers */
04369ff2
FB
349#ifdef reg_EAX
350 EAX = saved_EAX;
351#endif
352#ifdef reg_ECX
353 ECX = saved_ECX;
354#endif
355#ifdef reg_EDX
356 EDX = saved_EDX;
357#endif
358#ifdef reg_EBX
359 EBX = saved_EBX;
360#endif
361#ifdef reg_ESP
362 ESP = saved_ESP;
363#endif
364#ifdef reg_EBP
365 EBP = saved_EBP;
366#endif
367#ifdef reg_ESI
368 ESI = saved_ESI;
369#endif
370#ifdef reg_EDI
371 EDI = saved_EDI;
8c6939c0 372#endif
e4533c7a 373#elif defined(TARGET_ARM)
1b21b62a 374 env->cpsr = compute_cpsr();
e4533c7a
FB
375#else
376#error unsupported target CPU
377#endif
8c6939c0
FB
378#ifdef __sparc__
379 asm volatile ("mov %0, %%i7" : : "r" (saved_i7));
04369ff2 380#endif
7d13299d
FB
381 T0 = saved_T0;
382 T1 = saved_T1;
e4533c7a 383 T2 = saved_T2;
7d13299d
FB
384 env = saved_env;
385 return ret;
386}
6dbad63e 387
e4533c7a
FB
388#if defined(TARGET_I386)
389
6dbad63e
FB
390void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
391{
392 CPUX86State *saved_env;
393
394 saved_env = env;
395 env = s;
a412ac57 396 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
a513fe19 397 selector &= 0xffff;
2e255c6b
FB
398 cpu_x86_load_seg_cache(env, seg_reg, selector,
399 (uint8_t *)(selector << 4), 0xffff, 0);
a513fe19
FB
400 } else {
401 load_seg(seg_reg, selector, 0);
402 }
6dbad63e
FB
403 env = saved_env;
404}
9de5e440 405
d0a1ffc9
FB
406void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32)
407{
408 CPUX86State *saved_env;
409
410 saved_env = env;
411 env = s;
412
413 helper_fsave(ptr, data32);
414
415 env = saved_env;
416}
417
418void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32)
419{
420 CPUX86State *saved_env;
421
422 saved_env = env;
423 env = s;
424
425 helper_frstor(ptr, data32);
426
427 env = saved_env;
428}
429
e4533c7a
FB
430#endif /* TARGET_I386 */
431
9de5e440
FB
432#undef EAX
433#undef ECX
434#undef EDX
435#undef EBX
436#undef ESP
437#undef EBP
438#undef ESI
439#undef EDI
440#undef EIP
441#include <signal.h>
442#include <sys/ucontext.h>
443
3fb2ded1
FB
444#if defined(TARGET_I386)
445
b56dad1c 446/* 'pc' is the host PC at which the exception was raised. 'address' is
fd6ce8f6
FB
447 the effective address of the memory exception. 'is_write' is 1 if a
448 write caused the exception and otherwise 0'. 'old_set' is the
449 signal set which should be restored */
2b413144
FB
450static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
451 int is_write, sigset_t *old_set)
9de5e440 452{
a513fe19
FB
453 TranslationBlock *tb;
454 int ret;
68a79315 455
83479e77
FB
456 if (cpu_single_env)
457 env = cpu_single_env; /* XXX: find a correct solution for multithread */
fd6ce8f6 458#if defined(DEBUG_SIGNAL)
3fb2ded1 459 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
fd6ce8f6 460 pc, address, is_write, *(unsigned long *)old_set);
9de5e440 461#endif
25eb4484 462 /* XXX: locking issue */
fd6ce8f6 463 if (is_write && page_unprotect(address)) {
fd6ce8f6
FB
464 return 1;
465 }
3fb2ded1
FB
466 /* see if it is an MMU fault */
467 ret = cpu_x86_handle_mmu_fault(env, address, is_write);
468 if (ret < 0)
469 return 0; /* not an MMU fault */
470 if (ret == 0)
471 return 1; /* the MMU fault was handled without causing real CPU fault */
472 /* now we have a real cpu fault */
a513fe19
FB
473 tb = tb_find_pc(pc);
474 if (tb) {
9de5e440
FB
475 /* the PC is inside the translated code. It means that we have
476 a virtual CPU fault */
3fb2ded1
FB
477 cpu_restore_state(tb, env, pc);
478 }
4cbf74b6 479 if (ret == 1) {
3fb2ded1 480#if 0
4cbf74b6
FB
481 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
482 env->eip, env->cr[2], env->error_code);
3fb2ded1 483#endif
4cbf74b6
FB
484 /* we restore the process signal mask as the sigreturn should
485 do it (XXX: use sigsetjmp) */
486 sigprocmask(SIG_SETMASK, old_set, NULL);
487 raise_exception_err(EXCP0E_PAGE, env->error_code);
488 } else {
489 /* activate soft MMU for this block */
3f337316 490 env->hflags |= HF_SOFTMMU_MASK;
4cbf74b6
FB
491 sigprocmask(SIG_SETMASK, old_set, NULL);
492 cpu_loop_exit();
493 }
3fb2ded1
FB
494 /* never comes here */
495 return 1;
496}
497
e4533c7a 498#elif defined(TARGET_ARM)
3fb2ded1
FB
499static 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}
e4533c7a
FB
505#else
506#error unsupported target CPU
507#endif
9de5e440 508
2b413144
FB
509#if defined(__i386__)
510
e4533c7a
FB
511int cpu_signal_handler(int host_signum, struct siginfo *info,
512 void *puc)
9de5e440 513{
9de5e440
FB
514 struct ucontext *uc = puc;
515 unsigned long pc;
9de5e440 516
d691f669
FB
517#ifndef REG_EIP
518/* for glibc 2.1 */
fd6ce8f6
FB
519#define REG_EIP EIP
520#define REG_ERR ERR
521#define REG_TRAPNO TRAPNO
d691f669 522#endif
fc2b4c48 523 pc = uc->uc_mcontext.gregs[REG_EIP];
fd6ce8f6
FB
524 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,
2b413144
FB
527 &uc->uc_sigmask);
528}
529
25eb4484 530#elif defined(__powerpc)
2b413144 531
e4533c7a
FB
532int cpu_signal_handler(int host_signum, struct siginfo *info,
533 void *puc)
2b413144 534{
25eb4484
FB
535 struct ucontext *uc = puc;
536 struct pt_regs *regs = uc->uc_mcontext.regs;
537 unsigned long pc;
25eb4484
FB
538 int is_write;
539
540 pc = regs->nip;
25eb4484
FB
541 is_write = 0;
542#if 0
543 /* ppc 4xx case */
544 if (regs->dsisr & 0x00800000)
545 is_write = 1;
546#else
547 if (regs->trap != 0x400 && (regs->dsisr & 0x02000000))
548 is_write = 1;
549#endif
550 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
2b413144
FB
551 is_write, &uc->uc_sigmask);
552}
553
2f87c607
FB
554#elif defined(__alpha__)
555
e4533c7a 556int cpu_signal_handler(int host_signum, struct siginfo *info,
2f87c607
FB
557 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
8c6939c0 564 /* XXX: need kernel patch to get write flag faster */
2f87c607
FB
565 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}
8c6939c0
FB
583#elif defined(__sparc__)
584
e4533c7a
FB
585int cpu_signal_handler(int host_signum, struct siginfo *info,
586 void *puc)
8c6939c0
FB
587{
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
e4533c7a
FB
618int cpu_signal_handler(int host_signum, struct siginfo *info,
619 void *puc)
8c6939c0
FB
620{
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
38e584a0
FB
633#elif defined(__mc68000)
634
635int cpu_signal_handler(int host_signum, struct siginfo *info,
636 void *puc)
637{
638 struct ucontext *uc = puc;
639 unsigned long pc;
640 int is_write;
641
642 pc = uc->uc_mcontext.gregs[16];
643 /* XXX: compute is_write */
644 is_write = 0;
645 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
646 is_write,
647 &uc->uc_sigmask);
648}
649
9de5e440 650#else
2b413144 651
3fb2ded1 652#error host CPU specific signal handler needed
2b413144 653
9de5e440 654#endif
This page took 0.121539 seconds and 4 git commands to generate.