blob: f406f615d7e29b4ab8610c099d9ad5754821f475 [file] [log] [blame]
bellard31e31b82003-02-18 22:55:36 +00001/*
bellard93ac68b2003-09-30 20:57:29 +00002 * qemu user main
bellard31e31b82003-02-18 22:55:36 +00003 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program 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
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20#include <stdlib.h>
21#include <stdio.h>
22#include <stdarg.h>
bellard04369ff2003-03-20 22:33:23 +000023#include <string.h>
bellard31e31b82003-02-18 22:55:36 +000024#include <errno.h>
bellard0ecfa992003-03-03 14:32:43 +000025#include <unistd.h>
bellard31e31b82003-02-18 22:55:36 +000026
bellard3ef693a2003-03-23 20:17:16 +000027#include "qemu.h"
bellard31e31b82003-02-18 22:55:36 +000028
bellard3ef693a2003-03-23 20:17:16 +000029#define DEBUG_LOGFILE "/tmp/qemu.log"
bellard586314f2003-03-03 15:02:29 +000030
bellard83fb7ad2004-07-05 21:25:26 +000031#ifdef __APPLE__
32#include <crt_externs.h>
33# define environ (*_NSGetEnviron())
34#endif
35
bellard74cd30b2003-04-11 00:13:41 +000036static const char *interp_prefix = CONFIG_QEMU_PREFIX;
bellard586314f2003-03-03 15:02:29 +000037
bellard3a4739d2003-10-28 00:48:22 +000038#if defined(__i386__) && !defined(CONFIG_STATIC)
bellardf801f972003-04-07 21:31:06 +000039/* Force usage of an ELF interpreter even if it is an ELF shared
40 object ! */
41const char interp[] __attribute__((section(".interp"))) = "/lib/ld-linux.so.2";
bellard43047632003-05-29 20:05:35 +000042#endif
bellard74cd30b2003-04-11 00:13:41 +000043
bellard93ac68b2003-09-30 20:57:29 +000044/* for recent libc, we add these dummy symbols which are not declared
bellard74cd30b2003-04-11 00:13:41 +000045 when generating a linked object (bug in ld ?) */
bellardfbf59242004-07-10 18:18:19 +000046#if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(CONFIG_STATIC)
bellardc6981052004-02-16 21:49:03 +000047long __preinit_array_start[0];
48long __preinit_array_end[0];
bellard74cd30b2003-04-11 00:13:41 +000049long __init_array_start[0];
50long __init_array_end[0];
51long __fini_array_start[0];
52long __fini_array_end[0];
53#endif
54
bellard9de5e442003-03-23 16:49:39 +000055/* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
56 we allocate a bigger stack. Need a better solution, for example
57 by remapping the process stack directly at the right place */
58unsigned long x86_stack_size = 512 * 1024;
bellard31e31b82003-02-18 22:55:36 +000059
60void gemu_log(const char *fmt, ...)
61{
62 va_list ap;
63
64 va_start(ap, fmt);
65 vfprintf(stderr, fmt, ap);
66 va_end(ap);
67}
68
bellard61190b12004-01-04 23:54:31 +000069void cpu_outb(CPUState *env, int addr, int val)
bellard367e86e2003-03-01 17:13:26 +000070{
71 fprintf(stderr, "outb: port=0x%04x, data=%02x\n", addr, val);
72}
73
bellard61190b12004-01-04 23:54:31 +000074void cpu_outw(CPUState *env, int addr, int val)
bellard367e86e2003-03-01 17:13:26 +000075{
76 fprintf(stderr, "outw: port=0x%04x, data=%04x\n", addr, val);
77}
78
bellard61190b12004-01-04 23:54:31 +000079void cpu_outl(CPUState *env, int addr, int val)
bellard367e86e2003-03-01 17:13:26 +000080{
81 fprintf(stderr, "outl: port=0x%04x, data=%08x\n", addr, val);
82}
83
bellard61190b12004-01-04 23:54:31 +000084int cpu_inb(CPUState *env, int addr)
bellard367e86e2003-03-01 17:13:26 +000085{
86 fprintf(stderr, "inb: port=0x%04x\n", addr);
87 return 0;
88}
89
bellard61190b12004-01-04 23:54:31 +000090int cpu_inw(CPUState *env, int addr)
bellard367e86e2003-03-01 17:13:26 +000091{
92 fprintf(stderr, "inw: port=0x%04x\n", addr);
93 return 0;
94}
95
bellard61190b12004-01-04 23:54:31 +000096int cpu_inl(CPUState *env, int addr)
bellard367e86e2003-03-01 17:13:26 +000097{
98 fprintf(stderr, "inl: port=0x%04x\n", addr);
99 return 0;
100}
101
bellarda541f292004-04-12 20:39:29 +0000102int cpu_get_pic_interrupt(CPUState *env)
bellard92ccca62003-06-24 13:30:31 +0000103{
104 return -1;
105}
106
bellard28ab0e22004-05-20 14:02:14 +0000107/* timers for rdtsc */
108
109#if defined(__i386__)
110
111int64_t cpu_get_real_ticks(void)
112{
113 int64_t val;
114 asm volatile ("rdtsc" : "=A" (val));
115 return val;
116}
117
118#elif defined(__x86_64__)
119
120int64_t cpu_get_real_ticks(void)
121{
122 uint32_t low,high;
123 int64_t val;
124 asm volatile("rdtsc" : "=a" (low), "=d" (high));
125 val = high;
126 val <<= 32;
127 val |= low;
128 return val;
129}
130
131#else
132
133static uint64_t emu_time;
134
135int64_t cpu_get_real_ticks(void)
136{
137 return emu_time++;
138}
139
140#endif
141
bellarda541f292004-04-12 20:39:29 +0000142#ifdef TARGET_I386
143/***********************************************************/
144/* CPUX86 core interface */
145
bellard28ab0e22004-05-20 14:02:14 +0000146uint64_t cpu_get_tsc(CPUX86State *env)
147{
148 return cpu_get_real_ticks();
149}
150
bellardf4beb512003-05-27 23:28:08 +0000151static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
152 int flags)
bellard6dbad632003-03-16 18:05:05 +0000153{
bellardf4beb512003-05-27 23:28:08 +0000154 unsigned int e1, e2;
bellard6dbad632003-03-16 18:05:05 +0000155 e1 = (addr << 16) | (limit & 0xffff);
156 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
bellardf4beb512003-05-27 23:28:08 +0000157 e2 |= flags;
158 stl((uint8_t *)ptr, e1);
159 stl((uint8_t *)ptr + 4, e2);
160}
161
162static void set_gate(void *ptr, unsigned int type, unsigned int dpl,
163 unsigned long addr, unsigned int sel)
164{
165 unsigned int e1, e2;
166 e1 = (addr & 0xffff) | (sel << 16);
167 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
bellard6dbad632003-03-16 18:05:05 +0000168 stl((uint8_t *)ptr, e1);
169 stl((uint8_t *)ptr + 4, e2);
170}
171
172uint64_t gdt_table[6];
bellardf4beb512003-05-27 23:28:08 +0000173uint64_t idt_table[256];
174
175/* only dpl matters as we do only user space emulation */
176static void set_idt(int n, unsigned int dpl)
177{
178 set_gate(idt_table + n, 0, dpl, 0, 0);
179}
bellard31e31b82003-02-18 22:55:36 +0000180
bellard89e957e2003-05-10 12:33:15 +0000181void cpu_loop(CPUX86State *env)
bellard1b6b0292003-03-22 17:31:38 +0000182{
bellardbc8a22c2003-03-30 21:02:40 +0000183 int trapnr;
bellard80a9d032005-01-03 23:31:27 +0000184 target_ulong pc;
bellard9de5e442003-03-23 16:49:39 +0000185 target_siginfo_t info;
bellard851e67a2003-03-29 16:53:14 +0000186
bellard1b6b0292003-03-22 17:31:38 +0000187 for(;;) {
bellardbc8a22c2003-03-30 21:02:40 +0000188 trapnr = cpu_x86_exec(env);
bellardbc8a22c2003-03-30 21:02:40 +0000189 switch(trapnr) {
bellardf4beb512003-05-27 23:28:08 +0000190 case 0x80:
191 /* linux syscall */
192 env->regs[R_EAX] = do_syscall(env,
193 env->regs[R_EAX],
194 env->regs[R_EBX],
195 env->regs[R_ECX],
196 env->regs[R_EDX],
197 env->regs[R_ESI],
198 env->regs[R_EDI],
199 env->regs[R_EBP]);
200 break;
201 case EXCP0B_NOSEG:
202 case EXCP0C_STACK:
203 info.si_signo = SIGBUS;
204 info.si_errno = 0;
205 info.si_code = TARGET_SI_KERNEL;
206 info._sifields._sigfault._addr = 0;
207 queue_signal(info.si_signo, &info);
208 break;
bellard1b6b0292003-03-22 17:31:38 +0000209 case EXCP0D_GPF:
bellard851e67a2003-03-29 16:53:14 +0000210 if (env->eflags & VM_MASK) {
bellard89e957e2003-05-10 12:33:15 +0000211 handle_vm86_fault(env);
bellard1b6b0292003-03-22 17:31:38 +0000212 } else {
bellardf4beb512003-05-27 23:28:08 +0000213 info.si_signo = SIGSEGV;
214 info.si_errno = 0;
215 info.si_code = TARGET_SI_KERNEL;
216 info._sifields._sigfault._addr = 0;
217 queue_signal(info.si_signo, &info);
bellard1b6b0292003-03-22 17:31:38 +0000218 }
219 break;
bellardb689bc52003-05-08 15:33:33 +0000220 case EXCP0E_PAGE:
221 info.si_signo = SIGSEGV;
222 info.si_errno = 0;
223 if (!(env->error_code & 1))
224 info.si_code = TARGET_SEGV_MAPERR;
225 else
226 info.si_code = TARGET_SEGV_ACCERR;
bellard970a87a2003-06-21 13:13:25 +0000227 info._sifields._sigfault._addr = env->cr[2];
bellardb689bc52003-05-08 15:33:33 +0000228 queue_signal(info.si_signo, &info);
229 break;
bellard9de5e442003-03-23 16:49:39 +0000230 case EXCP00_DIVZ:
bellardbc8a22c2003-03-30 21:02:40 +0000231 if (env->eflags & VM_MASK) {
bellard447db212003-05-10 15:10:36 +0000232 handle_vm86_trap(env, trapnr);
bellardbc8a22c2003-03-30 21:02:40 +0000233 } else {
234 /* division by zero */
235 info.si_signo = SIGFPE;
236 info.si_errno = 0;
237 info.si_code = TARGET_FPE_INTDIV;
238 info._sifields._sigfault._addr = env->eip;
239 queue_signal(info.si_signo, &info);
240 }
bellard9de5e442003-03-23 16:49:39 +0000241 break;
bellard447db212003-05-10 15:10:36 +0000242 case EXCP01_SSTP:
243 case EXCP03_INT3:
244 if (env->eflags & VM_MASK) {
245 handle_vm86_trap(env, trapnr);
246 } else {
247 info.si_signo = SIGTRAP;
248 info.si_errno = 0;
249 if (trapnr == EXCP01_SSTP) {
250 info.si_code = TARGET_TRAP_BRKPT;
251 info._sifields._sigfault._addr = env->eip;
252 } else {
253 info.si_code = TARGET_SI_KERNEL;
254 info._sifields._sigfault._addr = 0;
255 }
256 queue_signal(info.si_signo, &info);
257 }
258 break;
bellard9de5e442003-03-23 16:49:39 +0000259 case EXCP04_INTO:
260 case EXCP05_BOUND:
bellardbc8a22c2003-03-30 21:02:40 +0000261 if (env->eflags & VM_MASK) {
bellard447db212003-05-10 15:10:36 +0000262 handle_vm86_trap(env, trapnr);
bellardbc8a22c2003-03-30 21:02:40 +0000263 } else {
264 info.si_signo = SIGSEGV;
265 info.si_errno = 0;
bellardb689bc52003-05-08 15:33:33 +0000266 info.si_code = TARGET_SI_KERNEL;
bellardbc8a22c2003-03-30 21:02:40 +0000267 info._sifields._sigfault._addr = 0;
268 queue_signal(info.si_signo, &info);
269 }
bellard9de5e442003-03-23 16:49:39 +0000270 break;
271 case EXCP06_ILLOP:
272 info.si_signo = SIGILL;
273 info.si_errno = 0;
274 info.si_code = TARGET_ILL_ILLOPN;
275 info._sifields._sigfault._addr = env->eip;
276 queue_signal(info.si_signo, &info);
277 break;
278 case EXCP_INTERRUPT:
279 /* just indicate that signals should be handled asap */
280 break;
bellard1b6b0292003-03-22 17:31:38 +0000281 default:
bellard970a87a2003-06-21 13:13:25 +0000282 pc = env->segs[R_CS].base + env->eip;
bellardbc8a22c2003-03-30 21:02:40 +0000283 fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
284 (long)pc, trapnr);
bellard1b6b0292003-03-22 17:31:38 +0000285 abort();
286 }
bellard66fb9762003-03-23 01:06:05 +0000287 process_pending_signals(env);
bellard1b6b0292003-03-22 17:31:38 +0000288 }
289}
bellardb346ff42003-06-15 20:05:50 +0000290#endif
291
292#ifdef TARGET_ARM
293
bellard6f1f31c2004-04-25 18:00:45 +0000294/* XXX: find a better solution */
295extern void tb_invalidate_page_range(target_ulong start, target_ulong end);
296
297static void arm_cache_flush(target_ulong start, target_ulong last)
298{
299 target_ulong addr, last1;
300
301 if (last < start)
302 return;
303 addr = start;
304 for(;;) {
305 last1 = ((addr + TARGET_PAGE_SIZE) & TARGET_PAGE_MASK) - 1;
306 if (last1 > last)
307 last1 = last;
308 tb_invalidate_page_range(addr, last1 + 1);
309 if (last1 == last)
310 break;
311 addr = last1 + 1;
312 }
313}
314
bellardb346ff42003-06-15 20:05:50 +0000315void cpu_loop(CPUARMState *env)
316{
317 int trapnr;
318 unsigned int n, insn;
319 target_siginfo_t info;
320
321 for(;;) {
322 trapnr = cpu_arm_exec(env);
323 switch(trapnr) {
324 case EXCP_UDEF:
bellardc6981052004-02-16 21:49:03 +0000325 {
326 TaskState *ts = env->opaque;
327 uint32_t opcode;
328
329 /* we handle the FPU emulation here, as Linux */
330 /* we get the opcode */
331 opcode = ldl_raw((uint8_t *)env->regs[15]);
332
333 if (EmulateAll(opcode, &ts->fpa, env->regs) == 0) {
334 info.si_signo = SIGILL;
335 info.si_errno = 0;
336 info.si_code = TARGET_ILL_ILLOPN;
337 info._sifields._sigfault._addr = env->regs[15];
338 queue_signal(info.si_signo, &info);
339 } else {
340 /* increment PC */
341 env->regs[15] += 4;
342 }
343 }
bellardb346ff42003-06-15 20:05:50 +0000344 break;
345 case EXCP_SWI:
346 {
347 /* system call */
348 insn = ldl((void *)(env->regs[15] - 4));
349 n = insn & 0xffffff;
bellard6f1f31c2004-04-25 18:00:45 +0000350 if (n == ARM_NR_cacheflush) {
351 arm_cache_flush(env->regs[0], env->regs[1]);
352 } else if (n >= ARM_SYSCALL_BASE) {
bellardb346ff42003-06-15 20:05:50 +0000353 /* linux syscall */
354 n -= ARM_SYSCALL_BASE;
355 env->regs[0] = do_syscall(env,
356 n,
357 env->regs[0],
358 env->regs[1],
359 env->regs[2],
360 env->regs[3],
361 env->regs[4],
362 0);
363 } else {
364 goto error;
365 }
366 }
367 break;
bellard43fff232003-07-09 19:31:39 +0000368 case EXCP_INTERRUPT:
369 /* just indicate that signals should be handled asap */
370 break;
bellard68016c62005-02-07 23:12:27 +0000371 case EXCP_PREFETCH_ABORT:
372 case EXCP_DATA_ABORT:
373 {
374 info.si_signo = SIGSEGV;
375 info.si_errno = 0;
376 /* XXX: check env->error_code */
377 info.si_code = TARGET_SEGV_MAPERR;
378 info._sifields._sigfault._addr = env->cp15_6;
379 queue_signal(info.si_signo, &info);
380 }
381 break;
bellardb346ff42003-06-15 20:05:50 +0000382 default:
383 error:
384 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
385 trapnr);
bellard7fe48482004-10-09 18:08:01 +0000386 cpu_dump_state(env, stderr, fprintf, 0);
bellardb346ff42003-06-15 20:05:50 +0000387 abort();
388 }
389 process_pending_signals(env);
390 }
391}
392
393#endif
bellard1b6b0292003-03-22 17:31:38 +0000394
bellard93ac68b2003-09-30 20:57:29 +0000395#ifdef TARGET_SPARC
396
bellard060366c2004-01-04 15:50:01 +0000397//#define DEBUG_WIN
398
399/* WARNING: dealing with register windows _is_ complicated */
400static inline int get_reg_index(CPUSPARCState *env, int cwp, int index)
401{
402 index = (index + cwp * 16) & (16 * NWINDOWS - 1);
403 /* wrap handling : if cwp is on the last window, then we use the
404 registers 'after' the end */
405 if (index < 8 && env->cwp == (NWINDOWS - 1))
406 index += (16 * NWINDOWS);
407 return index;
408}
409
410static inline void save_window_offset(CPUSPARCState *env, int offset)
411{
412 unsigned int new_wim, i, cwp1;
413 uint32_t *sp_ptr;
414
415 new_wim = ((env->wim >> 1) | (env->wim << (NWINDOWS - 1))) &
416 ((1LL << NWINDOWS) - 1);
417 /* save the window */
418 cwp1 = (env->cwp + offset) & (NWINDOWS - 1);
419 sp_ptr = (uint32_t *)(env->regbase[get_reg_index(env, cwp1, 6)]);
420#if defined(DEBUG_WIN)
421 printf("win_overflow: sp_ptr=0x%x save_cwp=%d\n",
422 (int)sp_ptr, cwp1);
423#endif
424 for(i = 0; i < 16; i++)
425 stl_raw(sp_ptr + i, env->regbase[get_reg_index(env, cwp1, 8 + i)]);
426 env->wim = new_wim;
427}
428
429static void save_window(CPUSPARCState *env)
430{
431 save_window_offset(env, 2);
432}
433
434static void restore_window(CPUSPARCState *env)
435{
436 unsigned int new_wim, i, cwp1;
437 uint32_t *sp_ptr;
438
439 new_wim = ((env->wim << 1) | (env->wim >> (NWINDOWS - 1))) &
440 ((1LL << NWINDOWS) - 1);
441
442 /* restore the invalid window */
443 cwp1 = (env->cwp + 1) & (NWINDOWS - 1);
444 sp_ptr = (uint32_t *)(env->regbase[get_reg_index(env, cwp1, 6)]);
445#if defined(DEBUG_WIN)
446 printf("win_underflow: sp_ptr=0x%x load_cwp=%d\n",
447 (int)sp_ptr, cwp1);
448#endif
449 for(i = 0; i < 16; i++)
450 env->regbase[get_reg_index(env, cwp1, 8 + i)] = ldl_raw(sp_ptr + i);
451 env->wim = new_wim;
452}
453
bellard80a9d032005-01-03 23:31:27 +0000454#if 0
bellard060366c2004-01-04 15:50:01 +0000455static void flush_windows(CPUSPARCState *env)
456{
457 int offset, cwp1;
458#if defined(DEBUG_WIN)
459 printf("flush_windows:\n");
460#endif
461 offset = 2;
462 for(;;) {
463 /* if restore would invoke restore_window(), then we can stop */
464 cwp1 = (env->cwp + 1) & (NWINDOWS - 1);
465 if (env->wim & (1 << cwp1))
466 break;
467#if defined(DEBUG_WIN)
468 printf("offset=%d: ", offset);
469#endif
470 save_window_offset(env, offset);
471 offset++;
472 }
473}
bellard80a9d032005-01-03 23:31:27 +0000474#endif
bellard060366c2004-01-04 15:50:01 +0000475
bellard93ac68b2003-09-30 20:57:29 +0000476void cpu_loop (CPUSPARCState *env)
477{
bellard060366c2004-01-04 15:50:01 +0000478 int trapnr, ret;
479
480 while (1) {
481 trapnr = cpu_sparc_exec (env);
482
483 switch (trapnr) {
484 case 0x88:
485 case 0x90:
486 ret = do_syscall (env, env->gregs[1],
487 env->regwptr[0], env->regwptr[1],
488 env->regwptr[2], env->regwptr[3],
489 env->regwptr[4], env->regwptr[5]);
490 if ((unsigned int)ret >= (unsigned int)(-515)) {
491 env->psr |= PSR_CARRY;
492 ret = -ret;
493 } else {
494 env->psr &= ~PSR_CARRY;
495 }
496 env->regwptr[0] = ret;
497 /* next instruction */
498 env->pc = env->npc;
499 env->npc = env->npc + 4;
500 break;
501 case 0x83: /* flush windows */
502 // flush_windows(env);
503 /* next instruction */
504 env->pc = env->npc;
505 env->npc = env->npc + 4;
506 break;
507 case TT_WIN_OVF: /* window overflow */
508 save_window(env);
509 break;
510 case TT_WIN_UNF: /* window underflow */
511 restore_window(env);
512 break;
bellarde80cfcf2004-12-19 23:18:01 +0000513 case 0x100: // XXX, why do we get these?
514 break;
bellard060366c2004-01-04 15:50:01 +0000515 default:
516 printf ("Unhandled trap: 0x%x\n", trapnr);
bellard7fe48482004-10-09 18:08:01 +0000517 cpu_dump_state(env, stderr, fprintf, 0);
bellard060366c2004-01-04 15:50:01 +0000518 exit (1);
519 }
520 process_pending_signals (env);
521 }
bellard93ac68b2003-09-30 20:57:29 +0000522}
523
524#endif
525
bellard67867302003-11-23 17:05:30 +0000526#ifdef TARGET_PPC
bellard9fddaa02004-05-21 12:59:32 +0000527
528static inline uint64_t cpu_ppc_get_tb (CPUState *env)
529{
530 /* TO FIX */
531 return 0;
532}
533
534uint32_t cpu_ppc_load_tbl (CPUState *env)
535{
536 return cpu_ppc_get_tb(env) & 0xFFFFFFFF;
537}
538
539uint32_t cpu_ppc_load_tbu (CPUState *env)
540{
541 return cpu_ppc_get_tb(env) >> 32;
542}
543
544static void cpu_ppc_store_tb (CPUState *env, uint64_t value)
545{
546 /* TO FIX */
547}
548
549void cpu_ppc_store_tbu (CPUState *env, uint32_t value)
550{
551 cpu_ppc_store_tb(env, ((uint64_t)value << 32) | cpu_ppc_load_tbl(env));
552}
553
554void cpu_ppc_store_tbl (CPUState *env, uint32_t value)
555{
556 cpu_ppc_store_tb(env, ((uint64_t)cpu_ppc_load_tbl(env) << 32) | value);
557}
558
559uint32_t cpu_ppc_load_decr (CPUState *env)
560{
561 /* TO FIX */
562 return -1;
563}
564
565void cpu_ppc_store_decr (CPUState *env, uint32_t value)
566{
567 /* TO FIX */
568}
569
bellard67867302003-11-23 17:05:30 +0000570void cpu_loop(CPUPPCState *env)
571{
bellard67867302003-11-23 17:05:30 +0000572 target_siginfo_t info;
bellard61190b12004-01-04 23:54:31 +0000573 int trapnr;
574 uint32_t ret;
bellard67867302003-11-23 17:05:30 +0000575
576 for(;;) {
577 trapnr = cpu_ppc_exec(env);
bellard61190b12004-01-04 23:54:31 +0000578 if (trapnr != EXCP_SYSCALL_USER && trapnr != EXCP_BRANCH &&
579 trapnr != EXCP_TRACE) {
580 if (loglevel > 0) {
bellard7fe48482004-10-09 18:08:01 +0000581 cpu_dump_state(env, logfile, fprintf, 0);
bellard61190b12004-01-04 23:54:31 +0000582 }
583 }
bellard67867302003-11-23 17:05:30 +0000584 switch(trapnr) {
585 case EXCP_NONE:
bellard67867302003-11-23 17:05:30 +0000586 break;
bellard61190b12004-01-04 23:54:31 +0000587 case EXCP_SYSCALL_USER:
bellard67867302003-11-23 17:05:30 +0000588 /* system call */
589 /* WARNING:
590 * PPC ABI uses overflow flag in cr0 to signal an error
591 * in syscalls.
592 */
bellard61190b12004-01-04 23:54:31 +0000593#if 0
594 printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env->gpr[0],
595 env->gpr[3], env->gpr[4], env->gpr[5], env->gpr[6]);
596#endif
bellard67867302003-11-23 17:05:30 +0000597 env->crf[0] &= ~0x1;
598 ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4],
599 env->gpr[5], env->gpr[6], env->gpr[7],
600 env->gpr[8]);
601 if (ret > (uint32_t)(-515)) {
602 env->crf[0] |= 0x1;
603 ret = -ret;
604 }
605 env->gpr[3] = ret;
bellard61190b12004-01-04 23:54:31 +0000606#if 0
607 printf("syscall returned 0x%08x (%d)\n", ret, ret);
608#endif
bellard67867302003-11-23 17:05:30 +0000609 break;
bellard61190b12004-01-04 23:54:31 +0000610 case EXCP_RESET:
611 /* Should not happen ! */
612 fprintf(stderr, "RESET asked... Stop emulation\n");
613 if (loglevel)
614 fprintf(logfile, "RESET asked... Stop emulation\n");
615 abort();
616 case EXCP_MACHINE_CHECK:
617 fprintf(stderr, "Machine check exeption... Stop emulation\n");
618 if (loglevel)
619 fprintf(logfile, "RESET asked... Stop emulation\n");
620 info.si_signo = TARGET_SIGBUS;
621 info.si_errno = 0;
622 info.si_code = TARGET_BUS_OBJERR;
623 info._sifields._sigfault._addr = env->nip - 4;
624 queue_signal(info.si_signo, &info);
625 case EXCP_DSI:
626 fprintf(stderr, "Invalid data memory access: 0x%08x\n", env->spr[DAR]);
627 if (loglevel) {
628 fprintf(logfile, "Invalid data memory access: 0x%08x\n",
629 env->spr[DAR]);
630 }
631 switch (env->error_code & 0xF) {
632 case EXCP_DSI_TRANSLATE:
633 info.si_signo = TARGET_SIGSEGV;
634 info.si_errno = 0;
635 info.si_code = TARGET_SEGV_MAPERR;
636 break;
637 case EXCP_DSI_NOTSUP:
638 case EXCP_DSI_EXTERNAL:
639 info.si_signo = TARGET_SIGILL;
640 info.si_errno = 0;
641 info.si_code = TARGET_ILL_ILLADR;
642 break;
643 case EXCP_DSI_PROT:
644 info.si_signo = TARGET_SIGSEGV;
645 info.si_errno = 0;
646 info.si_code = TARGET_SEGV_ACCERR;
647 break;
648 case EXCP_DSI_DABR:
649 info.si_signo = TARGET_SIGTRAP;
650 info.si_errno = 0;
651 info.si_code = TARGET_TRAP_BRKPT;
652 break;
653 default:
654 /* Let's send a regular segfault... */
655 fprintf(stderr, "Invalid segfault errno (%02x)\n",
656 env->error_code);
657 if (loglevel) {
658 fprintf(logfile, "Invalid segfault errno (%02x)\n",
659 env->error_code);
660 }
661 info.si_signo = TARGET_SIGSEGV;
662 info.si_errno = 0;
663 info.si_code = TARGET_SEGV_MAPERR;
664 break;
665 }
666 info._sifields._sigfault._addr = env->nip;
667 queue_signal(info.si_signo, &info);
668 break;
669 case EXCP_ISI:
670 fprintf(stderr, "Invalid instruction fetch\n");
671 if (loglevel)
672 fprintf(logfile, "Invalid instruction fetch\n");
673 switch (env->error_code) {
674 case EXCP_ISI_TRANSLATE:
675 info.si_signo = TARGET_SIGSEGV;
676 info.si_errno = 0;
677 info.si_code = TARGET_SEGV_MAPERR;
678 break;
679 case EXCP_ISI_GUARD:
680 info.si_signo = TARGET_SIGILL;
681 info.si_errno = 0;
682 info.si_code = TARGET_ILL_ILLADR;
683 break;
684 case EXCP_ISI_NOEXEC:
685 case EXCP_ISI_PROT:
686 info.si_signo = TARGET_SIGSEGV;
687 info.si_errno = 0;
688 info.si_code = TARGET_SEGV_ACCERR;
689 break;
690 default:
691 /* Let's send a regular segfault... */
692 fprintf(stderr, "Invalid segfault errno (%02x)\n",
693 env->error_code);
694 if (loglevel) {
695 fprintf(logfile, "Invalid segfault errno (%02x)\n",
696 env->error_code);
697 }
698 info.si_signo = TARGET_SIGSEGV;
699 info.si_errno = 0;
700 info.si_code = TARGET_SEGV_MAPERR;
701 break;
702 }
703 info._sifields._sigfault._addr = env->nip - 4;
704 queue_signal(info.si_signo, &info);
705 break;
706 case EXCP_EXTERNAL:
707 /* Should not happen ! */
708 fprintf(stderr, "External interruption... Stop emulation\n");
709 if (loglevel)
710 fprintf(logfile, "External interruption... Stop emulation\n");
711 abort();
712 case EXCP_ALIGN:
713 fprintf(stderr, "Invalid unaligned memory access\n");
714 if (loglevel)
715 fprintf(logfile, "Invalid unaligned memory access\n");
716 info.si_signo = TARGET_SIGBUS;
717 info.si_errno = 0;
718 info.si_code = TARGET_BUS_ADRALN;
719 info._sifields._sigfault._addr = env->nip - 4;
720 queue_signal(info.si_signo, &info);
721 break;
722 case EXCP_PROGRAM:
723 switch (env->error_code & ~0xF) {
724 case EXCP_FP:
725 fprintf(stderr, "Program exception\n");
726 if (loglevel)
727 fprintf(logfile, "Program exception\n");
728 /* Set FX */
729 env->fpscr[7] |= 0x8;
730 /* Finally, update FEX */
731 if ((((env->fpscr[7] & 0x3) << 3) | (env->fpscr[6] >> 1)) &
732 ((env->fpscr[1] << 1) | (env->fpscr[0] >> 3)))
733 env->fpscr[7] |= 0x4;
734 info.si_signo = TARGET_SIGFPE;
735 info.si_errno = 0;
736 switch (env->error_code & 0xF) {
737 case EXCP_FP_OX:
738 info.si_code = TARGET_FPE_FLTOVF;
739 break;
740 case EXCP_FP_UX:
741 info.si_code = TARGET_FPE_FLTUND;
742 break;
743 case EXCP_FP_ZX:
744 case EXCP_FP_VXZDZ:
745 info.si_code = TARGET_FPE_FLTDIV;
746 break;
747 case EXCP_FP_XX:
748 info.si_code = TARGET_FPE_FLTRES;
749 break;
750 case EXCP_FP_VXSOFT:
751 info.si_code = TARGET_FPE_FLTINV;
752 break;
753 case EXCP_FP_VXNAN:
754 case EXCP_FP_VXISI:
755 case EXCP_FP_VXIDI:
756 case EXCP_FP_VXIMZ:
757 case EXCP_FP_VXVC:
758 case EXCP_FP_VXSQRT:
759 case EXCP_FP_VXCVI:
760 info.si_code = TARGET_FPE_FLTSUB;
761 break;
762 default:
763 fprintf(stderr, "Unknown floating point exception "
764 "(%02x)\n", env->error_code);
765 if (loglevel) {
766 fprintf(logfile, "Unknown floating point exception "
767 "(%02x)\n", env->error_code & 0xF);
768 }
769 }
770 break;
771 case EXCP_INVAL:
772 fprintf(stderr, "Invalid instruction\n");
773 if (loglevel)
774 fprintf(logfile, "Invalid instruction\n");
775 info.si_signo = TARGET_SIGILL;
776 info.si_errno = 0;
777 switch (env->error_code & 0xF) {
778 case EXCP_INVAL_INVAL:
779 info.si_code = TARGET_ILL_ILLOPC;
780 break;
781 case EXCP_INVAL_LSWX:
782 info.si_code = TARGET_ILL_ILLOPN;
783 break;
784 case EXCP_INVAL_SPR:
785 info.si_code = TARGET_ILL_PRVREG;
786 break;
787 case EXCP_INVAL_FP:
788 info.si_code = TARGET_ILL_COPROC;
789 break;
790 default:
791 fprintf(stderr, "Unknown invalid operation (%02x)\n",
792 env->error_code & 0xF);
793 if (loglevel) {
794 fprintf(logfile, "Unknown invalid operation (%02x)\n",
795 env->error_code & 0xF);
796 }
797 info.si_code = TARGET_ILL_ILLADR;
798 break;
799 }
800 break;
801 case EXCP_PRIV:
802 fprintf(stderr, "Privilege violation\n");
803 if (loglevel)
804 fprintf(logfile, "Privilege violation\n");
805 info.si_signo = TARGET_SIGILL;
806 info.si_errno = 0;
807 switch (env->error_code & 0xF) {
808 case EXCP_PRIV_OPC:
809 info.si_code = TARGET_ILL_PRVOPC;
810 break;
811 case EXCP_PRIV_REG:
812 info.si_code = TARGET_ILL_PRVREG;
813 break;
814 default:
815 fprintf(stderr, "Unknown privilege violation (%02x)\n",
816 env->error_code & 0xF);
817 info.si_code = TARGET_ILL_PRVOPC;
818 break;
819 }
820 break;
821 case EXCP_TRAP:
822 fprintf(stderr, "Tried to call a TRAP\n");
823 if (loglevel)
824 fprintf(logfile, "Tried to call a TRAP\n");
825 abort();
826 default:
827 /* Should not happen ! */
828 fprintf(stderr, "Unknown program exception (%02x)\n",
829 env->error_code);
830 if (loglevel) {
831 fprintf(logfile, "Unknwon program exception (%02x)\n",
832 env->error_code);
833 }
834 abort();
835 }
836 info._sifields._sigfault._addr = env->nip - 4;
837 queue_signal(info.si_signo, &info);
838 break;
839 case EXCP_NO_FP:
840 fprintf(stderr, "No floating point allowed\n");
841 if (loglevel)
842 fprintf(logfile, "No floating point allowed\n");
843 info.si_signo = TARGET_SIGILL;
844 info.si_errno = 0;
845 info.si_code = TARGET_ILL_COPROC;
846 info._sifields._sigfault._addr = env->nip - 4;
847 queue_signal(info.si_signo, &info);
848 break;
849 case EXCP_DECR:
850 /* Should not happen ! */
851 fprintf(stderr, "Decrementer exception\n");
852 if (loglevel)
853 fprintf(logfile, "Decrementer exception\n");
854 abort();
855 case EXCP_RESA: /* Implementation specific */
856 /* Should not happen ! */
857 fprintf(stderr, "RESA exception should never happen !\n");
858 if (loglevel)
859 fprintf(logfile, "RESA exception should never happen !\n");
860 abort();
861 case EXCP_RESB: /* Implementation specific */
862 /* Should not happen ! */
863 fprintf(stderr, "RESB exception should never happen !\n");
864 if (loglevel)
865 fprintf(logfile, "RESB exception should never happen !\n");
866 abort();
867 case EXCP_TRACE:
868 /* Do nothing: we use this to trace execution */
869 break;
870 case EXCP_FP_ASSIST:
871 /* Should not happen ! */
872 fprintf(stderr, "Floating point assist exception\n");
873 if (loglevel)
874 fprintf(logfile, "Floating point assist exception\n");
875 abort();
876 case EXCP_MTMSR:
877 /* We reloaded the msr, just go on */
bellard9fddaa02004-05-21 12:59:32 +0000878 if (msr_pr == 0) {
bellard61190b12004-01-04 23:54:31 +0000879 fprintf(stderr, "Tried to go into supervisor mode !\n");
880 if (loglevel)
881 fprintf(logfile, "Tried to go into supervisor mode !\n");
882 abort();
bellard67867302003-11-23 17:05:30 +0000883 }
bellard61190b12004-01-04 23:54:31 +0000884 break;
885 case EXCP_BRANCH:
886 /* We stopped because of a jump... */
887 break;
888 case EXCP_RFI:
889 /* Should not occur: we always are in user mode */
890 fprintf(stderr, "Return from interrupt ?\n");
891 if (loglevel)
892 fprintf(logfile, "Return from interrupt ?\n");
893 abort();
894 case EXCP_INTERRUPT:
895 /* Don't know why this should ever happen... */
896 break;
bellarda541f292004-04-12 20:39:29 +0000897 case EXCP_DEBUG:
898 break;
bellard67867302003-11-23 17:05:30 +0000899 default:
bellard67867302003-11-23 17:05:30 +0000900 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
901 trapnr);
bellard61190b12004-01-04 23:54:31 +0000902 if (loglevel) {
903 fprintf(logfile, "qemu: unhandled CPU exception 0x%02x - "
904 "0x%02x - aborting\n", trapnr, env->error_code);
905 }
bellard67867302003-11-23 17:05:30 +0000906 abort();
907 }
908 process_pending_signals(env);
909 }
910}
911#endif
912
bellard31e31b82003-02-18 22:55:36 +0000913void usage(void)
914{
bellard4606bb32004-04-26 20:58:11 +0000915 printf("qemu-" TARGET_ARCH " version " QEMU_VERSION ", Copyright (c) 2003-2004 Fabrice Bellard\n"
bellard6f1f31c2004-04-25 18:00:45 +0000916 "usage: qemu-" TARGET_ARCH " [-h] [-d opts] [-L path] [-s size] program [arguments...]\n"
bellardb346ff42003-06-15 20:05:50 +0000917 "Linux CPU emulator (compiled for %s emulation)\n"
bellardd691f662003-03-24 21:58:34 +0000918 "\n"
bellard54936002003-05-13 00:25:15 +0000919 "-h print this help\n"
bellardb346ff42003-06-15 20:05:50 +0000920 "-L path set the elf interpreter prefix (default=%s)\n"
921 "-s size set the stack size in bytes (default=%ld)\n"
bellard54936002003-05-13 00:25:15 +0000922 "\n"
923 "debug options:\n"
bellardc6981052004-02-16 21:49:03 +0000924#ifdef USE_CODE_COPY
925 "-no-code-copy disable code copy acceleration\n"
926#endif
bellard6f1f31c2004-04-25 18:00:45 +0000927 "-d options activate log (logfile=%s)\n"
bellard54936002003-05-13 00:25:15 +0000928 "-p pagesize set the host page size to 'pagesize'\n",
bellardb346ff42003-06-15 20:05:50 +0000929 TARGET_ARCH,
bellardd691f662003-03-24 21:58:34 +0000930 interp_prefix,
bellard54936002003-05-13 00:25:15 +0000931 x86_stack_size,
932 DEBUG_LOGFILE);
bellard74cd30b2003-04-11 00:13:41 +0000933 _exit(1);
bellard31e31b82003-02-18 22:55:36 +0000934}
935
bellard9de5e442003-03-23 16:49:39 +0000936/* XXX: currently only used for async signals (see signal.c) */
bellardb346ff42003-06-15 20:05:50 +0000937CPUState *global_env;
bellard59faf6d2003-06-25 16:18:50 +0000938/* used only if single thread */
939CPUState *cpu_single_env = NULL;
940
bellard851e67a2003-03-29 16:53:14 +0000941/* used to free thread contexts */
942TaskState *first_task_state;
bellard9de5e442003-03-23 16:49:39 +0000943
bellard31e31b82003-02-18 22:55:36 +0000944int main(int argc, char **argv)
945{
946 const char *filename;
bellard01ffc752003-02-18 23:00:51 +0000947 struct target_pt_regs regs1, *regs = &regs1;
bellard31e31b82003-02-18 22:55:36 +0000948 struct image_info info1, *info = &info1;
bellard851e67a2003-03-29 16:53:14 +0000949 TaskState ts1, *ts = &ts1;
bellardb346ff42003-06-15 20:05:50 +0000950 CPUState *env;
bellard586314f2003-03-03 15:02:29 +0000951 int optind;
bellardd691f662003-03-24 21:58:34 +0000952 const char *r;
953
bellard31e31b82003-02-18 22:55:36 +0000954 if (argc <= 1)
955 usage();
bellardf801f972003-04-07 21:31:06 +0000956
bellardcc38b842003-10-27 21:16:14 +0000957 /* init debug */
958 cpu_set_log_filename(DEBUG_LOGFILE);
959
bellard586314f2003-03-03 15:02:29 +0000960 optind = 1;
bellardd691f662003-03-24 21:58:34 +0000961 for(;;) {
962 if (optind >= argc)
963 break;
964 r = argv[optind];
965 if (r[0] != '-')
966 break;
bellard586314f2003-03-03 15:02:29 +0000967 optind++;
bellardd691f662003-03-24 21:58:34 +0000968 r++;
969 if (!strcmp(r, "-")) {
970 break;
971 } else if (!strcmp(r, "d")) {
bellarde19e89a2004-03-21 17:08:23 +0000972 int mask;
973 CPULogItem *item;
bellard6f1f31c2004-04-25 18:00:45 +0000974
975 if (optind >= argc)
976 break;
bellarde19e89a2004-03-21 17:08:23 +0000977
bellard6f1f31c2004-04-25 18:00:45 +0000978 r = argv[optind++];
979 mask = cpu_str_to_log_mask(r);
bellarde19e89a2004-03-21 17:08:23 +0000980 if (!mask) {
981 printf("Log items (comma separated):\n");
982 for(item = cpu_log_items; item->mask != 0; item++) {
983 printf("%-10s %s\n", item->name, item->help);
984 }
985 exit(1);
986 }
987 cpu_set_log(mask);
bellardd691f662003-03-24 21:58:34 +0000988 } else if (!strcmp(r, "s")) {
989 r = argv[optind++];
990 x86_stack_size = strtol(r, (char **)&r, 0);
991 if (x86_stack_size <= 0)
992 usage();
993 if (*r == 'M')
994 x86_stack_size *= 1024 * 1024;
995 else if (*r == 'k' || *r == 'K')
996 x86_stack_size *= 1024;
997 } else if (!strcmp(r, "L")) {
998 interp_prefix = argv[optind++];
bellard54936002003-05-13 00:25:15 +0000999 } else if (!strcmp(r, "p")) {
bellard83fb7ad2004-07-05 21:25:26 +00001000 qemu_host_page_size = atoi(argv[optind++]);
1001 if (qemu_host_page_size == 0 ||
1002 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
bellard54936002003-05-13 00:25:15 +00001003 fprintf(stderr, "page size must be a power of two\n");
1004 exit(1);
1005 }
bellardc6981052004-02-16 21:49:03 +00001006 } else
1007#ifdef USE_CODE_COPY
1008 if (!strcmp(r, "no-code-copy")) {
1009 code_copy_enabled = 0;
1010 } else
1011#endif
1012 {
bellardd691f662003-03-24 21:58:34 +00001013 usage();
1014 }
bellard586314f2003-03-03 15:02:29 +00001015 }
bellardd691f662003-03-24 21:58:34 +00001016 if (optind >= argc)
1017 usage();
bellard586314f2003-03-03 15:02:29 +00001018 filename = argv[optind];
1019
bellard31e31b82003-02-18 22:55:36 +00001020 /* Zero out regs */
bellard01ffc752003-02-18 23:00:51 +00001021 memset(regs, 0, sizeof(struct target_pt_regs));
bellard31e31b82003-02-18 22:55:36 +00001022
1023 /* Zero out image_info */
1024 memset(info, 0, sizeof(struct image_info));
1025
bellard74cd30b2003-04-11 00:13:41 +00001026 /* Scan interp_prefix dir for replacement files. */
1027 init_paths(interp_prefix);
1028
bellard83fb7ad2004-07-05 21:25:26 +00001029 /* NOTE: we need to init the CPU at this stage to get
1030 qemu_host_page_size */
bellardb346ff42003-06-15 20:05:50 +00001031 env = cpu_init();
bellard92ccca62003-06-24 13:30:31 +00001032
bellard74cd30b2003-04-11 00:13:41 +00001033 if (elf_exec(filename, argv+optind, environ, regs, info) != 0) {
bellard31e31b82003-02-18 22:55:36 +00001034 printf("Error loading %s\n", filename);
bellard74cd30b2003-04-11 00:13:41 +00001035 _exit(1);
bellard31e31b82003-02-18 22:55:36 +00001036 }
1037
bellard4b74fe12003-03-03 23:23:09 +00001038 if (loglevel) {
bellard54936002003-05-13 00:25:15 +00001039 page_dump(logfile);
1040
bellard4b74fe12003-03-03 23:23:09 +00001041 fprintf(logfile, "start_brk 0x%08lx\n" , info->start_brk);
1042 fprintf(logfile, "end_code 0x%08lx\n" , info->end_code);
1043 fprintf(logfile, "start_code 0x%08lx\n" , info->start_code);
1044 fprintf(logfile, "end_data 0x%08lx\n" , info->end_data);
1045 fprintf(logfile, "start_stack 0x%08lx\n" , info->start_stack);
1046 fprintf(logfile, "brk 0x%08lx\n" , info->brk);
bellardb346ff42003-06-15 20:05:50 +00001047 fprintf(logfile, "entry 0x%08lx\n" , info->entry);
bellard4b74fe12003-03-03 23:23:09 +00001048 }
bellard31e31b82003-02-18 22:55:36 +00001049
1050 target_set_brk((char *)info->brk);
1051 syscall_init();
bellard66fb9762003-03-23 01:06:05 +00001052 signal_init();
bellard31e31b82003-02-18 22:55:36 +00001053
bellard9de5e442003-03-23 16:49:39 +00001054 global_env = env;
bellard31e31b82003-02-18 22:55:36 +00001055
bellard851e67a2003-03-29 16:53:14 +00001056 /* build Task State */
1057 memset(ts, 0, sizeof(TaskState));
1058 env->opaque = ts;
1059 ts->used = 1;
bellard59faf6d2003-06-25 16:18:50 +00001060 env->user_mode_only = 1;
bellard851e67a2003-03-29 16:53:14 +00001061
bellardb346ff42003-06-15 20:05:50 +00001062#if defined(TARGET_I386)
bellard2e255c62003-08-21 23:25:21 +00001063 cpu_x86_set_cpl(env, 3);
1064
bellard3802ce22003-07-26 18:02:28 +00001065 env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
bellard1bde4652005-01-12 22:34:47 +00001066 env->hflags |= HF_PE_MASK;
1067 if (env->cpuid_features & CPUID_SSE) {
1068 env->cr[4] |= CR4_OSFXSR_MASK;
1069 env->hflags |= HF_OSFXSR_MASK;
1070 }
1071
bellard415e5612004-02-03 23:37:12 +00001072 /* flags setup : we activate the IRQs by default as in user mode */
1073 env->eflags |= IF_MASK;
1074
bellard6dbad632003-03-16 18:05:05 +00001075 /* linux register setup */
bellard0ecfa992003-03-03 14:32:43 +00001076 env->regs[R_EAX] = regs->eax;
1077 env->regs[R_EBX] = regs->ebx;
1078 env->regs[R_ECX] = regs->ecx;
1079 env->regs[R_EDX] = regs->edx;
1080 env->regs[R_ESI] = regs->esi;
1081 env->regs[R_EDI] = regs->edi;
1082 env->regs[R_EBP] = regs->ebp;
1083 env->regs[R_ESP] = regs->esp;
bellarddab2ed92003-03-22 15:23:14 +00001084 env->eip = regs->eip;
bellard31e31b82003-02-18 22:55:36 +00001085
bellardf4beb512003-05-27 23:28:08 +00001086 /* linux interrupt setup */
bellard80a9d032005-01-03 23:31:27 +00001087 env->idt.base = (long)idt_table;
bellardf4beb512003-05-27 23:28:08 +00001088 env->idt.limit = sizeof(idt_table) - 1;
1089 set_idt(0, 0);
1090 set_idt(1, 0);
1091 set_idt(2, 0);
1092 set_idt(3, 3);
1093 set_idt(4, 3);
1094 set_idt(5, 3);
1095 set_idt(6, 0);
1096 set_idt(7, 0);
1097 set_idt(8, 0);
1098 set_idt(9, 0);
1099 set_idt(10, 0);
1100 set_idt(11, 0);
1101 set_idt(12, 0);
1102 set_idt(13, 0);
1103 set_idt(14, 0);
1104 set_idt(15, 0);
1105 set_idt(16, 0);
1106 set_idt(17, 0);
1107 set_idt(18, 0);
1108 set_idt(19, 0);
1109 set_idt(0x80, 3);
1110
bellard6dbad632003-03-16 18:05:05 +00001111 /* linux segment setup */
bellard80a9d032005-01-03 23:31:27 +00001112 env->gdt.base = (long)gdt_table;
bellard6dbad632003-03-16 18:05:05 +00001113 env->gdt.limit = sizeof(gdt_table) - 1;
bellardf4beb512003-05-27 23:28:08 +00001114 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
1115 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
1116 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
1117 write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
1118 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
1119 (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
bellard6dbad632003-03-16 18:05:05 +00001120 cpu_x86_load_seg(env, R_CS, __USER_CS);
1121 cpu_x86_load_seg(env, R_DS, __USER_DS);
1122 cpu_x86_load_seg(env, R_ES, __USER_DS);
1123 cpu_x86_load_seg(env, R_SS, __USER_DS);
1124 cpu_x86_load_seg(env, R_FS, __USER_DS);
1125 cpu_x86_load_seg(env, R_GS, __USER_DS);
bellard92ccca62003-06-24 13:30:31 +00001126
bellardb346ff42003-06-15 20:05:50 +00001127#elif defined(TARGET_ARM)
1128 {
1129 int i;
1130 for(i = 0; i < 16; i++) {
1131 env->regs[i] = regs->uregs[i];
1132 }
1133 env->cpsr = regs->uregs[16];
1134 }
bellard93ac68b2003-09-30 20:57:29 +00001135#elif defined(TARGET_SPARC)
bellard060366c2004-01-04 15:50:01 +00001136 {
1137 int i;
1138 env->pc = regs->pc;
1139 env->npc = regs->npc;
1140 env->y = regs->y;
1141 for(i = 0; i < 8; i++)
1142 env->gregs[i] = regs->u_regs[i];
1143 for(i = 0; i < 8; i++)
1144 env->regwptr[i] = regs->u_regs[i + 8];
1145 }
bellard67867302003-11-23 17:05:30 +00001146#elif defined(TARGET_PPC)
1147 {
1148 int i;
bellard61190b12004-01-04 23:54:31 +00001149 for (i = 0; i < 32; i++) {
1150 if (i != 12 && i != 6)
1151 env->msr[i] = (regs->msr >> i) & 1;
1152 }
bellard67867302003-11-23 17:05:30 +00001153 env->nip = regs->nip;
1154 for(i = 0; i < 32; i++) {
1155 env->gpr[i] = regs->gpr[i];
1156 }
1157 }
bellardb346ff42003-06-15 20:05:50 +00001158#else
1159#error unsupported target CPU
1160#endif
bellard31e31b82003-02-18 22:55:36 +00001161
bellard1b6b0292003-03-22 17:31:38 +00001162 cpu_loop(env);
1163 /* never exits */
bellard31e31b82003-02-18 22:55:36 +00001164 return 0;
1165}