]> git.proxmox.com Git - mirror_qemu.git/blame - cpu-exec.c
ARM VFP support (Paul Brook)
[mirror_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 20#include "config.h"
93ac68bc 21#include "exec.h"
956034d7 22#include "disas.h"
7d13299d 23
fbf9eeb3
FB
24#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
36bdbe54
FB
38int tb_invalidated_flag;
39
dc99065b 40//#define DEBUG_EXEC
9de5e440 41//#define DEBUG_SIGNAL
7d13299d 42
93ac68bc 43#if defined(TARGET_ARM) || defined(TARGET_SPARC)
e4533c7a
FB
44/* XXX: unify with i386 target */
45void cpu_loop_exit(void)
46{
47 longjmp(env->jmp_env, 1);
48}
49#endif
50
fbf9eeb3
FB
51/* 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
7d13299d
FB
73/* main execution loop */
74
e4533c7a 75int cpu_exec(CPUState *env1)
7d13299d 76{
e4533c7a
FB
77 int saved_T0, saved_T1, saved_T2;
78 CPUState *saved_env;
04369ff2
FB
79#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;
8c6939c0
FB
102#endif
103#ifdef __sparc__
104 int saved_i7, tmp_T0;
04369ff2 105#endif
68a79315 106 int code_gen_size, ret, interrupt_request;
7d13299d 107 void (*gen_func)(void);
9de5e440 108 TranslationBlock *tb, **ptb;
c27004ec
FB
109 target_ulong cs_base, pc;
110 uint8_t *tc_ptr;
6dbad63e 111 unsigned int flags;
8c6939c0 112
7d13299d 113 /* first we save global registers */
c27004ec
FB
114 saved_env = env;
115 env = env1;
7d13299d
FB
116 saved_T0 = T0;
117 saved_T1 = T1;
e4533c7a 118 saved_T2 = T2;
e4533c7a
FB
119#ifdef __sparc__
120 /* we also save i7 because longjmp may not restore it */
121 asm volatile ("mov %%i7, %0" : "=r" (saved_i7));
122#endif
123
124#if defined(TARGET_I386)
04369ff2
FB
125#ifdef reg_EAX
126 saved_EAX = EAX;
04369ff2
FB
127#endif
128#ifdef reg_ECX
129 saved_ECX = ECX;
04369ff2
FB
130#endif
131#ifdef reg_EDX
132 saved_EDX = EDX;
04369ff2
FB
133#endif
134#ifdef reg_EBX
135 saved_EBX = EBX;
04369ff2
FB
136#endif
137#ifdef reg_ESP
138 saved_ESP = ESP;
04369ff2
FB
139#endif
140#ifdef reg_EBP
141 saved_EBP = EBP;
04369ff2
FB
142#endif
143#ifdef reg_ESI
144 saved_ESI = ESI;
04369ff2
FB
145#endif
146#ifdef reg_EDI
147 saved_EDI = EDI;
04369ff2 148#endif
0d1a29f9
FB
149
150 env_to_regs();
9de5e440 151 /* put eflags in CPU temporary format */
fc2b4c48
FB
152 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
153 DF = 1 - (2 * ((env->eflags >> 10) & 1));
9de5e440 154 CC_OP = CC_OP_EFLAGS;
fc2b4c48 155 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
e4533c7a
FB
156#elif defined(TARGET_ARM)
157 {
158 unsigned int psr;
159 psr = env->cpsr;
160 env->CF = (psr >> 29) & 1;
161 env->NZF = (psr & 0xc0000000) ^ 0x40000000;
162 env->VF = (psr << 3) & 0x80000000;
99c475ab
FB
163 env->QF = (psr >> 27) & 1;
164 env->cpsr = psr & ~CACHED_CPSR_BITS;
e4533c7a 165 }
93ac68bc 166#elif defined(TARGET_SPARC)
67867308 167#elif defined(TARGET_PPC)
e4533c7a
FB
168#else
169#error unsupported target CPU
170#endif
3fb2ded1 171 env->exception_index = -1;
9d27abd9 172
7d13299d 173 /* prepare setjmp context for exception handling */
3fb2ded1
FB
174 for(;;) {
175 if (setjmp(env->jmp_env) == 0) {
ee8b7021 176 env->current_tb = NULL;
3fb2ded1
FB
177 /* if an exception is pending, we execute it here */
178 if (env->exception_index >= 0) {
179 if (env->exception_index >= EXCP_INTERRUPT) {
180 /* exit request from the cpu execution loop */
181 ret = env->exception_index;
182 break;
183 } else if (env->user_mode_only) {
184 /* if user mode only, we simulate a fake exception
185 which will be hanlded outside the cpu execution
186 loop */
83479e77 187#if defined(TARGET_I386)
3fb2ded1
FB
188 do_interrupt_user(env->exception_index,
189 env->exception_is_int,
190 env->error_code,
191 env->exception_next_eip);
83479e77 192#endif
3fb2ded1
FB
193 ret = env->exception_index;
194 break;
195 } else {
83479e77 196#if defined(TARGET_I386)
3fb2ded1
FB
197 /* simulate a real cpu exception. On i386, it can
198 trigger new exceptions, but we do not handle
199 double or triple faults yet. */
200 do_interrupt(env->exception_index,
201 env->exception_is_int,
202 env->error_code,
d05e66d2 203 env->exception_next_eip, 0);
ce09776b
FB
204#elif defined(TARGET_PPC)
205 do_interrupt(env);
e95c8d51 206#elif defined(TARGET_SPARC)
1a0c3292 207 do_interrupt(env->exception_index);
83479e77 208#endif
3fb2ded1
FB
209 }
210 env->exception_index = -1;
9df217a3
FB
211 }
212#ifdef USE_KQEMU
213 if (kqemu_is_ok(env) && env->interrupt_request == 0) {
214 int ret;
215 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
216 ret = kqemu_cpu_exec(env);
217 /* put eflags in CPU temporary format */
218 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
219 DF = 1 - (2 * ((env->eflags >> 10) & 1));
220 CC_OP = CC_OP_EFLAGS;
221 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
222 if (ret == 1) {
223 /* exception */
224 longjmp(env->jmp_env, 1);
225 } else if (ret == 2) {
226 /* softmmu execution needed */
227 } else {
228 if (env->interrupt_request != 0) {
229 /* hardware interrupt will be executed just after */
230 } else {
231 /* otherwise, we restart */
232 longjmp(env->jmp_env, 1);
233 }
234 }
3fb2ded1 235 }
9df217a3
FB
236#endif
237
3fb2ded1
FB
238 T0 = 0; /* force lookup of first TB */
239 for(;;) {
8c6939c0 240#ifdef __sparc__
3fb2ded1
FB
241 /* g1 can be modified by some libc? functions */
242 tmp_T0 = T0;
8c6939c0 243#endif
68a79315 244 interrupt_request = env->interrupt_request;
2e255c6b 245 if (__builtin_expect(interrupt_request, 0)) {
68a79315
FB
246#if defined(TARGET_I386)
247 /* if hardware interrupt pending, we execute it */
248 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
3f337316
FB
249 (env->eflags & IF_MASK) &&
250 !(env->hflags & HF_INHIBIT_IRQ_MASK)) {
68a79315 251 int intno;
fbf9eeb3 252 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
a541f297 253 intno = cpu_get_pic_interrupt(env);
f193c797 254 if (loglevel & CPU_LOG_TB_IN_ASM) {
68a79315
FB
255 fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno);
256 }
d05e66d2 257 do_interrupt(intno, 0, 0, 0, 1);
907a5b26
FB
258 /* ensure that no TB jump will be modified as
259 the program flow was changed */
260#ifdef __sparc__
261 tmp_T0 = 0;
262#else
263 T0 = 0;
264#endif
68a79315 265 }
ce09776b 266#elif defined(TARGET_PPC)
9fddaa0c
FB
267#if 0
268 if ((interrupt_request & CPU_INTERRUPT_RESET)) {
269 cpu_ppc_reset(env);
270 }
271#endif
272 if (msr_ee != 0) {
ce09776b 273 if ((interrupt_request & CPU_INTERRUPT_HARD)) {
9fddaa0c
FB
274 /* Raise it */
275 env->exception_index = EXCP_EXTERNAL;
276 env->error_code = 0;
ce09776b
FB
277 do_interrupt(env);
278 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
9fddaa0c
FB
279 } else if ((interrupt_request & CPU_INTERRUPT_TIMER)) {
280 /* Raise it */
281 env->exception_index = EXCP_DECR;
282 env->error_code = 0;
283 do_interrupt(env);
284 env->interrupt_request &= ~CPU_INTERRUPT_TIMER;
285 }
ce09776b 286 }
e95c8d51
FB
287#elif defined(TARGET_SPARC)
288 if (interrupt_request & CPU_INTERRUPT_HARD) {
1a0c3292 289 do_interrupt(env->interrupt_index);
e95c8d51
FB
290 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
291 } else if (interrupt_request & CPU_INTERRUPT_TIMER) {
292 //do_interrupt(0, 0, 0, 0, 0);
293 env->interrupt_request &= ~CPU_INTERRUPT_TIMER;
294 }
68a79315 295#endif
bf3e8bf1
FB
296 if (interrupt_request & CPU_INTERRUPT_EXITTB) {
297 env->interrupt_request &= ~CPU_INTERRUPT_EXITTB;
298 /* ensure that no TB jump will be modified as
299 the program flow was changed */
300#ifdef __sparc__
301 tmp_T0 = 0;
302#else
303 T0 = 0;
304#endif
305 }
68a79315
FB
306 if (interrupt_request & CPU_INTERRUPT_EXIT) {
307 env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
308 env->exception_index = EXCP_INTERRUPT;
309 cpu_loop_exit();
310 }
3fb2ded1 311 }
7d13299d 312#ifdef DEBUG_EXEC
c27004ec 313 if ((loglevel & CPU_LOG_EXEC)) {
e4533c7a 314#if defined(TARGET_I386)
3fb2ded1
FB
315 /* restore flags in standard format */
316 env->regs[R_EAX] = EAX;
317 env->regs[R_EBX] = EBX;
318 env->regs[R_ECX] = ECX;
319 env->regs[R_EDX] = EDX;
320 env->regs[R_ESI] = ESI;
321 env->regs[R_EDI] = EDI;
322 env->regs[R_EBP] = EBP;
323 env->regs[R_ESP] = ESP;
324 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
7fe48483 325 cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP);
3fb2ded1 326 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
e4533c7a 327#elif defined(TARGET_ARM)
1b21b62a 328 env->cpsr = compute_cpsr();
7fe48483 329 cpu_dump_state(env, logfile, fprintf, 0);
99c475ab 330 env->cpsr &= ~CACHED_CPSR_BITS;
93ac68bc 331#elif defined(TARGET_SPARC)
7fe48483 332 cpu_dump_state (env, logfile, fprintf, 0);
67867308 333#elif defined(TARGET_PPC)
7fe48483 334 cpu_dump_state(env, logfile, fprintf, 0);
e4533c7a
FB
335#else
336#error unsupported target CPU
337#endif
3fb2ded1 338 }
7d13299d 339#endif
3f337316
FB
340 /* we record a subset of the CPU state. It will
341 always be the same before a given translated block
342 is executed. */
e4533c7a 343#if defined(TARGET_I386)
2e255c6b 344 flags = env->hflags;
3f337316 345 flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK));
3fb2ded1
FB
346 cs_base = env->segs[R_CS].base;
347 pc = cs_base + env->eip;
e4533c7a 348#elif defined(TARGET_ARM)
b7bcbe95
FB
349 flags = env->thumb | (env->vfp.vec_len << 1)
350 | (env->vfp.vec_stride << 4);
3fb2ded1 351 cs_base = 0;
c27004ec 352 pc = env->regs[15];
93ac68bc 353#elif defined(TARGET_SPARC)
67867308 354 flags = 0;
c27004ec
FB
355 cs_base = env->npc;
356 pc = env->pc;
67867308 357#elif defined(TARGET_PPC)
c4decf37 358 flags = (msr_pr << MSR_PR) | (msr_fp << MSR_FP) | (msr_se << MSR_SE);
67867308 359 cs_base = 0;
c27004ec 360 pc = env->nip;
e4533c7a
FB
361#else
362#error unsupported CPU
363#endif
c27004ec 364 tb = tb_find(&ptb, pc, cs_base,
3fb2ded1 365 flags);
d4e8164f 366 if (!tb) {
1376847f
FB
367 TranslationBlock **ptb1;
368 unsigned int h;
369 target_ulong phys_pc, phys_page1, phys_page2, virt_page2;
370
371
3fb2ded1 372 spin_lock(&tb_lock);
1376847f
FB
373
374 tb_invalidated_flag = 0;
0d1a29f9
FB
375
376 regs_to_env(); /* XXX: do it just before cpu_gen_code() */
1376847f
FB
377
378 /* find translated block using physical mappings */
c27004ec 379 phys_pc = get_phys_addr_code(env, pc);
1376847f
FB
380 phys_page1 = phys_pc & TARGET_PAGE_MASK;
381 phys_page2 = -1;
382 h = tb_phys_hash_func(phys_pc);
383 ptb1 = &tb_phys_hash[h];
384 for(;;) {
385 tb = *ptb1;
386 if (!tb)
387 goto not_found;
c27004ec 388 if (tb->pc == pc &&
1376847f 389 tb->page_addr[0] == phys_page1 &&
c27004ec 390 tb->cs_base == cs_base &&
1376847f
FB
391 tb->flags == flags) {
392 /* check next page if needed */
b516f85c 393 if (tb->page_addr[1] != -1) {
c27004ec 394 virt_page2 = (pc & TARGET_PAGE_MASK) +
b516f85c 395 TARGET_PAGE_SIZE;
1376847f
FB
396 phys_page2 = get_phys_addr_code(env, virt_page2);
397 if (tb->page_addr[1] == phys_page2)
398 goto found;
399 } else {
400 goto found;
401 }
402 }
403 ptb1 = &tb->phys_hash_next;
404 }
405 not_found:
3fb2ded1 406 /* if no translated code available, then translate it now */
c27004ec 407 tb = tb_alloc(pc);
3fb2ded1
FB
408 if (!tb) {
409 /* flush must be done */
b453b70b 410 tb_flush(env);
3fb2ded1 411 /* cannot fail at this point */
c27004ec 412 tb = tb_alloc(pc);
3fb2ded1 413 /* don't forget to invalidate previous TB info */
c27004ec 414 ptb = &tb_hash[tb_hash_func(pc)];
3fb2ded1
FB
415 T0 = 0;
416 }
417 tc_ptr = code_gen_ptr;
418 tb->tc_ptr = tc_ptr;
c27004ec 419 tb->cs_base = cs_base;
3fb2ded1 420 tb->flags = flags;
facc68be 421 cpu_gen_code(env, tb, CODE_GEN_MAX_SIZE, &code_gen_size);
1376847f
FB
422 code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1));
423
424 /* check next page if needed */
c27004ec 425 virt_page2 = (pc + tb->size - 1) & TARGET_PAGE_MASK;
1376847f 426 phys_page2 = -1;
c27004ec 427 if ((pc & TARGET_PAGE_MASK) != virt_page2) {
1376847f
FB
428 phys_page2 = get_phys_addr_code(env, virt_page2);
429 }
430 tb_link_phys(tb, phys_pc, phys_page2);
431
432 found:
36bdbe54
FB
433 if (tb_invalidated_flag) {
434 /* as some TB could have been invalidated because
435 of memory exceptions while generating the code, we
436 must recompute the hash index here */
c27004ec 437 ptb = &tb_hash[tb_hash_func(pc)];
36bdbe54
FB
438 while (*ptb != NULL)
439 ptb = &(*ptb)->hash_next;
440 T0 = 0;
441 }
1376847f 442 /* we add the TB in the virtual pc hash table */
3fb2ded1
FB
443 *ptb = tb;
444 tb->hash_next = NULL;
445 tb_link(tb);
25eb4484 446 spin_unlock(&tb_lock);
9de5e440 447 }
9d27abd9 448#ifdef DEBUG_EXEC
c1135f61 449 if ((loglevel & CPU_LOG_EXEC)) {
c27004ec
FB
450 fprintf(logfile, "Trace 0x%08lx [" TARGET_FMT_lx "] %s\n",
451 (long)tb->tc_ptr, tb->pc,
452 lookup_symbol(tb->pc));
3fb2ded1 453 }
9d27abd9 454#endif
8c6939c0 455#ifdef __sparc__
3fb2ded1 456 T0 = tmp_T0;
8c6939c0 457#endif
facc68be 458 /* see if we can patch the calling TB. */
c27004ec
FB
459 {
460 if (T0 != 0
bf3e8bf1
FB
461#if defined(TARGET_I386) && defined(USE_CODE_COPY)
462 && (tb->cflags & CF_CODE_COPY) ==
463 (((TranslationBlock *)(T0 & ~3))->cflags & CF_CODE_COPY)
464#endif
465 ) {
3fb2ded1 466 spin_lock(&tb_lock);
c27004ec 467 tb_add_jump((TranslationBlock *)(long)(T0 & ~3), T0 & 3, tb);
97eb5b14
FB
468#if defined(USE_CODE_COPY)
469 /* propagates the FP use info */
470 ((TranslationBlock *)(T0 & ~3))->cflags |=
471 (tb->cflags & CF_FP_USED);
472#endif
3fb2ded1
FB
473 spin_unlock(&tb_lock);
474 }
c27004ec 475 }
3fb2ded1 476 tc_ptr = tb->tc_ptr;
83479e77 477 env->current_tb = tb;
3fb2ded1
FB
478 /* execute the generated code */
479 gen_func = (void *)tc_ptr;
8c6939c0 480#if defined(__sparc__)
3fb2ded1
FB
481 __asm__ __volatile__("call %0\n\t"
482 "mov %%o7,%%i0"
483 : /* no outputs */
484 : "r" (gen_func)
485 : "i0", "i1", "i2", "i3", "i4", "i5");
8c6939c0 486#elif defined(__arm__)
3fb2ded1
FB
487 asm volatile ("mov pc, %0\n\t"
488 ".global exec_loop\n\t"
489 "exec_loop:\n\t"
490 : /* no outputs */
491 : "r" (gen_func)
492 : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14");
bf3e8bf1
FB
493#elif defined(TARGET_I386) && defined(USE_CODE_COPY)
494{
495 if (!(tb->cflags & CF_CODE_COPY)) {
97eb5b14
FB
496 if ((tb->cflags & CF_FP_USED) && env->native_fp_regs) {
497 save_native_fp_state(env);
498 }
bf3e8bf1
FB
499 gen_func();
500 } else {
97eb5b14
FB
501 if ((tb->cflags & CF_FP_USED) && !env->native_fp_regs) {
502 restore_native_fp_state(env);
503 }
bf3e8bf1
FB
504 /* we work with native eflags */
505 CC_SRC = cc_table[CC_OP].compute_all();
506 CC_OP = CC_OP_EFLAGS;
507 asm(".globl exec_loop\n"
508 "\n"
509 "debug1:\n"
510 " pushl %%ebp\n"
511 " fs movl %10, %9\n"
512 " fs movl %11, %%eax\n"
513 " andl $0x400, %%eax\n"
514 " fs orl %8, %%eax\n"
515 " pushl %%eax\n"
516 " popf\n"
517 " fs movl %%esp, %12\n"
518 " fs movl %0, %%eax\n"
519 " fs movl %1, %%ecx\n"
520 " fs movl %2, %%edx\n"
521 " fs movl %3, %%ebx\n"
522 " fs movl %4, %%esp\n"
523 " fs movl %5, %%ebp\n"
524 " fs movl %6, %%esi\n"
525 " fs movl %7, %%edi\n"
526 " fs jmp *%9\n"
527 "exec_loop:\n"
528 " fs movl %%esp, %4\n"
529 " fs movl %12, %%esp\n"
530 " fs movl %%eax, %0\n"
531 " fs movl %%ecx, %1\n"
532 " fs movl %%edx, %2\n"
533 " fs movl %%ebx, %3\n"
534 " fs movl %%ebp, %5\n"
535 " fs movl %%esi, %6\n"
536 " fs movl %%edi, %7\n"
537 " pushf\n"
538 " popl %%eax\n"
539 " movl %%eax, %%ecx\n"
540 " andl $0x400, %%ecx\n"
541 " shrl $9, %%ecx\n"
542 " andl $0x8d5, %%eax\n"
543 " fs movl %%eax, %8\n"
544 " movl $1, %%eax\n"
545 " subl %%ecx, %%eax\n"
546 " fs movl %%eax, %11\n"
547 " fs movl %9, %%ebx\n" /* get T0 value */
548 " popl %%ebp\n"
549 :
550 : "m" (*(uint8_t *)offsetof(CPUState, regs[0])),
551 "m" (*(uint8_t *)offsetof(CPUState, regs[1])),
552 "m" (*(uint8_t *)offsetof(CPUState, regs[2])),
553 "m" (*(uint8_t *)offsetof(CPUState, regs[3])),
554 "m" (*(uint8_t *)offsetof(CPUState, regs[4])),
555 "m" (*(uint8_t *)offsetof(CPUState, regs[5])),
556 "m" (*(uint8_t *)offsetof(CPUState, regs[6])),
557 "m" (*(uint8_t *)offsetof(CPUState, regs[7])),
558 "m" (*(uint8_t *)offsetof(CPUState, cc_src)),
559 "m" (*(uint8_t *)offsetof(CPUState, tmp0)),
560 "a" (gen_func),
561 "m" (*(uint8_t *)offsetof(CPUState, df)),
562 "m" (*(uint8_t *)offsetof(CPUState, saved_esp))
563 : "%ecx", "%edx"
564 );
565 }
566}
ae228531 567#else
3fb2ded1 568 gen_func();
ae228531 569#endif
83479e77 570 env->current_tb = NULL;
4cbf74b6
FB
571 /* reset soft MMU for next block (it can currently
572 only be set by a memory fault) */
573#if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU)
3f337316
FB
574 if (env->hflags & HF_SOFTMMU_MASK) {
575 env->hflags &= ~HF_SOFTMMU_MASK;
4cbf74b6
FB
576 /* do not allow linking to another block */
577 T0 = 0;
578 }
579#endif
3fb2ded1
FB
580 }
581 } else {
0d1a29f9 582 env_to_regs();
7d13299d 583 }
3fb2ded1
FB
584 } /* for(;;) */
585
7d13299d 586
e4533c7a 587#if defined(TARGET_I386)
97eb5b14
FB
588#if defined(USE_CODE_COPY)
589 if (env->native_fp_regs) {
590 save_native_fp_state(env);
591 }
592#endif
9de5e440 593 /* restore flags in standard format */
fc2b4c48 594 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
9de5e440 595
7d13299d 596 /* restore global registers */
04369ff2
FB
597#ifdef reg_EAX
598 EAX = saved_EAX;
599#endif
600#ifdef reg_ECX
601 ECX = saved_ECX;
602#endif
603#ifdef reg_EDX
604 EDX = saved_EDX;
605#endif
606#ifdef reg_EBX
607 EBX = saved_EBX;
608#endif
609#ifdef reg_ESP
610 ESP = saved_ESP;
611#endif
612#ifdef reg_EBP
613 EBP = saved_EBP;
614#endif
615#ifdef reg_ESI
616 ESI = saved_ESI;
617#endif
618#ifdef reg_EDI
619 EDI = saved_EDI;
8c6939c0 620#endif
e4533c7a 621#elif defined(TARGET_ARM)
1b21b62a 622 env->cpsr = compute_cpsr();
b7bcbe95 623 /* XXX: Save/restore host fpu exception state?. */
93ac68bc 624#elif defined(TARGET_SPARC)
67867308 625#elif defined(TARGET_PPC)
e4533c7a
FB
626#else
627#error unsupported target CPU
628#endif
8c6939c0
FB
629#ifdef __sparc__
630 asm volatile ("mov %0, %%i7" : : "r" (saved_i7));
04369ff2 631#endif
7d13299d
FB
632 T0 = saved_T0;
633 T1 = saved_T1;
e4533c7a 634 T2 = saved_T2;
7d13299d
FB
635 env = saved_env;
636 return ret;
637}
6dbad63e 638
fbf9eeb3
FB
639/* must only be called from the generated code as an exception can be
640 generated */
641void tb_invalidate_page_range(target_ulong start, target_ulong end)
642{
dc5d0b3d
FB
643 /* XXX: cannot enable it yet because it yields to MMU exception
644 where NIP != read address on PowerPC */
645#if 0
fbf9eeb3
FB
646 target_ulong phys_addr;
647 phys_addr = get_phys_addr_code(env, start);
648 tb_invalidate_phys_page_range(phys_addr, phys_addr + end - start, 0);
dc5d0b3d 649#endif
fbf9eeb3
FB
650}
651
1a18c71b 652#if defined(TARGET_I386) && defined(CONFIG_USER_ONLY)
e4533c7a 653
6dbad63e
FB
654void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
655{
656 CPUX86State *saved_env;
657
658 saved_env = env;
659 env = s;
a412ac57 660 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
a513fe19 661 selector &= 0xffff;
2e255c6b 662 cpu_x86_load_seg_cache(env, seg_reg, selector,
c27004ec 663 (selector << 4), 0xffff, 0);
a513fe19 664 } else {
b453b70b 665 load_seg(seg_reg, selector);
a513fe19 666 }
6dbad63e
FB
667 env = saved_env;
668}
9de5e440 669
d0a1ffc9
FB
670void cpu_x86_fsave(CPUX86State *s, uint8_t *ptr, int data32)
671{
672 CPUX86State *saved_env;
673
674 saved_env = env;
675 env = s;
676
c27004ec 677 helper_fsave((target_ulong)ptr, data32);
d0a1ffc9
FB
678
679 env = saved_env;
680}
681
682void cpu_x86_frstor(CPUX86State *s, uint8_t *ptr, int data32)
683{
684 CPUX86State *saved_env;
685
686 saved_env = env;
687 env = s;
688
c27004ec 689 helper_frstor((target_ulong)ptr, data32);
d0a1ffc9
FB
690
691 env = saved_env;
692}
693
e4533c7a
FB
694#endif /* TARGET_I386 */
695
67b915a5
FB
696#if !defined(CONFIG_SOFTMMU)
697
3fb2ded1
FB
698#if defined(TARGET_I386)
699
b56dad1c 700/* 'pc' is the host PC at which the exception was raised. 'address' is
fd6ce8f6
FB
701 the effective address of the memory exception. 'is_write' is 1 if a
702 write caused the exception and otherwise 0'. 'old_set' is the
703 signal set which should be restored */
2b413144 704static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bf3e8bf1
FB
705 int is_write, sigset_t *old_set,
706 void *puc)
9de5e440 707{
a513fe19
FB
708 TranslationBlock *tb;
709 int ret;
68a79315 710
83479e77
FB
711 if (cpu_single_env)
712 env = cpu_single_env; /* XXX: find a correct solution for multithread */
fd6ce8f6 713#if defined(DEBUG_SIGNAL)
bf3e8bf1
FB
714 qemu_printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
715 pc, address, is_write, *(unsigned long *)old_set);
9de5e440 716#endif
25eb4484 717 /* XXX: locking issue */
fbf9eeb3 718 if (is_write && page_unprotect(address, pc, puc)) {
fd6ce8f6
FB
719 return 1;
720 }
fbf9eeb3 721
3fb2ded1 722 /* see if it is an MMU fault */
93a40ea9
FB
723 ret = cpu_x86_handle_mmu_fault(env, address, is_write,
724 ((env->hflags & HF_CPL_MASK) == 3), 0);
3fb2ded1
FB
725 if (ret < 0)
726 return 0; /* not an MMU fault */
727 if (ret == 0)
728 return 1; /* the MMU fault was handled without causing real CPU fault */
729 /* now we have a real cpu fault */
a513fe19
FB
730 tb = tb_find_pc(pc);
731 if (tb) {
9de5e440
FB
732 /* the PC is inside the translated code. It means that we have
733 a virtual CPU fault */
bf3e8bf1 734 cpu_restore_state(tb, env, pc, puc);
3fb2ded1 735 }
4cbf74b6 736 if (ret == 1) {
3fb2ded1 737#if 0
4cbf74b6
FB
738 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
739 env->eip, env->cr[2], env->error_code);
3fb2ded1 740#endif
4cbf74b6
FB
741 /* we restore the process signal mask as the sigreturn should
742 do it (XXX: use sigsetjmp) */
743 sigprocmask(SIG_SETMASK, old_set, NULL);
744 raise_exception_err(EXCP0E_PAGE, env->error_code);
745 } else {
746 /* activate soft MMU for this block */
3f337316 747 env->hflags |= HF_SOFTMMU_MASK;
fbf9eeb3 748 cpu_resume_from_signal(env, puc);
4cbf74b6 749 }
3fb2ded1
FB
750 /* never comes here */
751 return 1;
752}
753
e4533c7a 754#elif defined(TARGET_ARM)
3fb2ded1 755static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bf3e8bf1
FB
756 int is_write, sigset_t *old_set,
757 void *puc)
3fb2ded1 758{
68016c62
FB
759 TranslationBlock *tb;
760 int ret;
761
762 if (cpu_single_env)
763 env = cpu_single_env; /* XXX: find a correct solution for multithread */
764#if defined(DEBUG_SIGNAL)
765 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
766 pc, address, is_write, *(unsigned long *)old_set);
767#endif
9f0777ed
FB
768 /* XXX: locking issue */
769 if (is_write && page_unprotect(address, pc, puc)) {
770 return 1;
771 }
68016c62
FB
772 /* see if it is an MMU fault */
773 ret = cpu_arm_handle_mmu_fault(env, address, is_write, 1, 0);
774 if (ret < 0)
775 return 0; /* not an MMU fault */
776 if (ret == 0)
777 return 1; /* the MMU fault was handled without causing real CPU fault */
778 /* now we have a real cpu fault */
779 tb = tb_find_pc(pc);
780 if (tb) {
781 /* the PC is inside the translated code. It means that we have
782 a virtual CPU fault */
783 cpu_restore_state(tb, env, pc, puc);
784 }
785 /* we restore the process signal mask as the sigreturn should
786 do it (XXX: use sigsetjmp) */
787 sigprocmask(SIG_SETMASK, old_set, NULL);
788 cpu_loop_exit();
3fb2ded1 789}
93ac68bc
FB
790#elif defined(TARGET_SPARC)
791static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bf3e8bf1
FB
792 int is_write, sigset_t *old_set,
793 void *puc)
93ac68bc 794{
68016c62
FB
795 TranslationBlock *tb;
796 int ret;
797
798 if (cpu_single_env)
799 env = cpu_single_env; /* XXX: find a correct solution for multithread */
800#if defined(DEBUG_SIGNAL)
801 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
802 pc, address, is_write, *(unsigned long *)old_set);
803#endif
b453b70b 804 /* XXX: locking issue */
fbf9eeb3 805 if (is_write && page_unprotect(address, pc, puc)) {
b453b70b
FB
806 return 1;
807 }
68016c62
FB
808 /* see if it is an MMU fault */
809 ret = cpu_sparc_handle_mmu_fault(env, address, is_write, 1, 0);
810 if (ret < 0)
811 return 0; /* not an MMU fault */
812 if (ret == 0)
813 return 1; /* the MMU fault was handled without causing real CPU fault */
814 /* now we have a real cpu fault */
815 tb = tb_find_pc(pc);
816 if (tb) {
817 /* the PC is inside the translated code. It means that we have
818 a virtual CPU fault */
819 cpu_restore_state(tb, env, pc, puc);
820 }
821 /* we restore the process signal mask as the sigreturn should
822 do it (XXX: use sigsetjmp) */
823 sigprocmask(SIG_SETMASK, old_set, NULL);
824 cpu_loop_exit();
93ac68bc 825}
67867308
FB
826#elif defined (TARGET_PPC)
827static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bf3e8bf1
FB
828 int is_write, sigset_t *old_set,
829 void *puc)
67867308
FB
830{
831 TranslationBlock *tb;
ce09776b 832 int ret;
67867308 833
67867308
FB
834 if (cpu_single_env)
835 env = cpu_single_env; /* XXX: find a correct solution for multithread */
67867308
FB
836#if defined(DEBUG_SIGNAL)
837 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
838 pc, address, is_write, *(unsigned long *)old_set);
839#endif
840 /* XXX: locking issue */
fbf9eeb3 841 if (is_write && page_unprotect(address, pc, puc)) {
67867308
FB
842 return 1;
843 }
844
ce09776b 845 /* see if it is an MMU fault */
7f957d28 846 ret = cpu_ppc_handle_mmu_fault(env, address, is_write, msr_pr, 0);
ce09776b
FB
847 if (ret < 0)
848 return 0; /* not an MMU fault */
849 if (ret == 0)
850 return 1; /* the MMU fault was handled without causing real CPU fault */
851
67867308
FB
852 /* now we have a real cpu fault */
853 tb = tb_find_pc(pc);
854 if (tb) {
855 /* the PC is inside the translated code. It means that we have
856 a virtual CPU fault */
bf3e8bf1 857 cpu_restore_state(tb, env, pc, puc);
67867308 858 }
ce09776b 859 if (ret == 1) {
67867308 860#if 0
ce09776b
FB
861 printf("PF exception: NIP=0x%08x error=0x%x %p\n",
862 env->nip, env->error_code, tb);
67867308
FB
863#endif
864 /* we restore the process signal mask as the sigreturn should
865 do it (XXX: use sigsetjmp) */
bf3e8bf1 866 sigprocmask(SIG_SETMASK, old_set, NULL);
9fddaa0c 867 do_raise_exception_err(env->exception_index, env->error_code);
ce09776b
FB
868 } else {
869 /* activate soft MMU for this block */
fbf9eeb3 870 cpu_resume_from_signal(env, puc);
ce09776b 871 }
67867308
FB
872 /* never comes here */
873 return 1;
874}
e4533c7a
FB
875#else
876#error unsupported target CPU
877#endif
9de5e440 878
2b413144
FB
879#if defined(__i386__)
880
bf3e8bf1
FB
881#if defined(USE_CODE_COPY)
882static void cpu_send_trap(unsigned long pc, int trap,
883 struct ucontext *uc)
884{
885 TranslationBlock *tb;
886
887 if (cpu_single_env)
888 env = cpu_single_env; /* XXX: find a correct solution for multithread */
889 /* now we have a real cpu fault */
890 tb = tb_find_pc(pc);
891 if (tb) {
892 /* the PC is inside the translated code. It means that we have
893 a virtual CPU fault */
894 cpu_restore_state(tb, env, pc, uc);
895 }
896 sigprocmask(SIG_SETMASK, &uc->uc_sigmask, NULL);
897 raise_exception_err(trap, env->error_code);
898}
899#endif
900
e4533c7a
FB
901int cpu_signal_handler(int host_signum, struct siginfo *info,
902 void *puc)
9de5e440 903{
9de5e440
FB
904 struct ucontext *uc = puc;
905 unsigned long pc;
bf3e8bf1 906 int trapno;
97eb5b14 907
d691f669
FB
908#ifndef REG_EIP
909/* for glibc 2.1 */
fd6ce8f6
FB
910#define REG_EIP EIP
911#define REG_ERR ERR
912#define REG_TRAPNO TRAPNO
d691f669 913#endif
fc2b4c48 914 pc = uc->uc_mcontext.gregs[REG_EIP];
bf3e8bf1
FB
915 trapno = uc->uc_mcontext.gregs[REG_TRAPNO];
916#if defined(TARGET_I386) && defined(USE_CODE_COPY)
917 if (trapno == 0x00 || trapno == 0x05) {
918 /* send division by zero or bound exception */
919 cpu_send_trap(pc, trapno, uc);
920 return 1;
921 } else
922#endif
923 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
924 trapno == 0xe ?
925 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
926 &uc->uc_sigmask, puc);
2b413144
FB
927}
928
bc51c5c9
FB
929#elif defined(__x86_64__)
930
931int cpu_signal_handler(int host_signum, struct siginfo *info,
932 void *puc)
933{
934 struct ucontext *uc = puc;
935 unsigned long pc;
936
937 pc = uc->uc_mcontext.gregs[REG_RIP];
938 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
939 uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ?
940 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
941 &uc->uc_sigmask, puc);
942}
943
83fb7adf 944#elif defined(__powerpc__)
2b413144 945
83fb7adf
FB
946/***********************************************************************
947 * signal context platform-specific definitions
948 * From Wine
949 */
950#ifdef linux
951/* All Registers access - only for local access */
952# define REG_sig(reg_name, context) ((context)->uc_mcontext.regs->reg_name)
953/* Gpr Registers access */
954# define GPR_sig(reg_num, context) REG_sig(gpr[reg_num], context)
955# define IAR_sig(context) REG_sig(nip, context) /* Program counter */
956# define MSR_sig(context) REG_sig(msr, context) /* Machine State Register (Supervisor) */
957# define CTR_sig(context) REG_sig(ctr, context) /* Count register */
958# define XER_sig(context) REG_sig(xer, context) /* User's integer exception register */
959# define LR_sig(context) REG_sig(link, context) /* Link register */
960# define CR_sig(context) REG_sig(ccr, context) /* Condition register */
961/* Float Registers access */
962# define FLOAT_sig(reg_num, context) (((double*)((char*)((context)->uc_mcontext.regs+48*4)))[reg_num])
963# define FPSCR_sig(context) (*(int*)((char*)((context)->uc_mcontext.regs+(48+32*2)*4)))
964/* Exception Registers access */
965# define DAR_sig(context) REG_sig(dar, context)
966# define DSISR_sig(context) REG_sig(dsisr, context)
967# define TRAP_sig(context) REG_sig(trap, context)
968#endif /* linux */
969
970#ifdef __APPLE__
971# include <sys/ucontext.h>
972typedef struct ucontext SIGCONTEXT;
973/* All Registers access - only for local access */
974# define REG_sig(reg_name, context) ((context)->uc_mcontext->ss.reg_name)
975# define FLOATREG_sig(reg_name, context) ((context)->uc_mcontext->fs.reg_name)
976# define EXCEPREG_sig(reg_name, context) ((context)->uc_mcontext->es.reg_name)
977# define VECREG_sig(reg_name, context) ((context)->uc_mcontext->vs.reg_name)
978/* Gpr Registers access */
979# define GPR_sig(reg_num, context) REG_sig(r##reg_num, context)
980# define IAR_sig(context) REG_sig(srr0, context) /* Program counter */
981# define MSR_sig(context) REG_sig(srr1, context) /* Machine State Register (Supervisor) */
982# define CTR_sig(context) REG_sig(ctr, context)
983# define XER_sig(context) REG_sig(xer, context) /* Link register */
984# define LR_sig(context) REG_sig(lr, context) /* User's integer exception register */
985# define CR_sig(context) REG_sig(cr, context) /* Condition register */
986/* Float Registers access */
987# define FLOAT_sig(reg_num, context) FLOATREG_sig(fpregs[reg_num], context)
988# define FPSCR_sig(context) ((double)FLOATREG_sig(fpscr, context))
989/* Exception Registers access */
990# define DAR_sig(context) EXCEPREG_sig(dar, context) /* Fault registers for coredump */
991# define DSISR_sig(context) EXCEPREG_sig(dsisr, context)
992# define TRAP_sig(context) EXCEPREG_sig(exception, context) /* number of powerpc exception taken */
993#endif /* __APPLE__ */
994
d1d9f421 995int cpu_signal_handler(int host_signum, struct siginfo *info,
e4533c7a 996 void *puc)
2b413144 997{
25eb4484 998 struct ucontext *uc = puc;
25eb4484 999 unsigned long pc;
25eb4484
FB
1000 int is_write;
1001
83fb7adf 1002 pc = IAR_sig(uc);
25eb4484
FB
1003 is_write = 0;
1004#if 0
1005 /* ppc 4xx case */
83fb7adf 1006 if (DSISR_sig(uc) & 0x00800000)
25eb4484
FB
1007 is_write = 1;
1008#else
83fb7adf 1009 if (TRAP_sig(uc) != 0x400 && (DSISR_sig(uc) & 0x02000000))
25eb4484
FB
1010 is_write = 1;
1011#endif
1012 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bf3e8bf1 1013 is_write, &uc->uc_sigmask, puc);
2b413144
FB
1014}
1015
2f87c607
FB
1016#elif defined(__alpha__)
1017
e4533c7a 1018int cpu_signal_handler(int host_signum, struct siginfo *info,
2f87c607
FB
1019 void *puc)
1020{
1021 struct ucontext *uc = puc;
1022 uint32_t *pc = uc->uc_mcontext.sc_pc;
1023 uint32_t insn = *pc;
1024 int is_write = 0;
1025
8c6939c0 1026 /* XXX: need kernel patch to get write flag faster */
2f87c607
FB
1027 switch (insn >> 26) {
1028 case 0x0d: // stw
1029 case 0x0e: // stb
1030 case 0x0f: // stq_u
1031 case 0x24: // stf
1032 case 0x25: // stg
1033 case 0x26: // sts
1034 case 0x27: // stt
1035 case 0x2c: // stl
1036 case 0x2d: // stq
1037 case 0x2e: // stl_c
1038 case 0x2f: // stq_c
1039 is_write = 1;
1040 }
1041
1042 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bf3e8bf1 1043 is_write, &uc->uc_sigmask, puc);
2f87c607 1044}
8c6939c0
FB
1045#elif defined(__sparc__)
1046
e4533c7a
FB
1047int cpu_signal_handler(int host_signum, struct siginfo *info,
1048 void *puc)
8c6939c0
FB
1049{
1050 uint32_t *regs = (uint32_t *)(info + 1);
1051 void *sigmask = (regs + 20);
1052 unsigned long pc;
1053 int is_write;
1054 uint32_t insn;
1055
1056 /* XXX: is there a standard glibc define ? */
1057 pc = regs[1];
1058 /* XXX: need kernel patch to get write flag faster */
1059 is_write = 0;
1060 insn = *(uint32_t *)pc;
1061 if ((insn >> 30) == 3) {
1062 switch((insn >> 19) & 0x3f) {
1063 case 0x05: // stb
1064 case 0x06: // sth
1065 case 0x04: // st
1066 case 0x07: // std
1067 case 0x24: // stf
1068 case 0x27: // stdf
1069 case 0x25: // stfsr
1070 is_write = 1;
1071 break;
1072 }
1073 }
1074 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bf3e8bf1 1075 is_write, sigmask, NULL);
8c6939c0
FB
1076}
1077
1078#elif defined(__arm__)
1079
e4533c7a
FB
1080int cpu_signal_handler(int host_signum, struct siginfo *info,
1081 void *puc)
8c6939c0
FB
1082{
1083 struct ucontext *uc = puc;
1084 unsigned long pc;
1085 int is_write;
1086
1087 pc = uc->uc_mcontext.gregs[R15];
1088 /* XXX: compute is_write */
1089 is_write = 0;
1090 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
1091 is_write,
1092 &uc->uc_sigmask);
1093}
1094
38e584a0
FB
1095#elif defined(__mc68000)
1096
1097int cpu_signal_handler(int host_signum, struct siginfo *info,
1098 void *puc)
1099{
1100 struct ucontext *uc = puc;
1101 unsigned long pc;
1102 int is_write;
1103
1104 pc = uc->uc_mcontext.gregs[16];
1105 /* XXX: compute is_write */
1106 is_write = 0;
1107 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
1108 is_write,
bf3e8bf1 1109 &uc->uc_sigmask, puc);
38e584a0
FB
1110}
1111
9de5e440 1112#else
2b413144 1113
3fb2ded1 1114#error host CPU specific signal handler needed
2b413144 1115
9de5e440 1116#endif
67b915a5
FB
1117
1118#endif /* !defined(CONFIG_SOFTMMU) */