blob: a17ea2f739fde40172e4759216e462a60d0c32d5 [file] [log] [blame]
bellard7d132992003-03-06 23:23:54 +00001/*
2 * i386 emulator main execution loop
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard66321a12005-04-06 20:47:48 +00004 * Copyright (c) 2003-2005 Fabrice Bellard
bellard7d132992003-03-06 23:23:54 +00005 *
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
blueswir166f1cdb2007-12-11 19:39:25 +000043#define SAVE_GLOBALS()
44#define RESTORE_GLOBALS()
45
46#if defined(__sparc__) && !defined(HOST_SOLARIS)
47#include <features.h>
48#if defined(__GLIBC__) && ((__GLIBC__ < 2) || \
49 ((__GLIBC__ == 2) && (__GLIBC_MINOR__ <= 90)))
50// Work around ugly bugs in glibc that mangle global register contents
51
52static volatile void *saved_env;
53static volatile unsigned long saved_t0, saved_i7;
54#undef SAVE_GLOBALS
55#define SAVE_GLOBALS() do { \
56 saved_env = env; \
57 saved_t0 = T0; \
58 asm volatile ("st %%i7, [%0]" : : "r" (&saved_i7)); \
59 } while(0)
60
61#undef RESTORE_GLOBALS
62#define RESTORE_GLOBALS() do { \
63 env = (void *)saved_env; \
64 T0 = saved_t0; \
65 asm volatile ("ld [%0], %%i7" : : "r" (&saved_i7)); \
66 } while(0)
67
68static int sparc_setjmp(jmp_buf buf)
69{
70 int ret;
71
72 SAVE_GLOBALS();
73 ret = setjmp(buf);
74 RESTORE_GLOBALS();
75 return ret;
76}
77#undef setjmp
78#define setjmp(jmp_buf) sparc_setjmp(jmp_buf)
79
80static void sparc_longjmp(jmp_buf buf, int val)
81{
82 SAVE_GLOBALS();
83 longjmp(buf, val);
84}
85#define longjmp(jmp_buf, val) sparc_longjmp(jmp_buf, val)
86#endif
87#endif
88
bellarde4533c72003-06-15 19:51:39 +000089void cpu_loop_exit(void)
90{
thsbfed01f2007-06-03 17:44:37 +000091 /* NOTE: the register at this point must be saved by hand because
92 longjmp restore them */
93 regs_to_env();
bellarde4533c72003-06-15 19:51:39 +000094 longjmp(env->jmp_env, 1);
95}
thsbfed01f2007-06-03 17:44:37 +000096
pbrooke6e59062006-10-22 00:18:54 +000097#if !(defined(TARGET_SPARC) || defined(TARGET_SH4) || defined(TARGET_M68K))
bellard34751872005-07-02 14:31:34 +000098#define reg_T2
99#endif
bellarde4533c72003-06-15 19:51:39 +0000100
bellardfbf9eeb2004-04-25 21:21:33 +0000101/* exit the current TB from a signal handler. The host registers are
102 restored in a state compatible with the CPU emulator
103 */
ths5fafdf22007-09-16 21:08:06 +0000104void cpu_resume_from_signal(CPUState *env1, void *puc)
bellardfbf9eeb2004-04-25 21:21:33 +0000105{
106#if !defined(CONFIG_SOFTMMU)
107 struct ucontext *uc = puc;
108#endif
109
110 env = env1;
111
112 /* XXX: restore cpu registers saved in host registers */
113
114#if !defined(CONFIG_SOFTMMU)
115 if (puc) {
116 /* XXX: use siglongjmp ? */
117 sigprocmask(SIG_SETMASK, &uc->uc_sigmask, NULL);
118 }
119#endif
120 longjmp(env->jmp_env, 1);
121}
122
bellard8a40a182005-11-20 10:35:40 +0000123static TranslationBlock *tb_find_slow(target_ulong pc,
124 target_ulong cs_base,
j_mayerc0686882007-09-20 22:47:42 +0000125 uint64_t flags)
bellard8a40a182005-11-20 10:35:40 +0000126{
127 TranslationBlock *tb, **ptb1;
128 int code_gen_size;
129 unsigned int h;
130 target_ulong phys_pc, phys_page1, phys_page2, virt_page2;
131 uint8_t *tc_ptr;
ths3b46e622007-09-17 08:09:54 +0000132
bellard8a40a182005-11-20 10:35:40 +0000133 spin_lock(&tb_lock);
134
135 tb_invalidated_flag = 0;
ths3b46e622007-09-17 08:09:54 +0000136
bellard8a40a182005-11-20 10:35:40 +0000137 regs_to_env(); /* XXX: do it just before cpu_gen_code() */
ths3b46e622007-09-17 08:09:54 +0000138
bellard8a40a182005-11-20 10:35:40 +0000139 /* find translated block using physical mappings */
140 phys_pc = get_phys_addr_code(env, pc);
141 phys_page1 = phys_pc & TARGET_PAGE_MASK;
142 phys_page2 = -1;
143 h = tb_phys_hash_func(phys_pc);
144 ptb1 = &tb_phys_hash[h];
145 for(;;) {
146 tb = *ptb1;
147 if (!tb)
148 goto not_found;
ths5fafdf22007-09-16 21:08:06 +0000149 if (tb->pc == pc &&
bellard8a40a182005-11-20 10:35:40 +0000150 tb->page_addr[0] == phys_page1 &&
ths5fafdf22007-09-16 21:08:06 +0000151 tb->cs_base == cs_base &&
bellard8a40a182005-11-20 10:35:40 +0000152 tb->flags == flags) {
153 /* check next page if needed */
154 if (tb->page_addr[1] != -1) {
ths5fafdf22007-09-16 21:08:06 +0000155 virt_page2 = (pc & TARGET_PAGE_MASK) +
bellard8a40a182005-11-20 10:35:40 +0000156 TARGET_PAGE_SIZE;
157 phys_page2 = get_phys_addr_code(env, virt_page2);
158 if (tb->page_addr[1] == phys_page2)
159 goto found;
160 } else {
161 goto found;
162 }
163 }
164 ptb1 = &tb->phys_hash_next;
165 }
166 not_found:
167 /* if no translated code available, then translate it now */
168 tb = tb_alloc(pc);
169 if (!tb) {
170 /* flush must be done */
171 tb_flush(env);
172 /* cannot fail at this point */
173 tb = tb_alloc(pc);
174 /* don't forget to invalidate previous TB info */
bellard15388002005-12-19 01:42:32 +0000175 tb_invalidated_flag = 1;
bellard8a40a182005-11-20 10:35:40 +0000176 }
177 tc_ptr = code_gen_ptr;
178 tb->tc_ptr = tc_ptr;
179 tb->cs_base = cs_base;
180 tb->flags = flags;
blueswir166f1cdb2007-12-11 19:39:25 +0000181 SAVE_GLOBALS();
blueswir1d07bde82007-12-11 19:35:45 +0000182 cpu_gen_code(env, tb, &code_gen_size);
blueswir166f1cdb2007-12-11 19:39:25 +0000183 RESTORE_GLOBALS();
bellard8a40a182005-11-20 10:35:40 +0000184 code_gen_ptr = (void *)(((unsigned long)code_gen_ptr + code_gen_size + CODE_GEN_ALIGN - 1) & ~(CODE_GEN_ALIGN - 1));
ths3b46e622007-09-17 08:09:54 +0000185
bellard8a40a182005-11-20 10:35:40 +0000186 /* check next page if needed */
187 virt_page2 = (pc + tb->size - 1) & TARGET_PAGE_MASK;
188 phys_page2 = -1;
189 if ((pc & TARGET_PAGE_MASK) != virt_page2) {
190 phys_page2 = get_phys_addr_code(env, virt_page2);
191 }
192 tb_link_phys(tb, phys_pc, phys_page2);
ths3b46e622007-09-17 08:09:54 +0000193
bellard8a40a182005-11-20 10:35:40 +0000194 found:
bellard8a40a182005-11-20 10:35:40 +0000195 /* we add the TB in the virtual pc hash table */
196 env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)] = tb;
197 spin_unlock(&tb_lock);
198 return tb;
199}
200
201static inline TranslationBlock *tb_find_fast(void)
202{
203 TranslationBlock *tb;
204 target_ulong cs_base, pc;
j_mayerc0686882007-09-20 22:47:42 +0000205 uint64_t flags;
bellard8a40a182005-11-20 10:35:40 +0000206
207 /* we record a subset of the CPU state. It will
208 always be the same before a given translated block
209 is executed. */
210#if defined(TARGET_I386)
211 flags = env->hflags;
212 flags |= (env->eflags & (IOPL_MASK | TF_MASK | VM_MASK));
ths0573fbf2007-09-23 15:28:04 +0000213 flags |= env->intercept;
bellard8a40a182005-11-20 10:35:40 +0000214 cs_base = env->segs[R_CS].base;
215 pc = cs_base + env->eip;
216#elif defined(TARGET_ARM)
217 flags = env->thumb | (env->vfp.vec_len << 1)
bellardb5ff1b32005-11-26 10:38:39 +0000218 | (env->vfp.vec_stride << 4);
219 if ((env->uncached_cpsr & CPSR_M) != ARM_CPU_MODE_USR)
220 flags |= (1 << 6);
pbrook40f137e2006-02-20 00:33:36 +0000221 if (env->vfp.xregs[ARM_VFP_FPEXC] & (1 << 30))
222 flags |= (1 << 7);
pbrook9ee6e8b2007-11-11 00:04:49 +0000223 flags |= (env->condexec_bits << 8);
bellard8a40a182005-11-20 10:35:40 +0000224 cs_base = 0;
225 pc = env->regs[15];
226#elif defined(TARGET_SPARC)
227#ifdef TARGET_SPARC64
bellarda80dde02006-06-26 19:53:29 +0000228 // Combined FPU enable bits . PRIV . DMMU enabled . IMMU enabled
229 flags = (((env->pstate & PS_PEF) >> 1) | ((env->fprs & FPRS_FEF) << 2))
230 | (env->pstate & PS_PRIV) | ((env->lsu & (DMMU_E | IMMU_E)) >> 2);
bellard8a40a182005-11-20 10:35:40 +0000231#else
blueswir16d5f2372007-11-07 17:03:37 +0000232 // FPU enable . Supervisor
233 flags = (env->psref << 4) | env->psrs;
bellard8a40a182005-11-20 10:35:40 +0000234#endif
235 cs_base = env->npc;
236 pc = env->pc;
237#elif defined(TARGET_PPC)
j_mayer1527c872007-09-19 05:37:56 +0000238 flags = env->hflags;
bellard8a40a182005-11-20 10:35:40 +0000239 cs_base = 0;
240 pc = env->nip;
241#elif defined(TARGET_MIPS)
pbrook56b19402006-03-11 16:23:39 +0000242 flags = env->hflags & (MIPS_HFLAG_TMASK | MIPS_HFLAG_BMASK);
bellardcc9442b2005-11-26 18:43:28 +0000243 cs_base = 0;
thsead93602007-09-06 00:18:15 +0000244 pc = env->PC[env->current_tc];
pbrooke6e59062006-10-22 00:18:54 +0000245#elif defined(TARGET_M68K)
pbrookacf930a2007-05-29 14:57:59 +0000246 flags = (env->fpcr & M68K_FPCR_PREC) /* Bit 6 */
247 | (env->sr & SR_S) /* Bit 13 */
248 | ((env->macsr >> 4) & 0xf); /* Bits 0-3 */
pbrooke6e59062006-10-22 00:18:54 +0000249 cs_base = 0;
250 pc = env->pc;
bellardfdf9b3e2006-04-27 21:07:38 +0000251#elif defined(TARGET_SH4)
ths823029f2007-12-02 06:10:04 +0000252 flags = env->flags;
253 cs_base = 0;
bellardfdf9b3e2006-04-27 21:07:38 +0000254 pc = env->pc;
j_mayereddf68a2007-04-05 07:22:49 +0000255#elif defined(TARGET_ALPHA)
256 flags = env->ps;
257 cs_base = 0;
258 pc = env->pc;
thsf1ccf902007-10-08 13:16:14 +0000259#elif defined(TARGET_CRIS)
260 flags = 0;
261 cs_base = 0;
262 pc = env->pc;
bellard8a40a182005-11-20 10:35:40 +0000263#else
264#error unsupported CPU
265#endif
bellardbce61842008-02-01 22:18:51 +0000266 tb = env->tb_jmp_cache[tb_jmp_cache_hash_func(pc)];
bellard8a40a182005-11-20 10:35:40 +0000267 if (__builtin_expect(!tb || tb->pc != pc || tb->cs_base != cs_base ||
268 tb->flags != flags, 0)) {
269 tb = tb_find_slow(pc, cs_base, flags);
bellard15388002005-12-19 01:42:32 +0000270 /* Note: we do it here to avoid a gcc bug on Mac OS X when
271 doing it in tb_find_slow */
272 if (tb_invalidated_flag) {
273 /* as some TB could have been invalidated because
274 of memory exceptions while generating the code, we
275 must recompute the hash index here */
276 T0 = 0;
277 }
bellard8a40a182005-11-20 10:35:40 +0000278 }
279 return tb;
280}
281
pbrook497ad682007-11-23 02:11:10 +0000282#define BREAK_CHAIN T0 = 0
bellard8a40a182005-11-20 10:35:40 +0000283
bellard7d132992003-03-06 23:23:54 +0000284/* main execution loop */
285
bellarde4533c72003-06-15 19:51:39 +0000286int cpu_exec(CPUState *env1)
bellard7d132992003-03-06 23:23:54 +0000287{
pbrook1057eaa2007-02-04 13:37:44 +0000288#define DECLARE_HOST_REGS 1
289#include "hostregs_helper.h"
290#if defined(TARGET_SPARC)
bellard34751872005-07-02 14:31:34 +0000291#if defined(reg_REGWPTR)
292 uint32_t *saved_regwptr;
293#endif
294#endif
bellard8a40a182005-11-20 10:35:40 +0000295 int ret, interrupt_request;
bellard57fec1f2008-02-01 10:50:11 +0000296 long (*gen_func)(void);
bellard8a40a182005-11-20 10:35:40 +0000297 TranslationBlock *tb;
bellardc27004e2005-01-03 23:35:10 +0000298 uint8_t *tc_ptr;
bellard8c6939c2003-06-09 15:28:00 +0000299
thsbfed01f2007-06-03 17:44:37 +0000300 if (cpu_halted(env1) == EXCP_HALTED)
301 return EXCP_HALTED;
bellard5a1e3cf2005-11-23 21:02:53 +0000302
ths5fafdf22007-09-16 21:08:06 +0000303 cpu_single_env = env1;
bellard6a00d602005-11-21 23:25:50 +0000304
bellard7d132992003-03-06 23:23:54 +0000305 /* first we save global registers */
pbrook1057eaa2007-02-04 13:37:44 +0000306#define SAVE_HOST_REGS 1
307#include "hostregs_helper.h"
bellardc27004e2005-01-03 23:35:10 +0000308 env = env1;
blueswir166f1cdb2007-12-11 19:39:25 +0000309 SAVE_GLOBALS();
bellarde4533c72003-06-15 19:51:39 +0000310
bellard0d1a29f2004-10-12 22:01:28 +0000311 env_to_regs();
thsecb644f2007-06-03 18:45:53 +0000312#if defined(TARGET_I386)
bellard9de5e442003-03-23 16:49:39 +0000313 /* put eflags in CPU temporary format */
bellardfc2b4c42003-03-29 16:52:44 +0000314 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
315 DF = 1 - (2 * ((env->eflags >> 10) & 1));
bellard9de5e442003-03-23 16:49:39 +0000316 CC_OP = CC_OP_EFLAGS;
bellardfc2b4c42003-03-29 16:52:44 +0000317 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellard93ac68b2003-09-30 20:57:29 +0000318#elif defined(TARGET_SPARC)
bellard34751872005-07-02 14:31:34 +0000319#if defined(reg_REGWPTR)
320 saved_regwptr = REGWPTR;
321#endif
pbrooke6e59062006-10-22 00:18:54 +0000322#elif defined(TARGET_M68K)
323 env->cc_op = CC_OP_FLAGS;
324 env->cc_dest = env->sr & 0xf;
325 env->cc_x = (env->sr >> 4) & 1;
thsecb644f2007-06-03 18:45:53 +0000326#elif defined(TARGET_ALPHA)
327#elif defined(TARGET_ARM)
328#elif defined(TARGET_PPC)
bellard6af0bf92005-07-02 14:58:51 +0000329#elif defined(TARGET_MIPS)
bellardfdf9b3e2006-04-27 21:07:38 +0000330#elif defined(TARGET_SH4)
thsf1ccf902007-10-08 13:16:14 +0000331#elif defined(TARGET_CRIS)
bellardfdf9b3e2006-04-27 21:07:38 +0000332 /* XXXXX */
bellarde4533c72003-06-15 19:51:39 +0000333#else
334#error unsupported target CPU
335#endif
bellard3fb2ded2003-06-24 13:22:59 +0000336 env->exception_index = -1;
bellard9d27abd2003-05-10 13:13:54 +0000337
bellard7d132992003-03-06 23:23:54 +0000338 /* prepare setjmp context for exception handling */
bellard3fb2ded2003-06-24 13:22:59 +0000339 for(;;) {
340 if (setjmp(env->jmp_env) == 0) {
bellardee8b7022004-02-03 23:35:10 +0000341 env->current_tb = NULL;
bellard3fb2ded2003-06-24 13:22:59 +0000342 /* if an exception is pending, we execute it here */
343 if (env->exception_index >= 0) {
344 if (env->exception_index >= EXCP_INTERRUPT) {
345 /* exit request from the cpu execution loop */
346 ret = env->exception_index;
347 break;
348 } else if (env->user_mode_only) {
349 /* if user mode only, we simulate a fake exception
ths9f083492006-12-07 18:28:42 +0000350 which will be handled outside the cpu execution
bellard3fb2ded2003-06-24 13:22:59 +0000351 loop */
bellard83479e72003-06-25 16:12:37 +0000352#if defined(TARGET_I386)
ths5fafdf22007-09-16 21:08:06 +0000353 do_interrupt_user(env->exception_index,
354 env->exception_is_int,
355 env->error_code,
bellard3fb2ded2003-06-24 13:22:59 +0000356 env->exception_next_eip);
bellard83479e72003-06-25 16:12:37 +0000357#endif
bellard3fb2ded2003-06-24 13:22:59 +0000358 ret = env->exception_index;
359 break;
360 } else {
bellard83479e72003-06-25 16:12:37 +0000361#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000362 /* simulate a real cpu exception. On i386, it can
363 trigger new exceptions, but we do not handle
364 double or triple faults yet. */
ths5fafdf22007-09-16 21:08:06 +0000365 do_interrupt(env->exception_index,
366 env->exception_is_int,
367 env->error_code,
bellardd05e66d2003-08-20 21:34:35 +0000368 env->exception_next_eip, 0);
ths678dde12007-03-31 20:28:52 +0000369 /* successfully delivered */
370 env->old_exception = -1;
bellardce097762004-01-04 23:53:18 +0000371#elif defined(TARGET_PPC)
372 do_interrupt(env);
bellard6af0bf92005-07-02 14:58:51 +0000373#elif defined(TARGET_MIPS)
374 do_interrupt(env);
bellarde95c8d52004-09-30 22:22:08 +0000375#elif defined(TARGET_SPARC)
bellard1a0c3292005-02-13 19:02:07 +0000376 do_interrupt(env->exception_index);
bellardb5ff1b32005-11-26 10:38:39 +0000377#elif defined(TARGET_ARM)
378 do_interrupt(env);
bellardfdf9b3e2006-04-27 21:07:38 +0000379#elif defined(TARGET_SH4)
380 do_interrupt(env);
j_mayereddf68a2007-04-05 07:22:49 +0000381#elif defined(TARGET_ALPHA)
382 do_interrupt(env);
thsf1ccf902007-10-08 13:16:14 +0000383#elif defined(TARGET_CRIS)
384 do_interrupt(env);
pbrook06338792007-05-23 19:58:11 +0000385#elif defined(TARGET_M68K)
386 do_interrupt(0);
bellard83479e72003-06-25 16:12:37 +0000387#endif
bellard3fb2ded2003-06-24 13:22:59 +0000388 }
389 env->exception_index = -1;
ths5fafdf22007-09-16 21:08:06 +0000390 }
bellard9df217a2005-02-10 22:05:51 +0000391#ifdef USE_KQEMU
392 if (kqemu_is_ok(env) && env->interrupt_request == 0) {
393 int ret;
394 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
395 ret = kqemu_cpu_exec(env);
396 /* put eflags in CPU temporary format */
397 CC_SRC = env->eflags & (CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
398 DF = 1 - (2 * ((env->eflags >> 10) & 1));
399 CC_OP = CC_OP_EFLAGS;
400 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
401 if (ret == 1) {
402 /* exception */
403 longjmp(env->jmp_env, 1);
404 } else if (ret == 2) {
405 /* softmmu execution needed */
406 } else {
407 if (env->interrupt_request != 0) {
408 /* hardware interrupt will be executed just after */
409 } else {
410 /* otherwise, we restart */
411 longjmp(env->jmp_env, 1);
412 }
413 }
bellard9de5e442003-03-23 16:49:39 +0000414 }
bellard9df217a2005-02-10 22:05:51 +0000415#endif
416
bellard3fb2ded2003-06-24 13:22:59 +0000417 T0 = 0; /* force lookup of first TB */
418 for(;;) {
blueswir166f1cdb2007-12-11 19:39:25 +0000419 SAVE_GLOBALS();
bellard68a79312003-06-30 13:12:32 +0000420 interrupt_request = env->interrupt_request;
ths0573fbf2007-09-23 15:28:04 +0000421 if (__builtin_expect(interrupt_request, 0)
422#if defined(TARGET_I386)
423 && env->hflags & HF_GIF_MASK
424#endif
425 ) {
pbrook6658ffb2007-03-16 23:58:11 +0000426 if (interrupt_request & CPU_INTERRUPT_DEBUG) {
427 env->interrupt_request &= ~CPU_INTERRUPT_DEBUG;
428 env->exception_index = EXCP_DEBUG;
429 cpu_loop_exit();
430 }
balroga90b7312007-05-01 01:28:01 +0000431#if defined(TARGET_ARM) || defined(TARGET_SPARC) || defined(TARGET_MIPS) || \
thsf1ccf902007-10-08 13:16:14 +0000432 defined(TARGET_PPC) || defined(TARGET_ALPHA) || defined(TARGET_CRIS)
balroga90b7312007-05-01 01:28:01 +0000433 if (interrupt_request & CPU_INTERRUPT_HALT) {
434 env->interrupt_request &= ~CPU_INTERRUPT_HALT;
435 env->halted = 1;
436 env->exception_index = EXCP_HLT;
437 cpu_loop_exit();
438 }
439#endif
bellard68a79312003-06-30 13:12:32 +0000440#if defined(TARGET_I386)
bellard3b21e032006-09-24 18:41:56 +0000441 if ((interrupt_request & CPU_INTERRUPT_SMI) &&
442 !(env->hflags & HF_SMM_MASK)) {
ths0573fbf2007-09-23 15:28:04 +0000443 svm_check_intercept(SVM_EXIT_SMI);
bellard3b21e032006-09-24 18:41:56 +0000444 env->interrupt_request &= ~CPU_INTERRUPT_SMI;
445 do_smm_enter();
pbrook497ad682007-11-23 02:11:10 +0000446 BREAK_CHAIN;
bellard3b21e032006-09-24 18:41:56 +0000447 } else if ((interrupt_request & CPU_INTERRUPT_HARD) &&
ths0573fbf2007-09-23 15:28:04 +0000448 (env->eflags & IF_MASK || env->hflags & HF_HIF_MASK) &&
bellard3f337312003-08-20 23:02:09 +0000449 !(env->hflags & HF_INHIBIT_IRQ_MASK)) {
bellard68a79312003-06-30 13:12:32 +0000450 int intno;
ths0573fbf2007-09-23 15:28:04 +0000451 svm_check_intercept(SVM_EXIT_INTR);
ths52621682007-09-27 01:52:00 +0000452 env->interrupt_request &= ~(CPU_INTERRUPT_HARD | CPU_INTERRUPT_VIRQ);
bellarda541f292004-04-12 20:39:29 +0000453 intno = cpu_get_pic_interrupt(env);
bellardf193c792004-03-21 17:06:25 +0000454 if (loglevel & CPU_LOG_TB_IN_ASM) {
bellard68a79312003-06-30 13:12:32 +0000455 fprintf(logfile, "Servicing hardware INT=0x%02x\n", intno);
456 }
bellardd05e66d2003-08-20 21:34:35 +0000457 do_interrupt(intno, 0, 0, 0, 1);
bellard907a5b22003-06-30 23:18:22 +0000458 /* ensure that no TB jump will be modified as
459 the program flow was changed */
pbrook497ad682007-11-23 02:11:10 +0000460 BREAK_CHAIN;
ths0573fbf2007-09-23 15:28:04 +0000461#if !defined(CONFIG_USER_ONLY)
462 } else if ((interrupt_request & CPU_INTERRUPT_VIRQ) &&
463 (env->eflags & IF_MASK) && !(env->hflags & HF_INHIBIT_IRQ_MASK)) {
464 int intno;
465 /* FIXME: this should respect TPR */
466 env->interrupt_request &= ~CPU_INTERRUPT_VIRQ;
ths52621682007-09-27 01:52:00 +0000467 svm_check_intercept(SVM_EXIT_VINTR);
ths0573fbf2007-09-23 15:28:04 +0000468 intno = ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_vector));
469 if (loglevel & CPU_LOG_TB_IN_ASM)
470 fprintf(logfile, "Servicing virtual hardware INT=0x%02x\n", intno);
471 do_interrupt(intno, 0, 0, -1, 1);
ths52621682007-09-27 01:52:00 +0000472 stl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl),
473 ldl_phys(env->vm_vmcb + offsetof(struct vmcb, control.int_ctl)) & ~V_IRQ_MASK);
pbrook497ad682007-11-23 02:11:10 +0000474 BREAK_CHAIN;
ths0573fbf2007-09-23 15:28:04 +0000475#endif
bellard68a79312003-06-30 13:12:32 +0000476 }
bellardce097762004-01-04 23:53:18 +0000477#elif defined(TARGET_PPC)
bellard9fddaa02004-05-21 12:59:32 +0000478#if 0
479 if ((interrupt_request & CPU_INTERRUPT_RESET)) {
480 cpu_ppc_reset(env);
481 }
482#endif
j_mayer47103572007-03-30 09:38:04 +0000483 if (interrupt_request & CPU_INTERRUPT_HARD) {
j_mayere9df0142007-04-09 22:45:36 +0000484 ppc_hw_interrupt(env);
485 if (env->pending_interrupts == 0)
486 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
pbrook497ad682007-11-23 02:11:10 +0000487 BREAK_CHAIN;
bellardce097762004-01-04 23:53:18 +0000488 }
bellard6af0bf92005-07-02 14:58:51 +0000489#elif defined(TARGET_MIPS)
490 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
ths24c7b0e2007-03-30 16:44:54 +0000491 (env->CP0_Status & env->CP0_Cause & CP0Ca_IP_mask) &&
bellard6af0bf92005-07-02 14:58:51 +0000492 (env->CP0_Status & (1 << CP0St_IE)) &&
ths24c7b0e2007-03-30 16:44:54 +0000493 !(env->CP0_Status & (1 << CP0St_EXL)) &&
494 !(env->CP0_Status & (1 << CP0St_ERL)) &&
bellard6af0bf92005-07-02 14:58:51 +0000495 !(env->hflags & MIPS_HFLAG_DM)) {
496 /* Raise it */
497 env->exception_index = EXCP_EXT_INTERRUPT;
498 env->error_code = 0;
499 do_interrupt(env);
pbrook497ad682007-11-23 02:11:10 +0000500 BREAK_CHAIN;
bellard6af0bf92005-07-02 14:58:51 +0000501 }
bellarde95c8d52004-09-30 22:22:08 +0000502#elif defined(TARGET_SPARC)
bellard66321a12005-04-06 20:47:48 +0000503 if ((interrupt_request & CPU_INTERRUPT_HARD) &&
504 (env->psret != 0)) {
505 int pil = env->interrupt_index & 15;
506 int type = env->interrupt_index & 0xf0;
507
508 if (((type == TT_EXTINT) &&
509 (pil == 15 || pil > env->psrpil)) ||
510 type != TT_EXTINT) {
511 env->interrupt_request &= ~CPU_INTERRUPT_HARD;
512 do_interrupt(env->interrupt_index);
513 env->interrupt_index = 0;
blueswir1327ac2e2007-08-04 10:50:30 +0000514#if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY)
515 cpu_check_irqs(env);
516#endif
pbrook497ad682007-11-23 02:11:10 +0000517 BREAK_CHAIN;
bellard66321a12005-04-06 20:47:48 +0000518 }
bellarde95c8d52004-09-30 22:22:08 +0000519 } else if (interrupt_request & CPU_INTERRUPT_TIMER) {
520 //do_interrupt(0, 0, 0, 0, 0);
521 env->interrupt_request &= ~CPU_INTERRUPT_TIMER;
balroga90b7312007-05-01 01:28:01 +0000522 }
bellardb5ff1b32005-11-26 10:38:39 +0000523#elif defined(TARGET_ARM)
524 if (interrupt_request & CPU_INTERRUPT_FIQ
525 && !(env->uncached_cpsr & CPSR_F)) {
526 env->exception_index = EXCP_FIQ;
527 do_interrupt(env);
pbrook497ad682007-11-23 02:11:10 +0000528 BREAK_CHAIN;
bellardb5ff1b32005-11-26 10:38:39 +0000529 }
pbrook9ee6e8b2007-11-11 00:04:49 +0000530 /* ARMv7-M interrupt return works by loading a magic value
531 into the PC. On real hardware the load causes the
532 return to occur. The qemu implementation performs the
533 jump normally, then does the exception return when the
534 CPU tries to execute code at the magic address.
535 This will cause the magic PC value to be pushed to
536 the stack if an interrupt occured at the wrong time.
537 We avoid this by disabling interrupts when
538 pc contains a magic address. */
bellardb5ff1b32005-11-26 10:38:39 +0000539 if (interrupt_request & CPU_INTERRUPT_HARD
pbrook9ee6e8b2007-11-11 00:04:49 +0000540 && ((IS_M(env) && env->regs[15] < 0xfffffff0)
541 || !(env->uncached_cpsr & CPSR_I))) {
bellardb5ff1b32005-11-26 10:38:39 +0000542 env->exception_index = EXCP_IRQ;
543 do_interrupt(env);
pbrook497ad682007-11-23 02:11:10 +0000544 BREAK_CHAIN;
bellardb5ff1b32005-11-26 10:38:39 +0000545 }
bellardfdf9b3e2006-04-27 21:07:38 +0000546#elif defined(TARGET_SH4)
thse96e2042007-12-02 06:18:24 +0000547 if (interrupt_request & CPU_INTERRUPT_HARD) {
548 do_interrupt(env);
549 BREAK_CHAIN;
550 }
j_mayereddf68a2007-04-05 07:22:49 +0000551#elif defined(TARGET_ALPHA)
552 if (interrupt_request & CPU_INTERRUPT_HARD) {
553 do_interrupt(env);
pbrook497ad682007-11-23 02:11:10 +0000554 BREAK_CHAIN;
j_mayereddf68a2007-04-05 07:22:49 +0000555 }
thsf1ccf902007-10-08 13:16:14 +0000556#elif defined(TARGET_CRIS)
557 if (interrupt_request & CPU_INTERRUPT_HARD) {
558 do_interrupt(env);
pbrook497ad682007-11-23 02:11:10 +0000559 BREAK_CHAIN;
thsf1ccf902007-10-08 13:16:14 +0000560 }
pbrook06338792007-05-23 19:58:11 +0000561#elif defined(TARGET_M68K)
562 if (interrupt_request & CPU_INTERRUPT_HARD
563 && ((env->sr & SR_I) >> SR_I_SHIFT)
564 < env->pending_level) {
565 /* Real hardware gets the interrupt vector via an
566 IACK cycle at this point. Current emulated
567 hardware doesn't rely on this, so we
568 provide/save the vector when the interrupt is
569 first signalled. */
570 env->exception_index = env->pending_vector;
571 do_interrupt(1);
pbrook497ad682007-11-23 02:11:10 +0000572 BREAK_CHAIN;
pbrook06338792007-05-23 19:58:11 +0000573 }
bellard68a79312003-06-30 13:12:32 +0000574#endif
bellard9d050952006-05-22 22:03:52 +0000575 /* Don't use the cached interupt_request value,
576 do_interrupt may have updated the EXITTB flag. */
bellardb5ff1b32005-11-26 10:38:39 +0000577 if (env->interrupt_request & CPU_INTERRUPT_EXITTB) {
bellardbf3e8bf2004-02-16 21:58:54 +0000578 env->interrupt_request &= ~CPU_INTERRUPT_EXITTB;
579 /* ensure that no TB jump will be modified as
580 the program flow was changed */
pbrook497ad682007-11-23 02:11:10 +0000581 BREAK_CHAIN;
bellardbf3e8bf2004-02-16 21:58:54 +0000582 }
bellard68a79312003-06-30 13:12:32 +0000583 if (interrupt_request & CPU_INTERRUPT_EXIT) {
584 env->interrupt_request &= ~CPU_INTERRUPT_EXIT;
585 env->exception_index = EXCP_INTERRUPT;
586 cpu_loop_exit();
587 }
bellard3fb2ded2003-06-24 13:22:59 +0000588 }
589#ifdef DEBUG_EXEC
bellardb5ff1b32005-11-26 10:38:39 +0000590 if ((loglevel & CPU_LOG_TB_CPU)) {
bellard3fb2ded2003-06-24 13:22:59 +0000591 /* restore flags in standard format */
thsecb644f2007-06-03 18:45:53 +0000592 regs_to_env();
593#if defined(TARGET_I386)
bellard3fb2ded2003-06-24 13:22:59 +0000594 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellard7fe48482004-10-09 18:08:01 +0000595 cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP);
bellard3fb2ded2003-06-24 13:22:59 +0000596 env->eflags &= ~(DF_MASK | CC_O | CC_S | CC_Z | CC_A | CC_P | CC_C);
bellarde4533c72003-06-15 19:51:39 +0000597#elif defined(TARGET_ARM)
bellard7fe48482004-10-09 18:08:01 +0000598 cpu_dump_state(env, logfile, fprintf, 0);
bellard93ac68b2003-09-30 20:57:29 +0000599#elif defined(TARGET_SPARC)
bellard34751872005-07-02 14:31:34 +0000600 REGWPTR = env->regbase + (env->cwp * 16);
601 env->regwptr = REGWPTR;
602 cpu_dump_state(env, logfile, fprintf, 0);
bellard67867302003-11-23 17:05:30 +0000603#elif defined(TARGET_PPC)
bellard7fe48482004-10-09 18:08:01 +0000604 cpu_dump_state(env, logfile, fprintf, 0);
pbrooke6e59062006-10-22 00:18:54 +0000605#elif defined(TARGET_M68K)
606 cpu_m68k_flush_flags(env, env->cc_op);
607 env->cc_op = CC_OP_FLAGS;
608 env->sr = (env->sr & 0xffe0)
609 | env->cc_dest | (env->cc_x << 4);
610 cpu_dump_state(env, logfile, fprintf, 0);
bellard6af0bf92005-07-02 14:58:51 +0000611#elif defined(TARGET_MIPS)
612 cpu_dump_state(env, logfile, fprintf, 0);
bellardfdf9b3e2006-04-27 21:07:38 +0000613#elif defined(TARGET_SH4)
614 cpu_dump_state(env, logfile, fprintf, 0);
j_mayereddf68a2007-04-05 07:22:49 +0000615#elif defined(TARGET_ALPHA)
616 cpu_dump_state(env, logfile, fprintf, 0);
thsf1ccf902007-10-08 13:16:14 +0000617#elif defined(TARGET_CRIS)
618 cpu_dump_state(env, logfile, fprintf, 0);
bellarde4533c72003-06-15 19:51:39 +0000619#else
ths5fafdf22007-09-16 21:08:06 +0000620#error unsupported target CPU
bellarde4533c72003-06-15 19:51:39 +0000621#endif
bellard3fb2ded2003-06-24 13:22:59 +0000622 }
bellard7d132992003-03-06 23:23:54 +0000623#endif
bellard8a40a182005-11-20 10:35:40 +0000624 tb = tb_find_fast();
bellard9d27abd2003-05-10 13:13:54 +0000625#ifdef DEBUG_EXEC
bellardc1135f62005-01-30 22:41:54 +0000626 if ((loglevel & CPU_LOG_EXEC)) {
bellardc27004e2005-01-03 23:35:10 +0000627 fprintf(logfile, "Trace 0x%08lx [" TARGET_FMT_lx "] %s\n",
628 (long)tb->tc_ptr, tb->pc,
629 lookup_symbol(tb->pc));
bellard3fb2ded2003-06-24 13:22:59 +0000630 }
bellard9d27abd2003-05-10 13:13:54 +0000631#endif
blueswir166f1cdb2007-12-11 19:39:25 +0000632 RESTORE_GLOBALS();
bellard8a40a182005-11-20 10:35:40 +0000633 /* see if we can patch the calling TB. When the TB
634 spans two pages, we cannot safely do a direct
635 jump. */
bellardc27004e2005-01-03 23:35:10 +0000636 {
bellard8a40a182005-11-20 10:35:40 +0000637 if (T0 != 0 &&
bellardf32fc642006-02-08 22:43:39 +0000638#if USE_KQEMU
639 (env->kqemu_enabled != 2) &&
640#endif
bellardec6338b2007-11-08 14:25:03 +0000641 tb->page_addr[1] == -1) {
bellard3fb2ded2003-06-24 13:22:59 +0000642 spin_lock(&tb_lock);
bellardc27004e2005-01-03 23:35:10 +0000643 tb_add_jump((TranslationBlock *)(long)(T0 & ~3), T0 & 3, tb);
bellard3fb2ded2003-06-24 13:22:59 +0000644 spin_unlock(&tb_lock);
645 }
bellardc27004e2005-01-03 23:35:10 +0000646 }
bellard3fb2ded2003-06-24 13:22:59 +0000647 tc_ptr = tb->tc_ptr;
bellard83479e72003-06-25 16:12:37 +0000648 env->current_tb = tb;
bellard3fb2ded2003-06-24 13:22:59 +0000649 /* execute the generated code */
650 gen_func = (void *)tc_ptr;
651#if defined(__sparc__)
652 __asm__ __volatile__("call %0\n\t"
653 "mov %%o7,%%i0"
654 : /* no outputs */
ths5fafdf22007-09-16 21:08:06 +0000655 : "r" (gen_func)
bellardfdbb4692006-06-14 17:32:25 +0000656 : "i0", "i1", "i2", "i3", "i4", "i5",
thsfaab7592007-03-19 20:39:49 +0000657 "o0", "o1", "o2", "o3", "o4", "o5",
bellardfdbb4692006-06-14 17:32:25 +0000658 "l0", "l1", "l2", "l3", "l4", "l5",
659 "l6", "l7");
aurel32f54b3f92008-04-12 20:14:54 +0000660#elif defined(__hppa__)
661 asm volatile ("ble 0(%%sr4,%1)\n"
662 "copy %%r31,%%r18\n"
663 "copy %%r28,%0\n"
664 : "=r" (T0)
665 : "r" (gen_func)
666 : "r1", "r2", "r3", "r4", "r5", "r6", "r7",
667 "r8", "r9", "r10", "r11", "r12", "r13",
668 "r18", "r19", "r20", "r21", "r22", "r23",
669 "r24", "r25", "r26", "r27", "r28", "r29",
670 "r30", "r31");
bellard3fb2ded2003-06-24 13:22:59 +0000671#elif defined(__arm__)
672 asm volatile ("mov pc, %0\n\t"
673 ".global exec_loop\n\t"
674 "exec_loop:\n\t"
675 : /* no outputs */
676 : "r" (gen_func)
677 : "r1", "r2", "r3", "r8", "r9", "r10", "r12", "r14");
bellardb8076a72005-04-07 22:20:31 +0000678#elif defined(__ia64)
679 struct fptr {
680 void *ip;
681 void *gp;
682 } fp;
683
684 fp.ip = tc_ptr;
685 fp.gp = code_gen_buffer + 2 * (1 << 20);
686 (*(void (*)(void)) &fp)();
bellard3fb2ded2003-06-24 13:22:59 +0000687#else
bellard57fec1f2008-02-01 10:50:11 +0000688 T0 = gen_func();
bellard3fb2ded2003-06-24 13:22:59 +0000689#endif
bellard83479e72003-06-25 16:12:37 +0000690 env->current_tb = NULL;
bellard4cbf74b2003-08-10 21:48:43 +0000691 /* reset soft MMU for next block (it can currently
692 only be set by a memory fault) */
693#if defined(TARGET_I386) && !defined(CONFIG_SOFTMMU)
bellard3f337312003-08-20 23:02:09 +0000694 if (env->hflags & HF_SOFTMMU_MASK) {
695 env->hflags &= ~HF_SOFTMMU_MASK;
bellard4cbf74b2003-08-10 21:48:43 +0000696 /* do not allow linking to another block */
697 T0 = 0;
698 }
699#endif
bellardf32fc642006-02-08 22:43:39 +0000700#if defined(USE_KQEMU)
701#define MIN_CYCLE_BEFORE_SWITCH (100 * 1000)
702 if (kqemu_is_ok(env) &&
703 (cpu_get_time_fast() - env->last_io_time) >= MIN_CYCLE_BEFORE_SWITCH) {
704 cpu_loop_exit();
705 }
706#endif
ths50a518e2007-06-03 18:52:15 +0000707 } /* for(;;) */
bellard3fb2ded2003-06-24 13:22:59 +0000708 } else {
bellard0d1a29f2004-10-12 22:01:28 +0000709 env_to_regs();
bellard7d132992003-03-06 23:23:54 +0000710 }
bellard3fb2ded2003-06-24 13:22:59 +0000711 } /* for(;;) */
712
bellard7d132992003-03-06 23:23:54 +0000713
bellarde4533c72003-06-15 19:51:39 +0000714#if defined(TARGET_I386)
bellard9de5e442003-03-23 16:49:39 +0000715 /* restore flags in standard format */
bellardfc2b4c42003-03-29 16:52:44 +0000716 env->eflags = env->eflags | cc_table[CC_OP].compute_all() | (DF & DF_MASK);
bellarde4533c72003-06-15 19:51:39 +0000717#elif defined(TARGET_ARM)
bellardb7bcbe92005-02-22 19:27:29 +0000718 /* XXX: Save/restore host fpu exception state?. */
bellard93ac68b2003-09-30 20:57:29 +0000719#elif defined(TARGET_SPARC)
bellard34751872005-07-02 14:31:34 +0000720#if defined(reg_REGWPTR)
721 REGWPTR = saved_regwptr;
722#endif
bellard67867302003-11-23 17:05:30 +0000723#elif defined(TARGET_PPC)
pbrooke6e59062006-10-22 00:18:54 +0000724#elif defined(TARGET_M68K)
725 cpu_m68k_flush_flags(env, env->cc_op);
726 env->cc_op = CC_OP_FLAGS;
727 env->sr = (env->sr & 0xffe0)
728 | env->cc_dest | (env->cc_x << 4);
bellard6af0bf92005-07-02 14:58:51 +0000729#elif defined(TARGET_MIPS)
bellardfdf9b3e2006-04-27 21:07:38 +0000730#elif defined(TARGET_SH4)
j_mayereddf68a2007-04-05 07:22:49 +0000731#elif defined(TARGET_ALPHA)
thsf1ccf902007-10-08 13:16:14 +0000732#elif defined(TARGET_CRIS)
bellardfdf9b3e2006-04-27 21:07:38 +0000733 /* XXXXX */
bellarde4533c72003-06-15 19:51:39 +0000734#else
735#error unsupported target CPU
736#endif
pbrook1057eaa2007-02-04 13:37:44 +0000737
738 /* restore global registers */
blueswir166f1cdb2007-12-11 19:39:25 +0000739 RESTORE_GLOBALS();
pbrook1057eaa2007-02-04 13:37:44 +0000740#include "hostregs_helper.h"
741
bellard6a00d602005-11-21 23:25:50 +0000742 /* fail safe : never use cpu_single_env outside cpu_exec() */
ths5fafdf22007-09-16 21:08:06 +0000743 cpu_single_env = NULL;
bellard7d132992003-03-06 23:23:54 +0000744 return ret;
745}
bellard6dbad632003-03-16 18:05:05 +0000746
bellardfbf9eeb2004-04-25 21:21:33 +0000747/* must only be called from the generated code as an exception can be
748 generated */
749void tb_invalidate_page_range(target_ulong start, target_ulong end)
750{
bellarddc5d0b32004-06-22 18:43:30 +0000751 /* XXX: cannot enable it yet because it yields to MMU exception
752 where NIP != read address on PowerPC */
753#if 0
bellardfbf9eeb2004-04-25 21:21:33 +0000754 target_ulong phys_addr;
755 phys_addr = get_phys_addr_code(env, start);
756 tb_invalidate_phys_page_range(phys_addr, phys_addr + end - start, 0);
bellarddc5d0b32004-06-22 18:43:30 +0000757#endif
bellardfbf9eeb2004-04-25 21:21:33 +0000758}
759
bellard1a18c712003-10-30 01:07:51 +0000760#if defined(TARGET_I386) && defined(CONFIG_USER_ONLY)
bellarde4533c72003-06-15 19:51:39 +0000761
bellard6dbad632003-03-16 18:05:05 +0000762void cpu_x86_load_seg(CPUX86State *s, int seg_reg, int selector)
763{
764 CPUX86State *saved_env;
765
766 saved_env = env;
767 env = s;
bellarda412ac52003-07-26 18:01:40 +0000768 if (!(env->cr[0] & CR0_PE_MASK) || (env->eflags & VM_MASK)) {
bellarda513fe12003-05-27 23:29:48 +0000769 selector &= 0xffff;
ths5fafdf22007-09-16 21:08:06 +0000770 cpu_x86_load_seg_cache(env, seg_reg, selector,
bellardc27004e2005-01-03 23:35:10 +0000771 (selector << 4), 0xffff, 0);
bellarda513fe12003-05-27 23:29:48 +0000772 } else {
bellardb453b702004-01-04 15:45:21 +0000773 load_seg(seg_reg, selector);
bellarda513fe12003-05-27 23:29:48 +0000774 }
bellard6dbad632003-03-16 18:05:05 +0000775 env = saved_env;
776}
bellard9de5e442003-03-23 16:49:39 +0000777
bellard6f12a2a2007-11-11 22:16:56 +0000778void cpu_x86_fsave(CPUX86State *s, target_ulong ptr, int data32)
bellardd0a1ffc2003-05-29 20:04:28 +0000779{
780 CPUX86State *saved_env;
781
782 saved_env = env;
783 env = s;
ths3b46e622007-09-17 08:09:54 +0000784
bellard6f12a2a2007-11-11 22:16:56 +0000785 helper_fsave(ptr, data32);
bellardd0a1ffc2003-05-29 20:04:28 +0000786
787 env = saved_env;
788}
789
bellard6f12a2a2007-11-11 22:16:56 +0000790void cpu_x86_frstor(CPUX86State *s, target_ulong ptr, int data32)
bellardd0a1ffc2003-05-29 20:04:28 +0000791{
792 CPUX86State *saved_env;
793
794 saved_env = env;
795 env = s;
ths3b46e622007-09-17 08:09:54 +0000796
bellard6f12a2a2007-11-11 22:16:56 +0000797 helper_frstor(ptr, data32);
bellardd0a1ffc2003-05-29 20:04:28 +0000798
799 env = saved_env;
800}
801
bellarde4533c72003-06-15 19:51:39 +0000802#endif /* TARGET_I386 */
803
bellard67b915a2004-03-31 23:37:16 +0000804#if !defined(CONFIG_SOFTMMU)
805
bellard3fb2ded2003-06-24 13:22:59 +0000806#if defined(TARGET_I386)
807
bellardb56dad12003-05-08 15:38:04 +0000808/* 'pc' is the host PC at which the exception was raised. 'address' is
bellardfd6ce8f2003-05-14 19:00:11 +0000809 the effective address of the memory exception. 'is_write' is 1 if a
810 write caused the exception and otherwise 0'. 'old_set' is the
811 signal set which should be restored */
bellard2b413142003-05-14 23:01:10 +0000812static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
ths5fafdf22007-09-16 21:08:06 +0000813 int is_write, sigset_t *old_set,
bellardbf3e8bf2004-02-16 21:58:54 +0000814 void *puc)
bellard9de5e442003-03-23 16:49:39 +0000815{
bellarda513fe12003-05-27 23:29:48 +0000816 TranslationBlock *tb;
817 int ret;
bellard68a79312003-06-30 13:12:32 +0000818
bellard83479e72003-06-25 16:12:37 +0000819 if (cpu_single_env)
820 env = cpu_single_env; /* XXX: find a correct solution for multithread */
bellardfd6ce8f2003-05-14 19:00:11 +0000821#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +0000822 qemu_printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellardbf3e8bf2004-02-16 21:58:54 +0000823 pc, address, is_write, *(unsigned long *)old_set);
bellard9de5e442003-03-23 16:49:39 +0000824#endif
bellard25eb4482003-05-14 21:50:54 +0000825 /* XXX: locking issue */
pbrook53a59602006-03-25 19:31:22 +0000826 if (is_write && page_unprotect(h2g(address), pc, puc)) {
bellardfd6ce8f2003-05-14 19:00:11 +0000827 return 1;
828 }
bellardfbf9eeb2004-04-25 21:21:33 +0000829
bellard3fb2ded2003-06-24 13:22:59 +0000830 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +0000831 ret = cpu_x86_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
bellard3fb2ded2003-06-24 13:22:59 +0000832 if (ret < 0)
833 return 0; /* not an MMU fault */
834 if (ret == 0)
835 return 1; /* the MMU fault was handled without causing real CPU fault */
836 /* now we have a real cpu fault */
bellarda513fe12003-05-27 23:29:48 +0000837 tb = tb_find_pc(pc);
838 if (tb) {
bellard9de5e442003-03-23 16:49:39 +0000839 /* the PC is inside the translated code. It means that we have
840 a virtual CPU fault */
bellardbf3e8bf2004-02-16 21:58:54 +0000841 cpu_restore_state(tb, env, pc, puc);
bellard3fb2ded2003-06-24 13:22:59 +0000842 }
bellard4cbf74b2003-08-10 21:48:43 +0000843 if (ret == 1) {
bellard3fb2ded2003-06-24 13:22:59 +0000844#if 0
ths5fafdf22007-09-16 21:08:06 +0000845 printf("PF exception: EIP=0x%08x CR2=0x%08x error=0x%x\n",
bellard4cbf74b2003-08-10 21:48:43 +0000846 env->eip, env->cr[2], env->error_code);
bellard3fb2ded2003-06-24 13:22:59 +0000847#endif
bellard4cbf74b2003-08-10 21:48:43 +0000848 /* we restore the process signal mask as the sigreturn should
849 do it (XXX: use sigsetjmp) */
850 sigprocmask(SIG_SETMASK, old_set, NULL);
bellard54ca9092005-12-04 18:46:06 +0000851 raise_exception_err(env->exception_index, env->error_code);
bellard4cbf74b2003-08-10 21:48:43 +0000852 } else {
853 /* activate soft MMU for this block */
bellard3f337312003-08-20 23:02:09 +0000854 env->hflags |= HF_SOFTMMU_MASK;
bellardfbf9eeb2004-04-25 21:21:33 +0000855 cpu_resume_from_signal(env, puc);
bellard4cbf74b2003-08-10 21:48:43 +0000856 }
bellard3fb2ded2003-06-24 13:22:59 +0000857 /* never comes here */
858 return 1;
859}
860
bellarde4533c72003-06-15 19:51:39 +0000861#elif defined(TARGET_ARM)
bellard3fb2ded2003-06-24 13:22:59 +0000862static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bellardbf3e8bf2004-02-16 21:58:54 +0000863 int is_write, sigset_t *old_set,
864 void *puc)
bellard3fb2ded2003-06-24 13:22:59 +0000865{
bellard68016c62005-02-07 23:12:27 +0000866 TranslationBlock *tb;
867 int ret;
868
869 if (cpu_single_env)
870 env = cpu_single_env; /* XXX: find a correct solution for multithread */
871#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +0000872 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellard68016c62005-02-07 23:12:27 +0000873 pc, address, is_write, *(unsigned long *)old_set);
874#endif
bellard9f0777e2005-02-02 20:42:01 +0000875 /* XXX: locking issue */
pbrook53a59602006-03-25 19:31:22 +0000876 if (is_write && page_unprotect(h2g(address), pc, puc)) {
bellard9f0777e2005-02-02 20:42:01 +0000877 return 1;
878 }
bellard68016c62005-02-07 23:12:27 +0000879 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +0000880 ret = cpu_arm_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
bellard68016c62005-02-07 23:12:27 +0000881 if (ret < 0)
882 return 0; /* not an MMU fault */
883 if (ret == 0)
884 return 1; /* the MMU fault was handled without causing real CPU fault */
885 /* now we have a real cpu fault */
886 tb = tb_find_pc(pc);
887 if (tb) {
888 /* the PC is inside the translated code. It means that we have
889 a virtual CPU fault */
890 cpu_restore_state(tb, env, pc, puc);
891 }
892 /* we restore the process signal mask as the sigreturn should
893 do it (XXX: use sigsetjmp) */
894 sigprocmask(SIG_SETMASK, old_set, NULL);
895 cpu_loop_exit();
aurel32968c74d2008-04-11 04:55:17 +0000896 /* never comes here */
897 return 1;
bellard3fb2ded2003-06-24 13:22:59 +0000898}
bellard93ac68b2003-09-30 20:57:29 +0000899#elif defined(TARGET_SPARC)
900static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bellardbf3e8bf2004-02-16 21:58:54 +0000901 int is_write, sigset_t *old_set,
902 void *puc)
bellard93ac68b2003-09-30 20:57:29 +0000903{
bellard68016c62005-02-07 23:12:27 +0000904 TranslationBlock *tb;
905 int ret;
906
907 if (cpu_single_env)
908 env = cpu_single_env; /* XXX: find a correct solution for multithread */
909#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +0000910 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellard68016c62005-02-07 23:12:27 +0000911 pc, address, is_write, *(unsigned long *)old_set);
912#endif
bellardb453b702004-01-04 15:45:21 +0000913 /* XXX: locking issue */
pbrook53a59602006-03-25 19:31:22 +0000914 if (is_write && page_unprotect(h2g(address), pc, puc)) {
bellardb453b702004-01-04 15:45:21 +0000915 return 1;
916 }
bellard68016c62005-02-07 23:12:27 +0000917 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +0000918 ret = cpu_sparc_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
bellard68016c62005-02-07 23:12:27 +0000919 if (ret < 0)
920 return 0; /* not an MMU fault */
921 if (ret == 0)
922 return 1; /* the MMU fault was handled without causing real CPU fault */
923 /* now we have a real cpu fault */
924 tb = tb_find_pc(pc);
925 if (tb) {
926 /* the PC is inside the translated code. It means that we have
927 a virtual CPU fault */
928 cpu_restore_state(tb, env, pc, puc);
929 }
930 /* we restore the process signal mask as the sigreturn should
931 do it (XXX: use sigsetjmp) */
932 sigprocmask(SIG_SETMASK, old_set, NULL);
933 cpu_loop_exit();
aurel32968c74d2008-04-11 04:55:17 +0000934 /* never comes here */
935 return 1;
bellard93ac68b2003-09-30 20:57:29 +0000936}
bellard67867302003-11-23 17:05:30 +0000937#elif defined (TARGET_PPC)
938static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
bellardbf3e8bf2004-02-16 21:58:54 +0000939 int is_write, sigset_t *old_set,
940 void *puc)
bellard67867302003-11-23 17:05:30 +0000941{
942 TranslationBlock *tb;
bellardce097762004-01-04 23:53:18 +0000943 int ret;
ths3b46e622007-09-17 08:09:54 +0000944
bellard67867302003-11-23 17:05:30 +0000945 if (cpu_single_env)
946 env = cpu_single_env; /* XXX: find a correct solution for multithread */
bellard67867302003-11-23 17:05:30 +0000947#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +0000948 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellard67867302003-11-23 17:05:30 +0000949 pc, address, is_write, *(unsigned long *)old_set);
950#endif
951 /* XXX: locking issue */
pbrook53a59602006-03-25 19:31:22 +0000952 if (is_write && page_unprotect(h2g(address), pc, puc)) {
bellard67867302003-11-23 17:05:30 +0000953 return 1;
954 }
955
bellardce097762004-01-04 23:53:18 +0000956 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +0000957 ret = cpu_ppc_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
bellardce097762004-01-04 23:53:18 +0000958 if (ret < 0)
959 return 0; /* not an MMU fault */
960 if (ret == 0)
961 return 1; /* the MMU fault was handled without causing real CPU fault */
962
bellard67867302003-11-23 17:05:30 +0000963 /* now we have a real cpu fault */
964 tb = tb_find_pc(pc);
965 if (tb) {
966 /* the PC is inside the translated code. It means that we have
967 a virtual CPU fault */
bellardbf3e8bf2004-02-16 21:58:54 +0000968 cpu_restore_state(tb, env, pc, puc);
bellard67867302003-11-23 17:05:30 +0000969 }
bellardce097762004-01-04 23:53:18 +0000970 if (ret == 1) {
bellard67867302003-11-23 17:05:30 +0000971#if 0
ths5fafdf22007-09-16 21:08:06 +0000972 printf("PF exception: NIP=0x%08x error=0x%x %p\n",
bellardce097762004-01-04 23:53:18 +0000973 env->nip, env->error_code, tb);
bellard67867302003-11-23 17:05:30 +0000974#endif
975 /* we restore the process signal mask as the sigreturn should
976 do it (XXX: use sigsetjmp) */
bellardbf3e8bf2004-02-16 21:58:54 +0000977 sigprocmask(SIG_SETMASK, old_set, NULL);
bellard9fddaa02004-05-21 12:59:32 +0000978 do_raise_exception_err(env->exception_index, env->error_code);
bellardce097762004-01-04 23:53:18 +0000979 } else {
980 /* activate soft MMU for this block */
bellardfbf9eeb2004-04-25 21:21:33 +0000981 cpu_resume_from_signal(env, puc);
bellardce097762004-01-04 23:53:18 +0000982 }
bellard67867302003-11-23 17:05:30 +0000983 /* never comes here */
984 return 1;
985}
bellard6af0bf92005-07-02 14:58:51 +0000986
pbrooke6e59062006-10-22 00:18:54 +0000987#elif defined(TARGET_M68K)
988static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
989 int is_write, sigset_t *old_set,
990 void *puc)
991{
992 TranslationBlock *tb;
993 int ret;
994
995 if (cpu_single_env)
996 env = cpu_single_env; /* XXX: find a correct solution for multithread */
997#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +0000998 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
pbrooke6e59062006-10-22 00:18:54 +0000999 pc, address, is_write, *(unsigned long *)old_set);
1000#endif
1001 /* XXX: locking issue */
1002 if (is_write && page_unprotect(address, pc, puc)) {
1003 return 1;
1004 }
1005 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +00001006 ret = cpu_m68k_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
pbrooke6e59062006-10-22 00:18:54 +00001007 if (ret < 0)
1008 return 0; /* not an MMU fault */
1009 if (ret == 0)
1010 return 1; /* the MMU fault was handled without causing real CPU fault */
1011 /* now we have a real cpu fault */
1012 tb = tb_find_pc(pc);
1013 if (tb) {
1014 /* the PC is inside the translated code. It means that we have
1015 a virtual CPU fault */
1016 cpu_restore_state(tb, env, pc, puc);
1017 }
1018 /* we restore the process signal mask as the sigreturn should
1019 do it (XXX: use sigsetjmp) */
1020 sigprocmask(SIG_SETMASK, old_set, NULL);
1021 cpu_loop_exit();
1022 /* never comes here */
1023 return 1;
1024}
1025
bellard6af0bf92005-07-02 14:58:51 +00001026#elif defined (TARGET_MIPS)
1027static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
1028 int is_write, sigset_t *old_set,
1029 void *puc)
1030{
1031 TranslationBlock *tb;
1032 int ret;
ths3b46e622007-09-17 08:09:54 +00001033
bellard6af0bf92005-07-02 14:58:51 +00001034 if (cpu_single_env)
1035 env = cpu_single_env; /* XXX: find a correct solution for multithread */
1036#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +00001037 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellard6af0bf92005-07-02 14:58:51 +00001038 pc, address, is_write, *(unsigned long *)old_set);
1039#endif
1040 /* XXX: locking issue */
pbrook53a59602006-03-25 19:31:22 +00001041 if (is_write && page_unprotect(h2g(address), pc, puc)) {
bellard6af0bf92005-07-02 14:58:51 +00001042 return 1;
1043 }
1044
1045 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +00001046 ret = cpu_mips_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
bellard6af0bf92005-07-02 14:58:51 +00001047 if (ret < 0)
1048 return 0; /* not an MMU fault */
1049 if (ret == 0)
1050 return 1; /* the MMU fault was handled without causing real CPU fault */
1051
1052 /* now we have a real cpu fault */
1053 tb = tb_find_pc(pc);
1054 if (tb) {
1055 /* the PC is inside the translated code. It means that we have
1056 a virtual CPU fault */
1057 cpu_restore_state(tb, env, pc, puc);
1058 }
1059 if (ret == 1) {
1060#if 0
ths5fafdf22007-09-16 21:08:06 +00001061 printf("PF exception: PC=0x" TARGET_FMT_lx " error=0x%x %p\n",
ths1eb52072007-05-12 16:57:42 +00001062 env->PC, env->error_code, tb);
bellard6af0bf92005-07-02 14:58:51 +00001063#endif
1064 /* we restore the process signal mask as the sigreturn should
1065 do it (XXX: use sigsetjmp) */
1066 sigprocmask(SIG_SETMASK, old_set, NULL);
1067 do_raise_exception_err(env->exception_index, env->error_code);
1068 } else {
1069 /* activate soft MMU for this block */
1070 cpu_resume_from_signal(env, puc);
1071 }
1072 /* never comes here */
1073 return 1;
1074}
1075
bellardfdf9b3e2006-04-27 21:07:38 +00001076#elif defined (TARGET_SH4)
1077static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
1078 int is_write, sigset_t *old_set,
1079 void *puc)
1080{
1081 TranslationBlock *tb;
1082 int ret;
ths3b46e622007-09-17 08:09:54 +00001083
bellardfdf9b3e2006-04-27 21:07:38 +00001084 if (cpu_single_env)
1085 env = cpu_single_env; /* XXX: find a correct solution for multithread */
1086#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +00001087 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
bellardfdf9b3e2006-04-27 21:07:38 +00001088 pc, address, is_write, *(unsigned long *)old_set);
1089#endif
1090 /* XXX: locking issue */
1091 if (is_write && page_unprotect(h2g(address), pc, puc)) {
1092 return 1;
1093 }
1094
1095 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +00001096 ret = cpu_sh4_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
bellardfdf9b3e2006-04-27 21:07:38 +00001097 if (ret < 0)
1098 return 0; /* not an MMU fault */
1099 if (ret == 0)
1100 return 1; /* the MMU fault was handled without causing real CPU fault */
1101
1102 /* now we have a real cpu fault */
1103 tb = tb_find_pc(pc);
1104 if (tb) {
1105 /* the PC is inside the translated code. It means that we have
1106 a virtual CPU fault */
1107 cpu_restore_state(tb, env, pc, puc);
1108 }
bellardfdf9b3e2006-04-27 21:07:38 +00001109#if 0
ths5fafdf22007-09-16 21:08:06 +00001110 printf("PF exception: NIP=0x%08x error=0x%x %p\n",
bellardfdf9b3e2006-04-27 21:07:38 +00001111 env->nip, env->error_code, tb);
1112#endif
1113 /* we restore the process signal mask as the sigreturn should
1114 do it (XXX: use sigsetjmp) */
pbrook355fb232006-06-17 19:58:25 +00001115 sigprocmask(SIG_SETMASK, old_set, NULL);
1116 cpu_loop_exit();
bellardfdf9b3e2006-04-27 21:07:38 +00001117 /* never comes here */
1118 return 1;
1119}
j_mayereddf68a2007-04-05 07:22:49 +00001120
1121#elif defined (TARGET_ALPHA)
1122static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
1123 int is_write, sigset_t *old_set,
1124 void *puc)
1125{
1126 TranslationBlock *tb;
1127 int ret;
ths3b46e622007-09-17 08:09:54 +00001128
j_mayereddf68a2007-04-05 07:22:49 +00001129 if (cpu_single_env)
1130 env = cpu_single_env; /* XXX: find a correct solution for multithread */
1131#if defined(DEBUG_SIGNAL)
ths5fafdf22007-09-16 21:08:06 +00001132 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
j_mayereddf68a2007-04-05 07:22:49 +00001133 pc, address, is_write, *(unsigned long *)old_set);
1134#endif
1135 /* XXX: locking issue */
1136 if (is_write && page_unprotect(h2g(address), pc, puc)) {
1137 return 1;
1138 }
1139
1140 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +00001141 ret = cpu_alpha_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
j_mayereddf68a2007-04-05 07:22:49 +00001142 if (ret < 0)
1143 return 0; /* not an MMU fault */
1144 if (ret == 0)
1145 return 1; /* the MMU fault was handled without causing real CPU fault */
1146
1147 /* now we have a real cpu fault */
1148 tb = tb_find_pc(pc);
1149 if (tb) {
1150 /* the PC is inside the translated code. It means that we have
1151 a virtual CPU fault */
1152 cpu_restore_state(tb, env, pc, puc);
1153 }
1154#if 0
ths5fafdf22007-09-16 21:08:06 +00001155 printf("PF exception: NIP=0x%08x error=0x%x %p\n",
j_mayereddf68a2007-04-05 07:22:49 +00001156 env->nip, env->error_code, tb);
1157#endif
1158 /* we restore the process signal mask as the sigreturn should
1159 do it (XXX: use sigsetjmp) */
1160 sigprocmask(SIG_SETMASK, old_set, NULL);
1161 cpu_loop_exit();
1162 /* never comes here */
1163 return 1;
1164}
thsf1ccf902007-10-08 13:16:14 +00001165#elif defined (TARGET_CRIS)
1166static inline int handle_cpu_signal(unsigned long pc, unsigned long address,
1167 int is_write, sigset_t *old_set,
1168 void *puc)
1169{
1170 TranslationBlock *tb;
1171 int ret;
1172
1173 if (cpu_single_env)
1174 env = cpu_single_env; /* XXX: find a correct solution for multithread */
1175#if defined(DEBUG_SIGNAL)
1176 printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
1177 pc, address, is_write, *(unsigned long *)old_set);
1178#endif
1179 /* XXX: locking issue */
1180 if (is_write && page_unprotect(h2g(address), pc, puc)) {
1181 return 1;
1182 }
1183
1184 /* see if it is an MMU fault */
j_mayer6ebbf392007-10-14 07:07:08 +00001185 ret = cpu_cris_handle_mmu_fault(env, address, is_write, MMU_USER_IDX, 0);
thsf1ccf902007-10-08 13:16:14 +00001186 if (ret < 0)
1187 return 0; /* not an MMU fault */
1188 if (ret == 0)
1189 return 1; /* the MMU fault was handled without causing real CPU fault */
1190
1191 /* now we have a real cpu fault */
1192 tb = tb_find_pc(pc);
1193 if (tb) {
1194 /* the PC is inside the translated code. It means that we have
1195 a virtual CPU fault */
1196 cpu_restore_state(tb, env, pc, puc);
1197 }
thsf1ccf902007-10-08 13:16:14 +00001198 /* we restore the process signal mask as the sigreturn should
1199 do it (XXX: use sigsetjmp) */
1200 sigprocmask(SIG_SETMASK, old_set, NULL);
1201 cpu_loop_exit();
1202 /* never comes here */
1203 return 1;
1204}
1205
bellarde4533c72003-06-15 19:51:39 +00001206#else
1207#error unsupported target CPU
1208#endif
bellard9de5e442003-03-23 16:49:39 +00001209
bellard2b413142003-05-14 23:01:10 +00001210#if defined(__i386__)
1211
bellardd8ecc0b2007-02-05 21:41:46 +00001212#if defined(__APPLE__)
1213# include <sys/ucontext.h>
1214
1215# define EIP_sig(context) (*((unsigned long*)&(context)->uc_mcontext->ss.eip))
1216# define TRAP_sig(context) ((context)->uc_mcontext->es.trapno)
1217# define ERROR_sig(context) ((context)->uc_mcontext->es.err)
1218#else
1219# define EIP_sig(context) ((context)->uc_mcontext.gregs[REG_EIP])
1220# define TRAP_sig(context) ((context)->uc_mcontext.gregs[REG_TRAPNO])
1221# define ERROR_sig(context) ((context)->uc_mcontext.gregs[REG_ERR])
1222#endif
1223
ths5fafdf22007-09-16 21:08:06 +00001224int cpu_signal_handler(int host_signum, void *pinfo,
bellarde4533c72003-06-15 19:51:39 +00001225 void *puc)
bellard9de5e442003-03-23 16:49:39 +00001226{
ths5a7b5422007-01-31 12:16:51 +00001227 siginfo_t *info = pinfo;
bellard9de5e442003-03-23 16:49:39 +00001228 struct ucontext *uc = puc;
1229 unsigned long pc;
bellardbf3e8bf2004-02-16 21:58:54 +00001230 int trapno;
bellard97eb5b12004-02-25 23:19:55 +00001231
bellardd691f662003-03-24 21:58:34 +00001232#ifndef REG_EIP
1233/* for glibc 2.1 */
bellardfd6ce8f2003-05-14 19:00:11 +00001234#define REG_EIP EIP
1235#define REG_ERR ERR
1236#define REG_TRAPNO TRAPNO
bellardd691f662003-03-24 21:58:34 +00001237#endif
bellardd8ecc0b2007-02-05 21:41:46 +00001238 pc = EIP_sig(uc);
1239 trapno = TRAP_sig(uc);
bellardec6338b2007-11-08 14:25:03 +00001240 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
1241 trapno == 0xe ?
1242 (ERROR_sig(uc) >> 1) & 1 : 0,
1243 &uc->uc_sigmask, puc);
bellard2b413142003-05-14 23:01:10 +00001244}
1245
bellardbc51c5c2004-03-17 23:46:04 +00001246#elif defined(__x86_64__)
1247
ths5a7b5422007-01-31 12:16:51 +00001248int cpu_signal_handler(int host_signum, void *pinfo,
bellardbc51c5c2004-03-17 23:46:04 +00001249 void *puc)
1250{
ths5a7b5422007-01-31 12:16:51 +00001251 siginfo_t *info = pinfo;
bellardbc51c5c2004-03-17 23:46:04 +00001252 struct ucontext *uc = puc;
1253 unsigned long pc;
1254
1255 pc = uc->uc_mcontext.gregs[REG_RIP];
ths5fafdf22007-09-16 21:08:06 +00001256 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
1257 uc->uc_mcontext.gregs[REG_TRAPNO] == 0xe ?
bellardbc51c5c2004-03-17 23:46:04 +00001258 (uc->uc_mcontext.gregs[REG_ERR] >> 1) & 1 : 0,
1259 &uc->uc_sigmask, puc);
1260}
1261
bellard83fb7ad2004-07-05 21:25:26 +00001262#elif defined(__powerpc__)
bellard2b413142003-05-14 23:01:10 +00001263
bellard83fb7ad2004-07-05 21:25:26 +00001264/***********************************************************************
1265 * signal context platform-specific definitions
1266 * From Wine
1267 */
1268#ifdef linux
1269/* All Registers access - only for local access */
1270# define REG_sig(reg_name, context) ((context)->uc_mcontext.regs->reg_name)
1271/* Gpr Registers access */
1272# define GPR_sig(reg_num, context) REG_sig(gpr[reg_num], context)
1273# define IAR_sig(context) REG_sig(nip, context) /* Program counter */
1274# define MSR_sig(context) REG_sig(msr, context) /* Machine State Register (Supervisor) */
1275# define CTR_sig(context) REG_sig(ctr, context) /* Count register */
1276# define XER_sig(context) REG_sig(xer, context) /* User's integer exception register */
1277# define LR_sig(context) REG_sig(link, context) /* Link register */
1278# define CR_sig(context) REG_sig(ccr, context) /* Condition register */
1279/* Float Registers access */
1280# define FLOAT_sig(reg_num, context) (((double*)((char*)((context)->uc_mcontext.regs+48*4)))[reg_num])
1281# define FPSCR_sig(context) (*(int*)((char*)((context)->uc_mcontext.regs+(48+32*2)*4)))
1282/* Exception Registers access */
1283# define DAR_sig(context) REG_sig(dar, context)
1284# define DSISR_sig(context) REG_sig(dsisr, context)
1285# define TRAP_sig(context) REG_sig(trap, context)
1286#endif /* linux */
1287
1288#ifdef __APPLE__
1289# include <sys/ucontext.h>
1290typedef struct ucontext SIGCONTEXT;
1291/* All Registers access - only for local access */
1292# define REG_sig(reg_name, context) ((context)->uc_mcontext->ss.reg_name)
1293# define FLOATREG_sig(reg_name, context) ((context)->uc_mcontext->fs.reg_name)
1294# define EXCEPREG_sig(reg_name, context) ((context)->uc_mcontext->es.reg_name)
1295# define VECREG_sig(reg_name, context) ((context)->uc_mcontext->vs.reg_name)
1296/* Gpr Registers access */
1297# define GPR_sig(reg_num, context) REG_sig(r##reg_num, context)
1298# define IAR_sig(context) REG_sig(srr0, context) /* Program counter */
1299# define MSR_sig(context) REG_sig(srr1, context) /* Machine State Register (Supervisor) */
1300# define CTR_sig(context) REG_sig(ctr, context)
1301# define XER_sig(context) REG_sig(xer, context) /* Link register */
1302# define LR_sig(context) REG_sig(lr, context) /* User's integer exception register */
1303# define CR_sig(context) REG_sig(cr, context) /* Condition register */
1304/* Float Registers access */
1305# define FLOAT_sig(reg_num, context) FLOATREG_sig(fpregs[reg_num], context)
1306# define FPSCR_sig(context) ((double)FLOATREG_sig(fpscr, context))
1307/* Exception Registers access */
1308# define DAR_sig(context) EXCEPREG_sig(dar, context) /* Fault registers for coredump */
1309# define DSISR_sig(context) EXCEPREG_sig(dsisr, context)
1310# define TRAP_sig(context) EXCEPREG_sig(exception, context) /* number of powerpc exception taken */
1311#endif /* __APPLE__ */
1312
ths5fafdf22007-09-16 21:08:06 +00001313int cpu_signal_handler(int host_signum, void *pinfo,
bellarde4533c72003-06-15 19:51:39 +00001314 void *puc)
bellard2b413142003-05-14 23:01:10 +00001315{
ths5a7b5422007-01-31 12:16:51 +00001316 siginfo_t *info = pinfo;
bellard25eb4482003-05-14 21:50:54 +00001317 struct ucontext *uc = puc;
bellard25eb4482003-05-14 21:50:54 +00001318 unsigned long pc;
bellard25eb4482003-05-14 21:50:54 +00001319 int is_write;
1320
bellard83fb7ad2004-07-05 21:25:26 +00001321 pc = IAR_sig(uc);
bellard25eb4482003-05-14 21:50:54 +00001322 is_write = 0;
1323#if 0
1324 /* ppc 4xx case */
bellard83fb7ad2004-07-05 21:25:26 +00001325 if (DSISR_sig(uc) & 0x00800000)
bellard25eb4482003-05-14 21:50:54 +00001326 is_write = 1;
bellard9de5e442003-03-23 16:49:39 +00001327#else
bellard83fb7ad2004-07-05 21:25:26 +00001328 if (TRAP_sig(uc) != 0x400 && (DSISR_sig(uc) & 0x02000000))
bellard25eb4482003-05-14 21:50:54 +00001329 is_write = 1;
1330#endif
ths5fafdf22007-09-16 21:08:06 +00001331 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellardbf3e8bf2004-02-16 21:58:54 +00001332 is_write, &uc->uc_sigmask, puc);
bellard9de5e442003-03-23 16:49:39 +00001333}
bellard2b413142003-05-14 23:01:10 +00001334
bellard2f87c602003-06-02 20:38:09 +00001335#elif defined(__alpha__)
1336
ths5fafdf22007-09-16 21:08:06 +00001337int cpu_signal_handler(int host_signum, void *pinfo,
bellard2f87c602003-06-02 20:38:09 +00001338 void *puc)
1339{
ths5a7b5422007-01-31 12:16:51 +00001340 siginfo_t *info = pinfo;
bellard2f87c602003-06-02 20:38:09 +00001341 struct ucontext *uc = puc;
1342 uint32_t *pc = uc->uc_mcontext.sc_pc;
1343 uint32_t insn = *pc;
1344 int is_write = 0;
1345
bellard8c6939c2003-06-09 15:28:00 +00001346 /* XXX: need kernel patch to get write flag faster */
bellard2f87c602003-06-02 20:38:09 +00001347 switch (insn >> 26) {
1348 case 0x0d: // stw
1349 case 0x0e: // stb
1350 case 0x0f: // stq_u
1351 case 0x24: // stf
1352 case 0x25: // stg
1353 case 0x26: // sts
1354 case 0x27: // stt
1355 case 0x2c: // stl
1356 case 0x2d: // stq
1357 case 0x2e: // stl_c
1358 case 0x2f: // stq_c
1359 is_write = 1;
1360 }
1361
ths5fafdf22007-09-16 21:08:06 +00001362 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellardbf3e8bf2004-02-16 21:58:54 +00001363 is_write, &uc->uc_sigmask, puc);
bellard2f87c602003-06-02 20:38:09 +00001364}
bellard8c6939c2003-06-09 15:28:00 +00001365#elif defined(__sparc__)
1366
ths5fafdf22007-09-16 21:08:06 +00001367int cpu_signal_handler(int host_signum, void *pinfo,
bellarde4533c72003-06-15 19:51:39 +00001368 void *puc)
bellard8c6939c2003-06-09 15:28:00 +00001369{
ths5a7b5422007-01-31 12:16:51 +00001370 siginfo_t *info = pinfo;
bellard8c6939c2003-06-09 15:28:00 +00001371 uint32_t *regs = (uint32_t *)(info + 1);
1372 void *sigmask = (regs + 20);
1373 unsigned long pc;
1374 int is_write;
1375 uint32_t insn;
ths3b46e622007-09-17 08:09:54 +00001376
bellard8c6939c2003-06-09 15:28:00 +00001377 /* XXX: is there a standard glibc define ? */
1378 pc = regs[1];
1379 /* XXX: need kernel patch to get write flag faster */
1380 is_write = 0;
1381 insn = *(uint32_t *)pc;
1382 if ((insn >> 30) == 3) {
1383 switch((insn >> 19) & 0x3f) {
1384 case 0x05: // stb
1385 case 0x06: // sth
1386 case 0x04: // st
1387 case 0x07: // std
1388 case 0x24: // stf
1389 case 0x27: // stdf
1390 case 0x25: // stfsr
1391 is_write = 1;
1392 break;
1393 }
1394 }
ths5fafdf22007-09-16 21:08:06 +00001395 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellardbf3e8bf2004-02-16 21:58:54 +00001396 is_write, sigmask, NULL);
bellard8c6939c2003-06-09 15:28:00 +00001397}
1398
1399#elif defined(__arm__)
1400
ths5fafdf22007-09-16 21:08:06 +00001401int cpu_signal_handler(int host_signum, void *pinfo,
bellarde4533c72003-06-15 19:51:39 +00001402 void *puc)
bellard8c6939c2003-06-09 15:28:00 +00001403{
ths5a7b5422007-01-31 12:16:51 +00001404 siginfo_t *info = pinfo;
bellard8c6939c2003-06-09 15:28:00 +00001405 struct ucontext *uc = puc;
1406 unsigned long pc;
1407 int is_write;
ths3b46e622007-09-17 08:09:54 +00001408
bellard8c6939c2003-06-09 15:28:00 +00001409 pc = uc->uc_mcontext.gregs[R15];
1410 /* XXX: compute is_write */
1411 is_write = 0;
ths5fafdf22007-09-16 21:08:06 +00001412 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellard8c6939c2003-06-09 15:28:00 +00001413 is_write,
pbrookf3a96762006-07-29 19:09:31 +00001414 &uc->uc_sigmask, puc);
bellard8c6939c2003-06-09 15:28:00 +00001415}
1416
bellard38e584a2003-08-10 22:14:22 +00001417#elif defined(__mc68000)
1418
ths5fafdf22007-09-16 21:08:06 +00001419int cpu_signal_handler(int host_signum, void *pinfo,
bellard38e584a2003-08-10 22:14:22 +00001420 void *puc)
1421{
ths5a7b5422007-01-31 12:16:51 +00001422 siginfo_t *info = pinfo;
bellard38e584a2003-08-10 22:14:22 +00001423 struct ucontext *uc = puc;
1424 unsigned long pc;
1425 int is_write;
ths3b46e622007-09-17 08:09:54 +00001426
bellard38e584a2003-08-10 22:14:22 +00001427 pc = uc->uc_mcontext.gregs[16];
1428 /* XXX: compute is_write */
1429 is_write = 0;
ths5fafdf22007-09-16 21:08:06 +00001430 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
bellard38e584a2003-08-10 22:14:22 +00001431 is_write,
bellardbf3e8bf2004-02-16 21:58:54 +00001432 &uc->uc_sigmask, puc);
bellard38e584a2003-08-10 22:14:22 +00001433}
1434
bellardb8076a72005-04-07 22:20:31 +00001435#elif defined(__ia64)
1436
1437#ifndef __ISR_VALID
1438 /* This ought to be in <bits/siginfo.h>... */
1439# define __ISR_VALID 1
bellardb8076a72005-04-07 22:20:31 +00001440#endif
1441
ths5a7b5422007-01-31 12:16:51 +00001442int cpu_signal_handler(int host_signum, void *pinfo, void *puc)
bellardb8076a72005-04-07 22:20:31 +00001443{
ths5a7b5422007-01-31 12:16:51 +00001444 siginfo_t *info = pinfo;
bellardb8076a72005-04-07 22:20:31 +00001445 struct ucontext *uc = puc;
1446 unsigned long ip;
1447 int is_write = 0;
1448
1449 ip = uc->uc_mcontext.sc_ip;
1450 switch (host_signum) {
1451 case SIGILL:
1452 case SIGFPE:
1453 case SIGSEGV:
1454 case SIGBUS:
1455 case SIGTRAP:
bellardfd4a43e2006-04-24 20:32:17 +00001456 if (info->si_code && (info->si_segvflags & __ISR_VALID))
bellardb8076a72005-04-07 22:20:31 +00001457 /* ISR.W (write-access) is bit 33: */
1458 is_write = (info->si_isr >> 33) & 1;
1459 break;
1460
1461 default:
1462 break;
1463 }
1464 return handle_cpu_signal(ip, (unsigned long)info->si_addr,
1465 is_write,
1466 &uc->uc_sigmask, puc);
1467}
1468
bellard90cb9492005-07-24 15:11:38 +00001469#elif defined(__s390__)
1470
ths5fafdf22007-09-16 21:08:06 +00001471int cpu_signal_handler(int host_signum, void *pinfo,
bellard90cb9492005-07-24 15:11:38 +00001472 void *puc)
1473{
ths5a7b5422007-01-31 12:16:51 +00001474 siginfo_t *info = pinfo;
bellard90cb9492005-07-24 15:11:38 +00001475 struct ucontext *uc = puc;
1476 unsigned long pc;
1477 int is_write;
ths3b46e622007-09-17 08:09:54 +00001478
bellard90cb9492005-07-24 15:11:38 +00001479 pc = uc->uc_mcontext.psw.addr;
1480 /* XXX: compute is_write */
1481 is_write = 0;
ths5fafdf22007-09-16 21:08:06 +00001482 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
thsc4b89d12007-05-05 19:23:11 +00001483 is_write, &uc->uc_sigmask, puc);
1484}
1485
1486#elif defined(__mips__)
1487
ths5fafdf22007-09-16 21:08:06 +00001488int cpu_signal_handler(int host_signum, void *pinfo,
thsc4b89d12007-05-05 19:23:11 +00001489 void *puc)
1490{
ths9617efe2007-05-08 21:05:55 +00001491 siginfo_t *info = pinfo;
thsc4b89d12007-05-05 19:23:11 +00001492 struct ucontext *uc = puc;
1493 greg_t pc = uc->uc_mcontext.pc;
1494 int is_write;
ths3b46e622007-09-17 08:09:54 +00001495
thsc4b89d12007-05-05 19:23:11 +00001496 /* XXX: compute is_write */
1497 is_write = 0;
ths5fafdf22007-09-16 21:08:06 +00001498 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
thsc4b89d12007-05-05 19:23:11 +00001499 is_write, &uc->uc_sigmask, puc);
bellard90cb9492005-07-24 15:11:38 +00001500}
1501
aurel32f54b3f92008-04-12 20:14:54 +00001502#elif defined(__hppa__)
1503
1504int cpu_signal_handler(int host_signum, void *pinfo,
1505 void *puc)
1506{
1507 struct siginfo *info = pinfo;
1508 struct ucontext *uc = puc;
1509 unsigned long pc;
1510 int is_write;
1511
1512 pc = uc->uc_mcontext.sc_iaoq[0];
1513 /* FIXME: compute is_write */
1514 is_write = 0;
1515 return handle_cpu_signal(pc, (unsigned long)info->si_addr,
1516 is_write,
1517 &uc->uc_sigmask, puc);
1518}
1519
bellard2b413142003-05-14 23:01:10 +00001520#else
1521
bellard3fb2ded2003-06-24 13:22:59 +00001522#error host CPU specific signal handler needed
bellard2b413142003-05-14 23:01:10 +00001523
1524#endif
bellard67b915a2004-03-31 23:37:16 +00001525
1526#endif /* !defined(CONFIG_SOFTMMU) */