blob: bcc36f256be9c4375224301754ffe221bbb735ee [file] [log] [blame]
bellard31e31b82003-02-18 22:55:36 +00001/*
bellard93ac68b2003-09-30 20:57:29 +00002 * qemu user main
ths5fafdf22007-09-16 21:08:06 +00003 *
bellard68d0f702008-01-06 17:21:48 +00004 * Copyright (c) 2003-2008 Fabrice Bellard
bellard31e31b82003-02-18 22:55:36 +00005 *
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
Blue Swirl8167ee82009-07-16 20:47:01 +000017 * along with this program; if not, see <http://www.gnu.org/licenses/>.
bellard31e31b82003-02-18 22:55:36 +000018 */
19#include <stdlib.h>
20#include <stdio.h>
21#include <stdarg.h>
bellard04369ff2003-03-20 22:33:23 +000022#include <string.h>
bellard31e31b82003-02-18 22:55:36 +000023#include <errno.h>
bellard0ecfa992003-03-03 14:32:43 +000024#include <unistd.h>
balroge4415702008-11-10 02:55:33 +000025#include <sys/mman.h>
Mika Westerbergedf8e2a2009-04-07 09:57:11 +030026#include <sys/syscall.h>
bellard31e31b82003-02-18 22:55:36 +000027
bellard3ef693a2003-03-23 20:17:16 +000028#include "qemu.h"
aurel32ca10f862008-04-11 21:35:42 +000029#include "qemu-common.h"
malc902b3d52008-12-10 19:18:40 +000030#include "cache-utils.h"
pbrookd5975362008-06-07 20:50:51 +000031/* For tb_lock */
32#include "exec-all.h"
bellard31e31b82003-02-18 22:55:36 +000033
aurel3204a6dfe2009-01-30 19:59:17 +000034
35#include "envlist.h"
36
bellard3ef693a2003-03-23 20:17:16 +000037#define DEBUG_LOGFILE "/tmp/qemu.log"
bellard586314f2003-03-03 15:02:29 +000038
aurel32d088d662009-01-30 20:09:01 +000039char *exec_path;
40
aurel321b530a62009-04-05 20:08:59 +000041int singlestep;
Paul Brook379f6692009-07-17 12:48:08 +010042#if defined(CONFIG_USE_GUEST_BASE)
43unsigned long mmap_min_addr;
44unsigned long guest_base;
45int have_guest_base;
46#endif
aurel321b530a62009-04-05 20:08:59 +000047
bellard74cd30b2003-04-11 00:13:41 +000048static const char *interp_prefix = CONFIG_QEMU_PREFIX;
pbrookc5937222006-05-14 11:30:38 +000049const char *qemu_uname_release = CONFIG_UNAME_RELEASE;
bellard586314f2003-03-03 15:02:29 +000050
bellard9de5e442003-03-23 16:49:39 +000051/* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
52 we allocate a bigger stack. Need a better solution, for example
53 by remapping the process stack directly at the right place */
54unsigned long x86_stack_size = 512 * 1024;
bellard31e31b82003-02-18 22:55:36 +000055
56void gemu_log(const char *fmt, ...)
57{
58 va_list ap;
59
60 va_start(ap, fmt);
61 vfprintf(stderr, fmt, ap);
62 va_end(ap);
63}
64
blueswir18fcd3692008-08-17 20:26:25 +000065#if defined(TARGET_I386)
bellarda541f292004-04-12 20:39:29 +000066int cpu_get_pic_interrupt(CPUState *env)
bellard92ccca62003-06-24 13:30:31 +000067{
68 return -1;
69}
blueswir18fcd3692008-08-17 20:26:25 +000070#endif
bellard92ccca62003-06-24 13:30:31 +000071
bellard28ab0e22004-05-20 14:02:14 +000072/* timers for rdtsc */
73
bellard1dce7c32006-07-13 23:20:22 +000074#if 0
bellard28ab0e22004-05-20 14:02:14 +000075
76static uint64_t emu_time;
77
78int64_t cpu_get_real_ticks(void)
79{
80 return emu_time++;
81}
82
83#endif
84
Juan Quintela2f7bb872009-07-27 16:13:24 +020085#if defined(CONFIG_USE_NPTL)
pbrookd5975362008-06-07 20:50:51 +000086/***********************************************************/
87/* Helper routines for implementing atomic operations. */
88
89/* To implement exclusive operations we force all cpus to syncronise.
90 We don't require a full sync, only that no cpus are executing guest code.
91 The alternative is to map target atomic ops onto host equivalents,
92 which requires quite a lot of per host/target work. */
pbrookc2764712009-03-07 15:24:59 +000093static pthread_mutex_t cpu_list_mutex = PTHREAD_MUTEX_INITIALIZER;
pbrookd5975362008-06-07 20:50:51 +000094static pthread_mutex_t exclusive_lock = PTHREAD_MUTEX_INITIALIZER;
95static pthread_cond_t exclusive_cond = PTHREAD_COND_INITIALIZER;
96static pthread_cond_t exclusive_resume = PTHREAD_COND_INITIALIZER;
97static int pending_cpus;
98
99/* Make sure everything is in a consistent state for calling fork(). */
100void fork_start(void)
101{
102 mmap_fork_start();
103 pthread_mutex_lock(&tb_lock);
104 pthread_mutex_lock(&exclusive_lock);
105}
106
107void fork_end(int child)
108{
109 if (child) {
110 /* Child processes created by fork() only have a single thread.
111 Discard information about the parent threads. */
112 first_cpu = thread_env;
113 thread_env->next_cpu = NULL;
114 pending_cpus = 0;
115 pthread_mutex_init(&exclusive_lock, NULL);
pbrookc2764712009-03-07 15:24:59 +0000116 pthread_mutex_init(&cpu_list_mutex, NULL);
pbrookd5975362008-06-07 20:50:51 +0000117 pthread_cond_init(&exclusive_cond, NULL);
118 pthread_cond_init(&exclusive_resume, NULL);
119 pthread_mutex_init(&tb_lock, NULL);
aurel322b1319c2008-12-18 22:44:04 +0000120 gdbserver_fork(thread_env);
pbrookd5975362008-06-07 20:50:51 +0000121 } else {
122 pthread_mutex_unlock(&exclusive_lock);
123 pthread_mutex_unlock(&tb_lock);
124 }
125 mmap_fork_end(child);
126}
127
128/* Wait for pending exclusive operations to complete. The exclusive lock
129 must be held. */
130static inline void exclusive_idle(void)
131{
132 while (pending_cpus) {
133 pthread_cond_wait(&exclusive_resume, &exclusive_lock);
134 }
135}
136
137/* Start an exclusive operation.
138 Must only be called from outside cpu_arm_exec. */
139static inline void start_exclusive(void)
140{
141 CPUState *other;
142 pthread_mutex_lock(&exclusive_lock);
143 exclusive_idle();
144
145 pending_cpus = 1;
146 /* Make all other cpus stop executing. */
147 for (other = first_cpu; other; other = other->next_cpu) {
148 if (other->running) {
149 pending_cpus++;
aurel323098dba2009-03-07 21:28:24 +0000150 cpu_exit(other);
pbrookd5975362008-06-07 20:50:51 +0000151 }
152 }
153 if (pending_cpus > 1) {
154 pthread_cond_wait(&exclusive_cond, &exclusive_lock);
155 }
156}
157
158/* Finish an exclusive operation. */
159static inline void end_exclusive(void)
160{
161 pending_cpus = 0;
162 pthread_cond_broadcast(&exclusive_resume);
163 pthread_mutex_unlock(&exclusive_lock);
164}
165
166/* Wait for exclusive ops to finish, and begin cpu execution. */
167static inline void cpu_exec_start(CPUState *env)
168{
169 pthread_mutex_lock(&exclusive_lock);
170 exclusive_idle();
171 env->running = 1;
172 pthread_mutex_unlock(&exclusive_lock);
173}
174
175/* Mark cpu as not executing, and release pending exclusive ops. */
176static inline void cpu_exec_end(CPUState *env)
177{
178 pthread_mutex_lock(&exclusive_lock);
179 env->running = 0;
180 if (pending_cpus > 1) {
181 pending_cpus--;
182 if (pending_cpus == 1) {
183 pthread_cond_signal(&exclusive_cond);
184 }
185 }
186 exclusive_idle();
187 pthread_mutex_unlock(&exclusive_lock);
188}
pbrookc2764712009-03-07 15:24:59 +0000189
190void cpu_list_lock(void)
191{
192 pthread_mutex_lock(&cpu_list_mutex);
193}
194
195void cpu_list_unlock(void)
196{
197 pthread_mutex_unlock(&cpu_list_mutex);
198}
Juan Quintela2f7bb872009-07-27 16:13:24 +0200199#else /* if !CONFIG_USE_NPTL */
pbrookd5975362008-06-07 20:50:51 +0000200/* These are no-ops because we are not threadsafe. */
201static inline void cpu_exec_start(CPUState *env)
202{
203}
204
205static inline void cpu_exec_end(CPUState *env)
206{
207}
208
209static inline void start_exclusive(void)
210{
211}
212
213static inline void end_exclusive(void)
214{
215}
216
217void fork_start(void)
218{
219}
220
221void fork_end(int child)
222{
aurel322b1319c2008-12-18 22:44:04 +0000223 if (child) {
224 gdbserver_fork(thread_env);
225 }
pbrookd5975362008-06-07 20:50:51 +0000226}
pbrookc2764712009-03-07 15:24:59 +0000227
228void cpu_list_lock(void)
229{
230}
231
232void cpu_list_unlock(void)
233{
234}
pbrookd5975362008-06-07 20:50:51 +0000235#endif
236
237
bellarda541f292004-04-12 20:39:29 +0000238#ifdef TARGET_I386
239/***********************************************************/
240/* CPUX86 core interface */
241
bellard02a16022006-09-24 18:48:23 +0000242void cpu_smm_update(CPUState *env)
243{
244}
245
bellard28ab0e22004-05-20 14:02:14 +0000246uint64_t cpu_get_tsc(CPUX86State *env)
247{
248 return cpu_get_real_ticks();
249}
250
ths5fafdf22007-09-16 21:08:06 +0000251static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
bellardf4beb512003-05-27 23:28:08 +0000252 int flags)
bellard6dbad632003-03-16 18:05:05 +0000253{
bellardf4beb512003-05-27 23:28:08 +0000254 unsigned int e1, e2;
pbrook53a59602006-03-25 19:31:22 +0000255 uint32_t *p;
bellard6dbad632003-03-16 18:05:05 +0000256 e1 = (addr << 16) | (limit & 0xffff);
257 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
bellardf4beb512003-05-27 23:28:08 +0000258 e2 |= flags;
pbrook53a59602006-03-25 19:31:22 +0000259 p = ptr;
malcd538e8f2008-08-20 22:39:26 +0000260 p[0] = tswap32(e1);
261 p[1] = tswap32(e2);
bellardf4beb512003-05-27 23:28:08 +0000262}
263
balroge4415702008-11-10 02:55:33 +0000264static uint64_t *idt_table;
blueswir1eb38c522008-09-06 17:47:39 +0000265#ifdef TARGET_X86_64
bellardd2fd1af2007-11-14 18:08:56 +0000266static void set_gate64(void *ptr, unsigned int type, unsigned int dpl,
267 uint64_t addr, unsigned int sel)
268{
bellard4dbc4222007-11-15 15:27:03 +0000269 uint32_t *p, e1, e2;
bellardd2fd1af2007-11-14 18:08:56 +0000270 e1 = (addr & 0xffff) | (sel << 16);
271 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
272 p = ptr;
bellard4dbc4222007-11-15 15:27:03 +0000273 p[0] = tswap32(e1);
274 p[1] = tswap32(e2);
275 p[2] = tswap32(addr >> 32);
276 p[3] = 0;
bellardd2fd1af2007-11-14 18:08:56 +0000277}
278/* only dpl matters as we do only user space emulation */
279static void set_idt(int n, unsigned int dpl)
280{
281 set_gate64(idt_table + n * 2, 0, dpl, 0, 0);
282}
283#else
ths5fafdf22007-09-16 21:08:06 +0000284static void set_gate(void *ptr, unsigned int type, unsigned int dpl,
bellardd2fd1af2007-11-14 18:08:56 +0000285 uint32_t addr, unsigned int sel)
bellardf4beb512003-05-27 23:28:08 +0000286{
bellard4dbc4222007-11-15 15:27:03 +0000287 uint32_t *p, e1, e2;
bellardf4beb512003-05-27 23:28:08 +0000288 e1 = (addr & 0xffff) | (sel << 16);
289 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
pbrook53a59602006-03-25 19:31:22 +0000290 p = ptr;
bellard4dbc4222007-11-15 15:27:03 +0000291 p[0] = tswap32(e1);
292 p[1] = tswap32(e2);
bellard6dbad632003-03-16 18:05:05 +0000293}
294
bellardf4beb512003-05-27 23:28:08 +0000295/* only dpl matters as we do only user space emulation */
296static void set_idt(int n, unsigned int dpl)
297{
298 set_gate(idt_table + n, 0, dpl, 0, 0);
299}
bellardd2fd1af2007-11-14 18:08:56 +0000300#endif
bellard31e31b82003-02-18 22:55:36 +0000301
bellard89e957e2003-05-10 12:33:15 +0000302void cpu_loop(CPUX86State *env)
bellard1b6b0292003-03-22 17:31:38 +0000303{
bellardbc8a22c2003-03-30 21:02:40 +0000304 int trapnr;
blueswir1992f48a2007-10-14 16:27:31 +0000305 abi_ulong pc;
Anthony Liguoric227f092009-10-01 16:12:16 -0500306 target_siginfo_t info;
bellard851e67a2003-03-29 16:53:14 +0000307
bellard1b6b0292003-03-22 17:31:38 +0000308 for(;;) {
bellardbc8a22c2003-03-30 21:02:40 +0000309 trapnr = cpu_x86_exec(env);
bellardbc8a22c2003-03-30 21:02:40 +0000310 switch(trapnr) {
bellardf4beb512003-05-27 23:28:08 +0000311 case 0x80:
bellardd2fd1af2007-11-14 18:08:56 +0000312 /* linux syscall from int $0x80 */
ths5fafdf22007-09-16 21:08:06 +0000313 env->regs[R_EAX] = do_syscall(env,
314 env->regs[R_EAX],
bellardf4beb512003-05-27 23:28:08 +0000315 env->regs[R_EBX],
316 env->regs[R_ECX],
317 env->regs[R_EDX],
318 env->regs[R_ESI],
319 env->regs[R_EDI],
320 env->regs[R_EBP]);
321 break;
bellardd2fd1af2007-11-14 18:08:56 +0000322#ifndef TARGET_ABI32
323 case EXCP_SYSCALL:
324 /* linux syscall from syscall intruction */
325 env->regs[R_EAX] = do_syscall(env,
326 env->regs[R_EAX],
327 env->regs[R_EDI],
328 env->regs[R_ESI],
329 env->regs[R_EDX],
330 env->regs[10],
331 env->regs[8],
332 env->regs[9]);
333 env->eip = env->exception_next_eip;
334 break;
335#endif
bellardf4beb512003-05-27 23:28:08 +0000336 case EXCP0B_NOSEG:
337 case EXCP0C_STACK:
338 info.si_signo = SIGBUS;
339 info.si_errno = 0;
340 info.si_code = TARGET_SI_KERNEL;
341 info._sifields._sigfault._addr = 0;
pbrook624f7972008-05-31 16:11:38 +0000342 queue_signal(env, info.si_signo, &info);
bellardf4beb512003-05-27 23:28:08 +0000343 break;
bellard1b6b0292003-03-22 17:31:38 +0000344 case EXCP0D_GPF:
bellardd2fd1af2007-11-14 18:08:56 +0000345 /* XXX: potential problem if ABI32 */
j_mayer84409dd2007-04-06 08:56:50 +0000346#ifndef TARGET_X86_64
bellard851e67a2003-03-29 16:53:14 +0000347 if (env->eflags & VM_MASK) {
bellard89e957e2003-05-10 12:33:15 +0000348 handle_vm86_fault(env);
j_mayer84409dd2007-04-06 08:56:50 +0000349 } else
350#endif
351 {
bellardf4beb512003-05-27 23:28:08 +0000352 info.si_signo = SIGSEGV;
353 info.si_errno = 0;
354 info.si_code = TARGET_SI_KERNEL;
355 info._sifields._sigfault._addr = 0;
pbrook624f7972008-05-31 16:11:38 +0000356 queue_signal(env, info.si_signo, &info);
bellard1b6b0292003-03-22 17:31:38 +0000357 }
358 break;
bellardb689bc52003-05-08 15:33:33 +0000359 case EXCP0E_PAGE:
360 info.si_signo = SIGSEGV;
361 info.si_errno = 0;
362 if (!(env->error_code & 1))
363 info.si_code = TARGET_SEGV_MAPERR;
364 else
365 info.si_code = TARGET_SEGV_ACCERR;
bellard970a87a2003-06-21 13:13:25 +0000366 info._sifields._sigfault._addr = env->cr[2];
pbrook624f7972008-05-31 16:11:38 +0000367 queue_signal(env, info.si_signo, &info);
bellardb689bc52003-05-08 15:33:33 +0000368 break;
bellard9de5e442003-03-23 16:49:39 +0000369 case EXCP00_DIVZ:
j_mayer84409dd2007-04-06 08:56:50 +0000370#ifndef TARGET_X86_64
bellardbc8a22c2003-03-30 21:02:40 +0000371 if (env->eflags & VM_MASK) {
bellard447db212003-05-10 15:10:36 +0000372 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000373 } else
374#endif
375 {
bellardbc8a22c2003-03-30 21:02:40 +0000376 /* division by zero */
377 info.si_signo = SIGFPE;
378 info.si_errno = 0;
379 info.si_code = TARGET_FPE_INTDIV;
380 info._sifields._sigfault._addr = env->eip;
pbrook624f7972008-05-31 16:11:38 +0000381 queue_signal(env, info.si_signo, &info);
bellardbc8a22c2003-03-30 21:02:40 +0000382 }
bellard9de5e442003-03-23 16:49:39 +0000383 break;
aliguori01df0402008-11-18 21:08:15 +0000384 case EXCP01_DB:
bellard447db212003-05-10 15:10:36 +0000385 case EXCP03_INT3:
j_mayer84409dd2007-04-06 08:56:50 +0000386#ifndef TARGET_X86_64
bellard447db212003-05-10 15:10:36 +0000387 if (env->eflags & VM_MASK) {
388 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000389 } else
390#endif
391 {
bellard447db212003-05-10 15:10:36 +0000392 info.si_signo = SIGTRAP;
393 info.si_errno = 0;
aliguori01df0402008-11-18 21:08:15 +0000394 if (trapnr == EXCP01_DB) {
bellard447db212003-05-10 15:10:36 +0000395 info.si_code = TARGET_TRAP_BRKPT;
396 info._sifields._sigfault._addr = env->eip;
397 } else {
398 info.si_code = TARGET_SI_KERNEL;
399 info._sifields._sigfault._addr = 0;
400 }
pbrook624f7972008-05-31 16:11:38 +0000401 queue_signal(env, info.si_signo, &info);
bellard447db212003-05-10 15:10:36 +0000402 }
403 break;
bellard9de5e442003-03-23 16:49:39 +0000404 case EXCP04_INTO:
405 case EXCP05_BOUND:
j_mayer84409dd2007-04-06 08:56:50 +0000406#ifndef TARGET_X86_64
bellardbc8a22c2003-03-30 21:02:40 +0000407 if (env->eflags & VM_MASK) {
bellard447db212003-05-10 15:10:36 +0000408 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000409 } else
410#endif
411 {
bellardbc8a22c2003-03-30 21:02:40 +0000412 info.si_signo = SIGSEGV;
413 info.si_errno = 0;
bellardb689bc52003-05-08 15:33:33 +0000414 info.si_code = TARGET_SI_KERNEL;
bellardbc8a22c2003-03-30 21:02:40 +0000415 info._sifields._sigfault._addr = 0;
pbrook624f7972008-05-31 16:11:38 +0000416 queue_signal(env, info.si_signo, &info);
bellardbc8a22c2003-03-30 21:02:40 +0000417 }
bellard9de5e442003-03-23 16:49:39 +0000418 break;
419 case EXCP06_ILLOP:
420 info.si_signo = SIGILL;
421 info.si_errno = 0;
422 info.si_code = TARGET_ILL_ILLOPN;
423 info._sifields._sigfault._addr = env->eip;
pbrook624f7972008-05-31 16:11:38 +0000424 queue_signal(env, info.si_signo, &info);
bellard9de5e442003-03-23 16:49:39 +0000425 break;
426 case EXCP_INTERRUPT:
427 /* just indicate that signals should be handled asap */
428 break;
bellard1fddef42005-04-17 19:16:13 +0000429 case EXCP_DEBUG:
430 {
431 int sig;
432
433 sig = gdb_handlesig (env, TARGET_SIGTRAP);
434 if (sig)
435 {
436 info.si_signo = sig;
437 info.si_errno = 0;
438 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +0000439 queue_signal(env, info.si_signo, &info);
bellard1fddef42005-04-17 19:16:13 +0000440 }
441 }
442 break;
bellard1b6b0292003-03-22 17:31:38 +0000443 default:
bellard970a87a2003-06-21 13:13:25 +0000444 pc = env->segs[R_CS].base + env->eip;
ths5fafdf22007-09-16 21:08:06 +0000445 fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
bellardbc8a22c2003-03-30 21:02:40 +0000446 (long)pc, trapnr);
bellard1b6b0292003-03-22 17:31:38 +0000447 abort();
448 }
bellard66fb9762003-03-23 01:06:05 +0000449 process_pending_signals(env);
bellard1b6b0292003-03-22 17:31:38 +0000450 }
451}
bellardb346ff42003-06-15 20:05:50 +0000452#endif
453
454#ifdef TARGET_ARM
455
blueswir1992f48a2007-10-14 16:27:31 +0000456static void arm_cache_flush(abi_ulong start, abi_ulong last)
bellard6f1f31c2004-04-25 18:00:45 +0000457{
blueswir1992f48a2007-10-14 16:27:31 +0000458 abi_ulong addr, last1;
bellard6f1f31c2004-04-25 18:00:45 +0000459
460 if (last < start)
461 return;
462 addr = start;
463 for(;;) {
464 last1 = ((addr + TARGET_PAGE_SIZE) & TARGET_PAGE_MASK) - 1;
465 if (last1 > last)
466 last1 = last;
467 tb_invalidate_page_range(addr, last1 + 1);
468 if (last1 == last)
469 break;
470 addr = last1 + 1;
471 }
472}
473
pbrookfbb4a2e2008-05-29 00:20:44 +0000474/* Handle a jump to the kernel code page. */
475static int
476do_kernel_trap(CPUARMState *env)
477{
478 uint32_t addr;
479 uint32_t cpsr;
480 uint32_t val;
481
482 switch (env->regs[15]) {
483 case 0xffff0fa0: /* __kernel_memory_barrier */
484 /* ??? No-op. Will need to do better for SMP. */
485 break;
486 case 0xffff0fc0: /* __kernel_cmpxchg */
pbrookd5975362008-06-07 20:50:51 +0000487 /* XXX: This only works between threads, not between processes.
488 It's probably possible to implement this with native host
489 operations. However things like ldrex/strex are much harder so
490 there's not much point trying. */
491 start_exclusive();
pbrookfbb4a2e2008-05-29 00:20:44 +0000492 cpsr = cpsr_read(env);
493 addr = env->regs[2];
494 /* FIXME: This should SEGV if the access fails. */
495 if (get_user_u32(val, addr))
496 val = ~env->regs[0];
497 if (val == env->regs[0]) {
498 val = env->regs[1];
499 /* FIXME: Check for segfaults. */
500 put_user_u32(val, addr);
501 env->regs[0] = 0;
502 cpsr |= CPSR_C;
503 } else {
504 env->regs[0] = -1;
505 cpsr &= ~CPSR_C;
506 }
507 cpsr_write(env, cpsr, CPSR_C);
pbrookd5975362008-06-07 20:50:51 +0000508 end_exclusive();
pbrookfbb4a2e2008-05-29 00:20:44 +0000509 break;
510 case 0xffff0fe0: /* __kernel_get_tls */
511 env->regs[0] = env->cp15.c13_tls2;
512 break;
513 default:
514 return 1;
515 }
516 /* Jump back to the caller. */
517 addr = env->regs[14];
518 if (addr & 1) {
519 env->thumb = 1;
520 addr &= ~1;
521 }
522 env->regs[15] = addr;
523
524 return 0;
525}
526
bellardb346ff42003-06-15 20:05:50 +0000527void cpu_loop(CPUARMState *env)
528{
529 int trapnr;
530 unsigned int n, insn;
Anthony Liguoric227f092009-10-01 16:12:16 -0500531 target_siginfo_t info;
bellardb5ff1b32005-11-26 10:38:39 +0000532 uint32_t addr;
ths3b46e622007-09-17 08:09:54 +0000533
bellardb346ff42003-06-15 20:05:50 +0000534 for(;;) {
pbrookd5975362008-06-07 20:50:51 +0000535 cpu_exec_start(env);
bellardb346ff42003-06-15 20:05:50 +0000536 trapnr = cpu_arm_exec(env);
pbrookd5975362008-06-07 20:50:51 +0000537 cpu_exec_end(env);
bellardb346ff42003-06-15 20:05:50 +0000538 switch(trapnr) {
539 case EXCP_UDEF:
bellardc6981052004-02-16 21:49:03 +0000540 {
541 TaskState *ts = env->opaque;
542 uint32_t opcode;
aurel326d9a42b2008-04-07 20:30:53 +0000543 int rc;
bellardc6981052004-02-16 21:49:03 +0000544
545 /* we handle the FPU emulation here, as Linux */
546 /* we get the opcode */
bellard2f619692007-11-16 10:46:05 +0000547 /* FIXME - what to do if get_user() fails? */
548 get_user_u32(opcode, env->regs[15]);
ths3b46e622007-09-17 08:09:54 +0000549
aurel326d9a42b2008-04-07 20:30:53 +0000550 rc = EmulateAll(opcode, &ts->fpa, env);
551 if (rc == 0) { /* illegal instruction */
bellardc6981052004-02-16 21:49:03 +0000552 info.si_signo = SIGILL;
553 info.si_errno = 0;
554 info.si_code = TARGET_ILL_ILLOPN;
555 info._sifields._sigfault._addr = env->regs[15];
pbrook624f7972008-05-31 16:11:38 +0000556 queue_signal(env, info.si_signo, &info);
aurel326d9a42b2008-04-07 20:30:53 +0000557 } else if (rc < 0) { /* FP exception */
558 int arm_fpe=0;
559
560 /* translate softfloat flags to FPSR flags */
561 if (-rc & float_flag_invalid)
562 arm_fpe |= BIT_IOC;
563 if (-rc & float_flag_divbyzero)
564 arm_fpe |= BIT_DZC;
565 if (-rc & float_flag_overflow)
566 arm_fpe |= BIT_OFC;
567 if (-rc & float_flag_underflow)
568 arm_fpe |= BIT_UFC;
569 if (-rc & float_flag_inexact)
570 arm_fpe |= BIT_IXC;
571
572 FPSR fpsr = ts->fpa.fpsr;
573 //printf("fpsr 0x%x, arm_fpe 0x%x\n",fpsr,arm_fpe);
574
575 if (fpsr & (arm_fpe << 16)) { /* exception enabled? */
576 info.si_signo = SIGFPE;
577 info.si_errno = 0;
578
579 /* ordered by priority, least first */
580 if (arm_fpe & BIT_IXC) info.si_code = TARGET_FPE_FLTRES;
581 if (arm_fpe & BIT_UFC) info.si_code = TARGET_FPE_FLTUND;
582 if (arm_fpe & BIT_OFC) info.si_code = TARGET_FPE_FLTOVF;
583 if (arm_fpe & BIT_DZC) info.si_code = TARGET_FPE_FLTDIV;
584 if (arm_fpe & BIT_IOC) info.si_code = TARGET_FPE_FLTINV;
585
586 info._sifields._sigfault._addr = env->regs[15];
pbrook624f7972008-05-31 16:11:38 +0000587 queue_signal(env, info.si_signo, &info);
aurel326d9a42b2008-04-07 20:30:53 +0000588 } else {
589 env->regs[15] += 4;
590 }
591
592 /* accumulate unenabled exceptions */
593 if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC))
594 fpsr |= BIT_IXC;
595 if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC))
596 fpsr |= BIT_UFC;
597 if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC))
598 fpsr |= BIT_OFC;
599 if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC))
600 fpsr |= BIT_DZC;
601 if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC))
602 fpsr |= BIT_IOC;
603 ts->fpa.fpsr=fpsr;
604 } else { /* everything OK */
bellardc6981052004-02-16 21:49:03 +0000605 /* increment PC */
606 env->regs[15] += 4;
607 }
608 }
bellardb346ff42003-06-15 20:05:50 +0000609 break;
610 case EXCP_SWI:
pbrook06c949e2006-02-04 19:35:26 +0000611 case EXCP_BKPT:
bellardb346ff42003-06-15 20:05:50 +0000612 {
pbrookce4defa2006-02-09 16:49:55 +0000613 env->eabi = 1;
bellardb346ff42003-06-15 20:05:50 +0000614 /* system call */
pbrook06c949e2006-02-04 19:35:26 +0000615 if (trapnr == EXCP_BKPT) {
616 if (env->thumb) {
bellard2f619692007-11-16 10:46:05 +0000617 /* FIXME - what to do if get_user() fails? */
618 get_user_u16(insn, env->regs[15]);
pbrook06c949e2006-02-04 19:35:26 +0000619 n = insn & 0xff;
620 env->regs[15] += 2;
621 } else {
bellard2f619692007-11-16 10:46:05 +0000622 /* FIXME - what to do if get_user() fails? */
623 get_user_u32(insn, env->regs[15]);
pbrook06c949e2006-02-04 19:35:26 +0000624 n = (insn & 0xf) | ((insn >> 4) & 0xff0);
625 env->regs[15] += 4;
626 }
bellard192c7bd2005-04-27 20:11:21 +0000627 } else {
pbrook06c949e2006-02-04 19:35:26 +0000628 if (env->thumb) {
bellard2f619692007-11-16 10:46:05 +0000629 /* FIXME - what to do if get_user() fails? */
630 get_user_u16(insn, env->regs[15] - 2);
pbrook06c949e2006-02-04 19:35:26 +0000631 n = insn & 0xff;
632 } else {
bellard2f619692007-11-16 10:46:05 +0000633 /* FIXME - what to do if get_user() fails? */
634 get_user_u32(insn, env->regs[15] - 4);
pbrook06c949e2006-02-04 19:35:26 +0000635 n = insn & 0xffffff;
636 }
bellard192c7bd2005-04-27 20:11:21 +0000637 }
638
bellard6f1f31c2004-04-25 18:00:45 +0000639 if (n == ARM_NR_cacheflush) {
640 arm_cache_flush(env->regs[0], env->regs[1]);
bellarda4f81972005-04-23 18:25:41 +0000641 } else if (n == ARM_NR_semihosting
642 || n == ARM_NR_thumb_semihosting) {
643 env->regs[0] = do_arm_semihosting (env);
pbrookce4defa2006-02-09 16:49:55 +0000644 } else if (n == 0 || n >= ARM_SYSCALL_BASE
bellard192c7bd2005-04-27 20:11:21 +0000645 || (env->thumb && n == ARM_THUMB_SYSCALL)) {
bellardb346ff42003-06-15 20:05:50 +0000646 /* linux syscall */
pbrookce4defa2006-02-09 16:49:55 +0000647 if (env->thumb || n == 0) {
bellard192c7bd2005-04-27 20:11:21 +0000648 n = env->regs[7];
649 } else {
650 n -= ARM_SYSCALL_BASE;
pbrookce4defa2006-02-09 16:49:55 +0000651 env->eabi = 0;
bellard192c7bd2005-04-27 20:11:21 +0000652 }
pbrookfbb4a2e2008-05-29 00:20:44 +0000653 if ( n > ARM_NR_BASE) {
654 switch (n) {
655 case ARM_NR_cacheflush:
656 arm_cache_flush(env->regs[0], env->regs[1]);
657 break;
658 case ARM_NR_set_tls:
659 cpu_set_tls(env, env->regs[0]);
660 env->regs[0] = 0;
661 break;
662 default:
663 gemu_log("qemu: Unsupported ARM syscall: 0x%x\n",
664 n);
665 env->regs[0] = -TARGET_ENOSYS;
666 break;
667 }
668 } else {
669 env->regs[0] = do_syscall(env,
670 n,
671 env->regs[0],
672 env->regs[1],
673 env->regs[2],
674 env->regs[3],
675 env->regs[4],
676 env->regs[5]);
677 }
bellardb346ff42003-06-15 20:05:50 +0000678 } else {
679 goto error;
680 }
681 }
682 break;
bellard43fff232003-07-09 19:31:39 +0000683 case EXCP_INTERRUPT:
684 /* just indicate that signals should be handled asap */
685 break;
bellard68016c62005-02-07 23:12:27 +0000686 case EXCP_PREFETCH_ABORT:
balrogeae473c2008-07-29 14:09:57 +0000687 addr = env->cp15.c6_insn;
bellardb5ff1b32005-11-26 10:38:39 +0000688 goto do_segv;
bellard68016c62005-02-07 23:12:27 +0000689 case EXCP_DATA_ABORT:
balrogeae473c2008-07-29 14:09:57 +0000690 addr = env->cp15.c6_data;
bellardb5ff1b32005-11-26 10:38:39 +0000691 goto do_segv;
692 do_segv:
bellard68016c62005-02-07 23:12:27 +0000693 {
694 info.si_signo = SIGSEGV;
695 info.si_errno = 0;
696 /* XXX: check env->error_code */
697 info.si_code = TARGET_SEGV_MAPERR;
bellardb5ff1b32005-11-26 10:38:39 +0000698 info._sifields._sigfault._addr = addr;
pbrook624f7972008-05-31 16:11:38 +0000699 queue_signal(env, info.si_signo, &info);
bellard68016c62005-02-07 23:12:27 +0000700 }
701 break;
bellard1fddef42005-04-17 19:16:13 +0000702 case EXCP_DEBUG:
703 {
704 int sig;
705
706 sig = gdb_handlesig (env, TARGET_SIGTRAP);
707 if (sig)
708 {
709 info.si_signo = sig;
710 info.si_errno = 0;
711 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +0000712 queue_signal(env, info.si_signo, &info);
bellard1fddef42005-04-17 19:16:13 +0000713 }
714 }
715 break;
pbrookfbb4a2e2008-05-29 00:20:44 +0000716 case EXCP_KERNEL_TRAP:
717 if (do_kernel_trap(env))
718 goto error;
719 break;
bellardb346ff42003-06-15 20:05:50 +0000720 default:
721 error:
ths5fafdf22007-09-16 21:08:06 +0000722 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
bellardb346ff42003-06-15 20:05:50 +0000723 trapnr);
bellard7fe48482004-10-09 18:08:01 +0000724 cpu_dump_state(env, stderr, fprintf, 0);
bellardb346ff42003-06-15 20:05:50 +0000725 abort();
726 }
727 process_pending_signals(env);
728 }
729}
730
731#endif
bellard1b6b0292003-03-22 17:31:38 +0000732
bellard93ac68b2003-09-30 20:57:29 +0000733#ifdef TARGET_SPARC
blueswir1ed23fbd2008-08-30 09:20:21 +0000734#define SPARC64_STACK_BIAS 2047
bellard93ac68b2003-09-30 20:57:29 +0000735
bellard060366c2004-01-04 15:50:01 +0000736//#define DEBUG_WIN
737
bellard2623cba2005-02-19 17:25:31 +0000738/* WARNING: dealing with register windows _is_ complicated. More info
739 can be found at http://www.sics.se/~psm/sparcstack.html */
bellard060366c2004-01-04 15:50:01 +0000740static inline int get_reg_index(CPUSPARCState *env, int cwp, int index)
741{
blueswir11a140262008-06-07 08:07:37 +0000742 index = (index + cwp * 16) % (16 * env->nwindows);
bellard060366c2004-01-04 15:50:01 +0000743 /* wrap handling : if cwp is on the last window, then we use the
744 registers 'after' the end */
blueswir11a140262008-06-07 08:07:37 +0000745 if (index < 8 && env->cwp == env->nwindows - 1)
746 index += 16 * env->nwindows;
bellard060366c2004-01-04 15:50:01 +0000747 return index;
748}
749
bellard2623cba2005-02-19 17:25:31 +0000750/* save the register window 'cwp1' */
751static inline void save_window_offset(CPUSPARCState *env, int cwp1)
bellard060366c2004-01-04 15:50:01 +0000752{
bellard2623cba2005-02-19 17:25:31 +0000753 unsigned int i;
blueswir1992f48a2007-10-14 16:27:31 +0000754 abi_ulong sp_ptr;
ths3b46e622007-09-17 08:09:54 +0000755
pbrook53a59602006-03-25 19:31:22 +0000756 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
blueswir1ed23fbd2008-08-30 09:20:21 +0000757#ifdef TARGET_SPARC64
758 if (sp_ptr & 3)
759 sp_ptr += SPARC64_STACK_BIAS;
760#endif
bellard060366c2004-01-04 15:50:01 +0000761#if defined(DEBUG_WIN)
blueswir12daf0282008-06-15 18:02:48 +0000762 printf("win_overflow: sp_ptr=0x" TARGET_ABI_FMT_lx " save_cwp=%d\n",
763 sp_ptr, cwp1);
bellard060366c2004-01-04 15:50:01 +0000764#endif
bellard2623cba2005-02-19 17:25:31 +0000765 for(i = 0; i < 16; i++) {
bellard2f619692007-11-16 10:46:05 +0000766 /* FIXME - what to do if put_user() fails? */
767 put_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
blueswir1992f48a2007-10-14 16:27:31 +0000768 sp_ptr += sizeof(abi_ulong);
bellard2623cba2005-02-19 17:25:31 +0000769 }
bellard060366c2004-01-04 15:50:01 +0000770}
771
772static void save_window(CPUSPARCState *env)
773{
bellard5ef54112006-07-18 21:14:09 +0000774#ifndef TARGET_SPARC64
bellard2623cba2005-02-19 17:25:31 +0000775 unsigned int new_wim;
blueswir11a140262008-06-07 08:07:37 +0000776 new_wim = ((env->wim >> 1) | (env->wim << (env->nwindows - 1))) &
777 ((1LL << env->nwindows) - 1);
778 save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2));
bellard2623cba2005-02-19 17:25:31 +0000779 env->wim = new_wim;
bellard5ef54112006-07-18 21:14:09 +0000780#else
blueswir11a140262008-06-07 08:07:37 +0000781 save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2));
bellard5ef54112006-07-18 21:14:09 +0000782 env->cansave++;
783 env->canrestore--;
784#endif
bellard060366c2004-01-04 15:50:01 +0000785}
786
787static void restore_window(CPUSPARCState *env)
788{
blueswir1eda52952008-08-27 19:19:44 +0000789#ifndef TARGET_SPARC64
790 unsigned int new_wim;
791#endif
792 unsigned int i, cwp1;
blueswir1992f48a2007-10-14 16:27:31 +0000793 abi_ulong sp_ptr;
ths3b46e622007-09-17 08:09:54 +0000794
blueswir1eda52952008-08-27 19:19:44 +0000795#ifndef TARGET_SPARC64
blueswir11a140262008-06-07 08:07:37 +0000796 new_wim = ((env->wim << 1) | (env->wim >> (env->nwindows - 1))) &
797 ((1LL << env->nwindows) - 1);
blueswir1eda52952008-08-27 19:19:44 +0000798#endif
ths3b46e622007-09-17 08:09:54 +0000799
bellard060366c2004-01-04 15:50:01 +0000800 /* restore the invalid window */
blueswir11a140262008-06-07 08:07:37 +0000801 cwp1 = cpu_cwp_inc(env, env->cwp + 1);
pbrook53a59602006-03-25 19:31:22 +0000802 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
blueswir1ed23fbd2008-08-30 09:20:21 +0000803#ifdef TARGET_SPARC64
804 if (sp_ptr & 3)
805 sp_ptr += SPARC64_STACK_BIAS;
806#endif
bellard060366c2004-01-04 15:50:01 +0000807#if defined(DEBUG_WIN)
blueswir12daf0282008-06-15 18:02:48 +0000808 printf("win_underflow: sp_ptr=0x" TARGET_ABI_FMT_lx " load_cwp=%d\n",
809 sp_ptr, cwp1);
bellard060366c2004-01-04 15:50:01 +0000810#endif
bellard2623cba2005-02-19 17:25:31 +0000811 for(i = 0; i < 16; i++) {
bellard2f619692007-11-16 10:46:05 +0000812 /* FIXME - what to do if get_user() fails? */
813 get_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
blueswir1992f48a2007-10-14 16:27:31 +0000814 sp_ptr += sizeof(abi_ulong);
bellard2623cba2005-02-19 17:25:31 +0000815 }
bellard5ef54112006-07-18 21:14:09 +0000816#ifdef TARGET_SPARC64
817 env->canrestore++;
blueswir11a140262008-06-07 08:07:37 +0000818 if (env->cleanwin < env->nwindows - 1)
819 env->cleanwin++;
bellard5ef54112006-07-18 21:14:09 +0000820 env->cansave--;
blueswir1eda52952008-08-27 19:19:44 +0000821#else
822 env->wim = new_wim;
bellard5ef54112006-07-18 21:14:09 +0000823#endif
bellard060366c2004-01-04 15:50:01 +0000824}
825
826static void flush_windows(CPUSPARCState *env)
827{
828 int offset, cwp1;
bellard2623cba2005-02-19 17:25:31 +0000829
830 offset = 1;
bellard060366c2004-01-04 15:50:01 +0000831 for(;;) {
832 /* if restore would invoke restore_window(), then we can stop */
blueswir11a140262008-06-07 08:07:37 +0000833 cwp1 = cpu_cwp_inc(env, env->cwp + offset);
blueswir1eda52952008-08-27 19:19:44 +0000834#ifndef TARGET_SPARC64
bellard060366c2004-01-04 15:50:01 +0000835 if (env->wim & (1 << cwp1))
836 break;
blueswir1eda52952008-08-27 19:19:44 +0000837#else
838 if (env->canrestore == 0)
839 break;
840 env->cansave++;
841 env->canrestore--;
842#endif
bellard2623cba2005-02-19 17:25:31 +0000843 save_window_offset(env, cwp1);
bellard060366c2004-01-04 15:50:01 +0000844 offset++;
845 }
blueswir11a140262008-06-07 08:07:37 +0000846 cwp1 = cpu_cwp_inc(env, env->cwp + 1);
blueswir1eda52952008-08-27 19:19:44 +0000847#ifndef TARGET_SPARC64
848 /* set wim so that restore will reload the registers */
bellard2623cba2005-02-19 17:25:31 +0000849 env->wim = 1 << cwp1;
blueswir1eda52952008-08-27 19:19:44 +0000850#endif
bellard2623cba2005-02-19 17:25:31 +0000851#if defined(DEBUG_WIN)
852 printf("flush_windows: nb=%d\n", offset - 1);
bellard80a9d032005-01-03 23:31:27 +0000853#endif
bellard2623cba2005-02-19 17:25:31 +0000854}
bellard060366c2004-01-04 15:50:01 +0000855
bellard93ac68b2003-09-30 20:57:29 +0000856void cpu_loop (CPUSPARCState *env)
857{
bellard060366c2004-01-04 15:50:01 +0000858 int trapnr, ret;
Anthony Liguoric227f092009-10-01 16:12:16 -0500859 target_siginfo_t info;
ths3b46e622007-09-17 08:09:54 +0000860
bellard060366c2004-01-04 15:50:01 +0000861 while (1) {
862 trapnr = cpu_sparc_exec (env);
ths3b46e622007-09-17 08:09:54 +0000863
bellard060366c2004-01-04 15:50:01 +0000864 switch (trapnr) {
bellard5ef54112006-07-18 21:14:09 +0000865#ifndef TARGET_SPARC64
ths5fafdf22007-09-16 21:08:06 +0000866 case 0x88:
bellard060366c2004-01-04 15:50:01 +0000867 case 0x90:
bellard5ef54112006-07-18 21:14:09 +0000868#else
blueswir1cb33da52007-10-09 16:34:29 +0000869 case 0x110:
bellard5ef54112006-07-18 21:14:09 +0000870 case 0x16d:
871#endif
bellard060366c2004-01-04 15:50:01 +0000872 ret = do_syscall (env, env->gregs[1],
ths5fafdf22007-09-16 21:08:06 +0000873 env->regwptr[0], env->regwptr[1],
874 env->regwptr[2], env->regwptr[3],
bellard060366c2004-01-04 15:50:01 +0000875 env->regwptr[4], env->regwptr[5]);
876 if ((unsigned int)ret >= (unsigned int)(-515)) {
blueswir1992f48a2007-10-14 16:27:31 +0000877#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
bellard27908722006-10-23 21:31:01 +0000878 env->xcc |= PSR_CARRY;
879#else
bellard060366c2004-01-04 15:50:01 +0000880 env->psr |= PSR_CARRY;
bellard27908722006-10-23 21:31:01 +0000881#endif
bellard060366c2004-01-04 15:50:01 +0000882 ret = -ret;
883 } else {
blueswir1992f48a2007-10-14 16:27:31 +0000884#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
bellard27908722006-10-23 21:31:01 +0000885 env->xcc &= ~PSR_CARRY;
886#else
bellard060366c2004-01-04 15:50:01 +0000887 env->psr &= ~PSR_CARRY;
bellard27908722006-10-23 21:31:01 +0000888#endif
bellard060366c2004-01-04 15:50:01 +0000889 }
890 env->regwptr[0] = ret;
891 /* next instruction */
892 env->pc = env->npc;
893 env->npc = env->npc + 4;
894 break;
895 case 0x83: /* flush windows */
blueswir1992f48a2007-10-14 16:27:31 +0000896#ifdef TARGET_ABI32
897 case 0x103:
898#endif
bellard2623cba2005-02-19 17:25:31 +0000899 flush_windows(env);
bellard060366c2004-01-04 15:50:01 +0000900 /* next instruction */
901 env->pc = env->npc;
902 env->npc = env->npc + 4;
903 break;
bellard34751872005-07-02 14:31:34 +0000904#ifndef TARGET_SPARC64
bellard060366c2004-01-04 15:50:01 +0000905 case TT_WIN_OVF: /* window overflow */
906 save_window(env);
907 break;
908 case TT_WIN_UNF: /* window underflow */
909 restore_window(env);
910 break;
bellard61ff6f52005-02-15 22:54:53 +0000911 case TT_TFAULT:
912 case TT_DFAULT:
913 {
914 info.si_signo = SIGSEGV;
915 info.si_errno = 0;
916 /* XXX: check env->error_code */
917 info.si_code = TARGET_SEGV_MAPERR;
918 info._sifields._sigfault._addr = env->mmuregs[4];
pbrook624f7972008-05-31 16:11:38 +0000919 queue_signal(env, info.si_signo, &info);
bellard61ff6f52005-02-15 22:54:53 +0000920 }
921 break;
bellard34751872005-07-02 14:31:34 +0000922#else
bellard5ef54112006-07-18 21:14:09 +0000923 case TT_SPILL: /* window overflow */
924 save_window(env);
925 break;
926 case TT_FILL: /* window underflow */
927 restore_window(env);
928 break;
blueswir17f84a722007-07-07 20:46:41 +0000929 case TT_TFAULT:
930 case TT_DFAULT:
931 {
932 info.si_signo = SIGSEGV;
933 info.si_errno = 0;
934 /* XXX: check env->error_code */
935 info.si_code = TARGET_SEGV_MAPERR;
936 if (trapnr == TT_DFAULT)
937 info._sifields._sigfault._addr = env->dmmuregs[4];
938 else
Igor Kovalenko8194f352009-08-03 23:15:02 +0400939 info._sifields._sigfault._addr = cpu_tsptr(env)->tpc;
pbrook624f7972008-05-31 16:11:38 +0000940 queue_signal(env, info.si_signo, &info);
blueswir17f84a722007-07-07 20:46:41 +0000941 }
942 break;
bellard27524dc2007-11-11 19:32:52 +0000943#ifndef TARGET_ABI32
blueswir15bfb56b2007-10-05 17:01:51 +0000944 case 0x16e:
945 flush_windows(env);
946 sparc64_get_context(env);
947 break;
948 case 0x16f:
949 flush_windows(env);
950 sparc64_set_context(env);
951 break;
bellard34751872005-07-02 14:31:34 +0000952#endif
bellard27524dc2007-11-11 19:32:52 +0000953#endif
bellard48dc41e2006-06-21 18:15:50 +0000954 case EXCP_INTERRUPT:
955 /* just indicate that signals should be handled asap */
956 break;
bellard1fddef42005-04-17 19:16:13 +0000957 case EXCP_DEBUG:
958 {
959 int sig;
960
961 sig = gdb_handlesig (env, TARGET_SIGTRAP);
962 if (sig)
963 {
964 info.si_signo = sig;
965 info.si_errno = 0;
966 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +0000967 queue_signal(env, info.si_signo, &info);
bellard1fddef42005-04-17 19:16:13 +0000968 }
969 }
970 break;
bellard060366c2004-01-04 15:50:01 +0000971 default:
972 printf ("Unhandled trap: 0x%x\n", trapnr);
bellard7fe48482004-10-09 18:08:01 +0000973 cpu_dump_state(env, stderr, fprintf, 0);
bellard060366c2004-01-04 15:50:01 +0000974 exit (1);
975 }
976 process_pending_signals (env);
977 }
bellard93ac68b2003-09-30 20:57:29 +0000978}
979
980#endif
981
bellard67867302003-11-23 17:05:30 +0000982#ifdef TARGET_PPC
bellard9fddaa02004-05-21 12:59:32 +0000983static inline uint64_t cpu_ppc_get_tb (CPUState *env)
984{
985 /* TO FIX */
986 return 0;
987}
ths3b46e622007-09-17 08:09:54 +0000988
bellard9fddaa02004-05-21 12:59:32 +0000989uint32_t cpu_ppc_load_tbl (CPUState *env)
990{
991 return cpu_ppc_get_tb(env) & 0xFFFFFFFF;
992}
ths3b46e622007-09-17 08:09:54 +0000993
bellard9fddaa02004-05-21 12:59:32 +0000994uint32_t cpu_ppc_load_tbu (CPUState *env)
995{
996 return cpu_ppc_get_tb(env) >> 32;
997}
ths3b46e622007-09-17 08:09:54 +0000998
j_mayera062e362007-09-30 00:38:38 +0000999uint32_t cpu_ppc_load_atbl (CPUState *env)
bellard9fddaa02004-05-21 12:59:32 +00001000{
j_mayera062e362007-09-30 00:38:38 +00001001 return cpu_ppc_get_tb(env) & 0xFFFFFFFF;
bellard9fddaa02004-05-21 12:59:32 +00001002}
1003
j_mayera062e362007-09-30 00:38:38 +00001004uint32_t cpu_ppc_load_atbu (CPUState *env)
bellard9fddaa02004-05-21 12:59:32 +00001005{
j_mayera062e362007-09-30 00:38:38 +00001006 return cpu_ppc_get_tb(env) >> 32;
bellard9fddaa02004-05-21 12:59:32 +00001007}
ths5fafdf22007-09-16 21:08:06 +00001008
j_mayer76a66252007-03-07 08:32:30 +00001009uint32_t cpu_ppc601_load_rtcu (CPUState *env)
1010__attribute__ (( alias ("cpu_ppc_load_tbu") ));
1011
j_mayer76a66252007-03-07 08:32:30 +00001012uint32_t cpu_ppc601_load_rtcl (CPUState *env)
bellard9fddaa02004-05-21 12:59:32 +00001013{
j_mayer76a66252007-03-07 08:32:30 +00001014 return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
bellard9fddaa02004-05-21 12:59:32 +00001015}
j_mayer76a66252007-03-07 08:32:30 +00001016
j_mayera750fc02007-09-26 23:54:22 +00001017/* XXX: to be fixed */
Anthony Liguoric227f092009-10-01 16:12:16 -05001018int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, target_ulong *valp)
j_mayera750fc02007-09-26 23:54:22 +00001019{
1020 return -1;
1021}
1022
Anthony Liguoric227f092009-10-01 16:12:16 -05001023int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, target_ulong val)
j_mayera750fc02007-09-26 23:54:22 +00001024{
1025 return -1;
1026}
1027
Blue Swirl001faf32009-05-13 17:53:17 +00001028#define EXCP_DUMP(env, fmt, ...) \
1029do { \
1030 fprintf(stderr, fmt , ## __VA_ARGS__); \
1031 cpu_dump_state(env, stderr, fprintf, 0); \
1032 qemu_log(fmt, ## __VA_ARGS__); \
malc430c7ec2009-07-15 20:52:47 +04001033 if (logfile) \
1034 log_cpu_state(env, 0); \
j_mayere1833e12007-09-29 13:06:16 +00001035} while (0)
1036
Nathan Froyd56f066b2009-08-03 08:43:27 -07001037static int do_store_exclusive(CPUPPCState *env)
1038{
1039 target_ulong addr;
1040 target_ulong page_addr;
1041 target_ulong val;
1042 int flags;
1043 int segv = 0;
1044
1045 addr = env->reserve_ea;
1046 page_addr = addr & TARGET_PAGE_MASK;
1047 start_exclusive();
1048 mmap_lock();
1049 flags = page_get_flags(page_addr);
1050 if ((flags & PAGE_READ) == 0) {
1051 segv = 1;
1052 } else {
1053 int reg = env->reserve_info & 0x1f;
1054 int size = (env->reserve_info >> 5) & 0xf;
1055 int stored = 0;
1056
1057 if (addr == env->reserve_addr) {
1058 switch (size) {
1059 case 1: segv = get_user_u8(val, addr); break;
1060 case 2: segv = get_user_u16(val, addr); break;
1061 case 4: segv = get_user_u32(val, addr); break;
1062#if defined(TARGET_PPC64)
1063 case 8: segv = get_user_u64(val, addr); break;
1064#endif
1065 default: abort();
1066 }
1067 if (!segv && val == env->reserve_val) {
1068 val = env->gpr[reg];
1069 switch (size) {
1070 case 1: segv = put_user_u8(val, addr); break;
1071 case 2: segv = put_user_u16(val, addr); break;
1072 case 4: segv = put_user_u32(val, addr); break;
1073#if defined(TARGET_PPC64)
1074 case 8: segv = put_user_u64(val, addr); break;
1075#endif
1076 default: abort();
1077 }
1078 if (!segv) {
1079 stored = 1;
1080 }
1081 }
1082 }
1083 env->crf[0] = (stored << 1) | xer_so;
1084 env->reserve_addr = (target_ulong)-1;
1085 }
1086 if (!segv) {
1087 env->nip += 4;
1088 }
1089 mmap_unlock();
1090 end_exclusive();
1091 return segv;
1092}
1093
bellard67867302003-11-23 17:05:30 +00001094void cpu_loop(CPUPPCState *env)
1095{
Anthony Liguoric227f092009-10-01 16:12:16 -05001096 target_siginfo_t info;
bellard61190b12004-01-04 23:54:31 +00001097 int trapnr;
1098 uint32_t ret;
ths3b46e622007-09-17 08:09:54 +00001099
bellard67867302003-11-23 17:05:30 +00001100 for(;;) {
Nathan Froyd56f066b2009-08-03 08:43:27 -07001101 cpu_exec_start(env);
bellard67867302003-11-23 17:05:30 +00001102 trapnr = cpu_ppc_exec(env);
Nathan Froyd56f066b2009-08-03 08:43:27 -07001103 cpu_exec_end(env);
bellard67867302003-11-23 17:05:30 +00001104 switch(trapnr) {
j_mayere1833e12007-09-29 13:06:16 +00001105 case POWERPC_EXCP_NONE:
1106 /* Just go on */
bellard67867302003-11-23 17:05:30 +00001107 break;
j_mayere1833e12007-09-29 13:06:16 +00001108 case POWERPC_EXCP_CRITICAL: /* Critical input */
1109 cpu_abort(env, "Critical interrupt while in user mode. "
1110 "Aborting\n");
1111 break;
1112 case POWERPC_EXCP_MCHECK: /* Machine check exception */
1113 cpu_abort(env, "Machine check exception while in user mode. "
1114 "Aborting\n");
1115 break;
1116 case POWERPC_EXCP_DSI: /* Data storage exception */
Blue Swirl90e189e2009-08-16 11:13:18 +00001117 EXCP_DUMP(env, "Invalid data memory access: 0x" TARGET_FMT_lx "\n",
j_mayere1833e12007-09-29 13:06:16 +00001118 env->spr[SPR_DAR]);
1119 /* XXX: check this. Seems bugged */
1120 switch (env->error_code & 0xFF000000) {
1121 case 0x40000000:
1122 info.si_signo = TARGET_SIGSEGV;
1123 info.si_errno = 0;
1124 info.si_code = TARGET_SEGV_MAPERR;
1125 break;
1126 case 0x04000000:
1127 info.si_signo = TARGET_SIGILL;
1128 info.si_errno = 0;
1129 info.si_code = TARGET_ILL_ILLADR;
1130 break;
1131 case 0x08000000:
1132 info.si_signo = TARGET_SIGSEGV;
1133 info.si_errno = 0;
1134 info.si_code = TARGET_SEGV_ACCERR;
1135 break;
1136 default:
1137 /* Let's send a regular segfault... */
1138 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
1139 env->error_code);
1140 info.si_signo = TARGET_SIGSEGV;
1141 info.si_errno = 0;
1142 info.si_code = TARGET_SEGV_MAPERR;
1143 break;
1144 }
1145 info._sifields._sigfault._addr = env->nip;
pbrook624f7972008-05-31 16:11:38 +00001146 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001147 break;
1148 case POWERPC_EXCP_ISI: /* Instruction storage exception */
Blue Swirl90e189e2009-08-16 11:13:18 +00001149 EXCP_DUMP(env, "Invalid instruction fetch: 0x\n" TARGET_FMT_lx
1150 "\n", env->spr[SPR_SRR0]);
j_mayere1833e12007-09-29 13:06:16 +00001151 /* XXX: check this */
1152 switch (env->error_code & 0xFF000000) {
1153 case 0x40000000:
1154 info.si_signo = TARGET_SIGSEGV;
1155 info.si_errno = 0;
1156 info.si_code = TARGET_SEGV_MAPERR;
1157 break;
1158 case 0x10000000:
1159 case 0x08000000:
1160 info.si_signo = TARGET_SIGSEGV;
1161 info.si_errno = 0;
1162 info.si_code = TARGET_SEGV_ACCERR;
1163 break;
1164 default:
1165 /* Let's send a regular segfault... */
1166 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
1167 env->error_code);
1168 info.si_signo = TARGET_SIGSEGV;
1169 info.si_errno = 0;
1170 info.si_code = TARGET_SEGV_MAPERR;
1171 break;
1172 }
1173 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001174 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001175 break;
1176 case POWERPC_EXCP_EXTERNAL: /* External input */
1177 cpu_abort(env, "External interrupt while in user mode. "
1178 "Aborting\n");
1179 break;
1180 case POWERPC_EXCP_ALIGN: /* Alignment exception */
1181 EXCP_DUMP(env, "Unaligned memory access\n");
1182 /* XXX: check this */
1183 info.si_signo = TARGET_SIGBUS;
1184 info.si_errno = 0;
1185 info.si_code = TARGET_BUS_ADRALN;
1186 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001187 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001188 break;
1189 case POWERPC_EXCP_PROGRAM: /* Program exception */
1190 /* XXX: check this */
1191 switch (env->error_code & ~0xF) {
1192 case POWERPC_EXCP_FP:
1193 EXCP_DUMP(env, "Floating point program exception\n");
j_mayere1833e12007-09-29 13:06:16 +00001194 info.si_signo = TARGET_SIGFPE;
1195 info.si_errno = 0;
1196 switch (env->error_code & 0xF) {
1197 case POWERPC_EXCP_FP_OX:
1198 info.si_code = TARGET_FPE_FLTOVF;
1199 break;
1200 case POWERPC_EXCP_FP_UX:
1201 info.si_code = TARGET_FPE_FLTUND;
1202 break;
1203 case POWERPC_EXCP_FP_ZX:
1204 case POWERPC_EXCP_FP_VXZDZ:
1205 info.si_code = TARGET_FPE_FLTDIV;
1206 break;
1207 case POWERPC_EXCP_FP_XX:
1208 info.si_code = TARGET_FPE_FLTRES;
1209 break;
1210 case POWERPC_EXCP_FP_VXSOFT:
1211 info.si_code = TARGET_FPE_FLTINV;
1212 break;
j_mayer7c580442007-10-27 17:54:30 +00001213 case POWERPC_EXCP_FP_VXSNAN:
j_mayere1833e12007-09-29 13:06:16 +00001214 case POWERPC_EXCP_FP_VXISI:
1215 case POWERPC_EXCP_FP_VXIDI:
1216 case POWERPC_EXCP_FP_VXIMZ:
1217 case POWERPC_EXCP_FP_VXVC:
1218 case POWERPC_EXCP_FP_VXSQRT:
1219 case POWERPC_EXCP_FP_VXCVI:
1220 info.si_code = TARGET_FPE_FLTSUB;
1221 break;
1222 default:
1223 EXCP_DUMP(env, "Unknown floating point exception (%02x)\n",
1224 env->error_code);
1225 break;
1226 }
1227 break;
1228 case POWERPC_EXCP_INVAL:
1229 EXCP_DUMP(env, "Invalid instruction\n");
1230 info.si_signo = TARGET_SIGILL;
1231 info.si_errno = 0;
1232 switch (env->error_code & 0xF) {
1233 case POWERPC_EXCP_INVAL_INVAL:
1234 info.si_code = TARGET_ILL_ILLOPC;
1235 break;
1236 case POWERPC_EXCP_INVAL_LSWX:
1237 info.si_code = TARGET_ILL_ILLOPN;
1238 break;
1239 case POWERPC_EXCP_INVAL_SPR:
1240 info.si_code = TARGET_ILL_PRVREG;
1241 break;
1242 case POWERPC_EXCP_INVAL_FP:
1243 info.si_code = TARGET_ILL_COPROC;
1244 break;
1245 default:
1246 EXCP_DUMP(env, "Unknown invalid operation (%02x)\n",
1247 env->error_code & 0xF);
1248 info.si_code = TARGET_ILL_ILLADR;
1249 break;
1250 }
1251 break;
1252 case POWERPC_EXCP_PRIV:
1253 EXCP_DUMP(env, "Privilege violation\n");
1254 info.si_signo = TARGET_SIGILL;
1255 info.si_errno = 0;
1256 switch (env->error_code & 0xF) {
1257 case POWERPC_EXCP_PRIV_OPC:
1258 info.si_code = TARGET_ILL_PRVOPC;
1259 break;
1260 case POWERPC_EXCP_PRIV_REG:
1261 info.si_code = TARGET_ILL_PRVREG;
1262 break;
1263 default:
1264 EXCP_DUMP(env, "Unknown privilege violation (%02x)\n",
1265 env->error_code & 0xF);
1266 info.si_code = TARGET_ILL_PRVOPC;
1267 break;
1268 }
1269 break;
1270 case POWERPC_EXCP_TRAP:
1271 cpu_abort(env, "Tried to call a TRAP\n");
1272 break;
1273 default:
1274 /* Should not happen ! */
1275 cpu_abort(env, "Unknown program exception (%02x)\n",
1276 env->error_code);
1277 break;
1278 }
1279 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001280 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001281 break;
1282 case POWERPC_EXCP_FPU: /* Floating-point unavailable exception */
1283 EXCP_DUMP(env, "No floating point allowed\n");
1284 info.si_signo = TARGET_SIGILL;
1285 info.si_errno = 0;
1286 info.si_code = TARGET_ILL_COPROC;
1287 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001288 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001289 break;
1290 case POWERPC_EXCP_SYSCALL: /* System call exception */
1291 cpu_abort(env, "Syscall exception while in user mode. "
1292 "Aborting\n");
1293 break;
1294 case POWERPC_EXCP_APU: /* Auxiliary processor unavailable */
1295 EXCP_DUMP(env, "No APU instruction allowed\n");
1296 info.si_signo = TARGET_SIGILL;
1297 info.si_errno = 0;
1298 info.si_code = TARGET_ILL_COPROC;
1299 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001300 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001301 break;
1302 case POWERPC_EXCP_DECR: /* Decrementer exception */
1303 cpu_abort(env, "Decrementer interrupt while in user mode. "
1304 "Aborting\n");
1305 break;
1306 case POWERPC_EXCP_FIT: /* Fixed-interval timer interrupt */
1307 cpu_abort(env, "Fix interval timer interrupt while in user mode. "
1308 "Aborting\n");
1309 break;
1310 case POWERPC_EXCP_WDT: /* Watchdog timer interrupt */
1311 cpu_abort(env, "Watchdog timer interrupt while in user mode. "
1312 "Aborting\n");
1313 break;
1314 case POWERPC_EXCP_DTLB: /* Data TLB error */
1315 cpu_abort(env, "Data TLB exception while in user mode. "
1316 "Aborting\n");
1317 break;
1318 case POWERPC_EXCP_ITLB: /* Instruction TLB error */
1319 cpu_abort(env, "Instruction TLB exception while in user mode. "
1320 "Aborting\n");
1321 break;
j_mayere1833e12007-09-29 13:06:16 +00001322 case POWERPC_EXCP_SPEU: /* SPE/embedded floating-point unavail. */
1323 EXCP_DUMP(env, "No SPE/floating-point instruction allowed\n");
1324 info.si_signo = TARGET_SIGILL;
1325 info.si_errno = 0;
1326 info.si_code = TARGET_ILL_COPROC;
1327 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001328 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001329 break;
1330 case POWERPC_EXCP_EFPDI: /* Embedded floating-point data IRQ */
1331 cpu_abort(env, "Embedded floating-point data IRQ not handled\n");
1332 break;
1333 case POWERPC_EXCP_EFPRI: /* Embedded floating-point round IRQ */
1334 cpu_abort(env, "Embedded floating-point round IRQ not handled\n");
1335 break;
1336 case POWERPC_EXCP_EPERFM: /* Embedded performance monitor IRQ */
1337 cpu_abort(env, "Performance monitor exception not handled\n");
1338 break;
1339 case POWERPC_EXCP_DOORI: /* Embedded doorbell interrupt */
1340 cpu_abort(env, "Doorbell interrupt while in user mode. "
1341 "Aborting\n");
1342 break;
1343 case POWERPC_EXCP_DOORCI: /* Embedded doorbell critical interrupt */
1344 cpu_abort(env, "Doorbell critical interrupt while in user mode. "
1345 "Aborting\n");
1346 break;
1347 case POWERPC_EXCP_RESET: /* System reset exception */
1348 cpu_abort(env, "Reset interrupt while in user mode. "
1349 "Aborting\n");
1350 break;
j_mayere1833e12007-09-29 13:06:16 +00001351 case POWERPC_EXCP_DSEG: /* Data segment exception */
1352 cpu_abort(env, "Data segment exception while in user mode. "
1353 "Aborting\n");
1354 break;
1355 case POWERPC_EXCP_ISEG: /* Instruction segment exception */
1356 cpu_abort(env, "Instruction segment exception "
1357 "while in user mode. Aborting\n");
1358 break;
j_mayere85e7c62007-10-18 19:59:49 +00001359 /* PowerPC 64 with hypervisor mode support */
j_mayere1833e12007-09-29 13:06:16 +00001360 case POWERPC_EXCP_HDECR: /* Hypervisor decrementer exception */
1361 cpu_abort(env, "Hypervisor decrementer interrupt "
1362 "while in user mode. Aborting\n");
1363 break;
j_mayere1833e12007-09-29 13:06:16 +00001364 case POWERPC_EXCP_TRACE: /* Trace exception */
1365 /* Nothing to do:
1366 * we use this exception to emulate step-by-step execution mode.
1367 */
1368 break;
j_mayere85e7c62007-10-18 19:59:49 +00001369 /* PowerPC 64 with hypervisor mode support */
j_mayere1833e12007-09-29 13:06:16 +00001370 case POWERPC_EXCP_HDSI: /* Hypervisor data storage exception */
1371 cpu_abort(env, "Hypervisor data storage exception "
1372 "while in user mode. Aborting\n");
1373 break;
1374 case POWERPC_EXCP_HISI: /* Hypervisor instruction storage excp */
1375 cpu_abort(env, "Hypervisor instruction storage exception "
1376 "while in user mode. Aborting\n");
1377 break;
1378 case POWERPC_EXCP_HDSEG: /* Hypervisor data segment exception */
1379 cpu_abort(env, "Hypervisor data segment exception "
1380 "while in user mode. Aborting\n");
1381 break;
1382 case POWERPC_EXCP_HISEG: /* Hypervisor instruction segment excp */
1383 cpu_abort(env, "Hypervisor instruction segment exception "
1384 "while in user mode. Aborting\n");
1385 break;
j_mayere1833e12007-09-29 13:06:16 +00001386 case POWERPC_EXCP_VPU: /* Vector unavailable exception */
1387 EXCP_DUMP(env, "No Altivec instructions allowed\n");
1388 info.si_signo = TARGET_SIGILL;
1389 info.si_errno = 0;
1390 info.si_code = TARGET_ILL_COPROC;
1391 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001392 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001393 break;
1394 case POWERPC_EXCP_PIT: /* Programmable interval timer IRQ */
1395 cpu_abort(env, "Programable interval timer interrupt "
1396 "while in user mode. Aborting\n");
1397 break;
1398 case POWERPC_EXCP_IO: /* IO error exception */
1399 cpu_abort(env, "IO error exception while in user mode. "
1400 "Aborting\n");
1401 break;
1402 case POWERPC_EXCP_RUNM: /* Run mode exception */
1403 cpu_abort(env, "Run mode exception while in user mode. "
1404 "Aborting\n");
1405 break;
1406 case POWERPC_EXCP_EMUL: /* Emulation trap exception */
1407 cpu_abort(env, "Emulation trap exception not handled\n");
1408 break;
1409 case POWERPC_EXCP_IFTLB: /* Instruction fetch TLB error */
1410 cpu_abort(env, "Instruction fetch TLB exception "
1411 "while in user-mode. Aborting");
1412 break;
1413 case POWERPC_EXCP_DLTLB: /* Data load TLB miss */
1414 cpu_abort(env, "Data load TLB exception while in user-mode. "
1415 "Aborting");
1416 break;
1417 case POWERPC_EXCP_DSTLB: /* Data store TLB miss */
1418 cpu_abort(env, "Data store TLB exception while in user-mode. "
1419 "Aborting");
1420 break;
1421 case POWERPC_EXCP_FPA: /* Floating-point assist exception */
1422 cpu_abort(env, "Floating-point assist exception not handled\n");
1423 break;
1424 case POWERPC_EXCP_IABR: /* Instruction address breakpoint */
1425 cpu_abort(env, "Instruction address breakpoint exception "
1426 "not handled\n");
1427 break;
1428 case POWERPC_EXCP_SMI: /* System management interrupt */
1429 cpu_abort(env, "System management interrupt while in user mode. "
1430 "Aborting\n");
1431 break;
1432 case POWERPC_EXCP_THERM: /* Thermal interrupt */
1433 cpu_abort(env, "Thermal interrupt interrupt while in user mode. "
1434 "Aborting\n");
1435 break;
1436 case POWERPC_EXCP_PERFM: /* Embedded performance monitor IRQ */
1437 cpu_abort(env, "Performance monitor exception not handled\n");
1438 break;
1439 case POWERPC_EXCP_VPUA: /* Vector assist exception */
1440 cpu_abort(env, "Vector assist exception not handled\n");
1441 break;
1442 case POWERPC_EXCP_SOFTP: /* Soft patch exception */
1443 cpu_abort(env, "Soft patch exception not handled\n");
1444 break;
1445 case POWERPC_EXCP_MAINT: /* Maintenance exception */
1446 cpu_abort(env, "Maintenance exception while in user mode. "
1447 "Aborting\n");
1448 break;
1449 case POWERPC_EXCP_STOP: /* stop translation */
1450 /* We did invalidate the instruction cache. Go on */
1451 break;
1452 case POWERPC_EXCP_BRANCH: /* branch instruction: */
1453 /* We just stopped because of a branch. Go on */
1454 break;
1455 case POWERPC_EXCP_SYSCALL_USER:
1456 /* system call in user-mode emulation */
bellard67867302003-11-23 17:05:30 +00001457 /* WARNING:
1458 * PPC ABI uses overflow flag in cr0 to signal an error
1459 * in syscalls.
1460 */
bellard61190b12004-01-04 23:54:31 +00001461#if 0
1462 printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env->gpr[0],
1463 env->gpr[3], env->gpr[4], env->gpr[5], env->gpr[6]);
1464#endif
bellard67867302003-11-23 17:05:30 +00001465 env->crf[0] &= ~0x1;
1466 ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4],
1467 env->gpr[5], env->gpr[6], env->gpr[7],
1468 env->gpr[8]);
Nathan Froydbcd49332009-05-12 19:13:18 -07001469 if (ret == (uint32_t)(-TARGET_QEMU_ESIGRETURN)) {
1470 /* Returning from a successful sigreturn syscall.
1471 Avoid corrupting register state. */
1472 break;
1473 }
bellard67867302003-11-23 17:05:30 +00001474 if (ret > (uint32_t)(-515)) {
1475 env->crf[0] |= 0x1;
1476 ret = -ret;
1477 }
1478 env->gpr[3] = ret;
bellard61190b12004-01-04 23:54:31 +00001479#if 0
1480 printf("syscall returned 0x%08x (%d)\n", ret, ret);
1481#endif
bellard67867302003-11-23 17:05:30 +00001482 break;
Nathan Froyd56f066b2009-08-03 08:43:27 -07001483 case POWERPC_EXCP_STCX:
1484 if (do_store_exclusive(env)) {
1485 info.si_signo = TARGET_SIGSEGV;
1486 info.si_errno = 0;
1487 info.si_code = TARGET_SEGV_MAPERR;
1488 info._sifields._sigfault._addr = env->nip;
1489 queue_signal(env, info.si_signo, &info);
1490 }
1491 break;
aurel3271f75752008-11-14 17:05:54 +00001492 case EXCP_DEBUG:
1493 {
1494 int sig;
1495
1496 sig = gdb_handlesig(env, TARGET_SIGTRAP);
1497 if (sig) {
1498 info.si_signo = sig;
1499 info.si_errno = 0;
1500 info.si_code = TARGET_TRAP_BRKPT;
1501 queue_signal(env, info.si_signo, &info);
1502 }
1503 }
1504 break;
j_mayer56ba31f2007-09-30 15:15:18 +00001505 case EXCP_INTERRUPT:
1506 /* just indicate that signals should be handled asap */
1507 break;
bellard67867302003-11-23 17:05:30 +00001508 default:
j_mayere1833e12007-09-29 13:06:16 +00001509 cpu_abort(env, "Unknown exception 0x%d. Aborting\n", trapnr);
1510 break;
bellard67867302003-11-23 17:05:30 +00001511 }
1512 process_pending_signals(env);
1513 }
1514}
1515#endif
1516
bellard048f6b42005-11-26 18:47:20 +00001517#ifdef TARGET_MIPS
1518
1519#define MIPS_SYS(name, args) args,
1520
1521static const uint8_t mips_syscall_args[] = {
1522 MIPS_SYS(sys_syscall , 0) /* 4000 */
1523 MIPS_SYS(sys_exit , 1)
1524 MIPS_SYS(sys_fork , 0)
1525 MIPS_SYS(sys_read , 3)
1526 MIPS_SYS(sys_write , 3)
1527 MIPS_SYS(sys_open , 3) /* 4005 */
1528 MIPS_SYS(sys_close , 1)
1529 MIPS_SYS(sys_waitpid , 3)
1530 MIPS_SYS(sys_creat , 2)
1531 MIPS_SYS(sys_link , 2)
1532 MIPS_SYS(sys_unlink , 1) /* 4010 */
1533 MIPS_SYS(sys_execve , 0)
1534 MIPS_SYS(sys_chdir , 1)
1535 MIPS_SYS(sys_time , 1)
1536 MIPS_SYS(sys_mknod , 3)
1537 MIPS_SYS(sys_chmod , 2) /* 4015 */
1538 MIPS_SYS(sys_lchown , 3)
1539 MIPS_SYS(sys_ni_syscall , 0)
1540 MIPS_SYS(sys_ni_syscall , 0) /* was sys_stat */
1541 MIPS_SYS(sys_lseek , 3)
1542 MIPS_SYS(sys_getpid , 0) /* 4020 */
1543 MIPS_SYS(sys_mount , 5)
1544 MIPS_SYS(sys_oldumount , 1)
1545 MIPS_SYS(sys_setuid , 1)
1546 MIPS_SYS(sys_getuid , 0)
1547 MIPS_SYS(sys_stime , 1) /* 4025 */
1548 MIPS_SYS(sys_ptrace , 4)
1549 MIPS_SYS(sys_alarm , 1)
1550 MIPS_SYS(sys_ni_syscall , 0) /* was sys_fstat */
1551 MIPS_SYS(sys_pause , 0)
1552 MIPS_SYS(sys_utime , 2) /* 4030 */
1553 MIPS_SYS(sys_ni_syscall , 0)
1554 MIPS_SYS(sys_ni_syscall , 0)
1555 MIPS_SYS(sys_access , 2)
1556 MIPS_SYS(sys_nice , 1)
1557 MIPS_SYS(sys_ni_syscall , 0) /* 4035 */
1558 MIPS_SYS(sys_sync , 0)
1559 MIPS_SYS(sys_kill , 2)
1560 MIPS_SYS(sys_rename , 2)
1561 MIPS_SYS(sys_mkdir , 2)
1562 MIPS_SYS(sys_rmdir , 1) /* 4040 */
1563 MIPS_SYS(sys_dup , 1)
1564 MIPS_SYS(sys_pipe , 0)
1565 MIPS_SYS(sys_times , 1)
1566 MIPS_SYS(sys_ni_syscall , 0)
1567 MIPS_SYS(sys_brk , 1) /* 4045 */
1568 MIPS_SYS(sys_setgid , 1)
1569 MIPS_SYS(sys_getgid , 0)
1570 MIPS_SYS(sys_ni_syscall , 0) /* was signal(2) */
1571 MIPS_SYS(sys_geteuid , 0)
1572 MIPS_SYS(sys_getegid , 0) /* 4050 */
1573 MIPS_SYS(sys_acct , 0)
1574 MIPS_SYS(sys_umount , 2)
1575 MIPS_SYS(sys_ni_syscall , 0)
1576 MIPS_SYS(sys_ioctl , 3)
1577 MIPS_SYS(sys_fcntl , 3) /* 4055 */
1578 MIPS_SYS(sys_ni_syscall , 2)
1579 MIPS_SYS(sys_setpgid , 2)
1580 MIPS_SYS(sys_ni_syscall , 0)
1581 MIPS_SYS(sys_olduname , 1)
1582 MIPS_SYS(sys_umask , 1) /* 4060 */
1583 MIPS_SYS(sys_chroot , 1)
1584 MIPS_SYS(sys_ustat , 2)
1585 MIPS_SYS(sys_dup2 , 2)
1586 MIPS_SYS(sys_getppid , 0)
1587 MIPS_SYS(sys_getpgrp , 0) /* 4065 */
1588 MIPS_SYS(sys_setsid , 0)
1589 MIPS_SYS(sys_sigaction , 3)
1590 MIPS_SYS(sys_sgetmask , 0)
1591 MIPS_SYS(sys_ssetmask , 1)
1592 MIPS_SYS(sys_setreuid , 2) /* 4070 */
1593 MIPS_SYS(sys_setregid , 2)
1594 MIPS_SYS(sys_sigsuspend , 0)
1595 MIPS_SYS(sys_sigpending , 1)
1596 MIPS_SYS(sys_sethostname , 2)
1597 MIPS_SYS(sys_setrlimit , 2) /* 4075 */
1598 MIPS_SYS(sys_getrlimit , 2)
1599 MIPS_SYS(sys_getrusage , 2)
1600 MIPS_SYS(sys_gettimeofday, 2)
1601 MIPS_SYS(sys_settimeofday, 2)
1602 MIPS_SYS(sys_getgroups , 2) /* 4080 */
1603 MIPS_SYS(sys_setgroups , 2)
1604 MIPS_SYS(sys_ni_syscall , 0) /* old_select */
1605 MIPS_SYS(sys_symlink , 2)
1606 MIPS_SYS(sys_ni_syscall , 0) /* was sys_lstat */
1607 MIPS_SYS(sys_readlink , 3) /* 4085 */
1608 MIPS_SYS(sys_uselib , 1)
1609 MIPS_SYS(sys_swapon , 2)
1610 MIPS_SYS(sys_reboot , 3)
1611 MIPS_SYS(old_readdir , 3)
1612 MIPS_SYS(old_mmap , 6) /* 4090 */
1613 MIPS_SYS(sys_munmap , 2)
1614 MIPS_SYS(sys_truncate , 2)
1615 MIPS_SYS(sys_ftruncate , 2)
1616 MIPS_SYS(sys_fchmod , 2)
1617 MIPS_SYS(sys_fchown , 3) /* 4095 */
1618 MIPS_SYS(sys_getpriority , 2)
1619 MIPS_SYS(sys_setpriority , 3)
1620 MIPS_SYS(sys_ni_syscall , 0)
1621 MIPS_SYS(sys_statfs , 2)
1622 MIPS_SYS(sys_fstatfs , 2) /* 4100 */
1623 MIPS_SYS(sys_ni_syscall , 0) /* was ioperm(2) */
1624 MIPS_SYS(sys_socketcall , 2)
1625 MIPS_SYS(sys_syslog , 3)
1626 MIPS_SYS(sys_setitimer , 3)
1627 MIPS_SYS(sys_getitimer , 2) /* 4105 */
1628 MIPS_SYS(sys_newstat , 2)
1629 MIPS_SYS(sys_newlstat , 2)
1630 MIPS_SYS(sys_newfstat , 2)
1631 MIPS_SYS(sys_uname , 1)
1632 MIPS_SYS(sys_ni_syscall , 0) /* 4110 was iopl(2) */
1633 MIPS_SYS(sys_vhangup , 0)
1634 MIPS_SYS(sys_ni_syscall , 0) /* was sys_idle() */
1635 MIPS_SYS(sys_ni_syscall , 0) /* was sys_vm86 */
1636 MIPS_SYS(sys_wait4 , 4)
1637 MIPS_SYS(sys_swapoff , 1) /* 4115 */
1638 MIPS_SYS(sys_sysinfo , 1)
1639 MIPS_SYS(sys_ipc , 6)
1640 MIPS_SYS(sys_fsync , 1)
1641 MIPS_SYS(sys_sigreturn , 0)
Paul Brook18113962009-07-09 13:11:52 +01001642 MIPS_SYS(sys_clone , 6) /* 4120 */
bellard048f6b42005-11-26 18:47:20 +00001643 MIPS_SYS(sys_setdomainname, 2)
1644 MIPS_SYS(sys_newuname , 1)
1645 MIPS_SYS(sys_ni_syscall , 0) /* sys_modify_ldt */
1646 MIPS_SYS(sys_adjtimex , 1)
1647 MIPS_SYS(sys_mprotect , 3) /* 4125 */
1648 MIPS_SYS(sys_sigprocmask , 3)
1649 MIPS_SYS(sys_ni_syscall , 0) /* was create_module */
1650 MIPS_SYS(sys_init_module , 5)
1651 MIPS_SYS(sys_delete_module, 1)
1652 MIPS_SYS(sys_ni_syscall , 0) /* 4130 was get_kernel_syms */
1653 MIPS_SYS(sys_quotactl , 0)
1654 MIPS_SYS(sys_getpgid , 1)
1655 MIPS_SYS(sys_fchdir , 1)
1656 MIPS_SYS(sys_bdflush , 2)
1657 MIPS_SYS(sys_sysfs , 3) /* 4135 */
1658 MIPS_SYS(sys_personality , 1)
1659 MIPS_SYS(sys_ni_syscall , 0) /* for afs_syscall */
1660 MIPS_SYS(sys_setfsuid , 1)
1661 MIPS_SYS(sys_setfsgid , 1)
1662 MIPS_SYS(sys_llseek , 5) /* 4140 */
1663 MIPS_SYS(sys_getdents , 3)
1664 MIPS_SYS(sys_select , 5)
1665 MIPS_SYS(sys_flock , 2)
1666 MIPS_SYS(sys_msync , 3)
1667 MIPS_SYS(sys_readv , 3) /* 4145 */
1668 MIPS_SYS(sys_writev , 3)
1669 MIPS_SYS(sys_cacheflush , 3)
1670 MIPS_SYS(sys_cachectl , 3)
1671 MIPS_SYS(sys_sysmips , 4)
1672 MIPS_SYS(sys_ni_syscall , 0) /* 4150 */
1673 MIPS_SYS(sys_getsid , 1)
1674 MIPS_SYS(sys_fdatasync , 0)
1675 MIPS_SYS(sys_sysctl , 1)
1676 MIPS_SYS(sys_mlock , 2)
1677 MIPS_SYS(sys_munlock , 2) /* 4155 */
1678 MIPS_SYS(sys_mlockall , 1)
1679 MIPS_SYS(sys_munlockall , 0)
1680 MIPS_SYS(sys_sched_setparam, 2)
1681 MIPS_SYS(sys_sched_getparam, 2)
1682 MIPS_SYS(sys_sched_setscheduler, 3) /* 4160 */
1683 MIPS_SYS(sys_sched_getscheduler, 1)
1684 MIPS_SYS(sys_sched_yield , 0)
1685 MIPS_SYS(sys_sched_get_priority_max, 1)
1686 MIPS_SYS(sys_sched_get_priority_min, 1)
1687 MIPS_SYS(sys_sched_rr_get_interval, 2) /* 4165 */
1688 MIPS_SYS(sys_nanosleep, 2)
1689 MIPS_SYS(sys_mremap , 4)
1690 MIPS_SYS(sys_accept , 3)
1691 MIPS_SYS(sys_bind , 3)
1692 MIPS_SYS(sys_connect , 3) /* 4170 */
1693 MIPS_SYS(sys_getpeername , 3)
1694 MIPS_SYS(sys_getsockname , 3)
1695 MIPS_SYS(sys_getsockopt , 5)
1696 MIPS_SYS(sys_listen , 2)
1697 MIPS_SYS(sys_recv , 4) /* 4175 */
1698 MIPS_SYS(sys_recvfrom , 6)
1699 MIPS_SYS(sys_recvmsg , 3)
1700 MIPS_SYS(sys_send , 4)
1701 MIPS_SYS(sys_sendmsg , 3)
1702 MIPS_SYS(sys_sendto , 6) /* 4180 */
1703 MIPS_SYS(sys_setsockopt , 5)
1704 MIPS_SYS(sys_shutdown , 2)
1705 MIPS_SYS(sys_socket , 3)
1706 MIPS_SYS(sys_socketpair , 4)
1707 MIPS_SYS(sys_setresuid , 3) /* 4185 */
1708 MIPS_SYS(sys_getresuid , 3)
1709 MIPS_SYS(sys_ni_syscall , 0) /* was sys_query_module */
1710 MIPS_SYS(sys_poll , 3)
1711 MIPS_SYS(sys_nfsservctl , 3)
1712 MIPS_SYS(sys_setresgid , 3) /* 4190 */
1713 MIPS_SYS(sys_getresgid , 3)
1714 MIPS_SYS(sys_prctl , 5)
1715 MIPS_SYS(sys_rt_sigreturn, 0)
1716 MIPS_SYS(sys_rt_sigaction, 4)
1717 MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */
1718 MIPS_SYS(sys_rt_sigpending, 2)
1719 MIPS_SYS(sys_rt_sigtimedwait, 4)
1720 MIPS_SYS(sys_rt_sigqueueinfo, 3)
1721 MIPS_SYS(sys_rt_sigsuspend, 0)
1722 MIPS_SYS(sys_pread64 , 6) /* 4200 */
1723 MIPS_SYS(sys_pwrite64 , 6)
1724 MIPS_SYS(sys_chown , 3)
1725 MIPS_SYS(sys_getcwd , 2)
1726 MIPS_SYS(sys_capget , 2)
1727 MIPS_SYS(sys_capset , 2) /* 4205 */
1728 MIPS_SYS(sys_sigaltstack , 0)
1729 MIPS_SYS(sys_sendfile , 4)
1730 MIPS_SYS(sys_ni_syscall , 0)
1731 MIPS_SYS(sys_ni_syscall , 0)
1732 MIPS_SYS(sys_mmap2 , 6) /* 4210 */
1733 MIPS_SYS(sys_truncate64 , 4)
1734 MIPS_SYS(sys_ftruncate64 , 4)
1735 MIPS_SYS(sys_stat64 , 2)
1736 MIPS_SYS(sys_lstat64 , 2)
1737 MIPS_SYS(sys_fstat64 , 2) /* 4215 */
1738 MIPS_SYS(sys_pivot_root , 2)
1739 MIPS_SYS(sys_mincore , 3)
1740 MIPS_SYS(sys_madvise , 3)
1741 MIPS_SYS(sys_getdents64 , 3)
1742 MIPS_SYS(sys_fcntl64 , 3) /* 4220 */
1743 MIPS_SYS(sys_ni_syscall , 0)
1744 MIPS_SYS(sys_gettid , 0)
1745 MIPS_SYS(sys_readahead , 5)
1746 MIPS_SYS(sys_setxattr , 5)
1747 MIPS_SYS(sys_lsetxattr , 5) /* 4225 */
1748 MIPS_SYS(sys_fsetxattr , 5)
1749 MIPS_SYS(sys_getxattr , 4)
1750 MIPS_SYS(sys_lgetxattr , 4)
1751 MIPS_SYS(sys_fgetxattr , 4)
1752 MIPS_SYS(sys_listxattr , 3) /* 4230 */
1753 MIPS_SYS(sys_llistxattr , 3)
1754 MIPS_SYS(sys_flistxattr , 3)
1755 MIPS_SYS(sys_removexattr , 2)
1756 MIPS_SYS(sys_lremovexattr, 2)
1757 MIPS_SYS(sys_fremovexattr, 2) /* 4235 */
1758 MIPS_SYS(sys_tkill , 2)
1759 MIPS_SYS(sys_sendfile64 , 5)
1760 MIPS_SYS(sys_futex , 2)
1761 MIPS_SYS(sys_sched_setaffinity, 3)
1762 MIPS_SYS(sys_sched_getaffinity, 3) /* 4240 */
1763 MIPS_SYS(sys_io_setup , 2)
1764 MIPS_SYS(sys_io_destroy , 1)
1765 MIPS_SYS(sys_io_getevents, 5)
1766 MIPS_SYS(sys_io_submit , 3)
1767 MIPS_SYS(sys_io_cancel , 3) /* 4245 */
1768 MIPS_SYS(sys_exit_group , 1)
1769 MIPS_SYS(sys_lookup_dcookie, 3)
1770 MIPS_SYS(sys_epoll_create, 1)
1771 MIPS_SYS(sys_epoll_ctl , 4)
1772 MIPS_SYS(sys_epoll_wait , 3) /* 4250 */
1773 MIPS_SYS(sys_remap_file_pages, 5)
1774 MIPS_SYS(sys_set_tid_address, 1)
1775 MIPS_SYS(sys_restart_syscall, 0)
1776 MIPS_SYS(sys_fadvise64_64, 7)
1777 MIPS_SYS(sys_statfs64 , 3) /* 4255 */
1778 MIPS_SYS(sys_fstatfs64 , 2)
1779 MIPS_SYS(sys_timer_create, 3)
1780 MIPS_SYS(sys_timer_settime, 4)
1781 MIPS_SYS(sys_timer_gettime, 2)
1782 MIPS_SYS(sys_timer_getoverrun, 1) /* 4260 */
1783 MIPS_SYS(sys_timer_delete, 1)
1784 MIPS_SYS(sys_clock_settime, 2)
1785 MIPS_SYS(sys_clock_gettime, 2)
1786 MIPS_SYS(sys_clock_getres, 2)
1787 MIPS_SYS(sys_clock_nanosleep, 4) /* 4265 */
1788 MIPS_SYS(sys_tgkill , 3)
1789 MIPS_SYS(sys_utimes , 2)
1790 MIPS_SYS(sys_mbind , 4)
1791 MIPS_SYS(sys_ni_syscall , 0) /* sys_get_mempolicy */
1792 MIPS_SYS(sys_ni_syscall , 0) /* 4270 sys_set_mempolicy */
1793 MIPS_SYS(sys_mq_open , 4)
1794 MIPS_SYS(sys_mq_unlink , 1)
1795 MIPS_SYS(sys_mq_timedsend, 5)
1796 MIPS_SYS(sys_mq_timedreceive, 5)
1797 MIPS_SYS(sys_mq_notify , 2) /* 4275 */
1798 MIPS_SYS(sys_mq_getsetattr, 3)
1799 MIPS_SYS(sys_ni_syscall , 0) /* sys_vserver */
1800 MIPS_SYS(sys_waitid , 4)
1801 MIPS_SYS(sys_ni_syscall , 0) /* available, was setaltroot */
1802 MIPS_SYS(sys_add_key , 5)
ths388bb212007-05-13 13:58:00 +00001803 MIPS_SYS(sys_request_key, 4)
bellard048f6b42005-11-26 18:47:20 +00001804 MIPS_SYS(sys_keyctl , 5)
ths6f5b89a2007-03-02 20:48:00 +00001805 MIPS_SYS(sys_set_thread_area, 1)
ths388bb212007-05-13 13:58:00 +00001806 MIPS_SYS(sys_inotify_init, 0)
1807 MIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */
1808 MIPS_SYS(sys_inotify_rm_watch, 2)
1809 MIPS_SYS(sys_migrate_pages, 4)
1810 MIPS_SYS(sys_openat, 4)
1811 MIPS_SYS(sys_mkdirat, 3)
1812 MIPS_SYS(sys_mknodat, 4) /* 4290 */
1813 MIPS_SYS(sys_fchownat, 5)
1814 MIPS_SYS(sys_futimesat, 3)
1815 MIPS_SYS(sys_fstatat64, 4)
1816 MIPS_SYS(sys_unlinkat, 3)
1817 MIPS_SYS(sys_renameat, 4) /* 4295 */
1818 MIPS_SYS(sys_linkat, 5)
1819 MIPS_SYS(sys_symlinkat, 3)
1820 MIPS_SYS(sys_readlinkat, 4)
1821 MIPS_SYS(sys_fchmodat, 3)
1822 MIPS_SYS(sys_faccessat, 3) /* 4300 */
1823 MIPS_SYS(sys_pselect6, 6)
1824 MIPS_SYS(sys_ppoll, 5)
1825 MIPS_SYS(sys_unshare, 1)
1826 MIPS_SYS(sys_splice, 4)
1827 MIPS_SYS(sys_sync_file_range, 7) /* 4305 */
1828 MIPS_SYS(sys_tee, 4)
1829 MIPS_SYS(sys_vmsplice, 4)
1830 MIPS_SYS(sys_move_pages, 6)
1831 MIPS_SYS(sys_set_robust_list, 2)
1832 MIPS_SYS(sys_get_robust_list, 3) /* 4310 */
1833 MIPS_SYS(sys_kexec_load, 4)
1834 MIPS_SYS(sys_getcpu, 3)
1835 MIPS_SYS(sys_epoll_pwait, 6)
1836 MIPS_SYS(sys_ioprio_set, 3)
1837 MIPS_SYS(sys_ioprio_get, 2)
bellard048f6b42005-11-26 18:47:20 +00001838};
1839
1840#undef MIPS_SYS
1841
Paul Brook590bc602009-07-09 17:45:17 +01001842static int do_store_exclusive(CPUMIPSState *env)
1843{
1844 target_ulong addr;
1845 target_ulong page_addr;
1846 target_ulong val;
1847 int flags;
1848 int segv = 0;
1849 int reg;
1850 int d;
1851
1852 addr = env->CP0_LLAddr;
1853 page_addr = addr & TARGET_PAGE_MASK;
1854 start_exclusive();
1855 mmap_lock();
1856 flags = page_get_flags(page_addr);
1857 if ((flags & PAGE_READ) == 0) {
1858 segv = 1;
1859 } else {
1860 reg = env->llreg & 0x1f;
1861 d = (env->llreg & 0x20) != 0;
1862 if (d) {
1863 segv = get_user_s64(val, addr);
1864 } else {
1865 segv = get_user_s32(val, addr);
1866 }
1867 if (!segv) {
1868 if (val != env->llval) {
1869 env->active_tc.gpr[reg] = 0;
1870 } else {
1871 if (d) {
1872 segv = put_user_u64(env->llnewval, addr);
1873 } else {
1874 segv = put_user_u32(env->llnewval, addr);
1875 }
1876 if (!segv) {
1877 env->active_tc.gpr[reg] = 1;
1878 }
1879 }
1880 }
1881 }
1882 env->CP0_LLAddr = -1;
1883 if (!segv) {
1884 env->active_tc.PC += 4;
1885 }
1886 mmap_unlock();
1887 end_exclusive();
1888 return segv;
1889}
1890
bellard048f6b42005-11-26 18:47:20 +00001891void cpu_loop(CPUMIPSState *env)
1892{
Anthony Liguoric227f092009-10-01 16:12:16 -05001893 target_siginfo_t info;
ths388bb212007-05-13 13:58:00 +00001894 int trapnr, ret;
bellard048f6b42005-11-26 18:47:20 +00001895 unsigned int syscall_num;
bellard048f6b42005-11-26 18:47:20 +00001896
1897 for(;;) {
Paul Brook590bc602009-07-09 17:45:17 +01001898 cpu_exec_start(env);
bellard048f6b42005-11-26 18:47:20 +00001899 trapnr = cpu_mips_exec(env);
Paul Brook590bc602009-07-09 17:45:17 +01001900 cpu_exec_end(env);
bellard048f6b42005-11-26 18:47:20 +00001901 switch(trapnr) {
1902 case EXCP_SYSCALL:
thsb5dc7732008-06-27 10:02:35 +00001903 syscall_num = env->active_tc.gpr[2] - 4000;
1904 env->active_tc.PC += 4;
ths388bb212007-05-13 13:58:00 +00001905 if (syscall_num >= sizeof(mips_syscall_args)) {
1906 ret = -ENOSYS;
1907 } else {
1908 int nb_args;
blueswir1992f48a2007-10-14 16:27:31 +00001909 abi_ulong sp_reg;
1910 abi_ulong arg5 = 0, arg6 = 0, arg7 = 0, arg8 = 0;
ths388bb212007-05-13 13:58:00 +00001911
1912 nb_args = mips_syscall_args[syscall_num];
thsb5dc7732008-06-27 10:02:35 +00001913 sp_reg = env->active_tc.gpr[29];
ths388bb212007-05-13 13:58:00 +00001914 switch (nb_args) {
1915 /* these arguments are taken from the stack */
bellard2f619692007-11-16 10:46:05 +00001916 /* FIXME - what to do if get_user() fails? */
1917 case 8: get_user_ual(arg8, sp_reg + 28);
1918 case 7: get_user_ual(arg7, sp_reg + 24);
1919 case 6: get_user_ual(arg6, sp_reg + 20);
1920 case 5: get_user_ual(arg5, sp_reg + 16);
ths388bb212007-05-13 13:58:00 +00001921 default:
1922 break;
bellard048f6b42005-11-26 18:47:20 +00001923 }
thsb5dc7732008-06-27 10:02:35 +00001924 ret = do_syscall(env, env->active_tc.gpr[2],
1925 env->active_tc.gpr[4],
1926 env->active_tc.gpr[5],
1927 env->active_tc.gpr[6],
1928 env->active_tc.gpr[7],
ths388bb212007-05-13 13:58:00 +00001929 arg5, arg6/*, arg7, arg8*/);
bellard048f6b42005-11-26 18:47:20 +00001930 }
pbrook0b1bcb02009-04-21 01:41:10 +00001931 if (ret == -TARGET_QEMU_ESIGRETURN) {
1932 /* Returning from a successful sigreturn syscall.
1933 Avoid clobbering register state. */
1934 break;
1935 }
ths388bb212007-05-13 13:58:00 +00001936 if ((unsigned int)ret >= (unsigned int)(-1133)) {
thsb5dc7732008-06-27 10:02:35 +00001937 env->active_tc.gpr[7] = 1; /* error flag */
ths388bb212007-05-13 13:58:00 +00001938 ret = -ret;
1939 } else {
thsb5dc7732008-06-27 10:02:35 +00001940 env->active_tc.gpr[7] = 0; /* error flag */
ths388bb212007-05-13 13:58:00 +00001941 }
thsb5dc7732008-06-27 10:02:35 +00001942 env->active_tc.gpr[2] = ret;
bellard048f6b42005-11-26 18:47:20 +00001943 break;
thsca7c2b12006-12-10 22:08:10 +00001944 case EXCP_TLBL:
1945 case EXCP_TLBS:
pbrooke4474232009-04-21 01:03:10 +00001946 info.si_signo = TARGET_SIGSEGV;
1947 info.si_errno = 0;
1948 /* XXX: check env->error_code */
1949 info.si_code = TARGET_SEGV_MAPERR;
1950 info._sifields._sigfault._addr = env->CP0_BadVAddr;
1951 queue_signal(env, info.si_signo, &info);
1952 break;
bellard6900e842005-12-05 21:04:24 +00001953 case EXCP_CpU:
bellard048f6b42005-11-26 18:47:20 +00001954 case EXCP_RI:
bellardbc1ad2d2006-06-14 13:37:55 +00001955 info.si_signo = TARGET_SIGILL;
1956 info.si_errno = 0;
1957 info.si_code = 0;
pbrook624f7972008-05-31 16:11:38 +00001958 queue_signal(env, info.si_signo, &info);
bellard048f6b42005-11-26 18:47:20 +00001959 break;
bellard106ec872006-06-27 21:08:10 +00001960 case EXCP_INTERRUPT:
1961 /* just indicate that signals should be handled asap */
1962 break;
pbrookd08b2a22006-11-04 16:46:29 +00001963 case EXCP_DEBUG:
1964 {
1965 int sig;
1966
1967 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1968 if (sig)
1969 {
1970 info.si_signo = sig;
1971 info.si_errno = 0;
1972 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00001973 queue_signal(env, info.si_signo, &info);
pbrookd08b2a22006-11-04 16:46:29 +00001974 }
1975 }
1976 break;
Paul Brook590bc602009-07-09 17:45:17 +01001977 case EXCP_SC:
1978 if (do_store_exclusive(env)) {
1979 info.si_signo = TARGET_SIGSEGV;
1980 info.si_errno = 0;
1981 info.si_code = TARGET_SEGV_MAPERR;
1982 info._sifields._sigfault._addr = env->active_tc.PC;
1983 queue_signal(env, info.si_signo, &info);
1984 }
1985 break;
bellard048f6b42005-11-26 18:47:20 +00001986 default:
1987 // error:
ths5fafdf22007-09-16 21:08:06 +00001988 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
bellard048f6b42005-11-26 18:47:20 +00001989 trapnr);
1990 cpu_dump_state(env, stderr, fprintf, 0);
1991 abort();
1992 }
1993 process_pending_signals(env);
1994 }
1995}
1996#endif
1997
bellardfdf9b3e2006-04-27 21:07:38 +00001998#ifdef TARGET_SH4
1999void cpu_loop (CPUState *env)
2000{
2001 int trapnr, ret;
Anthony Liguoric227f092009-10-01 16:12:16 -05002002 target_siginfo_t info;
ths3b46e622007-09-17 08:09:54 +00002003
bellardfdf9b3e2006-04-27 21:07:38 +00002004 while (1) {
2005 trapnr = cpu_sh4_exec (env);
ths3b46e622007-09-17 08:09:54 +00002006
bellardfdf9b3e2006-04-27 21:07:38 +00002007 switch (trapnr) {
2008 case 0x160:
aurel320b6d3ae2008-09-15 07:43:43 +00002009 env->pc += 2;
ths5fafdf22007-09-16 21:08:06 +00002010 ret = do_syscall(env,
2011 env->gregs[3],
2012 env->gregs[4],
2013 env->gregs[5],
2014 env->gregs[6],
2015 env->gregs[7],
2016 env->gregs[0],
thsfca743f2007-11-20 15:22:44 +00002017 env->gregs[1]);
pbrook9c2a9ea2006-06-18 19:12:54 +00002018 env->gregs[0] = ret;
bellardfdf9b3e2006-04-27 21:07:38 +00002019 break;
thsc3b5bc82007-12-02 06:31:25 +00002020 case EXCP_INTERRUPT:
2021 /* just indicate that signals should be handled asap */
2022 break;
pbrook355fb232006-06-17 19:58:25 +00002023 case EXCP_DEBUG:
2024 {
2025 int sig;
2026
2027 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2028 if (sig)
2029 {
2030 info.si_signo = sig;
2031 info.si_errno = 0;
2032 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00002033 queue_signal(env, info.si_signo, &info);
pbrook355fb232006-06-17 19:58:25 +00002034 }
2035 }
2036 break;
thsc3b5bc82007-12-02 06:31:25 +00002037 case 0xa0:
2038 case 0xc0:
2039 info.si_signo = SIGSEGV;
2040 info.si_errno = 0;
2041 info.si_code = TARGET_SEGV_MAPERR;
2042 info._sifields._sigfault._addr = env->tea;
pbrook624f7972008-05-31 16:11:38 +00002043 queue_signal(env, info.si_signo, &info);
thsc3b5bc82007-12-02 06:31:25 +00002044 break;
2045
bellardfdf9b3e2006-04-27 21:07:38 +00002046 default:
2047 printf ("Unhandled trap: 0x%x\n", trapnr);
2048 cpu_dump_state(env, stderr, fprintf, 0);
2049 exit (1);
2050 }
2051 process_pending_signals (env);
2052 }
2053}
2054#endif
2055
ths48733d12007-10-08 13:36:46 +00002056#ifdef TARGET_CRIS
2057void cpu_loop (CPUState *env)
2058{
2059 int trapnr, ret;
Anthony Liguoric227f092009-10-01 16:12:16 -05002060 target_siginfo_t info;
ths48733d12007-10-08 13:36:46 +00002061
2062 while (1) {
2063 trapnr = cpu_cris_exec (env);
2064 switch (trapnr) {
2065 case 0xaa:
2066 {
2067 info.si_signo = SIGSEGV;
2068 info.si_errno = 0;
2069 /* XXX: check env->error_code */
2070 info.si_code = TARGET_SEGV_MAPERR;
edgar_igle00c1e72008-05-27 21:12:09 +00002071 info._sifields._sigfault._addr = env->pregs[PR_EDA];
pbrook624f7972008-05-31 16:11:38 +00002072 queue_signal(env, info.si_signo, &info);
ths48733d12007-10-08 13:36:46 +00002073 }
2074 break;
edgar_iglb6d3abd2008-02-28 11:29:27 +00002075 case EXCP_INTERRUPT:
2076 /* just indicate that signals should be handled asap */
2077 break;
ths48733d12007-10-08 13:36:46 +00002078 case EXCP_BREAK:
2079 ret = do_syscall(env,
2080 env->regs[9],
2081 env->regs[10],
2082 env->regs[11],
2083 env->regs[12],
2084 env->regs[13],
2085 env->pregs[7],
2086 env->pregs[11]);
2087 env->regs[10] = ret;
ths48733d12007-10-08 13:36:46 +00002088 break;
2089 case EXCP_DEBUG:
2090 {
2091 int sig;
2092
2093 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2094 if (sig)
2095 {
2096 info.si_signo = sig;
2097 info.si_errno = 0;
2098 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00002099 queue_signal(env, info.si_signo, &info);
ths48733d12007-10-08 13:36:46 +00002100 }
2101 }
2102 break;
2103 default:
2104 printf ("Unhandled trap: 0x%x\n", trapnr);
2105 cpu_dump_state(env, stderr, fprintf, 0);
2106 exit (1);
2107 }
2108 process_pending_signals (env);
2109 }
2110}
2111#endif
2112
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002113#ifdef TARGET_MICROBLAZE
2114void cpu_loop (CPUState *env)
2115{
2116 int trapnr, ret;
Anthony Liguoric227f092009-10-01 16:12:16 -05002117 target_siginfo_t info;
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002118
2119 while (1) {
2120 trapnr = cpu_mb_exec (env);
2121 switch (trapnr) {
2122 case 0xaa:
2123 {
2124 info.si_signo = SIGSEGV;
2125 info.si_errno = 0;
2126 /* XXX: check env->error_code */
2127 info.si_code = TARGET_SEGV_MAPERR;
2128 info._sifields._sigfault._addr = 0;
2129 queue_signal(env, info.si_signo, &info);
2130 }
2131 break;
2132 case EXCP_INTERRUPT:
2133 /* just indicate that signals should be handled asap */
2134 break;
2135 case EXCP_BREAK:
2136 /* Return address is 4 bytes after the call. */
2137 env->regs[14] += 4;
2138 ret = do_syscall(env,
2139 env->regs[12],
2140 env->regs[5],
2141 env->regs[6],
2142 env->regs[7],
2143 env->regs[8],
2144 env->regs[9],
2145 env->regs[10]);
2146 env->regs[3] = ret;
2147 env->sregs[SR_PC] = env->regs[14];
2148 break;
2149 case EXCP_DEBUG:
2150 {
2151 int sig;
2152
2153 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2154 if (sig)
2155 {
2156 info.si_signo = sig;
2157 info.si_errno = 0;
2158 info.si_code = TARGET_TRAP_BRKPT;
2159 queue_signal(env, info.si_signo, &info);
2160 }
2161 }
2162 break;
2163 default:
2164 printf ("Unhandled trap: 0x%x\n", trapnr);
2165 cpu_dump_state(env, stderr, fprintf, 0);
2166 exit (1);
2167 }
2168 process_pending_signals (env);
2169 }
2170}
2171#endif
2172
pbrooke6e59062006-10-22 00:18:54 +00002173#ifdef TARGET_M68K
2174
2175void cpu_loop(CPUM68KState *env)
2176{
2177 int trapnr;
2178 unsigned int n;
Anthony Liguoric227f092009-10-01 16:12:16 -05002179 target_siginfo_t info;
pbrooke6e59062006-10-22 00:18:54 +00002180 TaskState *ts = env->opaque;
ths3b46e622007-09-17 08:09:54 +00002181
pbrooke6e59062006-10-22 00:18:54 +00002182 for(;;) {
2183 trapnr = cpu_m68k_exec(env);
2184 switch(trapnr) {
2185 case EXCP_ILLEGAL:
2186 {
2187 if (ts->sim_syscalls) {
2188 uint16_t nr;
2189 nr = lduw(env->pc + 2);
2190 env->pc += 4;
2191 do_m68k_simcall(env, nr);
2192 } else {
2193 goto do_sigill;
2194 }
2195 }
2196 break;
pbrooka87295e2007-05-26 15:09:38 +00002197 case EXCP_HALT_INSN:
pbrooke6e59062006-10-22 00:18:54 +00002198 /* Semihosing syscall. */
pbrooka87295e2007-05-26 15:09:38 +00002199 env->pc += 4;
pbrooke6e59062006-10-22 00:18:54 +00002200 do_m68k_semihosting(env, env->dregs[0]);
2201 break;
2202 case EXCP_LINEA:
2203 case EXCP_LINEF:
2204 case EXCP_UNSUPPORTED:
2205 do_sigill:
2206 info.si_signo = SIGILL;
2207 info.si_errno = 0;
2208 info.si_code = TARGET_ILL_ILLOPN;
2209 info._sifields._sigfault._addr = env->pc;
pbrook624f7972008-05-31 16:11:38 +00002210 queue_signal(env, info.si_signo, &info);
pbrooke6e59062006-10-22 00:18:54 +00002211 break;
2212 case EXCP_TRAP0:
2213 {
2214 ts->sim_syscalls = 0;
2215 n = env->dregs[0];
2216 env->pc += 2;
ths5fafdf22007-09-16 21:08:06 +00002217 env->dregs[0] = do_syscall(env,
2218 n,
pbrooke6e59062006-10-22 00:18:54 +00002219 env->dregs[1],
2220 env->dregs[2],
2221 env->dregs[3],
2222 env->dregs[4],
2223 env->dregs[5],
pbrookbb7ec042008-03-25 22:28:25 +00002224 env->aregs[0]);
pbrooke6e59062006-10-22 00:18:54 +00002225 }
2226 break;
2227 case EXCP_INTERRUPT:
2228 /* just indicate that signals should be handled asap */
2229 break;
2230 case EXCP_ACCESS:
2231 {
2232 info.si_signo = SIGSEGV;
2233 info.si_errno = 0;
2234 /* XXX: check env->error_code */
2235 info.si_code = TARGET_SEGV_MAPERR;
2236 info._sifields._sigfault._addr = env->mmu.ar;
pbrook624f7972008-05-31 16:11:38 +00002237 queue_signal(env, info.si_signo, &info);
pbrooke6e59062006-10-22 00:18:54 +00002238 }
2239 break;
2240 case EXCP_DEBUG:
2241 {
2242 int sig;
2243
2244 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2245 if (sig)
2246 {
2247 info.si_signo = sig;
2248 info.si_errno = 0;
2249 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00002250 queue_signal(env, info.si_signo, &info);
pbrooke6e59062006-10-22 00:18:54 +00002251 }
2252 }
2253 break;
2254 default:
ths5fafdf22007-09-16 21:08:06 +00002255 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
pbrooke6e59062006-10-22 00:18:54 +00002256 trapnr);
2257 cpu_dump_state(env, stderr, fprintf, 0);
2258 abort();
2259 }
2260 process_pending_signals(env);
2261 }
2262}
2263#endif /* TARGET_M68K */
2264
j_mayer7a3148a2007-04-05 07:13:51 +00002265#ifdef TARGET_ALPHA
2266void cpu_loop (CPUState *env)
2267{
j_mayere96efcf2007-04-14 12:17:09 +00002268 int trapnr;
Anthony Liguoric227f092009-10-01 16:12:16 -05002269 target_siginfo_t info;
ths3b46e622007-09-17 08:09:54 +00002270
j_mayer7a3148a2007-04-05 07:13:51 +00002271 while (1) {
2272 trapnr = cpu_alpha_exec (env);
ths3b46e622007-09-17 08:09:54 +00002273
j_mayer7a3148a2007-04-05 07:13:51 +00002274 switch (trapnr) {
2275 case EXCP_RESET:
2276 fprintf(stderr, "Reset requested. Exit\n");
2277 exit(1);
2278 break;
2279 case EXCP_MCHK:
2280 fprintf(stderr, "Machine check exception. Exit\n");
2281 exit(1);
2282 break;
2283 case EXCP_ARITH:
2284 fprintf(stderr, "Arithmetic trap.\n");
2285 exit(1);
2286 break;
2287 case EXCP_HW_INTERRUPT:
ths5fafdf22007-09-16 21:08:06 +00002288 fprintf(stderr, "External interrupt. Exit\n");
j_mayer7a3148a2007-04-05 07:13:51 +00002289 exit(1);
2290 break;
2291 case EXCP_DFAULT:
2292 fprintf(stderr, "MMU data fault\n");
2293 exit(1);
2294 break;
2295 case EXCP_DTB_MISS_PAL:
2296 fprintf(stderr, "MMU data TLB miss in PALcode\n");
2297 exit(1);
2298 break;
2299 case EXCP_ITB_MISS:
2300 fprintf(stderr, "MMU instruction TLB miss\n");
2301 exit(1);
2302 break;
2303 case EXCP_ITB_ACV:
2304 fprintf(stderr, "MMU instruction access violation\n");
2305 exit(1);
2306 break;
2307 case EXCP_DTB_MISS_NATIVE:
2308 fprintf(stderr, "MMU data TLB miss\n");
2309 exit(1);
2310 break;
2311 case EXCP_UNALIGN:
2312 fprintf(stderr, "Unaligned access\n");
2313 exit(1);
2314 break;
2315 case EXCP_OPCDEC:
2316 fprintf(stderr, "Invalid instruction\n");
2317 exit(1);
2318 break;
2319 case EXCP_FEN:
2320 fprintf(stderr, "Floating-point not allowed\n");
2321 exit(1);
2322 break;
2323 case EXCP_CALL_PAL ... (EXCP_CALL_PALP - 1):
j_mayer7a3148a2007-04-05 07:13:51 +00002324 call_pal(env, (trapnr >> 6) | 0x80);
2325 break;
2326 case EXCP_CALL_PALP ... (EXCP_CALL_PALE - 1):
blueswir17f75ffd2007-05-27 19:39:27 +00002327 fprintf(stderr, "Privileged call to PALcode\n");
j_mayer7a3148a2007-04-05 07:13:51 +00002328 exit(1);
2329 break;
2330 case EXCP_DEBUG:
2331 {
2332 int sig;
2333
2334 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2335 if (sig)
2336 {
2337 info.si_signo = sig;
2338 info.si_errno = 0;
2339 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00002340 queue_signal(env, info.si_signo, &info);
j_mayer7a3148a2007-04-05 07:13:51 +00002341 }
2342 }
2343 break;
2344 default:
2345 printf ("Unhandled trap: 0x%x\n", trapnr);
2346 cpu_dump_state(env, stderr, fprintf, 0);
2347 exit (1);
2348 }
2349 process_pending_signals (env);
2350 }
2351}
2352#endif /* TARGET_ALPHA */
2353
blueswir18fcd3692008-08-17 20:26:25 +00002354static void usage(void)
bellard31e31b82003-02-18 22:55:36 +00002355{
pbrook4a19f1e2009-04-07 23:17:49 +00002356 printf("qemu-" TARGET_ARCH " version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n"
bellard68d0f702008-01-06 17:21:48 +00002357 "usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n"
bellardb346ff42003-06-15 20:05:50 +00002358 "Linux CPU emulator (compiled for %s emulation)\n"
bellardd691f662003-03-24 21:58:34 +00002359 "\n"
bellard68d0f702008-01-06 17:21:48 +00002360 "Standard options:\n"
thsb12b6a12007-06-17 16:38:39 +00002361 "-h print this help\n"
2362 "-g port wait gdb connection to port\n"
2363 "-L path set the elf interpreter prefix (default=%s)\n"
2364 "-s size set the stack size in bytes (default=%ld)\n"
2365 "-cpu model select CPU (-cpu ? for list)\n"
2366 "-drop-ld-preload drop LD_PRELOAD for target process\n"
aurel3204a6dfe2009-01-30 19:59:17 +00002367 "-E var=value sets/modifies targets environment variable(s)\n"
2368 "-U var unsets targets environment variable(s)\n"
aurel327d8cec92009-04-15 16:11:52 +00002369 "-0 argv0 forces target process argv[0] to be argv0\n"
Paul Brook379f6692009-07-17 12:48:08 +01002370#if defined(CONFIG_USE_GUEST_BASE)
2371 "-B address set guest_base address to address\n"
2372#endif
bellard54936002003-05-13 00:25:15 +00002373 "\n"
bellard68d0f702008-01-06 17:21:48 +00002374 "Debug options:\n"
bellard6f1f31c2004-04-25 18:00:45 +00002375 "-d options activate log (logfile=%s)\n"
bellardb6741952007-11-11 14:46:06 +00002376 "-p pagesize set the host page size to 'pagesize'\n"
aurel321b530a62009-04-05 20:08:59 +00002377 "-singlestep always run in singlestep mode\n"
balrogb01bcae2007-12-16 13:05:59 +00002378 "-strace log system calls\n"
2379 "\n"
bellard68d0f702008-01-06 17:21:48 +00002380 "Environment variables:\n"
balrogb01bcae2007-12-16 13:05:59 +00002381 "QEMU_STRACE Print system calls and arguments similar to the\n"
2382 " 'strace' program. Enable by setting to any value.\n"
aurel3204a6dfe2009-01-30 19:59:17 +00002383 "You can use -E and -U options to set/unset environment variables\n"
2384 "for target process. It is possible to provide several variables\n"
2385 "by repeating the option. For example:\n"
2386 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
2387 "Note that if you provide several changes to single variable\n"
2388 "last change will stay in effect.\n"
balrogb01bcae2007-12-16 13:05:59 +00002389 ,
bellardb346ff42003-06-15 20:05:50 +00002390 TARGET_ARCH,
ths5fafdf22007-09-16 21:08:06 +00002391 interp_prefix,
bellard54936002003-05-13 00:25:15 +00002392 x86_stack_size,
2393 DEBUG_LOGFILE);
blueswir12d18e632009-02-28 20:14:00 +00002394 exit(1);
bellard31e31b82003-02-18 22:55:36 +00002395}
2396
pbrookd5975362008-06-07 20:50:51 +00002397THREAD CPUState *thread_env;
bellard59faf6d2003-06-25 16:18:50 +00002398
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03002399void task_settid(TaskState *ts)
2400{
2401 if (ts->ts_tid == 0) {
Juan Quintela2f7bb872009-07-27 16:13:24 +02002402#ifdef CONFIG_USE_NPTL
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03002403 ts->ts_tid = (pid_t)syscall(SYS_gettid);
2404#else
2405 /* when no threads are used, tid becomes pid */
2406 ts->ts_tid = getpid();
2407#endif
2408 }
2409}
2410
2411void stop_all_tasks(void)
2412{
2413 /*
2414 * We trust that when using NPTL, start_exclusive()
2415 * handles thread stopping correctly.
2416 */
2417 start_exclusive();
2418}
2419
pbrookc3a92832008-06-09 14:02:50 +00002420/* Assumes contents are already zeroed. */
pbrook624f7972008-05-31 16:11:38 +00002421void init_task_state(TaskState *ts)
2422{
2423 int i;
2424
pbrook624f7972008-05-31 16:11:38 +00002425 ts->used = 1;
2426 ts->first_free = ts->sigqueue_table;
2427 for (i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++) {
2428 ts->sigqueue_table[i].next = &ts->sigqueue_table[i + 1];
2429 }
2430 ts->sigqueue_table[i].next = NULL;
2431}
2432
malc902b3d52008-12-10 19:18:40 +00002433int main(int argc, char **argv, char **envp)
bellard31e31b82003-02-18 22:55:36 +00002434{
2435 const char *filename;
j_mayerb1f9be32007-03-19 08:08:28 +00002436 const char *cpu_model;
bellard01ffc752003-02-18 23:00:51 +00002437 struct target_pt_regs regs1, *regs = &regs1;
bellard31e31b82003-02-18 22:55:36 +00002438 struct image_info info1, *info = &info1;
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03002439 struct linux_binprm bprm;
bellard851e67a2003-03-29 16:53:14 +00002440 TaskState ts1, *ts = &ts1;
bellardb346ff42003-06-15 20:05:50 +00002441 CPUState *env;
bellard586314f2003-03-03 15:02:29 +00002442 int optind;
bellardd691f662003-03-24 21:58:34 +00002443 const char *r;
bellard74c33be2005-10-30 21:01:05 +00002444 int gdbstub_port = 0;
aurel3204a6dfe2009-01-30 19:59:17 +00002445 char **target_environ, **wrk;
aurel327d8cec92009-04-15 16:11:52 +00002446 char **target_argv;
2447 int target_argc;
aurel3204a6dfe2009-01-30 19:59:17 +00002448 envlist_t *envlist = NULL;
aurel327d8cec92009-04-15 16:11:52 +00002449 const char *argv0 = NULL;
2450 int i;
Arnaud Patardfd4d81d2009-06-19 10:39:36 +03002451 int ret;
thsb12b6a12007-06-17 16:38:39 +00002452
bellard31e31b82003-02-18 22:55:36 +00002453 if (argc <= 1)
pbrook44de1b32008-03-26 22:40:25 +00002454 usage();
bellardf801f972003-04-07 21:31:06 +00002455
malc902b3d52008-12-10 19:18:40 +00002456 qemu_cache_utils_init(envp);
2457
bellardcc38b842003-10-27 21:16:14 +00002458 /* init debug */
2459 cpu_set_log_filename(DEBUG_LOGFILE);
2460
aurel3204a6dfe2009-01-30 19:59:17 +00002461 if ((envlist = envlist_create()) == NULL) {
2462 (void) fprintf(stderr, "Unable to allocate envlist\n");
2463 exit(1);
2464 }
2465
2466 /* add current environment into the list */
2467 for (wrk = environ; *wrk != NULL; wrk++) {
2468 (void) envlist_setenv(envlist, *wrk);
2469 }
2470
j_mayerb1f9be32007-03-19 08:08:28 +00002471 cpu_model = NULL;
bellard586314f2003-03-03 15:02:29 +00002472 optind = 1;
bellardd691f662003-03-24 21:58:34 +00002473 for(;;) {
2474 if (optind >= argc)
2475 break;
2476 r = argv[optind];
2477 if (r[0] != '-')
2478 break;
bellard586314f2003-03-03 15:02:29 +00002479 optind++;
bellardd691f662003-03-24 21:58:34 +00002480 r++;
2481 if (!strcmp(r, "-")) {
2482 break;
2483 } else if (!strcmp(r, "d")) {
bellarde19e89a2004-03-21 17:08:23 +00002484 int mask;
blueswir1c7cd6a32008-10-02 18:27:46 +00002485 const CPULogItem *item;
bellard6f1f31c2004-04-25 18:00:45 +00002486
2487 if (optind >= argc)
2488 break;
ths3b46e622007-09-17 08:09:54 +00002489
bellard6f1f31c2004-04-25 18:00:45 +00002490 r = argv[optind++];
2491 mask = cpu_str_to_log_mask(r);
bellarde19e89a2004-03-21 17:08:23 +00002492 if (!mask) {
2493 printf("Log items (comma separated):\n");
2494 for(item = cpu_log_items; item->mask != 0; item++) {
2495 printf("%-10s %s\n", item->name, item->help);
2496 }
2497 exit(1);
2498 }
2499 cpu_set_log(mask);
aurel3204a6dfe2009-01-30 19:59:17 +00002500 } else if (!strcmp(r, "E")) {
2501 r = argv[optind++];
2502 if (envlist_setenv(envlist, r) != 0)
2503 usage();
2504 } else if (!strcmp(r, "U")) {
2505 r = argv[optind++];
2506 if (envlist_unsetenv(envlist, r) != 0)
2507 usage();
aurel327d8cec92009-04-15 16:11:52 +00002508 } else if (!strcmp(r, "0")) {
2509 r = argv[optind++];
2510 argv0 = r;
bellardd691f662003-03-24 21:58:34 +00002511 } else if (!strcmp(r, "s")) {
aurel32491150d2009-02-09 19:02:09 +00002512 if (optind >= argc)
2513 break;
bellardd691f662003-03-24 21:58:34 +00002514 r = argv[optind++];
2515 x86_stack_size = strtol(r, (char **)&r, 0);
2516 if (x86_stack_size <= 0)
pbrook44de1b32008-03-26 22:40:25 +00002517 usage();
bellardd691f662003-03-24 21:58:34 +00002518 if (*r == 'M')
2519 x86_stack_size *= 1024 * 1024;
2520 else if (*r == 'k' || *r == 'K')
2521 x86_stack_size *= 1024;
2522 } else if (!strcmp(r, "L")) {
2523 interp_prefix = argv[optind++];
bellard54936002003-05-13 00:25:15 +00002524 } else if (!strcmp(r, "p")) {
aurel32491150d2009-02-09 19:02:09 +00002525 if (optind >= argc)
2526 break;
bellard83fb7ad2004-07-05 21:25:26 +00002527 qemu_host_page_size = atoi(argv[optind++]);
2528 if (qemu_host_page_size == 0 ||
2529 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
bellard54936002003-05-13 00:25:15 +00002530 fprintf(stderr, "page size must be a power of two\n");
2531 exit(1);
2532 }
bellard1fddef42005-04-17 19:16:13 +00002533 } else if (!strcmp(r, "g")) {
aurel32491150d2009-02-09 19:02:09 +00002534 if (optind >= argc)
2535 break;
bellard74c33be2005-10-30 21:01:05 +00002536 gdbstub_port = atoi(argv[optind++]);
pbrookc5937222006-05-14 11:30:38 +00002537 } else if (!strcmp(r, "r")) {
2538 qemu_uname_release = argv[optind++];
j_mayerb1f9be32007-03-19 08:08:28 +00002539 } else if (!strcmp(r, "cpu")) {
2540 cpu_model = argv[optind++];
aurel32491150d2009-02-09 19:02:09 +00002541 if (cpu_model == NULL || strcmp(cpu_model, "?") == 0) {
j_mayerc732abe2007-10-12 06:47:46 +00002542/* XXX: implement xxx_cpu_list for targets that still miss it */
2543#if defined(cpu_list)
2544 cpu_list(stdout, &fprintf);
j_mayerb1f9be32007-03-19 08:08:28 +00002545#endif
blueswir12d18e632009-02-28 20:14:00 +00002546 exit(1);
j_mayerb1f9be32007-03-19 08:08:28 +00002547 }
Paul Brook379f6692009-07-17 12:48:08 +01002548#if defined(CONFIG_USE_GUEST_BASE)
2549 } else if (!strcmp(r, "B")) {
2550 guest_base = strtol(argv[optind++], NULL, 0);
2551 have_guest_base = 1;
2552#endif
thsb12b6a12007-06-17 16:38:39 +00002553 } else if (!strcmp(r, "drop-ld-preload")) {
aurel3204a6dfe2009-01-30 19:59:17 +00002554 (void) envlist_unsetenv(envlist, "LD_PRELOAD");
aurel321b530a62009-04-05 20:08:59 +00002555 } else if (!strcmp(r, "singlestep")) {
2556 singlestep = 1;
bellardb6741952007-11-11 14:46:06 +00002557 } else if (!strcmp(r, "strace")) {
2558 do_strace = 1;
ths5fafdf22007-09-16 21:08:06 +00002559 } else
bellardc6981052004-02-16 21:49:03 +00002560 {
bellardd691f662003-03-24 21:58:34 +00002561 usage();
2562 }
bellard586314f2003-03-03 15:02:29 +00002563 }
bellardd691f662003-03-24 21:58:34 +00002564 if (optind >= argc)
2565 usage();
bellard586314f2003-03-03 15:02:29 +00002566 filename = argv[optind];
aurel32d088d662009-01-30 20:09:01 +00002567 exec_path = argv[optind];
bellard586314f2003-03-03 15:02:29 +00002568
bellard31e31b82003-02-18 22:55:36 +00002569 /* Zero out regs */
bellard01ffc752003-02-18 23:00:51 +00002570 memset(regs, 0, sizeof(struct target_pt_regs));
bellard31e31b82003-02-18 22:55:36 +00002571
2572 /* Zero out image_info */
2573 memset(info, 0, sizeof(struct image_info));
2574
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03002575 memset(&bprm, 0, sizeof (bprm));
2576
bellard74cd30b2003-04-11 00:13:41 +00002577 /* Scan interp_prefix dir for replacement files. */
2578 init_paths(interp_prefix);
2579
bellard46027c02007-11-08 13:56:19 +00002580 if (cpu_model == NULL) {
bellardaaed9092007-11-10 15:15:54 +00002581#if defined(TARGET_I386)
bellard46027c02007-11-08 13:56:19 +00002582#ifdef TARGET_X86_64
2583 cpu_model = "qemu64";
2584#else
2585 cpu_model = "qemu32";
2586#endif
bellardaaed9092007-11-10 15:15:54 +00002587#elif defined(TARGET_ARM)
pbrook088ab162009-04-09 15:20:50 +00002588 cpu_model = "any";
bellardaaed9092007-11-10 15:15:54 +00002589#elif defined(TARGET_M68K)
2590 cpu_model = "any";
2591#elif defined(TARGET_SPARC)
2592#ifdef TARGET_SPARC64
2593 cpu_model = "TI UltraSparc II";
2594#else
2595 cpu_model = "Fujitsu MB86904";
bellard46027c02007-11-08 13:56:19 +00002596#endif
bellardaaed9092007-11-10 15:15:54 +00002597#elif defined(TARGET_MIPS)
2598#if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64)
2599 cpu_model = "20Kc";
2600#else
2601 cpu_model = "24Kf";
2602#endif
2603#elif defined(TARGET_PPC)
bellard7ded4f52007-11-15 15:37:50 +00002604#ifdef TARGET_PPC64
2605 cpu_model = "970";
2606#else
bellardaaed9092007-11-10 15:15:54 +00002607 cpu_model = "750";
bellard7ded4f52007-11-15 15:37:50 +00002608#endif
bellardaaed9092007-11-10 15:15:54 +00002609#else
2610 cpu_model = "any";
2611#endif
2612 }
bellard26a5f132008-05-28 12:30:31 +00002613 cpu_exec_init_all(0);
bellard83fb7ad2004-07-05 21:25:26 +00002614 /* NOTE: we need to init the CPU at this stage to get
2615 qemu_host_page_size */
bellardaaed9092007-11-10 15:15:54 +00002616 env = cpu_init(cpu_model);
2617 if (!env) {
2618 fprintf(stderr, "Unable to find CPU definition\n");
2619 exit(1);
2620 }
Blue Swirlb55a37c2009-11-07 10:37:06 +00002621#if defined(TARGET_I386) || defined(TARGET_SPARC) || defined(TARGET_PPC)
2622 cpu_reset(env);
2623#endif
2624
pbrookd5975362008-06-07 20:50:51 +00002625 thread_env = env;
ths3b46e622007-09-17 08:09:54 +00002626
bellardb6741952007-11-11 14:46:06 +00002627 if (getenv("QEMU_STRACE")) {
2628 do_strace = 1;
thsb92c47c2007-11-01 00:07:38 +00002629 }
2630
aurel3204a6dfe2009-01-30 19:59:17 +00002631 target_environ = envlist_to_environ(envlist, NULL);
2632 envlist_free(envlist);
thsb12b6a12007-06-17 16:38:39 +00002633
Paul Brook379f6692009-07-17 12:48:08 +01002634#if defined(CONFIG_USE_GUEST_BASE)
2635 /*
2636 * Now that page sizes are configured in cpu_init() we can do
2637 * proper page alignment for guest_base.
2638 */
2639 guest_base = HOST_PAGE_ALIGN(guest_base);
2640
2641 /*
2642 * Read in mmap_min_addr kernel parameter. This value is used
2643 * When loading the ELF image to determine whether guest_base
2644 * is needed.
2645 *
2646 * When user has explicitly set the quest base, we skip this
2647 * test.
2648 */
2649 if (!have_guest_base) {
2650 FILE *fp;
2651
2652 if ((fp = fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL) {
2653 unsigned long tmp;
2654 if (fscanf(fp, "%lu", &tmp) == 1) {
2655 mmap_min_addr = tmp;
2656 qemu_log("host mmap_min_addr=0x%lx\n", mmap_min_addr);
2657 }
2658 fclose(fp);
2659 }
2660 }
2661#endif /* CONFIG_USE_GUEST_BASE */
2662
aurel327d8cec92009-04-15 16:11:52 +00002663 /*
2664 * Prepare copy of argv vector for target.
2665 */
2666 target_argc = argc - optind;
2667 target_argv = calloc(target_argc + 1, sizeof (char *));
2668 if (target_argv == NULL) {
2669 (void) fprintf(stderr, "Unable to allocate memory for target_argv\n");
2670 exit(1);
2671 }
2672
2673 /*
2674 * If argv0 is specified (using '-0' switch) we replace
2675 * argv[0] pointer with the given one.
2676 */
2677 i = 0;
2678 if (argv0 != NULL) {
2679 target_argv[i++] = strdup(argv0);
2680 }
2681 for (; i < target_argc; i++) {
2682 target_argv[i] = strdup(argv[optind + i]);
2683 }
2684 target_argv[target_argc] = NULL;
2685
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03002686 memset(ts, 0, sizeof(TaskState));
2687 init_task_state(ts);
2688 /* build Task State */
2689 ts->info = info;
2690 ts->bprm = &bprm;
2691 env->opaque = ts;
2692 task_settid(ts);
2693
Arnaud Patardfd4d81d2009-06-19 10:39:36 +03002694 ret = loader_exec(filename, target_argv, target_environ, regs,
2695 info, &bprm);
2696 if (ret != 0) {
2697 printf("Error %d while loading %s\n", ret, filename);
thsb12b6a12007-06-17 16:38:39 +00002698 _exit(1);
2699 }
2700
aurel327d8cec92009-04-15 16:11:52 +00002701 for (i = 0; i < target_argc; i++) {
2702 free(target_argv[i]);
2703 }
2704 free(target_argv);
2705
thsb12b6a12007-06-17 16:38:39 +00002706 for (wrk = target_environ; *wrk; wrk++) {
2707 free(*wrk);
bellard31e31b82003-02-18 22:55:36 +00002708 }
ths3b46e622007-09-17 08:09:54 +00002709
thsb12b6a12007-06-17 16:38:39 +00002710 free(target_environ);
2711
blueswir12e77eac2009-01-20 16:57:34 +00002712 if (qemu_log_enabled()) {
Paul Brook379f6692009-07-17 12:48:08 +01002713#if defined(CONFIG_USE_GUEST_BASE)
2714 qemu_log("guest_base 0x%lx\n", guest_base);
2715#endif
blueswir12e77eac2009-01-20 16:57:34 +00002716 log_page_dump();
ths3b46e622007-09-17 08:09:54 +00002717
blueswir12e77eac2009-01-20 16:57:34 +00002718 qemu_log("start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk);
2719 qemu_log("end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code);
2720 qemu_log("start_code 0x" TARGET_ABI_FMT_lx "\n",
2721 info->start_code);
2722 qemu_log("start_data 0x" TARGET_ABI_FMT_lx "\n",
2723 info->start_data);
2724 qemu_log("end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data);
2725 qemu_log("start_stack 0x" TARGET_ABI_FMT_lx "\n",
2726 info->start_stack);
2727 qemu_log("brk 0x" TARGET_ABI_FMT_lx "\n", info->brk);
2728 qemu_log("entry 0x" TARGET_ABI_FMT_lx "\n", info->entry);
2729 }
bellard31e31b82003-02-18 22:55:36 +00002730
pbrook53a59602006-03-25 19:31:22 +00002731 target_set_brk(info->brk);
bellard31e31b82003-02-18 22:55:36 +00002732 syscall_init();
bellard66fb9762003-03-23 01:06:05 +00002733 signal_init();
bellard31e31b82003-02-18 22:55:36 +00002734
bellardb346ff42003-06-15 20:05:50 +00002735#if defined(TARGET_I386)
bellard2e255c62003-08-21 23:25:21 +00002736 cpu_x86_set_cpl(env, 3);
2737
bellard3802ce22003-07-26 18:02:28 +00002738 env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
bellard1bde4652005-01-12 22:34:47 +00002739 env->hflags |= HF_PE_MASK;
2740 if (env->cpuid_features & CPUID_SSE) {
2741 env->cr[4] |= CR4_OSFXSR_MASK;
2742 env->hflags |= HF_OSFXSR_MASK;
2743 }
bellardd2fd1af2007-11-14 18:08:56 +00002744#ifndef TARGET_ABI32
bellard4dbc4222007-11-15 15:27:03 +00002745 /* enable 64 bit mode if possible */
2746 if (!(env->cpuid_ext2_features & CPUID_EXT2_LM)) {
2747 fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n");
2748 exit(1);
2749 }
bellardd2fd1af2007-11-14 18:08:56 +00002750 env->cr[4] |= CR4_PAE_MASK;
bellard4dbc4222007-11-15 15:27:03 +00002751 env->efer |= MSR_EFER_LMA | MSR_EFER_LME;
bellardd2fd1af2007-11-14 18:08:56 +00002752 env->hflags |= HF_LMA_MASK;
2753#endif
bellard1bde4652005-01-12 22:34:47 +00002754
bellard415e5612004-02-03 23:37:12 +00002755 /* flags setup : we activate the IRQs by default as in user mode */
2756 env->eflags |= IF_MASK;
ths3b46e622007-09-17 08:09:54 +00002757
bellard6dbad632003-03-16 18:05:05 +00002758 /* linux register setup */
bellardd2fd1af2007-11-14 18:08:56 +00002759#ifndef TARGET_ABI32
j_mayer84409dd2007-04-06 08:56:50 +00002760 env->regs[R_EAX] = regs->rax;
2761 env->regs[R_EBX] = regs->rbx;
2762 env->regs[R_ECX] = regs->rcx;
2763 env->regs[R_EDX] = regs->rdx;
2764 env->regs[R_ESI] = regs->rsi;
2765 env->regs[R_EDI] = regs->rdi;
2766 env->regs[R_EBP] = regs->rbp;
2767 env->regs[R_ESP] = regs->rsp;
2768 env->eip = regs->rip;
2769#else
bellard0ecfa992003-03-03 14:32:43 +00002770 env->regs[R_EAX] = regs->eax;
2771 env->regs[R_EBX] = regs->ebx;
2772 env->regs[R_ECX] = regs->ecx;
2773 env->regs[R_EDX] = regs->edx;
2774 env->regs[R_ESI] = regs->esi;
2775 env->regs[R_EDI] = regs->edi;
2776 env->regs[R_EBP] = regs->ebp;
2777 env->regs[R_ESP] = regs->esp;
bellarddab2ed92003-03-22 15:23:14 +00002778 env->eip = regs->eip;
j_mayer84409dd2007-04-06 08:56:50 +00002779#endif
bellard31e31b82003-02-18 22:55:36 +00002780
bellardf4beb512003-05-27 23:28:08 +00002781 /* linux interrupt setup */
balroge4415702008-11-10 02:55:33 +00002782#ifndef TARGET_ABI32
2783 env->idt.limit = 511;
2784#else
2785 env->idt.limit = 255;
2786#endif
2787 env->idt.base = target_mmap(0, sizeof(uint64_t) * (env->idt.limit + 1),
2788 PROT_READ|PROT_WRITE,
2789 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
2790 idt_table = g2h(env->idt.base);
bellardf4beb512003-05-27 23:28:08 +00002791 set_idt(0, 0);
2792 set_idt(1, 0);
2793 set_idt(2, 0);
2794 set_idt(3, 3);
2795 set_idt(4, 3);
bellardec95da62008-05-12 12:23:31 +00002796 set_idt(5, 0);
bellardf4beb512003-05-27 23:28:08 +00002797 set_idt(6, 0);
2798 set_idt(7, 0);
2799 set_idt(8, 0);
2800 set_idt(9, 0);
2801 set_idt(10, 0);
2802 set_idt(11, 0);
2803 set_idt(12, 0);
2804 set_idt(13, 0);
2805 set_idt(14, 0);
2806 set_idt(15, 0);
2807 set_idt(16, 0);
2808 set_idt(17, 0);
2809 set_idt(18, 0);
2810 set_idt(19, 0);
2811 set_idt(0x80, 3);
2812
bellard6dbad632003-03-16 18:05:05 +00002813 /* linux segment setup */
bellard8d18e892007-11-14 15:18:40 +00002814 {
2815 uint64_t *gdt_table;
balroge4415702008-11-10 02:55:33 +00002816 env->gdt.base = target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES,
2817 PROT_READ|PROT_WRITE,
2818 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
bellard8d18e892007-11-14 15:18:40 +00002819 env->gdt.limit = sizeof(uint64_t) * TARGET_GDT_ENTRIES - 1;
balroge4415702008-11-10 02:55:33 +00002820 gdt_table = g2h(env->gdt.base);
bellardd2fd1af2007-11-14 18:08:56 +00002821#ifdef TARGET_ABI32
bellard8d18e892007-11-14 15:18:40 +00002822 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
2823 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
2824 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
bellardd2fd1af2007-11-14 18:08:56 +00002825#else
2826 /* 64 bit code segment */
2827 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
2828 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
2829 DESC_L_MASK |
2830 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
2831#endif
bellard8d18e892007-11-14 15:18:40 +00002832 write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
2833 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
2834 (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
2835 }
bellard6dbad632003-03-16 18:05:05 +00002836 cpu_x86_load_seg(env, R_CS, __USER_CS);
bellardd2fd1af2007-11-14 18:08:56 +00002837 cpu_x86_load_seg(env, R_SS, __USER_DS);
2838#ifdef TARGET_ABI32
bellard6dbad632003-03-16 18:05:05 +00002839 cpu_x86_load_seg(env, R_DS, __USER_DS);
2840 cpu_x86_load_seg(env, R_ES, __USER_DS);
bellard6dbad632003-03-16 18:05:05 +00002841 cpu_x86_load_seg(env, R_FS, __USER_DS);
2842 cpu_x86_load_seg(env, R_GS, __USER_DS);
thsd6eb40f2007-06-21 22:55:02 +00002843 /* This hack makes Wine work... */
2844 env->segs[R_FS].selector = 0;
bellardd2fd1af2007-11-14 18:08:56 +00002845#else
2846 cpu_x86_load_seg(env, R_DS, 0);
2847 cpu_x86_load_seg(env, R_ES, 0);
2848 cpu_x86_load_seg(env, R_FS, 0);
2849 cpu_x86_load_seg(env, R_GS, 0);
2850#endif
bellardb346ff42003-06-15 20:05:50 +00002851#elif defined(TARGET_ARM)
2852 {
2853 int i;
bellardb5ff1b32005-11-26 10:38:39 +00002854 cpsr_write(env, regs->uregs[16], 0xffffffff);
bellardb346ff42003-06-15 20:05:50 +00002855 for(i = 0; i < 16; i++) {
2856 env->regs[i] = regs->uregs[i];
2857 }
bellardb346ff42003-06-15 20:05:50 +00002858 }
bellard93ac68b2003-09-30 20:57:29 +00002859#elif defined(TARGET_SPARC)
bellard060366c2004-01-04 15:50:01 +00002860 {
2861 int i;
2862 env->pc = regs->pc;
2863 env->npc = regs->npc;
2864 env->y = regs->y;
2865 for(i = 0; i < 8; i++)
2866 env->gregs[i] = regs->u_regs[i];
2867 for(i = 0; i < 8; i++)
2868 env->regwptr[i] = regs->u_regs[i + 8];
2869 }
bellard67867302003-11-23 17:05:30 +00002870#elif defined(TARGET_PPC)
2871 {
2872 int i;
bellard3fc6c082005-07-02 20:59:34 +00002873
j_mayer0411a972007-10-25 21:35:50 +00002874#if defined(TARGET_PPC64)
2875#if defined(TARGET_ABI32)
2876 env->msr &= ~((target_ulong)1 << MSR_SF);
j_mayere85e7c62007-10-18 19:59:49 +00002877#else
j_mayer0411a972007-10-25 21:35:50 +00002878 env->msr |= (target_ulong)1 << MSR_SF;
2879#endif
j_mayer84409dd2007-04-06 08:56:50 +00002880#endif
bellard67867302003-11-23 17:05:30 +00002881 env->nip = regs->nip;
2882 for(i = 0; i < 32; i++) {
2883 env->gpr[i] = regs->gpr[i];
2884 }
2885 }
pbrooke6e59062006-10-22 00:18:54 +00002886#elif defined(TARGET_M68K)
2887 {
pbrooke6e59062006-10-22 00:18:54 +00002888 env->pc = regs->pc;
2889 env->dregs[0] = regs->d0;
2890 env->dregs[1] = regs->d1;
2891 env->dregs[2] = regs->d2;
2892 env->dregs[3] = regs->d3;
2893 env->dregs[4] = regs->d4;
2894 env->dregs[5] = regs->d5;
2895 env->dregs[6] = regs->d6;
2896 env->dregs[7] = regs->d7;
2897 env->aregs[0] = regs->a0;
2898 env->aregs[1] = regs->a1;
2899 env->aregs[2] = regs->a2;
2900 env->aregs[3] = regs->a3;
2901 env->aregs[4] = regs->a4;
2902 env->aregs[5] = regs->a5;
2903 env->aregs[6] = regs->a6;
2904 env->aregs[7] = regs->usp;
2905 env->sr = regs->sr;
2906 ts->sim_syscalls = 1;
2907 }
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002908#elif defined(TARGET_MICROBLAZE)
2909 {
2910 env->regs[0] = regs->r0;
2911 env->regs[1] = regs->r1;
2912 env->regs[2] = regs->r2;
2913 env->regs[3] = regs->r3;
2914 env->regs[4] = regs->r4;
2915 env->regs[5] = regs->r5;
2916 env->regs[6] = regs->r6;
2917 env->regs[7] = regs->r7;
2918 env->regs[8] = regs->r8;
2919 env->regs[9] = regs->r9;
2920 env->regs[10] = regs->r10;
2921 env->regs[11] = regs->r11;
2922 env->regs[12] = regs->r12;
2923 env->regs[13] = regs->r13;
2924 env->regs[14] = regs->r14;
2925 env->regs[15] = regs->r15;
2926 env->regs[16] = regs->r16;
2927 env->regs[17] = regs->r17;
2928 env->regs[18] = regs->r18;
2929 env->regs[19] = regs->r19;
2930 env->regs[20] = regs->r20;
2931 env->regs[21] = regs->r21;
2932 env->regs[22] = regs->r22;
2933 env->regs[23] = regs->r23;
2934 env->regs[24] = regs->r24;
2935 env->regs[25] = regs->r25;
2936 env->regs[26] = regs->r26;
2937 env->regs[27] = regs->r27;
2938 env->regs[28] = regs->r28;
2939 env->regs[29] = regs->r29;
2940 env->regs[30] = regs->r30;
2941 env->regs[31] = regs->r31;
2942 env->sregs[SR_PC] = regs->pc;
2943 }
bellard048f6b42005-11-26 18:47:20 +00002944#elif defined(TARGET_MIPS)
2945 {
2946 int i;
2947
2948 for(i = 0; i < 32; i++) {
thsb5dc7732008-06-27 10:02:35 +00002949 env->active_tc.gpr[i] = regs->regs[i];
bellard048f6b42005-11-26 18:47:20 +00002950 }
thsb5dc7732008-06-27 10:02:35 +00002951 env->active_tc.PC = regs->cp0_epc;
bellard048f6b42005-11-26 18:47:20 +00002952 }
bellardfdf9b3e2006-04-27 21:07:38 +00002953#elif defined(TARGET_SH4)
2954 {
2955 int i;
2956
2957 for(i = 0; i < 16; i++) {
2958 env->gregs[i] = regs->regs[i];
2959 }
2960 env->pc = regs->pc;
2961 }
j_mayer7a3148a2007-04-05 07:13:51 +00002962#elif defined(TARGET_ALPHA)
2963 {
2964 int i;
2965
2966 for(i = 0; i < 28; i++) {
blueswir1992f48a2007-10-14 16:27:31 +00002967 env->ir[i] = ((abi_ulong *)regs)[i];
j_mayer7a3148a2007-04-05 07:13:51 +00002968 }
2969 env->ipr[IPR_USP] = regs->usp;
2970 env->ir[30] = regs->usp;
2971 env->pc = regs->pc;
2972 env->unique = regs->unique;
2973 }
ths48733d12007-10-08 13:36:46 +00002974#elif defined(TARGET_CRIS)
2975 {
2976 env->regs[0] = regs->r0;
2977 env->regs[1] = regs->r1;
2978 env->regs[2] = regs->r2;
2979 env->regs[3] = regs->r3;
2980 env->regs[4] = regs->r4;
2981 env->regs[5] = regs->r5;
2982 env->regs[6] = regs->r6;
2983 env->regs[7] = regs->r7;
2984 env->regs[8] = regs->r8;
2985 env->regs[9] = regs->r9;
2986 env->regs[10] = regs->r10;
2987 env->regs[11] = regs->r11;
2988 env->regs[12] = regs->r12;
2989 env->regs[13] = regs->r13;
2990 env->regs[14] = info->start_stack;
2991 env->regs[15] = regs->acr;
2992 env->pc = regs->erp;
2993 }
bellardb346ff42003-06-15 20:05:50 +00002994#else
2995#error unsupported target CPU
2996#endif
bellard31e31b82003-02-18 22:55:36 +00002997
pbrooka87295e2007-05-26 15:09:38 +00002998#if defined(TARGET_ARM) || defined(TARGET_M68K)
2999 ts->stack_base = info->start_stack;
3000 ts->heap_base = info->brk;
3001 /* This will be filled in on the first SYS_HEAPINFO call. */
3002 ts->heap_limit = 0;
3003#endif
3004
bellard74c33be2005-10-30 21:01:05 +00003005 if (gdbstub_port) {
3006 gdbserver_start (gdbstub_port);
bellard1fddef42005-04-17 19:16:13 +00003007 gdb_handlesig(env, 0);
3008 }
bellard1b6b0292003-03-22 17:31:38 +00003009 cpu_loop(env);
3010 /* never exits */
bellard31e31b82003-02-18 22:55:36 +00003011 return 0;
3012}