blob: 862619b43854114494eeff9bf22d37486f3a313e [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>
Richard Henderson703e0e82010-03-19 14:21:13 -070027#include <sys/resource.h>
bellard31e31b82003-02-18 22:55:36 +000028
bellard3ef693a2003-03-23 20:17:16 +000029#include "qemu.h"
aurel32ca10f862008-04-11 21:35:42 +000030#include "qemu-common.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010031#include "qemu/cache-utils.h"
Blue Swirl2b41f102011-06-19 20:38:22 +000032#include "cpu.h"
Richard Henderson9002ec72010-05-06 08:50:41 -070033#include "tcg.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010034#include "qemu/timer.h"
35#include "qemu/envlist.h"
Paul Brookd8fd2952012-03-30 18:02:50 +010036#include "elf.h"
aurel3204a6dfe2009-01-30 19:59:17 +000037
bellard3ef693a2003-03-23 20:17:16 +000038#define DEBUG_LOGFILE "/tmp/qemu.log"
bellard586314f2003-03-03 15:02:29 +000039
aurel32d088d662009-01-30 20:09:01 +000040char *exec_path;
41
aurel321b530a62009-04-05 20:08:59 +000042int singlestep;
Johannes Schauerfc9c5412011-08-06 08:54:12 +020043const char *filename;
44const char *argv0;
45int gdbstub_port;
46envlist_t *envlist;
47const char *cpu_model;
Paul Brook379f6692009-07-17 12:48:08 +010048unsigned long mmap_min_addr;
Richard Henderson14f24e12010-03-10 15:39:07 -080049#if defined(CONFIG_USE_GUEST_BASE)
Paul Brook379f6692009-07-17 12:48:08 +010050unsigned long guest_base;
51int have_guest_base;
Alexander Graf288e65b2011-12-14 00:33:28 +010052#if (TARGET_LONG_BITS == 32) && (HOST_LONG_BITS == 64)
53/*
54 * When running 32-on-64 we should make sure we can fit all of the possible
55 * guest address space into a contiguous chunk of virtual host memory.
56 *
57 * This way we will never overlap with our own libraries or binaries or stack
58 * or anything else that QEMU maps.
59 */
Alexander Graf314992b2013-01-03 14:17:18 +010060# ifdef TARGET_MIPS
61/* MIPS only supports 31 bits of virtual address space for user space */
62unsigned long reserved_va = 0x77000000;
63# else
Alexander Graf288e65b2011-12-14 00:33:28 +010064unsigned long reserved_va = 0xf7000000;
Alexander Graf314992b2013-01-03 14:17:18 +010065# endif
Alexander Graf288e65b2011-12-14 00:33:28 +010066#else
Paul Brook68a1c812010-05-29 02:27:35 +010067unsigned long reserved_va;
Paul Brook379f6692009-07-17 12:48:08 +010068#endif
Alexander Graf288e65b2011-12-14 00:33:28 +010069#endif
aurel321b530a62009-04-05 20:08:59 +000070
Johannes Schauerfc9c5412011-08-06 08:54:12 +020071static void usage(void);
72
Paolo Bonzini7ee28222010-05-26 16:08:22 +020073static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX;
pbrookc5937222006-05-14 11:30:38 +000074const char *qemu_uname_release = CONFIG_UNAME_RELEASE;
bellard586314f2003-03-03 15:02:29 +000075
bellard9de5e442003-03-23 16:49:39 +000076/* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so
77 we allocate a bigger stack. Need a better solution, for example
78 by remapping the process stack directly at the right place */
Richard Henderson703e0e82010-03-19 14:21:13 -070079unsigned long guest_stack_size = 8 * 1024 * 1024UL;
bellard31e31b82003-02-18 22:55:36 +000080
81void gemu_log(const char *fmt, ...)
82{
83 va_list ap;
84
85 va_start(ap, fmt);
86 vfprintf(stderr, fmt, ap);
87 va_end(ap);
88}
89
blueswir18fcd3692008-08-17 20:26:25 +000090#if defined(TARGET_I386)
Andreas Färber05390242012-02-25 03:37:53 +010091int cpu_get_pic_interrupt(CPUX86State *env)
bellard92ccca62003-06-24 13:30:31 +000092{
93 return -1;
94}
blueswir18fcd3692008-08-17 20:26:25 +000095#endif
bellard92ccca62003-06-24 13:30:31 +000096
Juan Quintela2f7bb872009-07-27 16:13:24 +020097#if defined(CONFIG_USE_NPTL)
pbrookd5975362008-06-07 20:50:51 +000098/***********************************************************/
99/* Helper routines for implementing atomic operations. */
100
101/* To implement exclusive operations we force all cpus to syncronise.
102 We don't require a full sync, only that no cpus are executing guest code.
103 The alternative is to map target atomic ops onto host equivalents,
104 which requires quite a lot of per host/target work. */
pbrookc2764712009-03-07 15:24:59 +0000105static pthread_mutex_t cpu_list_mutex = PTHREAD_MUTEX_INITIALIZER;
pbrookd5975362008-06-07 20:50:51 +0000106static pthread_mutex_t exclusive_lock = PTHREAD_MUTEX_INITIALIZER;
107static pthread_cond_t exclusive_cond = PTHREAD_COND_INITIALIZER;
108static pthread_cond_t exclusive_resume = PTHREAD_COND_INITIALIZER;
109static int pending_cpus;
110
111/* Make sure everything is in a consistent state for calling fork(). */
112void fork_start(void)
113{
Evgeny Voevodin5e5f07e2013-02-01 01:47:23 +0700114 pthread_mutex_lock(&tcg_ctx.tb_ctx.tb_lock);
pbrookd5975362008-06-07 20:50:51 +0000115 pthread_mutex_lock(&exclusive_lock);
Riku Voipiod032d1b2009-12-04 15:16:31 +0200116 mmap_fork_start();
pbrookd5975362008-06-07 20:50:51 +0000117}
118
119void fork_end(int child)
120{
Riku Voipiod032d1b2009-12-04 15:16:31 +0200121 mmap_fork_end(child);
pbrookd5975362008-06-07 20:50:51 +0000122 if (child) {
123 /* Child processes created by fork() only have a single thread.
124 Discard information about the parent threads. */
125 first_cpu = thread_env;
126 thread_env->next_cpu = NULL;
127 pending_cpus = 0;
128 pthread_mutex_init(&exclusive_lock, NULL);
pbrookc2764712009-03-07 15:24:59 +0000129 pthread_mutex_init(&cpu_list_mutex, NULL);
pbrookd5975362008-06-07 20:50:51 +0000130 pthread_cond_init(&exclusive_cond, NULL);
131 pthread_cond_init(&exclusive_resume, NULL);
Evgeny Voevodin5e5f07e2013-02-01 01:47:23 +0700132 pthread_mutex_init(&tcg_ctx.tb_ctx.tb_lock, NULL);
aurel322b1319c2008-12-18 22:44:04 +0000133 gdbserver_fork(thread_env);
pbrookd5975362008-06-07 20:50:51 +0000134 } else {
135 pthread_mutex_unlock(&exclusive_lock);
Evgeny Voevodin5e5f07e2013-02-01 01:47:23 +0700136 pthread_mutex_unlock(&tcg_ctx.tb_ctx.tb_lock);
pbrookd5975362008-06-07 20:50:51 +0000137 }
pbrookd5975362008-06-07 20:50:51 +0000138}
139
140/* Wait for pending exclusive operations to complete. The exclusive lock
141 must be held. */
142static inline void exclusive_idle(void)
143{
144 while (pending_cpus) {
145 pthread_cond_wait(&exclusive_resume, &exclusive_lock);
146 }
147}
148
149/* Start an exclusive operation.
150 Must only be called from outside cpu_arm_exec. */
151static inline void start_exclusive(void)
152{
Andreas Färber9349b4f2012-03-14 01:38:32 +0100153 CPUArchState *other;
pbrookd5975362008-06-07 20:50:51 +0000154 pthread_mutex_lock(&exclusive_lock);
155 exclusive_idle();
156
157 pending_cpus = 1;
158 /* Make all other cpus stop executing. */
159 for (other = first_cpu; other; other = other->next_cpu) {
160 if (other->running) {
161 pending_cpus++;
aurel323098dba2009-03-07 21:28:24 +0000162 cpu_exit(other);
pbrookd5975362008-06-07 20:50:51 +0000163 }
164 }
165 if (pending_cpus > 1) {
166 pthread_cond_wait(&exclusive_cond, &exclusive_lock);
167 }
168}
169
170/* Finish an exclusive operation. */
171static inline void end_exclusive(void)
172{
173 pending_cpus = 0;
174 pthread_cond_broadcast(&exclusive_resume);
175 pthread_mutex_unlock(&exclusive_lock);
176}
177
178/* Wait for exclusive ops to finish, and begin cpu execution. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100179static inline void cpu_exec_start(CPUArchState *env)
pbrookd5975362008-06-07 20:50:51 +0000180{
181 pthread_mutex_lock(&exclusive_lock);
182 exclusive_idle();
183 env->running = 1;
184 pthread_mutex_unlock(&exclusive_lock);
185}
186
187/* Mark cpu as not executing, and release pending exclusive ops. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100188static inline void cpu_exec_end(CPUArchState *env)
pbrookd5975362008-06-07 20:50:51 +0000189{
190 pthread_mutex_lock(&exclusive_lock);
191 env->running = 0;
192 if (pending_cpus > 1) {
193 pending_cpus--;
194 if (pending_cpus == 1) {
195 pthread_cond_signal(&exclusive_cond);
196 }
197 }
198 exclusive_idle();
199 pthread_mutex_unlock(&exclusive_lock);
200}
pbrookc2764712009-03-07 15:24:59 +0000201
202void cpu_list_lock(void)
203{
204 pthread_mutex_lock(&cpu_list_mutex);
205}
206
207void cpu_list_unlock(void)
208{
209 pthread_mutex_unlock(&cpu_list_mutex);
210}
Juan Quintela2f7bb872009-07-27 16:13:24 +0200211#else /* if !CONFIG_USE_NPTL */
pbrookd5975362008-06-07 20:50:51 +0000212/* These are no-ops because we are not threadsafe. */
Andreas Färber9349b4f2012-03-14 01:38:32 +0100213static inline void cpu_exec_start(CPUArchState *env)
pbrookd5975362008-06-07 20:50:51 +0000214{
215}
216
Andreas Färber9349b4f2012-03-14 01:38:32 +0100217static inline void cpu_exec_end(CPUArchState *env)
pbrookd5975362008-06-07 20:50:51 +0000218{
219}
220
221static inline void start_exclusive(void)
222{
223}
224
225static inline void end_exclusive(void)
226{
227}
228
229void fork_start(void)
230{
231}
232
233void fork_end(int child)
234{
aurel322b1319c2008-12-18 22:44:04 +0000235 if (child) {
236 gdbserver_fork(thread_env);
237 }
pbrookd5975362008-06-07 20:50:51 +0000238}
pbrookc2764712009-03-07 15:24:59 +0000239
240void cpu_list_lock(void)
241{
242}
243
244void cpu_list_unlock(void)
245{
246}
pbrookd5975362008-06-07 20:50:51 +0000247#endif
248
249
bellarda541f292004-04-12 20:39:29 +0000250#ifdef TARGET_I386
251/***********************************************************/
252/* CPUX86 core interface */
253
Andreas Färber05390242012-02-25 03:37:53 +0100254void cpu_smm_update(CPUX86State *env)
bellard02a16022006-09-24 18:48:23 +0000255{
256}
257
bellard28ab0e22004-05-20 14:02:14 +0000258uint64_t cpu_get_tsc(CPUX86State *env)
259{
260 return cpu_get_real_ticks();
261}
262
ths5fafdf22007-09-16 21:08:06 +0000263static void write_dt(void *ptr, unsigned long addr, unsigned long limit,
bellardf4beb512003-05-27 23:28:08 +0000264 int flags)
bellard6dbad632003-03-16 18:05:05 +0000265{
bellardf4beb512003-05-27 23:28:08 +0000266 unsigned int e1, e2;
pbrook53a59602006-03-25 19:31:22 +0000267 uint32_t *p;
bellard6dbad632003-03-16 18:05:05 +0000268 e1 = (addr << 16) | (limit & 0xffff);
269 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000);
bellardf4beb512003-05-27 23:28:08 +0000270 e2 |= flags;
pbrook53a59602006-03-25 19:31:22 +0000271 p = ptr;
malcd538e8f2008-08-20 22:39:26 +0000272 p[0] = tswap32(e1);
273 p[1] = tswap32(e2);
bellardf4beb512003-05-27 23:28:08 +0000274}
275
balroge4415702008-11-10 02:55:33 +0000276static uint64_t *idt_table;
blueswir1eb38c522008-09-06 17:47:39 +0000277#ifdef TARGET_X86_64
bellardd2fd1af2007-11-14 18:08:56 +0000278static void set_gate64(void *ptr, unsigned int type, unsigned int dpl,
279 uint64_t addr, unsigned int sel)
280{
bellard4dbc4222007-11-15 15:27:03 +0000281 uint32_t *p, e1, e2;
bellardd2fd1af2007-11-14 18:08:56 +0000282 e1 = (addr & 0xffff) | (sel << 16);
283 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
284 p = ptr;
bellard4dbc4222007-11-15 15:27:03 +0000285 p[0] = tswap32(e1);
286 p[1] = tswap32(e2);
287 p[2] = tswap32(addr >> 32);
288 p[3] = 0;
bellardd2fd1af2007-11-14 18:08:56 +0000289}
290/* only dpl matters as we do only user space emulation */
291static void set_idt(int n, unsigned int dpl)
292{
293 set_gate64(idt_table + n * 2, 0, dpl, 0, 0);
294}
295#else
ths5fafdf22007-09-16 21:08:06 +0000296static void set_gate(void *ptr, unsigned int type, unsigned int dpl,
bellardd2fd1af2007-11-14 18:08:56 +0000297 uint32_t addr, unsigned int sel)
bellardf4beb512003-05-27 23:28:08 +0000298{
bellard4dbc4222007-11-15 15:27:03 +0000299 uint32_t *p, e1, e2;
bellardf4beb512003-05-27 23:28:08 +0000300 e1 = (addr & 0xffff) | (sel << 16);
301 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8);
pbrook53a59602006-03-25 19:31:22 +0000302 p = ptr;
bellard4dbc4222007-11-15 15:27:03 +0000303 p[0] = tswap32(e1);
304 p[1] = tswap32(e2);
bellard6dbad632003-03-16 18:05:05 +0000305}
306
bellardf4beb512003-05-27 23:28:08 +0000307/* only dpl matters as we do only user space emulation */
308static void set_idt(int n, unsigned int dpl)
309{
310 set_gate(idt_table + n, 0, dpl, 0, 0);
311}
bellardd2fd1af2007-11-14 18:08:56 +0000312#endif
bellard31e31b82003-02-18 22:55:36 +0000313
bellard89e957e2003-05-10 12:33:15 +0000314void cpu_loop(CPUX86State *env)
bellard1b6b0292003-03-22 17:31:38 +0000315{
bellardbc8a22c2003-03-30 21:02:40 +0000316 int trapnr;
blueswir1992f48a2007-10-14 16:27:31 +0000317 abi_ulong pc;
Anthony Liguoric227f092009-10-01 16:12:16 -0500318 target_siginfo_t info;
bellard851e67a2003-03-29 16:53:14 +0000319
bellard1b6b0292003-03-22 17:31:38 +0000320 for(;;) {
bellardbc8a22c2003-03-30 21:02:40 +0000321 trapnr = cpu_x86_exec(env);
bellardbc8a22c2003-03-30 21:02:40 +0000322 switch(trapnr) {
bellardf4beb512003-05-27 23:28:08 +0000323 case 0x80:
bellardd2fd1af2007-11-14 18:08:56 +0000324 /* linux syscall from int $0x80 */
ths5fafdf22007-09-16 21:08:06 +0000325 env->regs[R_EAX] = do_syscall(env,
326 env->regs[R_EAX],
bellardf4beb512003-05-27 23:28:08 +0000327 env->regs[R_EBX],
328 env->regs[R_ECX],
329 env->regs[R_EDX],
330 env->regs[R_ESI],
331 env->regs[R_EDI],
Peter Maydell5945cfc2011-06-16 17:37:13 +0100332 env->regs[R_EBP],
333 0, 0);
bellardf4beb512003-05-27 23:28:08 +0000334 break;
bellardd2fd1af2007-11-14 18:08:56 +0000335#ifndef TARGET_ABI32
336 case EXCP_SYSCALL:
Stefan Weil5ba18542011-05-07 22:20:03 +0200337 /* linux syscall from syscall instruction */
bellardd2fd1af2007-11-14 18:08:56 +0000338 env->regs[R_EAX] = do_syscall(env,
339 env->regs[R_EAX],
340 env->regs[R_EDI],
341 env->regs[R_ESI],
342 env->regs[R_EDX],
343 env->regs[10],
344 env->regs[8],
Peter Maydell5945cfc2011-06-16 17:37:13 +0100345 env->regs[9],
346 0, 0);
bellardd2fd1af2007-11-14 18:08:56 +0000347 env->eip = env->exception_next_eip;
348 break;
349#endif
bellardf4beb512003-05-27 23:28:08 +0000350 case EXCP0B_NOSEG:
351 case EXCP0C_STACK:
352 info.si_signo = SIGBUS;
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);
bellardf4beb512003-05-27 23:28:08 +0000357 break;
bellard1b6b0292003-03-22 17:31:38 +0000358 case EXCP0D_GPF:
bellardd2fd1af2007-11-14 18:08:56 +0000359 /* XXX: potential problem if ABI32 */
j_mayer84409dd2007-04-06 08:56:50 +0000360#ifndef TARGET_X86_64
bellard851e67a2003-03-29 16:53:14 +0000361 if (env->eflags & VM_MASK) {
bellard89e957e2003-05-10 12:33:15 +0000362 handle_vm86_fault(env);
j_mayer84409dd2007-04-06 08:56:50 +0000363 } else
364#endif
365 {
bellardf4beb512003-05-27 23:28:08 +0000366 info.si_signo = SIGSEGV;
367 info.si_errno = 0;
368 info.si_code = TARGET_SI_KERNEL;
369 info._sifields._sigfault._addr = 0;
pbrook624f7972008-05-31 16:11:38 +0000370 queue_signal(env, info.si_signo, &info);
bellard1b6b0292003-03-22 17:31:38 +0000371 }
372 break;
bellardb689bc52003-05-08 15:33:33 +0000373 case EXCP0E_PAGE:
374 info.si_signo = SIGSEGV;
375 info.si_errno = 0;
376 if (!(env->error_code & 1))
377 info.si_code = TARGET_SEGV_MAPERR;
378 else
379 info.si_code = TARGET_SEGV_ACCERR;
bellard970a87a2003-06-21 13:13:25 +0000380 info._sifields._sigfault._addr = env->cr[2];
pbrook624f7972008-05-31 16:11:38 +0000381 queue_signal(env, info.si_signo, &info);
bellardb689bc52003-05-08 15:33:33 +0000382 break;
bellard9de5e442003-03-23 16:49:39 +0000383 case EXCP00_DIVZ:
j_mayer84409dd2007-04-06 08:56:50 +0000384#ifndef TARGET_X86_64
bellardbc8a22c2003-03-30 21:02:40 +0000385 if (env->eflags & VM_MASK) {
bellard447db212003-05-10 15:10:36 +0000386 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000387 } else
388#endif
389 {
bellardbc8a22c2003-03-30 21:02:40 +0000390 /* division by zero */
391 info.si_signo = SIGFPE;
392 info.si_errno = 0;
393 info.si_code = TARGET_FPE_INTDIV;
394 info._sifields._sigfault._addr = env->eip;
pbrook624f7972008-05-31 16:11:38 +0000395 queue_signal(env, info.si_signo, &info);
bellardbc8a22c2003-03-30 21:02:40 +0000396 }
bellard9de5e442003-03-23 16:49:39 +0000397 break;
aliguori01df0402008-11-18 21:08:15 +0000398 case EXCP01_DB:
bellard447db212003-05-10 15:10:36 +0000399 case EXCP03_INT3:
j_mayer84409dd2007-04-06 08:56:50 +0000400#ifndef TARGET_X86_64
bellard447db212003-05-10 15:10:36 +0000401 if (env->eflags & VM_MASK) {
402 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000403 } else
404#endif
405 {
bellard447db212003-05-10 15:10:36 +0000406 info.si_signo = SIGTRAP;
407 info.si_errno = 0;
aliguori01df0402008-11-18 21:08:15 +0000408 if (trapnr == EXCP01_DB) {
bellard447db212003-05-10 15:10:36 +0000409 info.si_code = TARGET_TRAP_BRKPT;
410 info._sifields._sigfault._addr = env->eip;
411 } else {
412 info.si_code = TARGET_SI_KERNEL;
413 info._sifields._sigfault._addr = 0;
414 }
pbrook624f7972008-05-31 16:11:38 +0000415 queue_signal(env, info.si_signo, &info);
bellard447db212003-05-10 15:10:36 +0000416 }
417 break;
bellard9de5e442003-03-23 16:49:39 +0000418 case EXCP04_INTO:
419 case EXCP05_BOUND:
j_mayer84409dd2007-04-06 08:56:50 +0000420#ifndef TARGET_X86_64
bellardbc8a22c2003-03-30 21:02:40 +0000421 if (env->eflags & VM_MASK) {
bellard447db212003-05-10 15:10:36 +0000422 handle_vm86_trap(env, trapnr);
j_mayer84409dd2007-04-06 08:56:50 +0000423 } else
424#endif
425 {
bellardbc8a22c2003-03-30 21:02:40 +0000426 info.si_signo = SIGSEGV;
427 info.si_errno = 0;
bellardb689bc52003-05-08 15:33:33 +0000428 info.si_code = TARGET_SI_KERNEL;
bellardbc8a22c2003-03-30 21:02:40 +0000429 info._sifields._sigfault._addr = 0;
pbrook624f7972008-05-31 16:11:38 +0000430 queue_signal(env, info.si_signo, &info);
bellardbc8a22c2003-03-30 21:02:40 +0000431 }
bellard9de5e442003-03-23 16:49:39 +0000432 break;
433 case EXCP06_ILLOP:
434 info.si_signo = SIGILL;
435 info.si_errno = 0;
436 info.si_code = TARGET_ILL_ILLOPN;
437 info._sifields._sigfault._addr = env->eip;
pbrook624f7972008-05-31 16:11:38 +0000438 queue_signal(env, info.si_signo, &info);
bellard9de5e442003-03-23 16:49:39 +0000439 break;
440 case EXCP_INTERRUPT:
441 /* just indicate that signals should be handled asap */
442 break;
bellard1fddef42005-04-17 19:16:13 +0000443 case EXCP_DEBUG:
444 {
445 int sig;
446
447 sig = gdb_handlesig (env, TARGET_SIGTRAP);
448 if (sig)
449 {
450 info.si_signo = sig;
451 info.si_errno = 0;
452 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +0000453 queue_signal(env, info.si_signo, &info);
bellard1fddef42005-04-17 19:16:13 +0000454 }
455 }
456 break;
bellard1b6b0292003-03-22 17:31:38 +0000457 default:
bellard970a87a2003-06-21 13:13:25 +0000458 pc = env->segs[R_CS].base + env->eip;
ths5fafdf22007-09-16 21:08:06 +0000459 fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",
bellardbc8a22c2003-03-30 21:02:40 +0000460 (long)pc, trapnr);
bellard1b6b0292003-03-22 17:31:38 +0000461 abort();
462 }
bellard66fb9762003-03-23 01:06:05 +0000463 process_pending_signals(env);
bellard1b6b0292003-03-22 17:31:38 +0000464 }
465}
bellardb346ff42003-06-15 20:05:50 +0000466#endif
467
468#ifdef TARGET_ARM
469
Paul Brookd8fd2952012-03-30 18:02:50 +0100470#define get_user_code_u32(x, gaddr, doswap) \
471 ({ abi_long __r = get_user_u32((x), (gaddr)); \
472 if (!__r && (doswap)) { \
473 (x) = bswap32(x); \
474 } \
475 __r; \
476 })
477
478#define get_user_code_u16(x, gaddr, doswap) \
479 ({ abi_long __r = get_user_u16((x), (gaddr)); \
480 if (!__r && (doswap)) { \
481 (x) = bswap16(x); \
482 } \
483 __r; \
484 })
485
Dr. David Alan Gilbert97cc7562011-08-31 17:24:34 +0100486/*
487 * See the Linux kernel's Documentation/arm/kernel_user_helpers.txt
488 * Input:
489 * r0 = pointer to oldval
490 * r1 = pointer to newval
491 * r2 = pointer to target value
492 *
493 * Output:
494 * r0 = 0 if *ptr was changed, non-0 if no exchange happened
495 * C set if *ptr was changed, clear if no exchange happened
496 *
497 * Note segv's in kernel helpers are a bit tricky, we can set the
498 * data address sensibly but the PC address is just the entry point.
499 */
500static void arm_kernel_cmpxchg64_helper(CPUARMState *env)
501{
502 uint64_t oldval, newval, val;
503 uint32_t addr, cpsr;
504 target_siginfo_t info;
505
506 /* Based on the 32 bit code in do_kernel_trap */
507
508 /* XXX: This only works between threads, not between processes.
509 It's probably possible to implement this with native host
510 operations. However things like ldrex/strex are much harder so
511 there's not much point trying. */
512 start_exclusive();
513 cpsr = cpsr_read(env);
514 addr = env->regs[2];
515
516 if (get_user_u64(oldval, env->regs[0])) {
517 env->cp15.c6_data = env->regs[0];
518 goto segv;
519 };
520
521 if (get_user_u64(newval, env->regs[1])) {
522 env->cp15.c6_data = env->regs[1];
523 goto segv;
524 };
525
526 if (get_user_u64(val, addr)) {
527 env->cp15.c6_data = addr;
528 goto segv;
529 }
530
531 if (val == oldval) {
532 val = newval;
533
534 if (put_user_u64(val, addr)) {
535 env->cp15.c6_data = addr;
536 goto segv;
537 };
538
539 env->regs[0] = 0;
540 cpsr |= CPSR_C;
541 } else {
542 env->regs[0] = -1;
543 cpsr &= ~CPSR_C;
544 }
545 cpsr_write(env, cpsr, CPSR_C);
546 end_exclusive();
547 return;
548
549segv:
550 end_exclusive();
551 /* We get the PC of the entry address - which is as good as anything,
552 on a real kernel what you get depends on which mode it uses. */
553 info.si_signo = SIGSEGV;
554 info.si_errno = 0;
555 /* XXX: check env->error_code */
556 info.si_code = TARGET_SEGV_MAPERR;
557 info._sifields._sigfault._addr = env->cp15.c6_data;
558 queue_signal(env, info.si_signo, &info);
559
560 end_exclusive();
561}
562
pbrookfbb4a2e2008-05-29 00:20:44 +0000563/* Handle a jump to the kernel code page. */
564static int
565do_kernel_trap(CPUARMState *env)
566{
567 uint32_t addr;
568 uint32_t cpsr;
569 uint32_t val;
570
571 switch (env->regs[15]) {
572 case 0xffff0fa0: /* __kernel_memory_barrier */
573 /* ??? No-op. Will need to do better for SMP. */
574 break;
575 case 0xffff0fc0: /* __kernel_cmpxchg */
pbrookd5975362008-06-07 20:50:51 +0000576 /* XXX: This only works between threads, not between processes.
577 It's probably possible to implement this with native host
578 operations. However things like ldrex/strex are much harder so
579 there's not much point trying. */
580 start_exclusive();
pbrookfbb4a2e2008-05-29 00:20:44 +0000581 cpsr = cpsr_read(env);
582 addr = env->regs[2];
583 /* FIXME: This should SEGV if the access fails. */
584 if (get_user_u32(val, addr))
585 val = ~env->regs[0];
586 if (val == env->regs[0]) {
587 val = env->regs[1];
588 /* FIXME: Check for segfaults. */
589 put_user_u32(val, addr);
590 env->regs[0] = 0;
591 cpsr |= CPSR_C;
592 } else {
593 env->regs[0] = -1;
594 cpsr &= ~CPSR_C;
595 }
596 cpsr_write(env, cpsr, CPSR_C);
pbrookd5975362008-06-07 20:50:51 +0000597 end_exclusive();
pbrookfbb4a2e2008-05-29 00:20:44 +0000598 break;
599 case 0xffff0fe0: /* __kernel_get_tls */
600 env->regs[0] = env->cp15.c13_tls2;
601 break;
Dr. David Alan Gilbert97cc7562011-08-31 17:24:34 +0100602 case 0xffff0f60: /* __kernel_cmpxchg64 */
603 arm_kernel_cmpxchg64_helper(env);
604 break;
605
pbrookfbb4a2e2008-05-29 00:20:44 +0000606 default:
607 return 1;
608 }
609 /* Jump back to the caller. */
610 addr = env->regs[14];
611 if (addr & 1) {
612 env->thumb = 1;
613 addr &= ~1;
614 }
615 env->regs[15] = addr;
616
617 return 0;
618}
619
Paul Brook426f5ab2009-11-22 21:35:13 +0000620static int do_strex(CPUARMState *env)
621{
622 uint32_t val;
623 int size;
624 int rc = 1;
625 int segv = 0;
626 uint32_t addr;
627 start_exclusive();
628 addr = env->exclusive_addr;
629 if (addr != env->exclusive_test) {
630 goto fail;
631 }
632 size = env->exclusive_info & 0xf;
633 switch (size) {
634 case 0:
635 segv = get_user_u8(val, addr);
636 break;
637 case 1:
638 segv = get_user_u16(val, addr);
639 break;
640 case 2:
641 case 3:
642 segv = get_user_u32(val, addr);
643 break;
Aurelien Jarnof7001a32009-12-24 00:17:12 +0100644 default:
645 abort();
Paul Brook426f5ab2009-11-22 21:35:13 +0000646 }
647 if (segv) {
648 env->cp15.c6_data = addr;
649 goto done;
650 }
651 if (val != env->exclusive_val) {
652 goto fail;
653 }
654 if (size == 3) {
655 segv = get_user_u32(val, addr + 4);
656 if (segv) {
657 env->cp15.c6_data = addr + 4;
658 goto done;
659 }
660 if (val != env->exclusive_high) {
661 goto fail;
662 }
663 }
664 val = env->regs[(env->exclusive_info >> 8) & 0xf];
665 switch (size) {
666 case 0:
667 segv = put_user_u8(val, addr);
668 break;
669 case 1:
670 segv = put_user_u16(val, addr);
671 break;
672 case 2:
673 case 3:
674 segv = put_user_u32(val, addr);
675 break;
676 }
677 if (segv) {
678 env->cp15.c6_data = addr;
679 goto done;
680 }
681 if (size == 3) {
682 val = env->regs[(env->exclusive_info >> 12) & 0xf];
Peter Maydell2c9adbd2010-12-07 15:37:34 +0000683 segv = put_user_u32(val, addr + 4);
Paul Brook426f5ab2009-11-22 21:35:13 +0000684 if (segv) {
685 env->cp15.c6_data = addr + 4;
686 goto done;
687 }
688 }
689 rc = 0;
690fail:
Paul Brook725b8a62009-12-11 15:38:10 +0000691 env->regs[15] += 4;
Paul Brook426f5ab2009-11-22 21:35:13 +0000692 env->regs[(env->exclusive_info >> 4) & 0xf] = rc;
693done:
694 end_exclusive();
695 return segv;
696}
697
bellardb346ff42003-06-15 20:05:50 +0000698void cpu_loop(CPUARMState *env)
699{
700 int trapnr;
701 unsigned int n, insn;
Anthony Liguoric227f092009-10-01 16:12:16 -0500702 target_siginfo_t info;
bellardb5ff1b32005-11-26 10:38:39 +0000703 uint32_t addr;
ths3b46e622007-09-17 08:09:54 +0000704
bellardb346ff42003-06-15 20:05:50 +0000705 for(;;) {
pbrookd5975362008-06-07 20:50:51 +0000706 cpu_exec_start(env);
bellardb346ff42003-06-15 20:05:50 +0000707 trapnr = cpu_arm_exec(env);
pbrookd5975362008-06-07 20:50:51 +0000708 cpu_exec_end(env);
bellardb346ff42003-06-15 20:05:50 +0000709 switch(trapnr) {
710 case EXCP_UDEF:
bellardc6981052004-02-16 21:49:03 +0000711 {
712 TaskState *ts = env->opaque;
713 uint32_t opcode;
aurel326d9a42b2008-04-07 20:30:53 +0000714 int rc;
bellardc6981052004-02-16 21:49:03 +0000715
716 /* we handle the FPU emulation here, as Linux */
717 /* we get the opcode */
bellard2f619692007-11-16 10:46:05 +0000718 /* FIXME - what to do if get_user() fails? */
Paul Brookd8fd2952012-03-30 18:02:50 +0100719 get_user_code_u32(opcode, env->regs[15], env->bswap_code);
ths3b46e622007-09-17 08:09:54 +0000720
aurel326d9a42b2008-04-07 20:30:53 +0000721 rc = EmulateAll(opcode, &ts->fpa, env);
722 if (rc == 0) { /* illegal instruction */
bellardc6981052004-02-16 21:49:03 +0000723 info.si_signo = SIGILL;
724 info.si_errno = 0;
725 info.si_code = TARGET_ILL_ILLOPN;
726 info._sifields._sigfault._addr = env->regs[15];
pbrook624f7972008-05-31 16:11:38 +0000727 queue_signal(env, info.si_signo, &info);
aurel326d9a42b2008-04-07 20:30:53 +0000728 } else if (rc < 0) { /* FP exception */
729 int arm_fpe=0;
730
731 /* translate softfloat flags to FPSR flags */
732 if (-rc & float_flag_invalid)
733 arm_fpe |= BIT_IOC;
734 if (-rc & float_flag_divbyzero)
735 arm_fpe |= BIT_DZC;
736 if (-rc & float_flag_overflow)
737 arm_fpe |= BIT_OFC;
738 if (-rc & float_flag_underflow)
739 arm_fpe |= BIT_UFC;
740 if (-rc & float_flag_inexact)
741 arm_fpe |= BIT_IXC;
742
743 FPSR fpsr = ts->fpa.fpsr;
744 //printf("fpsr 0x%x, arm_fpe 0x%x\n",fpsr,arm_fpe);
745
746 if (fpsr & (arm_fpe << 16)) { /* exception enabled? */
747 info.si_signo = SIGFPE;
748 info.si_errno = 0;
749
750 /* ordered by priority, least first */
751 if (arm_fpe & BIT_IXC) info.si_code = TARGET_FPE_FLTRES;
752 if (arm_fpe & BIT_UFC) info.si_code = TARGET_FPE_FLTUND;
753 if (arm_fpe & BIT_OFC) info.si_code = TARGET_FPE_FLTOVF;
754 if (arm_fpe & BIT_DZC) info.si_code = TARGET_FPE_FLTDIV;
755 if (arm_fpe & BIT_IOC) info.si_code = TARGET_FPE_FLTINV;
756
757 info._sifields._sigfault._addr = env->regs[15];
pbrook624f7972008-05-31 16:11:38 +0000758 queue_signal(env, info.si_signo, &info);
aurel326d9a42b2008-04-07 20:30:53 +0000759 } else {
760 env->regs[15] += 4;
761 }
762
763 /* accumulate unenabled exceptions */
764 if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC))
765 fpsr |= BIT_IXC;
766 if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC))
767 fpsr |= BIT_UFC;
768 if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC))
769 fpsr |= BIT_OFC;
770 if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC))
771 fpsr |= BIT_DZC;
772 if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC))
773 fpsr |= BIT_IOC;
774 ts->fpa.fpsr=fpsr;
775 } else { /* everything OK */
bellardc6981052004-02-16 21:49:03 +0000776 /* increment PC */
777 env->regs[15] += 4;
778 }
779 }
bellardb346ff42003-06-15 20:05:50 +0000780 break;
781 case EXCP_SWI:
pbrook06c949e2006-02-04 19:35:26 +0000782 case EXCP_BKPT:
bellardb346ff42003-06-15 20:05:50 +0000783 {
pbrookce4defa2006-02-09 16:49:55 +0000784 env->eabi = 1;
bellardb346ff42003-06-15 20:05:50 +0000785 /* system call */
pbrook06c949e2006-02-04 19:35:26 +0000786 if (trapnr == EXCP_BKPT) {
787 if (env->thumb) {
bellard2f619692007-11-16 10:46:05 +0000788 /* FIXME - what to do if get_user() fails? */
Paul Brookd8fd2952012-03-30 18:02:50 +0100789 get_user_code_u16(insn, env->regs[15], env->bswap_code);
pbrook06c949e2006-02-04 19:35:26 +0000790 n = insn & 0xff;
791 env->regs[15] += 2;
792 } else {
bellard2f619692007-11-16 10:46:05 +0000793 /* FIXME - what to do if get_user() fails? */
Paul Brookd8fd2952012-03-30 18:02:50 +0100794 get_user_code_u32(insn, env->regs[15], env->bswap_code);
pbrook06c949e2006-02-04 19:35:26 +0000795 n = (insn & 0xf) | ((insn >> 4) & 0xff0);
796 env->regs[15] += 4;
797 }
bellard192c7bd2005-04-27 20:11:21 +0000798 } else {
pbrook06c949e2006-02-04 19:35:26 +0000799 if (env->thumb) {
bellard2f619692007-11-16 10:46:05 +0000800 /* FIXME - what to do if get_user() fails? */
Paul Brookd8fd2952012-03-30 18:02:50 +0100801 get_user_code_u16(insn, env->regs[15] - 2,
802 env->bswap_code);
pbrook06c949e2006-02-04 19:35:26 +0000803 n = insn & 0xff;
804 } else {
bellard2f619692007-11-16 10:46:05 +0000805 /* FIXME - what to do if get_user() fails? */
Paul Brookd8fd2952012-03-30 18:02:50 +0100806 get_user_code_u32(insn, env->regs[15] - 4,
807 env->bswap_code);
pbrook06c949e2006-02-04 19:35:26 +0000808 n = insn & 0xffffff;
809 }
bellard192c7bd2005-04-27 20:11:21 +0000810 }
811
bellard6f1f31c2004-04-25 18:00:45 +0000812 if (n == ARM_NR_cacheflush) {
Blue Swirldcfd14b2011-05-14 11:55:30 +0000813 /* nop */
bellarda4f81972005-04-23 18:25:41 +0000814 } else if (n == ARM_NR_semihosting
815 || n == ARM_NR_thumb_semihosting) {
816 env->regs[0] = do_arm_semihosting (env);
Alexander Graf3a1363a2012-05-29 05:30:26 +0000817 } else if (n == 0 || n >= ARM_SYSCALL_BASE || env->thumb) {
bellardb346ff42003-06-15 20:05:50 +0000818 /* linux syscall */
pbrookce4defa2006-02-09 16:49:55 +0000819 if (env->thumb || n == 0) {
bellard192c7bd2005-04-27 20:11:21 +0000820 n = env->regs[7];
821 } else {
822 n -= ARM_SYSCALL_BASE;
pbrookce4defa2006-02-09 16:49:55 +0000823 env->eabi = 0;
bellard192c7bd2005-04-27 20:11:21 +0000824 }
pbrookfbb4a2e2008-05-29 00:20:44 +0000825 if ( n > ARM_NR_BASE) {
826 switch (n) {
827 case ARM_NR_cacheflush:
Blue Swirldcfd14b2011-05-14 11:55:30 +0000828 /* nop */
pbrookfbb4a2e2008-05-29 00:20:44 +0000829 break;
830 case ARM_NR_set_tls:
831 cpu_set_tls(env, env->regs[0]);
832 env->regs[0] = 0;
833 break;
834 default:
835 gemu_log("qemu: Unsupported ARM syscall: 0x%x\n",
836 n);
837 env->regs[0] = -TARGET_ENOSYS;
838 break;
839 }
840 } else {
841 env->regs[0] = do_syscall(env,
842 n,
843 env->regs[0],
844 env->regs[1],
845 env->regs[2],
846 env->regs[3],
847 env->regs[4],
Peter Maydell5945cfc2011-06-16 17:37:13 +0100848 env->regs[5],
849 0, 0);
pbrookfbb4a2e2008-05-29 00:20:44 +0000850 }
bellardb346ff42003-06-15 20:05:50 +0000851 } else {
852 goto error;
853 }
854 }
855 break;
bellard43fff232003-07-09 19:31:39 +0000856 case EXCP_INTERRUPT:
857 /* just indicate that signals should be handled asap */
858 break;
bellard68016c62005-02-07 23:12:27 +0000859 case EXCP_PREFETCH_ABORT:
balrogeae473c2008-07-29 14:09:57 +0000860 addr = env->cp15.c6_insn;
bellardb5ff1b32005-11-26 10:38:39 +0000861 goto do_segv;
bellard68016c62005-02-07 23:12:27 +0000862 case EXCP_DATA_ABORT:
balrogeae473c2008-07-29 14:09:57 +0000863 addr = env->cp15.c6_data;
bellardb5ff1b32005-11-26 10:38:39 +0000864 do_segv:
bellard68016c62005-02-07 23:12:27 +0000865 {
866 info.si_signo = SIGSEGV;
867 info.si_errno = 0;
868 /* XXX: check env->error_code */
869 info.si_code = TARGET_SEGV_MAPERR;
bellardb5ff1b32005-11-26 10:38:39 +0000870 info._sifields._sigfault._addr = addr;
pbrook624f7972008-05-31 16:11:38 +0000871 queue_signal(env, info.si_signo, &info);
bellard68016c62005-02-07 23:12:27 +0000872 }
873 break;
bellard1fddef42005-04-17 19:16:13 +0000874 case EXCP_DEBUG:
875 {
876 int sig;
877
878 sig = gdb_handlesig (env, TARGET_SIGTRAP);
879 if (sig)
880 {
881 info.si_signo = sig;
882 info.si_errno = 0;
883 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +0000884 queue_signal(env, info.si_signo, &info);
bellard1fddef42005-04-17 19:16:13 +0000885 }
886 }
887 break;
pbrookfbb4a2e2008-05-29 00:20:44 +0000888 case EXCP_KERNEL_TRAP:
889 if (do_kernel_trap(env))
890 goto error;
891 break;
Paul Brook426f5ab2009-11-22 21:35:13 +0000892 case EXCP_STREX:
893 if (do_strex(env)) {
894 addr = env->cp15.c6_data;
895 goto do_segv;
896 }
Paul Brooke9273452009-11-24 13:10:08 +0000897 break;
bellardb346ff42003-06-15 20:05:50 +0000898 default:
899 error:
ths5fafdf22007-09-16 21:08:06 +0000900 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
bellardb346ff42003-06-15 20:05:50 +0000901 trapnr);
bellard7fe48482004-10-09 18:08:01 +0000902 cpu_dump_state(env, stderr, fprintf, 0);
bellardb346ff42003-06-15 20:05:50 +0000903 abort();
904 }
905 process_pending_signals(env);
906 }
907}
908
909#endif
bellard1b6b0292003-03-22 17:31:38 +0000910
Guan Xuetaod2fbca92011-04-12 16:27:03 +0800911#ifdef TARGET_UNICORE32
912
Andreas Färber05390242012-02-25 03:37:53 +0100913void cpu_loop(CPUUniCore32State *env)
Guan Xuetaod2fbca92011-04-12 16:27:03 +0800914{
915 int trapnr;
916 unsigned int n, insn;
917 target_siginfo_t info;
918
919 for (;;) {
920 cpu_exec_start(env);
921 trapnr = uc32_cpu_exec(env);
922 cpu_exec_end(env);
923 switch (trapnr) {
924 case UC32_EXCP_PRIV:
925 {
926 /* system call */
927 get_user_u32(insn, env->regs[31] - 4);
928 n = insn & 0xffffff;
929
930 if (n >= UC32_SYSCALL_BASE) {
931 /* linux syscall */
932 n -= UC32_SYSCALL_BASE;
933 if (n == UC32_SYSCALL_NR_set_tls) {
934 cpu_set_tls(env, env->regs[0]);
935 env->regs[0] = 0;
936 } else {
937 env->regs[0] = do_syscall(env,
938 n,
939 env->regs[0],
940 env->regs[1],
941 env->regs[2],
942 env->regs[3],
943 env->regs[4],
Peter Maydell5945cfc2011-06-16 17:37:13 +0100944 env->regs[5],
945 0, 0);
Guan Xuetaod2fbca92011-04-12 16:27:03 +0800946 }
947 } else {
948 goto error;
949 }
950 }
951 break;
Guan Xuetaod48813d2012-08-10 14:42:23 +0800952 case UC32_EXCP_DTRAP:
953 case UC32_EXCP_ITRAP:
Guan Xuetaod2fbca92011-04-12 16:27:03 +0800954 info.si_signo = SIGSEGV;
955 info.si_errno = 0;
956 /* XXX: check env->error_code */
957 info.si_code = TARGET_SEGV_MAPERR;
958 info._sifields._sigfault._addr = env->cp0.c4_faultaddr;
959 queue_signal(env, info.si_signo, &info);
960 break;
961 case EXCP_INTERRUPT:
962 /* just indicate that signals should be handled asap */
963 break;
964 case EXCP_DEBUG:
965 {
966 int sig;
967
968 sig = gdb_handlesig(env, TARGET_SIGTRAP);
969 if (sig) {
970 info.si_signo = sig;
971 info.si_errno = 0;
972 info.si_code = TARGET_TRAP_BRKPT;
973 queue_signal(env, info.si_signo, &info);
974 }
975 }
976 break;
977 default:
978 goto error;
979 }
980 process_pending_signals(env);
981 }
982
983error:
984 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr);
985 cpu_dump_state(env, stderr, fprintf, 0);
986 abort();
987}
988#endif
989
bellard93ac68b2003-09-30 20:57:29 +0000990#ifdef TARGET_SPARC
blueswir1ed23fbd2008-08-30 09:20:21 +0000991#define SPARC64_STACK_BIAS 2047
bellard93ac68b2003-09-30 20:57:29 +0000992
bellard060366c2004-01-04 15:50:01 +0000993//#define DEBUG_WIN
994
bellard2623cba2005-02-19 17:25:31 +0000995/* WARNING: dealing with register windows _is_ complicated. More info
996 can be found at http://www.sics.se/~psm/sparcstack.html */
bellard060366c2004-01-04 15:50:01 +0000997static inline int get_reg_index(CPUSPARCState *env, int cwp, int index)
998{
blueswir11a140262008-06-07 08:07:37 +0000999 index = (index + cwp * 16) % (16 * env->nwindows);
bellard060366c2004-01-04 15:50:01 +00001000 /* wrap handling : if cwp is on the last window, then we use the
1001 registers 'after' the end */
blueswir11a140262008-06-07 08:07:37 +00001002 if (index < 8 && env->cwp == env->nwindows - 1)
1003 index += 16 * env->nwindows;
bellard060366c2004-01-04 15:50:01 +00001004 return index;
1005}
1006
bellard2623cba2005-02-19 17:25:31 +00001007/* save the register window 'cwp1' */
1008static inline void save_window_offset(CPUSPARCState *env, int cwp1)
bellard060366c2004-01-04 15:50:01 +00001009{
bellard2623cba2005-02-19 17:25:31 +00001010 unsigned int i;
blueswir1992f48a2007-10-14 16:27:31 +00001011 abi_ulong sp_ptr;
ths3b46e622007-09-17 08:09:54 +00001012
pbrook53a59602006-03-25 19:31:22 +00001013 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
blueswir1ed23fbd2008-08-30 09:20:21 +00001014#ifdef TARGET_SPARC64
1015 if (sp_ptr & 3)
1016 sp_ptr += SPARC64_STACK_BIAS;
1017#endif
bellard060366c2004-01-04 15:50:01 +00001018#if defined(DEBUG_WIN)
blueswir12daf0282008-06-15 18:02:48 +00001019 printf("win_overflow: sp_ptr=0x" TARGET_ABI_FMT_lx " save_cwp=%d\n",
1020 sp_ptr, cwp1);
bellard060366c2004-01-04 15:50:01 +00001021#endif
bellard2623cba2005-02-19 17:25:31 +00001022 for(i = 0; i < 16; i++) {
bellard2f619692007-11-16 10:46:05 +00001023 /* FIXME - what to do if put_user() fails? */
1024 put_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
blueswir1992f48a2007-10-14 16:27:31 +00001025 sp_ptr += sizeof(abi_ulong);
bellard2623cba2005-02-19 17:25:31 +00001026 }
bellard060366c2004-01-04 15:50:01 +00001027}
1028
1029static void save_window(CPUSPARCState *env)
1030{
bellard5ef54112006-07-18 21:14:09 +00001031#ifndef TARGET_SPARC64
bellard2623cba2005-02-19 17:25:31 +00001032 unsigned int new_wim;
blueswir11a140262008-06-07 08:07:37 +00001033 new_wim = ((env->wim >> 1) | (env->wim << (env->nwindows - 1))) &
1034 ((1LL << env->nwindows) - 1);
1035 save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2));
bellard2623cba2005-02-19 17:25:31 +00001036 env->wim = new_wim;
bellard5ef54112006-07-18 21:14:09 +00001037#else
blueswir11a140262008-06-07 08:07:37 +00001038 save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2));
bellard5ef54112006-07-18 21:14:09 +00001039 env->cansave++;
1040 env->canrestore--;
1041#endif
bellard060366c2004-01-04 15:50:01 +00001042}
1043
1044static void restore_window(CPUSPARCState *env)
1045{
blueswir1eda52952008-08-27 19:19:44 +00001046#ifndef TARGET_SPARC64
1047 unsigned int new_wim;
1048#endif
1049 unsigned int i, cwp1;
blueswir1992f48a2007-10-14 16:27:31 +00001050 abi_ulong sp_ptr;
ths3b46e622007-09-17 08:09:54 +00001051
blueswir1eda52952008-08-27 19:19:44 +00001052#ifndef TARGET_SPARC64
blueswir11a140262008-06-07 08:07:37 +00001053 new_wim = ((env->wim << 1) | (env->wim >> (env->nwindows - 1))) &
1054 ((1LL << env->nwindows) - 1);
blueswir1eda52952008-08-27 19:19:44 +00001055#endif
ths3b46e622007-09-17 08:09:54 +00001056
bellard060366c2004-01-04 15:50:01 +00001057 /* restore the invalid window */
blueswir11a140262008-06-07 08:07:37 +00001058 cwp1 = cpu_cwp_inc(env, env->cwp + 1);
pbrook53a59602006-03-25 19:31:22 +00001059 sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)];
blueswir1ed23fbd2008-08-30 09:20:21 +00001060#ifdef TARGET_SPARC64
1061 if (sp_ptr & 3)
1062 sp_ptr += SPARC64_STACK_BIAS;
1063#endif
bellard060366c2004-01-04 15:50:01 +00001064#if defined(DEBUG_WIN)
blueswir12daf0282008-06-15 18:02:48 +00001065 printf("win_underflow: sp_ptr=0x" TARGET_ABI_FMT_lx " load_cwp=%d\n",
1066 sp_ptr, cwp1);
bellard060366c2004-01-04 15:50:01 +00001067#endif
bellard2623cba2005-02-19 17:25:31 +00001068 for(i = 0; i < 16; i++) {
bellard2f619692007-11-16 10:46:05 +00001069 /* FIXME - what to do if get_user() fails? */
1070 get_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr);
blueswir1992f48a2007-10-14 16:27:31 +00001071 sp_ptr += sizeof(abi_ulong);
bellard2623cba2005-02-19 17:25:31 +00001072 }
bellard5ef54112006-07-18 21:14:09 +00001073#ifdef TARGET_SPARC64
1074 env->canrestore++;
blueswir11a140262008-06-07 08:07:37 +00001075 if (env->cleanwin < env->nwindows - 1)
1076 env->cleanwin++;
bellard5ef54112006-07-18 21:14:09 +00001077 env->cansave--;
blueswir1eda52952008-08-27 19:19:44 +00001078#else
1079 env->wim = new_wim;
bellard5ef54112006-07-18 21:14:09 +00001080#endif
bellard060366c2004-01-04 15:50:01 +00001081}
1082
1083static void flush_windows(CPUSPARCState *env)
1084{
1085 int offset, cwp1;
bellard2623cba2005-02-19 17:25:31 +00001086
1087 offset = 1;
bellard060366c2004-01-04 15:50:01 +00001088 for(;;) {
1089 /* if restore would invoke restore_window(), then we can stop */
blueswir11a140262008-06-07 08:07:37 +00001090 cwp1 = cpu_cwp_inc(env, env->cwp + offset);
blueswir1eda52952008-08-27 19:19:44 +00001091#ifndef TARGET_SPARC64
bellard060366c2004-01-04 15:50:01 +00001092 if (env->wim & (1 << cwp1))
1093 break;
blueswir1eda52952008-08-27 19:19:44 +00001094#else
1095 if (env->canrestore == 0)
1096 break;
1097 env->cansave++;
1098 env->canrestore--;
1099#endif
bellard2623cba2005-02-19 17:25:31 +00001100 save_window_offset(env, cwp1);
bellard060366c2004-01-04 15:50:01 +00001101 offset++;
1102 }
blueswir11a140262008-06-07 08:07:37 +00001103 cwp1 = cpu_cwp_inc(env, env->cwp + 1);
blueswir1eda52952008-08-27 19:19:44 +00001104#ifndef TARGET_SPARC64
1105 /* set wim so that restore will reload the registers */
bellard2623cba2005-02-19 17:25:31 +00001106 env->wim = 1 << cwp1;
blueswir1eda52952008-08-27 19:19:44 +00001107#endif
bellard2623cba2005-02-19 17:25:31 +00001108#if defined(DEBUG_WIN)
1109 printf("flush_windows: nb=%d\n", offset - 1);
bellard80a9d032005-01-03 23:31:27 +00001110#endif
bellard2623cba2005-02-19 17:25:31 +00001111}
bellard060366c2004-01-04 15:50:01 +00001112
bellard93ac68b2003-09-30 20:57:29 +00001113void cpu_loop (CPUSPARCState *env)
1114{
Richard Henderson2cc20262010-04-25 11:01:25 -07001115 int trapnr;
1116 abi_long ret;
Anthony Liguoric227f092009-10-01 16:12:16 -05001117 target_siginfo_t info;
ths3b46e622007-09-17 08:09:54 +00001118
bellard060366c2004-01-04 15:50:01 +00001119 while (1) {
1120 trapnr = cpu_sparc_exec (env);
ths3b46e622007-09-17 08:09:54 +00001121
Richard Henderson20132b92012-10-09 14:50:00 -07001122 /* Compute PSR before exposing state. */
1123 if (env->cc_op != CC_OP_FLAGS) {
1124 cpu_get_psr(env);
1125 }
1126
bellard060366c2004-01-04 15:50:01 +00001127 switch (trapnr) {
bellard5ef54112006-07-18 21:14:09 +00001128#ifndef TARGET_SPARC64
ths5fafdf22007-09-16 21:08:06 +00001129 case 0x88:
bellard060366c2004-01-04 15:50:01 +00001130 case 0x90:
bellard5ef54112006-07-18 21:14:09 +00001131#else
blueswir1cb33da52007-10-09 16:34:29 +00001132 case 0x110:
bellard5ef54112006-07-18 21:14:09 +00001133 case 0x16d:
1134#endif
bellard060366c2004-01-04 15:50:01 +00001135 ret = do_syscall (env, env->gregs[1],
ths5fafdf22007-09-16 21:08:06 +00001136 env->regwptr[0], env->regwptr[1],
1137 env->regwptr[2], env->regwptr[3],
Peter Maydell5945cfc2011-06-16 17:37:13 +01001138 env->regwptr[4], env->regwptr[5],
1139 0, 0);
Richard Henderson2cc20262010-04-25 11:01:25 -07001140 if ((abi_ulong)ret >= (abi_ulong)(-515)) {
blueswir1992f48a2007-10-14 16:27:31 +00001141#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
bellard27908722006-10-23 21:31:01 +00001142 env->xcc |= PSR_CARRY;
1143#else
bellard060366c2004-01-04 15:50:01 +00001144 env->psr |= PSR_CARRY;
bellard27908722006-10-23 21:31:01 +00001145#endif
bellard060366c2004-01-04 15:50:01 +00001146 ret = -ret;
1147 } else {
blueswir1992f48a2007-10-14 16:27:31 +00001148#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
bellard27908722006-10-23 21:31:01 +00001149 env->xcc &= ~PSR_CARRY;
1150#else
bellard060366c2004-01-04 15:50:01 +00001151 env->psr &= ~PSR_CARRY;
bellard27908722006-10-23 21:31:01 +00001152#endif
bellard060366c2004-01-04 15:50:01 +00001153 }
1154 env->regwptr[0] = ret;
1155 /* next instruction */
1156 env->pc = env->npc;
1157 env->npc = env->npc + 4;
1158 break;
1159 case 0x83: /* flush windows */
blueswir1992f48a2007-10-14 16:27:31 +00001160#ifdef TARGET_ABI32
1161 case 0x103:
1162#endif
bellard2623cba2005-02-19 17:25:31 +00001163 flush_windows(env);
bellard060366c2004-01-04 15:50:01 +00001164 /* next instruction */
1165 env->pc = env->npc;
1166 env->npc = env->npc + 4;
1167 break;
bellard34751872005-07-02 14:31:34 +00001168#ifndef TARGET_SPARC64
bellard060366c2004-01-04 15:50:01 +00001169 case TT_WIN_OVF: /* window overflow */
1170 save_window(env);
1171 break;
1172 case TT_WIN_UNF: /* window underflow */
1173 restore_window(env);
1174 break;
bellard61ff6f52005-02-15 22:54:53 +00001175 case TT_TFAULT:
1176 case TT_DFAULT:
1177 {
Richard Henderson59f71822011-10-25 10:34:07 -07001178 info.si_signo = TARGET_SIGSEGV;
bellard61ff6f52005-02-15 22:54:53 +00001179 info.si_errno = 0;
1180 /* XXX: check env->error_code */
1181 info.si_code = TARGET_SEGV_MAPERR;
1182 info._sifields._sigfault._addr = env->mmuregs[4];
pbrook624f7972008-05-31 16:11:38 +00001183 queue_signal(env, info.si_signo, &info);
bellard61ff6f52005-02-15 22:54:53 +00001184 }
1185 break;
bellard34751872005-07-02 14:31:34 +00001186#else
bellard5ef54112006-07-18 21:14:09 +00001187 case TT_SPILL: /* window overflow */
1188 save_window(env);
1189 break;
1190 case TT_FILL: /* window underflow */
1191 restore_window(env);
1192 break;
blueswir17f84a722007-07-07 20:46:41 +00001193 case TT_TFAULT:
1194 case TT_DFAULT:
1195 {
Richard Henderson59f71822011-10-25 10:34:07 -07001196 info.si_signo = TARGET_SIGSEGV;
blueswir17f84a722007-07-07 20:46:41 +00001197 info.si_errno = 0;
1198 /* XXX: check env->error_code */
1199 info.si_code = TARGET_SEGV_MAPERR;
1200 if (trapnr == TT_DFAULT)
1201 info._sifields._sigfault._addr = env->dmmuregs[4];
1202 else
Igor Kovalenko8194f352009-08-03 23:15:02 +04001203 info._sifields._sigfault._addr = cpu_tsptr(env)->tpc;
pbrook624f7972008-05-31 16:11:38 +00001204 queue_signal(env, info.si_signo, &info);
blueswir17f84a722007-07-07 20:46:41 +00001205 }
1206 break;
bellard27524dc2007-11-11 19:32:52 +00001207#ifndef TARGET_ABI32
blueswir15bfb56b2007-10-05 17:01:51 +00001208 case 0x16e:
1209 flush_windows(env);
1210 sparc64_get_context(env);
1211 break;
1212 case 0x16f:
1213 flush_windows(env);
1214 sparc64_set_context(env);
1215 break;
bellard34751872005-07-02 14:31:34 +00001216#endif
bellard27524dc2007-11-11 19:32:52 +00001217#endif
bellard48dc41e2006-06-21 18:15:50 +00001218 case EXCP_INTERRUPT:
1219 /* just indicate that signals should be handled asap */
1220 break;
Richard Henderson75f22e42011-10-25 10:34:06 -07001221 case TT_ILL_INSN:
1222 {
1223 info.si_signo = TARGET_SIGILL;
1224 info.si_errno = 0;
1225 info.si_code = TARGET_ILL_ILLOPC;
1226 info._sifields._sigfault._addr = env->pc;
1227 queue_signal(env, info.si_signo, &info);
1228 }
1229 break;
bellard1fddef42005-04-17 19:16:13 +00001230 case EXCP_DEBUG:
1231 {
1232 int sig;
1233
1234 sig = gdb_handlesig (env, TARGET_SIGTRAP);
1235 if (sig)
1236 {
1237 info.si_signo = sig;
1238 info.si_errno = 0;
1239 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00001240 queue_signal(env, info.si_signo, &info);
bellard1fddef42005-04-17 19:16:13 +00001241 }
1242 }
1243 break;
bellard060366c2004-01-04 15:50:01 +00001244 default:
1245 printf ("Unhandled trap: 0x%x\n", trapnr);
bellard7fe48482004-10-09 18:08:01 +00001246 cpu_dump_state(env, stderr, fprintf, 0);
bellard060366c2004-01-04 15:50:01 +00001247 exit (1);
1248 }
1249 process_pending_signals (env);
1250 }
bellard93ac68b2003-09-30 20:57:29 +00001251}
1252
1253#endif
1254
bellard67867302003-11-23 17:05:30 +00001255#ifdef TARGET_PPC
Andreas Färber05390242012-02-25 03:37:53 +01001256static inline uint64_t cpu_ppc_get_tb(CPUPPCState *env)
bellard9fddaa02004-05-21 12:59:32 +00001257{
1258 /* TO FIX */
1259 return 0;
1260}
ths3b46e622007-09-17 08:09:54 +00001261
Andreas Färber05390242012-02-25 03:37:53 +01001262uint64_t cpu_ppc_load_tbl(CPUPPCState *env)
bellard9fddaa02004-05-21 12:59:32 +00001263{
Alexander Grafe3ea6522009-12-21 12:24:17 +01001264 return cpu_ppc_get_tb(env);
bellard9fddaa02004-05-21 12:59:32 +00001265}
ths3b46e622007-09-17 08:09:54 +00001266
Andreas Färber05390242012-02-25 03:37:53 +01001267uint32_t cpu_ppc_load_tbu(CPUPPCState *env)
bellard9fddaa02004-05-21 12:59:32 +00001268{
1269 return cpu_ppc_get_tb(env) >> 32;
1270}
ths3b46e622007-09-17 08:09:54 +00001271
Andreas Färber05390242012-02-25 03:37:53 +01001272uint64_t cpu_ppc_load_atbl(CPUPPCState *env)
bellard9fddaa02004-05-21 12:59:32 +00001273{
Aurelien Jarnob711de92009-12-21 13:52:08 +01001274 return cpu_ppc_get_tb(env);
bellard9fddaa02004-05-21 12:59:32 +00001275}
1276
Andreas Färber05390242012-02-25 03:37:53 +01001277uint32_t cpu_ppc_load_atbu(CPUPPCState *env)
bellard9fddaa02004-05-21 12:59:32 +00001278{
j_mayera062e362007-09-30 00:38:38 +00001279 return cpu_ppc_get_tb(env) >> 32;
bellard9fddaa02004-05-21 12:59:32 +00001280}
ths5fafdf22007-09-16 21:08:06 +00001281
Andreas Färber05390242012-02-25 03:37:53 +01001282uint32_t cpu_ppc601_load_rtcu(CPUPPCState *env)
j_mayer76a66252007-03-07 08:32:30 +00001283__attribute__ (( alias ("cpu_ppc_load_tbu") ));
1284
Andreas Färber05390242012-02-25 03:37:53 +01001285uint32_t cpu_ppc601_load_rtcl(CPUPPCState *env)
bellard9fddaa02004-05-21 12:59:32 +00001286{
j_mayer76a66252007-03-07 08:32:30 +00001287 return cpu_ppc_load_tbl(env) & 0x3FFFFF80;
bellard9fddaa02004-05-21 12:59:32 +00001288}
j_mayer76a66252007-03-07 08:32:30 +00001289
j_mayera750fc02007-09-26 23:54:22 +00001290/* XXX: to be fixed */
Alexander Graf73b01962009-12-21 14:02:39 +01001291int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, uint32_t *valp)
j_mayera750fc02007-09-26 23:54:22 +00001292{
1293 return -1;
1294}
1295
Alexander Graf73b01962009-12-21 14:02:39 +01001296int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, uint32_t val)
j_mayera750fc02007-09-26 23:54:22 +00001297{
1298 return -1;
1299}
1300
Blue Swirl001faf32009-05-13 17:53:17 +00001301#define EXCP_DUMP(env, fmt, ...) \
1302do { \
1303 fprintf(stderr, fmt , ## __VA_ARGS__); \
1304 cpu_dump_state(env, stderr, fprintf, 0); \
1305 qemu_log(fmt, ## __VA_ARGS__); \
Blue Swirleeacee42012-06-03 16:35:32 +00001306 if (qemu_log_enabled()) { \
malc430c7ec2009-07-15 20:52:47 +04001307 log_cpu_state(env, 0); \
Blue Swirleeacee42012-06-03 16:35:32 +00001308 } \
j_mayere1833e12007-09-29 13:06:16 +00001309} while (0)
1310
Nathan Froyd56f066b2009-08-03 08:43:27 -07001311static int do_store_exclusive(CPUPPCState *env)
1312{
1313 target_ulong addr;
1314 target_ulong page_addr;
1315 target_ulong val;
1316 int flags;
1317 int segv = 0;
1318
1319 addr = env->reserve_ea;
1320 page_addr = addr & TARGET_PAGE_MASK;
1321 start_exclusive();
1322 mmap_lock();
1323 flags = page_get_flags(page_addr);
1324 if ((flags & PAGE_READ) == 0) {
1325 segv = 1;
1326 } else {
1327 int reg = env->reserve_info & 0x1f;
1328 int size = (env->reserve_info >> 5) & 0xf;
1329 int stored = 0;
1330
1331 if (addr == env->reserve_addr) {
1332 switch (size) {
1333 case 1: segv = get_user_u8(val, addr); break;
1334 case 2: segv = get_user_u16(val, addr); break;
1335 case 4: segv = get_user_u32(val, addr); break;
1336#if defined(TARGET_PPC64)
1337 case 8: segv = get_user_u64(val, addr); break;
1338#endif
1339 default: abort();
1340 }
1341 if (!segv && val == env->reserve_val) {
1342 val = env->gpr[reg];
1343 switch (size) {
1344 case 1: segv = put_user_u8(val, addr); break;
1345 case 2: segv = put_user_u16(val, addr); break;
1346 case 4: segv = put_user_u32(val, addr); break;
1347#if defined(TARGET_PPC64)
1348 case 8: segv = put_user_u64(val, addr); break;
1349#endif
1350 default: abort();
1351 }
1352 if (!segv) {
1353 stored = 1;
1354 }
1355 }
1356 }
1357 env->crf[0] = (stored << 1) | xer_so;
1358 env->reserve_addr = (target_ulong)-1;
1359 }
1360 if (!segv) {
1361 env->nip += 4;
1362 }
1363 mmap_unlock();
1364 end_exclusive();
1365 return segv;
1366}
1367
bellard67867302003-11-23 17:05:30 +00001368void cpu_loop(CPUPPCState *env)
1369{
Anthony Liguoric227f092009-10-01 16:12:16 -05001370 target_siginfo_t info;
bellard61190b12004-01-04 23:54:31 +00001371 int trapnr;
Richard Henderson9e0e2f92011-10-26 09:59:18 -07001372 target_ulong ret;
ths3b46e622007-09-17 08:09:54 +00001373
bellard67867302003-11-23 17:05:30 +00001374 for(;;) {
Nathan Froyd56f066b2009-08-03 08:43:27 -07001375 cpu_exec_start(env);
bellard67867302003-11-23 17:05:30 +00001376 trapnr = cpu_ppc_exec(env);
Nathan Froyd56f066b2009-08-03 08:43:27 -07001377 cpu_exec_end(env);
bellard67867302003-11-23 17:05:30 +00001378 switch(trapnr) {
j_mayere1833e12007-09-29 13:06:16 +00001379 case POWERPC_EXCP_NONE:
1380 /* Just go on */
bellard67867302003-11-23 17:05:30 +00001381 break;
j_mayere1833e12007-09-29 13:06:16 +00001382 case POWERPC_EXCP_CRITICAL: /* Critical input */
1383 cpu_abort(env, "Critical interrupt while in user mode. "
1384 "Aborting\n");
1385 break;
1386 case POWERPC_EXCP_MCHECK: /* Machine check exception */
1387 cpu_abort(env, "Machine check exception while in user mode. "
1388 "Aborting\n");
1389 break;
1390 case POWERPC_EXCP_DSI: /* Data storage exception */
Blue Swirl90e189e2009-08-16 11:13:18 +00001391 EXCP_DUMP(env, "Invalid data memory access: 0x" TARGET_FMT_lx "\n",
j_mayere1833e12007-09-29 13:06:16 +00001392 env->spr[SPR_DAR]);
1393 /* XXX: check this. Seems bugged */
1394 switch (env->error_code & 0xFF000000) {
1395 case 0x40000000:
1396 info.si_signo = TARGET_SIGSEGV;
1397 info.si_errno = 0;
1398 info.si_code = TARGET_SEGV_MAPERR;
1399 break;
1400 case 0x04000000:
1401 info.si_signo = TARGET_SIGILL;
1402 info.si_errno = 0;
1403 info.si_code = TARGET_ILL_ILLADR;
1404 break;
1405 case 0x08000000:
1406 info.si_signo = TARGET_SIGSEGV;
1407 info.si_errno = 0;
1408 info.si_code = TARGET_SEGV_ACCERR;
1409 break;
1410 default:
1411 /* Let's send a regular segfault... */
1412 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
1413 env->error_code);
1414 info.si_signo = TARGET_SIGSEGV;
1415 info.si_errno = 0;
1416 info.si_code = TARGET_SEGV_MAPERR;
1417 break;
1418 }
1419 info._sifields._sigfault._addr = env->nip;
pbrook624f7972008-05-31 16:11:38 +00001420 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001421 break;
1422 case POWERPC_EXCP_ISI: /* Instruction storage exception */
Blue Swirl90e189e2009-08-16 11:13:18 +00001423 EXCP_DUMP(env, "Invalid instruction fetch: 0x\n" TARGET_FMT_lx
1424 "\n", env->spr[SPR_SRR0]);
j_mayere1833e12007-09-29 13:06:16 +00001425 /* XXX: check this */
1426 switch (env->error_code & 0xFF000000) {
1427 case 0x40000000:
1428 info.si_signo = TARGET_SIGSEGV;
1429 info.si_errno = 0;
1430 info.si_code = TARGET_SEGV_MAPERR;
1431 break;
1432 case 0x10000000:
1433 case 0x08000000:
1434 info.si_signo = TARGET_SIGSEGV;
1435 info.si_errno = 0;
1436 info.si_code = TARGET_SEGV_ACCERR;
1437 break;
1438 default:
1439 /* Let's send a regular segfault... */
1440 EXCP_DUMP(env, "Invalid segfault errno (%02x)\n",
1441 env->error_code);
1442 info.si_signo = TARGET_SIGSEGV;
1443 info.si_errno = 0;
1444 info.si_code = TARGET_SEGV_MAPERR;
1445 break;
1446 }
1447 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001448 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001449 break;
1450 case POWERPC_EXCP_EXTERNAL: /* External input */
1451 cpu_abort(env, "External interrupt while in user mode. "
1452 "Aborting\n");
1453 break;
1454 case POWERPC_EXCP_ALIGN: /* Alignment exception */
1455 EXCP_DUMP(env, "Unaligned memory access\n");
1456 /* XXX: check this */
1457 info.si_signo = TARGET_SIGBUS;
1458 info.si_errno = 0;
1459 info.si_code = TARGET_BUS_ADRALN;
1460 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001461 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001462 break;
1463 case POWERPC_EXCP_PROGRAM: /* Program exception */
1464 /* XXX: check this */
1465 switch (env->error_code & ~0xF) {
1466 case POWERPC_EXCP_FP:
1467 EXCP_DUMP(env, "Floating point program exception\n");
j_mayere1833e12007-09-29 13:06:16 +00001468 info.si_signo = TARGET_SIGFPE;
1469 info.si_errno = 0;
1470 switch (env->error_code & 0xF) {
1471 case POWERPC_EXCP_FP_OX:
1472 info.si_code = TARGET_FPE_FLTOVF;
1473 break;
1474 case POWERPC_EXCP_FP_UX:
1475 info.si_code = TARGET_FPE_FLTUND;
1476 break;
1477 case POWERPC_EXCP_FP_ZX:
1478 case POWERPC_EXCP_FP_VXZDZ:
1479 info.si_code = TARGET_FPE_FLTDIV;
1480 break;
1481 case POWERPC_EXCP_FP_XX:
1482 info.si_code = TARGET_FPE_FLTRES;
1483 break;
1484 case POWERPC_EXCP_FP_VXSOFT:
1485 info.si_code = TARGET_FPE_FLTINV;
1486 break;
j_mayer7c580442007-10-27 17:54:30 +00001487 case POWERPC_EXCP_FP_VXSNAN:
j_mayere1833e12007-09-29 13:06:16 +00001488 case POWERPC_EXCP_FP_VXISI:
1489 case POWERPC_EXCP_FP_VXIDI:
1490 case POWERPC_EXCP_FP_VXIMZ:
1491 case POWERPC_EXCP_FP_VXVC:
1492 case POWERPC_EXCP_FP_VXSQRT:
1493 case POWERPC_EXCP_FP_VXCVI:
1494 info.si_code = TARGET_FPE_FLTSUB;
1495 break;
1496 default:
1497 EXCP_DUMP(env, "Unknown floating point exception (%02x)\n",
1498 env->error_code);
1499 break;
1500 }
1501 break;
1502 case POWERPC_EXCP_INVAL:
1503 EXCP_DUMP(env, "Invalid instruction\n");
1504 info.si_signo = TARGET_SIGILL;
1505 info.si_errno = 0;
1506 switch (env->error_code & 0xF) {
1507 case POWERPC_EXCP_INVAL_INVAL:
1508 info.si_code = TARGET_ILL_ILLOPC;
1509 break;
1510 case POWERPC_EXCP_INVAL_LSWX:
1511 info.si_code = TARGET_ILL_ILLOPN;
1512 break;
1513 case POWERPC_EXCP_INVAL_SPR:
1514 info.si_code = TARGET_ILL_PRVREG;
1515 break;
1516 case POWERPC_EXCP_INVAL_FP:
1517 info.si_code = TARGET_ILL_COPROC;
1518 break;
1519 default:
1520 EXCP_DUMP(env, "Unknown invalid operation (%02x)\n",
1521 env->error_code & 0xF);
1522 info.si_code = TARGET_ILL_ILLADR;
1523 break;
1524 }
1525 break;
1526 case POWERPC_EXCP_PRIV:
1527 EXCP_DUMP(env, "Privilege violation\n");
1528 info.si_signo = TARGET_SIGILL;
1529 info.si_errno = 0;
1530 switch (env->error_code & 0xF) {
1531 case POWERPC_EXCP_PRIV_OPC:
1532 info.si_code = TARGET_ILL_PRVOPC;
1533 break;
1534 case POWERPC_EXCP_PRIV_REG:
1535 info.si_code = TARGET_ILL_PRVREG;
1536 break;
1537 default:
1538 EXCP_DUMP(env, "Unknown privilege violation (%02x)\n",
1539 env->error_code & 0xF);
1540 info.si_code = TARGET_ILL_PRVOPC;
1541 break;
1542 }
1543 break;
1544 case POWERPC_EXCP_TRAP:
1545 cpu_abort(env, "Tried to call a TRAP\n");
1546 break;
1547 default:
1548 /* Should not happen ! */
1549 cpu_abort(env, "Unknown program exception (%02x)\n",
1550 env->error_code);
1551 break;
1552 }
1553 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001554 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001555 break;
1556 case POWERPC_EXCP_FPU: /* Floating-point unavailable exception */
1557 EXCP_DUMP(env, "No floating point allowed\n");
1558 info.si_signo = TARGET_SIGILL;
1559 info.si_errno = 0;
1560 info.si_code = TARGET_ILL_COPROC;
1561 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001562 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001563 break;
1564 case POWERPC_EXCP_SYSCALL: /* System call exception */
1565 cpu_abort(env, "Syscall exception while in user mode. "
1566 "Aborting\n");
1567 break;
1568 case POWERPC_EXCP_APU: /* Auxiliary processor unavailable */
1569 EXCP_DUMP(env, "No APU instruction allowed\n");
1570 info.si_signo = TARGET_SIGILL;
1571 info.si_errno = 0;
1572 info.si_code = TARGET_ILL_COPROC;
1573 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001574 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001575 break;
1576 case POWERPC_EXCP_DECR: /* Decrementer exception */
1577 cpu_abort(env, "Decrementer interrupt while in user mode. "
1578 "Aborting\n");
1579 break;
1580 case POWERPC_EXCP_FIT: /* Fixed-interval timer interrupt */
1581 cpu_abort(env, "Fix interval timer interrupt while in user mode. "
1582 "Aborting\n");
1583 break;
1584 case POWERPC_EXCP_WDT: /* Watchdog timer interrupt */
1585 cpu_abort(env, "Watchdog timer interrupt while in user mode. "
1586 "Aborting\n");
1587 break;
1588 case POWERPC_EXCP_DTLB: /* Data TLB error */
1589 cpu_abort(env, "Data TLB exception while in user mode. "
1590 "Aborting\n");
1591 break;
1592 case POWERPC_EXCP_ITLB: /* Instruction TLB error */
1593 cpu_abort(env, "Instruction TLB exception while in user mode. "
1594 "Aborting\n");
1595 break;
j_mayere1833e12007-09-29 13:06:16 +00001596 case POWERPC_EXCP_SPEU: /* SPE/embedded floating-point unavail. */
1597 EXCP_DUMP(env, "No SPE/floating-point instruction allowed\n");
1598 info.si_signo = TARGET_SIGILL;
1599 info.si_errno = 0;
1600 info.si_code = TARGET_ILL_COPROC;
1601 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001602 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001603 break;
1604 case POWERPC_EXCP_EFPDI: /* Embedded floating-point data IRQ */
1605 cpu_abort(env, "Embedded floating-point data IRQ not handled\n");
1606 break;
1607 case POWERPC_EXCP_EFPRI: /* Embedded floating-point round IRQ */
1608 cpu_abort(env, "Embedded floating-point round IRQ not handled\n");
1609 break;
1610 case POWERPC_EXCP_EPERFM: /* Embedded performance monitor IRQ */
1611 cpu_abort(env, "Performance monitor exception not handled\n");
1612 break;
1613 case POWERPC_EXCP_DOORI: /* Embedded doorbell interrupt */
1614 cpu_abort(env, "Doorbell interrupt while in user mode. "
1615 "Aborting\n");
1616 break;
1617 case POWERPC_EXCP_DOORCI: /* Embedded doorbell critical interrupt */
1618 cpu_abort(env, "Doorbell critical interrupt while in user mode. "
1619 "Aborting\n");
1620 break;
1621 case POWERPC_EXCP_RESET: /* System reset exception */
1622 cpu_abort(env, "Reset interrupt while in user mode. "
1623 "Aborting\n");
1624 break;
j_mayere1833e12007-09-29 13:06:16 +00001625 case POWERPC_EXCP_DSEG: /* Data segment exception */
1626 cpu_abort(env, "Data segment exception while in user mode. "
1627 "Aborting\n");
1628 break;
1629 case POWERPC_EXCP_ISEG: /* Instruction segment exception */
1630 cpu_abort(env, "Instruction segment exception "
1631 "while in user mode. Aborting\n");
1632 break;
j_mayere85e7c62007-10-18 19:59:49 +00001633 /* PowerPC 64 with hypervisor mode support */
j_mayere1833e12007-09-29 13:06:16 +00001634 case POWERPC_EXCP_HDECR: /* Hypervisor decrementer exception */
1635 cpu_abort(env, "Hypervisor decrementer interrupt "
1636 "while in user mode. Aborting\n");
1637 break;
j_mayere1833e12007-09-29 13:06:16 +00001638 case POWERPC_EXCP_TRACE: /* Trace exception */
1639 /* Nothing to do:
1640 * we use this exception to emulate step-by-step execution mode.
1641 */
1642 break;
j_mayere85e7c62007-10-18 19:59:49 +00001643 /* PowerPC 64 with hypervisor mode support */
j_mayere1833e12007-09-29 13:06:16 +00001644 case POWERPC_EXCP_HDSI: /* Hypervisor data storage exception */
1645 cpu_abort(env, "Hypervisor data storage exception "
1646 "while in user mode. Aborting\n");
1647 break;
1648 case POWERPC_EXCP_HISI: /* Hypervisor instruction storage excp */
1649 cpu_abort(env, "Hypervisor instruction storage exception "
1650 "while in user mode. Aborting\n");
1651 break;
1652 case POWERPC_EXCP_HDSEG: /* Hypervisor data segment exception */
1653 cpu_abort(env, "Hypervisor data segment exception "
1654 "while in user mode. Aborting\n");
1655 break;
1656 case POWERPC_EXCP_HISEG: /* Hypervisor instruction segment excp */
1657 cpu_abort(env, "Hypervisor instruction segment exception "
1658 "while in user mode. Aborting\n");
1659 break;
j_mayere1833e12007-09-29 13:06:16 +00001660 case POWERPC_EXCP_VPU: /* Vector unavailable exception */
1661 EXCP_DUMP(env, "No Altivec instructions allowed\n");
1662 info.si_signo = TARGET_SIGILL;
1663 info.si_errno = 0;
1664 info.si_code = TARGET_ILL_COPROC;
1665 info._sifields._sigfault._addr = env->nip - 4;
pbrook624f7972008-05-31 16:11:38 +00001666 queue_signal(env, info.si_signo, &info);
j_mayere1833e12007-09-29 13:06:16 +00001667 break;
1668 case POWERPC_EXCP_PIT: /* Programmable interval timer IRQ */
Dong Xu Wangb4916d72011-11-22 18:06:17 +08001669 cpu_abort(env, "Programmable interval timer interrupt "
j_mayere1833e12007-09-29 13:06:16 +00001670 "while in user mode. Aborting\n");
1671 break;
1672 case POWERPC_EXCP_IO: /* IO error exception */
1673 cpu_abort(env, "IO error exception while in user mode. "
1674 "Aborting\n");
1675 break;
1676 case POWERPC_EXCP_RUNM: /* Run mode exception */
1677 cpu_abort(env, "Run mode exception while in user mode. "
1678 "Aborting\n");
1679 break;
1680 case POWERPC_EXCP_EMUL: /* Emulation trap exception */
1681 cpu_abort(env, "Emulation trap exception not handled\n");
1682 break;
1683 case POWERPC_EXCP_IFTLB: /* Instruction fetch TLB error */
1684 cpu_abort(env, "Instruction fetch TLB exception "
1685 "while in user-mode. Aborting");
1686 break;
1687 case POWERPC_EXCP_DLTLB: /* Data load TLB miss */
1688 cpu_abort(env, "Data load TLB exception while in user-mode. "
1689 "Aborting");
1690 break;
1691 case POWERPC_EXCP_DSTLB: /* Data store TLB miss */
1692 cpu_abort(env, "Data store TLB exception while in user-mode. "
1693 "Aborting");
1694 break;
1695 case POWERPC_EXCP_FPA: /* Floating-point assist exception */
1696 cpu_abort(env, "Floating-point assist exception not handled\n");
1697 break;
1698 case POWERPC_EXCP_IABR: /* Instruction address breakpoint */
1699 cpu_abort(env, "Instruction address breakpoint exception "
1700 "not handled\n");
1701 break;
1702 case POWERPC_EXCP_SMI: /* System management interrupt */
1703 cpu_abort(env, "System management interrupt while in user mode. "
1704 "Aborting\n");
1705 break;
1706 case POWERPC_EXCP_THERM: /* Thermal interrupt */
1707 cpu_abort(env, "Thermal interrupt interrupt while in user mode. "
1708 "Aborting\n");
1709 break;
1710 case POWERPC_EXCP_PERFM: /* Embedded performance monitor IRQ */
1711 cpu_abort(env, "Performance monitor exception not handled\n");
1712 break;
1713 case POWERPC_EXCP_VPUA: /* Vector assist exception */
1714 cpu_abort(env, "Vector assist exception not handled\n");
1715 break;
1716 case POWERPC_EXCP_SOFTP: /* Soft patch exception */
1717 cpu_abort(env, "Soft patch exception not handled\n");
1718 break;
1719 case POWERPC_EXCP_MAINT: /* Maintenance exception */
1720 cpu_abort(env, "Maintenance exception while in user mode. "
1721 "Aborting\n");
1722 break;
1723 case POWERPC_EXCP_STOP: /* stop translation */
1724 /* We did invalidate the instruction cache. Go on */
1725 break;
1726 case POWERPC_EXCP_BRANCH: /* branch instruction: */
1727 /* We just stopped because of a branch. Go on */
1728 break;
1729 case POWERPC_EXCP_SYSCALL_USER:
1730 /* system call in user-mode emulation */
bellard67867302003-11-23 17:05:30 +00001731 /* WARNING:
1732 * PPC ABI uses overflow flag in cr0 to signal an error
1733 * in syscalls.
1734 */
1735 env->crf[0] &= ~0x1;
1736 ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4],
1737 env->gpr[5], env->gpr[6], env->gpr[7],
Peter Maydell5945cfc2011-06-16 17:37:13 +01001738 env->gpr[8], 0, 0);
Richard Henderson9e0e2f92011-10-26 09:59:18 -07001739 if (ret == (target_ulong)(-TARGET_QEMU_ESIGRETURN)) {
Nathan Froydbcd49332009-05-12 19:13:18 -07001740 /* Returning from a successful sigreturn syscall.
1741 Avoid corrupting register state. */
1742 break;
1743 }
Richard Henderson9e0e2f92011-10-26 09:59:18 -07001744 if (ret > (target_ulong)(-515)) {
bellard67867302003-11-23 17:05:30 +00001745 env->crf[0] |= 0x1;
1746 ret = -ret;
1747 }
1748 env->gpr[3] = ret;
1749 break;
Nathan Froyd56f066b2009-08-03 08:43:27 -07001750 case POWERPC_EXCP_STCX:
1751 if (do_store_exclusive(env)) {
1752 info.si_signo = TARGET_SIGSEGV;
1753 info.si_errno = 0;
1754 info.si_code = TARGET_SEGV_MAPERR;
1755 info._sifields._sigfault._addr = env->nip;
1756 queue_signal(env, info.si_signo, &info);
1757 }
1758 break;
aurel3271f75752008-11-14 17:05:54 +00001759 case EXCP_DEBUG:
1760 {
1761 int sig;
1762
1763 sig = gdb_handlesig(env, TARGET_SIGTRAP);
1764 if (sig) {
1765 info.si_signo = sig;
1766 info.si_errno = 0;
1767 info.si_code = TARGET_TRAP_BRKPT;
1768 queue_signal(env, info.si_signo, &info);
1769 }
1770 }
1771 break;
j_mayer56ba31f2007-09-30 15:15:18 +00001772 case EXCP_INTERRUPT:
1773 /* just indicate that signals should be handled asap */
1774 break;
bellard67867302003-11-23 17:05:30 +00001775 default:
j_mayere1833e12007-09-29 13:06:16 +00001776 cpu_abort(env, "Unknown exception 0x%d. Aborting\n", trapnr);
1777 break;
bellard67867302003-11-23 17:05:30 +00001778 }
1779 process_pending_signals(env);
1780 }
1781}
1782#endif
1783
bellard048f6b42005-11-26 18:47:20 +00001784#ifdef TARGET_MIPS
1785
1786#define MIPS_SYS(name, args) args,
1787
1788static const uint8_t mips_syscall_args[] = {
An-Cheng Huang29fb0f22011-08-09 12:31:41 -07001789 MIPS_SYS(sys_syscall , 8) /* 4000 */
bellard048f6b42005-11-26 18:47:20 +00001790 MIPS_SYS(sys_exit , 1)
1791 MIPS_SYS(sys_fork , 0)
1792 MIPS_SYS(sys_read , 3)
1793 MIPS_SYS(sys_write , 3)
1794 MIPS_SYS(sys_open , 3) /* 4005 */
1795 MIPS_SYS(sys_close , 1)
1796 MIPS_SYS(sys_waitpid , 3)
1797 MIPS_SYS(sys_creat , 2)
1798 MIPS_SYS(sys_link , 2)
1799 MIPS_SYS(sys_unlink , 1) /* 4010 */
1800 MIPS_SYS(sys_execve , 0)
1801 MIPS_SYS(sys_chdir , 1)
1802 MIPS_SYS(sys_time , 1)
1803 MIPS_SYS(sys_mknod , 3)
1804 MIPS_SYS(sys_chmod , 2) /* 4015 */
1805 MIPS_SYS(sys_lchown , 3)
1806 MIPS_SYS(sys_ni_syscall , 0)
1807 MIPS_SYS(sys_ni_syscall , 0) /* was sys_stat */
1808 MIPS_SYS(sys_lseek , 3)
1809 MIPS_SYS(sys_getpid , 0) /* 4020 */
1810 MIPS_SYS(sys_mount , 5)
1811 MIPS_SYS(sys_oldumount , 1)
1812 MIPS_SYS(sys_setuid , 1)
1813 MIPS_SYS(sys_getuid , 0)
1814 MIPS_SYS(sys_stime , 1) /* 4025 */
1815 MIPS_SYS(sys_ptrace , 4)
1816 MIPS_SYS(sys_alarm , 1)
1817 MIPS_SYS(sys_ni_syscall , 0) /* was sys_fstat */
1818 MIPS_SYS(sys_pause , 0)
1819 MIPS_SYS(sys_utime , 2) /* 4030 */
1820 MIPS_SYS(sys_ni_syscall , 0)
1821 MIPS_SYS(sys_ni_syscall , 0)
1822 MIPS_SYS(sys_access , 2)
1823 MIPS_SYS(sys_nice , 1)
1824 MIPS_SYS(sys_ni_syscall , 0) /* 4035 */
1825 MIPS_SYS(sys_sync , 0)
1826 MIPS_SYS(sys_kill , 2)
1827 MIPS_SYS(sys_rename , 2)
1828 MIPS_SYS(sys_mkdir , 2)
1829 MIPS_SYS(sys_rmdir , 1) /* 4040 */
1830 MIPS_SYS(sys_dup , 1)
1831 MIPS_SYS(sys_pipe , 0)
1832 MIPS_SYS(sys_times , 1)
1833 MIPS_SYS(sys_ni_syscall , 0)
1834 MIPS_SYS(sys_brk , 1) /* 4045 */
1835 MIPS_SYS(sys_setgid , 1)
1836 MIPS_SYS(sys_getgid , 0)
1837 MIPS_SYS(sys_ni_syscall , 0) /* was signal(2) */
1838 MIPS_SYS(sys_geteuid , 0)
1839 MIPS_SYS(sys_getegid , 0) /* 4050 */
1840 MIPS_SYS(sys_acct , 0)
1841 MIPS_SYS(sys_umount , 2)
1842 MIPS_SYS(sys_ni_syscall , 0)
1843 MIPS_SYS(sys_ioctl , 3)
1844 MIPS_SYS(sys_fcntl , 3) /* 4055 */
1845 MIPS_SYS(sys_ni_syscall , 2)
1846 MIPS_SYS(sys_setpgid , 2)
1847 MIPS_SYS(sys_ni_syscall , 0)
1848 MIPS_SYS(sys_olduname , 1)
1849 MIPS_SYS(sys_umask , 1) /* 4060 */
1850 MIPS_SYS(sys_chroot , 1)
1851 MIPS_SYS(sys_ustat , 2)
1852 MIPS_SYS(sys_dup2 , 2)
1853 MIPS_SYS(sys_getppid , 0)
1854 MIPS_SYS(sys_getpgrp , 0) /* 4065 */
1855 MIPS_SYS(sys_setsid , 0)
1856 MIPS_SYS(sys_sigaction , 3)
1857 MIPS_SYS(sys_sgetmask , 0)
1858 MIPS_SYS(sys_ssetmask , 1)
1859 MIPS_SYS(sys_setreuid , 2) /* 4070 */
1860 MIPS_SYS(sys_setregid , 2)
1861 MIPS_SYS(sys_sigsuspend , 0)
1862 MIPS_SYS(sys_sigpending , 1)
1863 MIPS_SYS(sys_sethostname , 2)
1864 MIPS_SYS(sys_setrlimit , 2) /* 4075 */
1865 MIPS_SYS(sys_getrlimit , 2)
1866 MIPS_SYS(sys_getrusage , 2)
1867 MIPS_SYS(sys_gettimeofday, 2)
1868 MIPS_SYS(sys_settimeofday, 2)
1869 MIPS_SYS(sys_getgroups , 2) /* 4080 */
1870 MIPS_SYS(sys_setgroups , 2)
1871 MIPS_SYS(sys_ni_syscall , 0) /* old_select */
1872 MIPS_SYS(sys_symlink , 2)
1873 MIPS_SYS(sys_ni_syscall , 0) /* was sys_lstat */
1874 MIPS_SYS(sys_readlink , 3) /* 4085 */
1875 MIPS_SYS(sys_uselib , 1)
1876 MIPS_SYS(sys_swapon , 2)
1877 MIPS_SYS(sys_reboot , 3)
1878 MIPS_SYS(old_readdir , 3)
1879 MIPS_SYS(old_mmap , 6) /* 4090 */
1880 MIPS_SYS(sys_munmap , 2)
1881 MIPS_SYS(sys_truncate , 2)
1882 MIPS_SYS(sys_ftruncate , 2)
1883 MIPS_SYS(sys_fchmod , 2)
1884 MIPS_SYS(sys_fchown , 3) /* 4095 */
1885 MIPS_SYS(sys_getpriority , 2)
1886 MIPS_SYS(sys_setpriority , 3)
1887 MIPS_SYS(sys_ni_syscall , 0)
1888 MIPS_SYS(sys_statfs , 2)
1889 MIPS_SYS(sys_fstatfs , 2) /* 4100 */
1890 MIPS_SYS(sys_ni_syscall , 0) /* was ioperm(2) */
1891 MIPS_SYS(sys_socketcall , 2)
1892 MIPS_SYS(sys_syslog , 3)
1893 MIPS_SYS(sys_setitimer , 3)
1894 MIPS_SYS(sys_getitimer , 2) /* 4105 */
1895 MIPS_SYS(sys_newstat , 2)
1896 MIPS_SYS(sys_newlstat , 2)
1897 MIPS_SYS(sys_newfstat , 2)
1898 MIPS_SYS(sys_uname , 1)
1899 MIPS_SYS(sys_ni_syscall , 0) /* 4110 was iopl(2) */
1900 MIPS_SYS(sys_vhangup , 0)
1901 MIPS_SYS(sys_ni_syscall , 0) /* was sys_idle() */
1902 MIPS_SYS(sys_ni_syscall , 0) /* was sys_vm86 */
1903 MIPS_SYS(sys_wait4 , 4)
1904 MIPS_SYS(sys_swapoff , 1) /* 4115 */
1905 MIPS_SYS(sys_sysinfo , 1)
1906 MIPS_SYS(sys_ipc , 6)
1907 MIPS_SYS(sys_fsync , 1)
1908 MIPS_SYS(sys_sigreturn , 0)
Paul Brook18113962009-07-09 13:11:52 +01001909 MIPS_SYS(sys_clone , 6) /* 4120 */
bellard048f6b42005-11-26 18:47:20 +00001910 MIPS_SYS(sys_setdomainname, 2)
1911 MIPS_SYS(sys_newuname , 1)
1912 MIPS_SYS(sys_ni_syscall , 0) /* sys_modify_ldt */
1913 MIPS_SYS(sys_adjtimex , 1)
1914 MIPS_SYS(sys_mprotect , 3) /* 4125 */
1915 MIPS_SYS(sys_sigprocmask , 3)
1916 MIPS_SYS(sys_ni_syscall , 0) /* was create_module */
1917 MIPS_SYS(sys_init_module , 5)
1918 MIPS_SYS(sys_delete_module, 1)
1919 MIPS_SYS(sys_ni_syscall , 0) /* 4130 was get_kernel_syms */
1920 MIPS_SYS(sys_quotactl , 0)
1921 MIPS_SYS(sys_getpgid , 1)
1922 MIPS_SYS(sys_fchdir , 1)
1923 MIPS_SYS(sys_bdflush , 2)
1924 MIPS_SYS(sys_sysfs , 3) /* 4135 */
1925 MIPS_SYS(sys_personality , 1)
1926 MIPS_SYS(sys_ni_syscall , 0) /* for afs_syscall */
1927 MIPS_SYS(sys_setfsuid , 1)
1928 MIPS_SYS(sys_setfsgid , 1)
1929 MIPS_SYS(sys_llseek , 5) /* 4140 */
1930 MIPS_SYS(sys_getdents , 3)
1931 MIPS_SYS(sys_select , 5)
1932 MIPS_SYS(sys_flock , 2)
1933 MIPS_SYS(sys_msync , 3)
1934 MIPS_SYS(sys_readv , 3) /* 4145 */
1935 MIPS_SYS(sys_writev , 3)
1936 MIPS_SYS(sys_cacheflush , 3)
1937 MIPS_SYS(sys_cachectl , 3)
1938 MIPS_SYS(sys_sysmips , 4)
1939 MIPS_SYS(sys_ni_syscall , 0) /* 4150 */
1940 MIPS_SYS(sys_getsid , 1)
1941 MIPS_SYS(sys_fdatasync , 0)
1942 MIPS_SYS(sys_sysctl , 1)
1943 MIPS_SYS(sys_mlock , 2)
1944 MIPS_SYS(sys_munlock , 2) /* 4155 */
1945 MIPS_SYS(sys_mlockall , 1)
1946 MIPS_SYS(sys_munlockall , 0)
1947 MIPS_SYS(sys_sched_setparam, 2)
1948 MIPS_SYS(sys_sched_getparam, 2)
1949 MIPS_SYS(sys_sched_setscheduler, 3) /* 4160 */
1950 MIPS_SYS(sys_sched_getscheduler, 1)
1951 MIPS_SYS(sys_sched_yield , 0)
1952 MIPS_SYS(sys_sched_get_priority_max, 1)
1953 MIPS_SYS(sys_sched_get_priority_min, 1)
1954 MIPS_SYS(sys_sched_rr_get_interval, 2) /* 4165 */
1955 MIPS_SYS(sys_nanosleep, 2)
1956 MIPS_SYS(sys_mremap , 4)
1957 MIPS_SYS(sys_accept , 3)
1958 MIPS_SYS(sys_bind , 3)
1959 MIPS_SYS(sys_connect , 3) /* 4170 */
1960 MIPS_SYS(sys_getpeername , 3)
1961 MIPS_SYS(sys_getsockname , 3)
1962 MIPS_SYS(sys_getsockopt , 5)
1963 MIPS_SYS(sys_listen , 2)
1964 MIPS_SYS(sys_recv , 4) /* 4175 */
1965 MIPS_SYS(sys_recvfrom , 6)
1966 MIPS_SYS(sys_recvmsg , 3)
1967 MIPS_SYS(sys_send , 4)
1968 MIPS_SYS(sys_sendmsg , 3)
1969 MIPS_SYS(sys_sendto , 6) /* 4180 */
1970 MIPS_SYS(sys_setsockopt , 5)
1971 MIPS_SYS(sys_shutdown , 2)
1972 MIPS_SYS(sys_socket , 3)
1973 MIPS_SYS(sys_socketpair , 4)
1974 MIPS_SYS(sys_setresuid , 3) /* 4185 */
1975 MIPS_SYS(sys_getresuid , 3)
1976 MIPS_SYS(sys_ni_syscall , 0) /* was sys_query_module */
1977 MIPS_SYS(sys_poll , 3)
1978 MIPS_SYS(sys_nfsservctl , 3)
1979 MIPS_SYS(sys_setresgid , 3) /* 4190 */
1980 MIPS_SYS(sys_getresgid , 3)
1981 MIPS_SYS(sys_prctl , 5)
1982 MIPS_SYS(sys_rt_sigreturn, 0)
1983 MIPS_SYS(sys_rt_sigaction, 4)
1984 MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */
1985 MIPS_SYS(sys_rt_sigpending, 2)
1986 MIPS_SYS(sys_rt_sigtimedwait, 4)
1987 MIPS_SYS(sys_rt_sigqueueinfo, 3)
1988 MIPS_SYS(sys_rt_sigsuspend, 0)
1989 MIPS_SYS(sys_pread64 , 6) /* 4200 */
1990 MIPS_SYS(sys_pwrite64 , 6)
1991 MIPS_SYS(sys_chown , 3)
1992 MIPS_SYS(sys_getcwd , 2)
1993 MIPS_SYS(sys_capget , 2)
1994 MIPS_SYS(sys_capset , 2) /* 4205 */
Wesley W. Terpstra053ebb22011-07-12 14:32:31 +03001995 MIPS_SYS(sys_sigaltstack , 2)
bellard048f6b42005-11-26 18:47:20 +00001996 MIPS_SYS(sys_sendfile , 4)
1997 MIPS_SYS(sys_ni_syscall , 0)
1998 MIPS_SYS(sys_ni_syscall , 0)
1999 MIPS_SYS(sys_mmap2 , 6) /* 4210 */
2000 MIPS_SYS(sys_truncate64 , 4)
2001 MIPS_SYS(sys_ftruncate64 , 4)
2002 MIPS_SYS(sys_stat64 , 2)
2003 MIPS_SYS(sys_lstat64 , 2)
2004 MIPS_SYS(sys_fstat64 , 2) /* 4215 */
2005 MIPS_SYS(sys_pivot_root , 2)
2006 MIPS_SYS(sys_mincore , 3)
2007 MIPS_SYS(sys_madvise , 3)
2008 MIPS_SYS(sys_getdents64 , 3)
2009 MIPS_SYS(sys_fcntl64 , 3) /* 4220 */
2010 MIPS_SYS(sys_ni_syscall , 0)
2011 MIPS_SYS(sys_gettid , 0)
2012 MIPS_SYS(sys_readahead , 5)
2013 MIPS_SYS(sys_setxattr , 5)
2014 MIPS_SYS(sys_lsetxattr , 5) /* 4225 */
2015 MIPS_SYS(sys_fsetxattr , 5)
2016 MIPS_SYS(sys_getxattr , 4)
2017 MIPS_SYS(sys_lgetxattr , 4)
2018 MIPS_SYS(sys_fgetxattr , 4)
2019 MIPS_SYS(sys_listxattr , 3) /* 4230 */
2020 MIPS_SYS(sys_llistxattr , 3)
2021 MIPS_SYS(sys_flistxattr , 3)
2022 MIPS_SYS(sys_removexattr , 2)
2023 MIPS_SYS(sys_lremovexattr, 2)
2024 MIPS_SYS(sys_fremovexattr, 2) /* 4235 */
2025 MIPS_SYS(sys_tkill , 2)
2026 MIPS_SYS(sys_sendfile64 , 5)
2027 MIPS_SYS(sys_futex , 2)
2028 MIPS_SYS(sys_sched_setaffinity, 3)
2029 MIPS_SYS(sys_sched_getaffinity, 3) /* 4240 */
2030 MIPS_SYS(sys_io_setup , 2)
2031 MIPS_SYS(sys_io_destroy , 1)
2032 MIPS_SYS(sys_io_getevents, 5)
2033 MIPS_SYS(sys_io_submit , 3)
2034 MIPS_SYS(sys_io_cancel , 3) /* 4245 */
2035 MIPS_SYS(sys_exit_group , 1)
2036 MIPS_SYS(sys_lookup_dcookie, 3)
2037 MIPS_SYS(sys_epoll_create, 1)
2038 MIPS_SYS(sys_epoll_ctl , 4)
2039 MIPS_SYS(sys_epoll_wait , 3) /* 4250 */
2040 MIPS_SYS(sys_remap_file_pages, 5)
2041 MIPS_SYS(sys_set_tid_address, 1)
2042 MIPS_SYS(sys_restart_syscall, 0)
2043 MIPS_SYS(sys_fadvise64_64, 7)
2044 MIPS_SYS(sys_statfs64 , 3) /* 4255 */
2045 MIPS_SYS(sys_fstatfs64 , 2)
2046 MIPS_SYS(sys_timer_create, 3)
2047 MIPS_SYS(sys_timer_settime, 4)
2048 MIPS_SYS(sys_timer_gettime, 2)
2049 MIPS_SYS(sys_timer_getoverrun, 1) /* 4260 */
2050 MIPS_SYS(sys_timer_delete, 1)
2051 MIPS_SYS(sys_clock_settime, 2)
2052 MIPS_SYS(sys_clock_gettime, 2)
2053 MIPS_SYS(sys_clock_getres, 2)
2054 MIPS_SYS(sys_clock_nanosleep, 4) /* 4265 */
2055 MIPS_SYS(sys_tgkill , 3)
2056 MIPS_SYS(sys_utimes , 2)
2057 MIPS_SYS(sys_mbind , 4)
2058 MIPS_SYS(sys_ni_syscall , 0) /* sys_get_mempolicy */
2059 MIPS_SYS(sys_ni_syscall , 0) /* 4270 sys_set_mempolicy */
2060 MIPS_SYS(sys_mq_open , 4)
2061 MIPS_SYS(sys_mq_unlink , 1)
2062 MIPS_SYS(sys_mq_timedsend, 5)
2063 MIPS_SYS(sys_mq_timedreceive, 5)
2064 MIPS_SYS(sys_mq_notify , 2) /* 4275 */
2065 MIPS_SYS(sys_mq_getsetattr, 3)
2066 MIPS_SYS(sys_ni_syscall , 0) /* sys_vserver */
2067 MIPS_SYS(sys_waitid , 4)
2068 MIPS_SYS(sys_ni_syscall , 0) /* available, was setaltroot */
2069 MIPS_SYS(sys_add_key , 5)
ths388bb212007-05-13 13:58:00 +00002070 MIPS_SYS(sys_request_key, 4)
bellard048f6b42005-11-26 18:47:20 +00002071 MIPS_SYS(sys_keyctl , 5)
ths6f5b89a2007-03-02 20:48:00 +00002072 MIPS_SYS(sys_set_thread_area, 1)
ths388bb212007-05-13 13:58:00 +00002073 MIPS_SYS(sys_inotify_init, 0)
2074 MIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */
2075 MIPS_SYS(sys_inotify_rm_watch, 2)
2076 MIPS_SYS(sys_migrate_pages, 4)
2077 MIPS_SYS(sys_openat, 4)
2078 MIPS_SYS(sys_mkdirat, 3)
2079 MIPS_SYS(sys_mknodat, 4) /* 4290 */
2080 MIPS_SYS(sys_fchownat, 5)
2081 MIPS_SYS(sys_futimesat, 3)
2082 MIPS_SYS(sys_fstatat64, 4)
2083 MIPS_SYS(sys_unlinkat, 3)
2084 MIPS_SYS(sys_renameat, 4) /* 4295 */
2085 MIPS_SYS(sys_linkat, 5)
2086 MIPS_SYS(sys_symlinkat, 3)
2087 MIPS_SYS(sys_readlinkat, 4)
2088 MIPS_SYS(sys_fchmodat, 3)
2089 MIPS_SYS(sys_faccessat, 3) /* 4300 */
2090 MIPS_SYS(sys_pselect6, 6)
2091 MIPS_SYS(sys_ppoll, 5)
2092 MIPS_SYS(sys_unshare, 1)
2093 MIPS_SYS(sys_splice, 4)
2094 MIPS_SYS(sys_sync_file_range, 7) /* 4305 */
2095 MIPS_SYS(sys_tee, 4)
2096 MIPS_SYS(sys_vmsplice, 4)
2097 MIPS_SYS(sys_move_pages, 6)
2098 MIPS_SYS(sys_set_robust_list, 2)
2099 MIPS_SYS(sys_get_robust_list, 3) /* 4310 */
2100 MIPS_SYS(sys_kexec_load, 4)
2101 MIPS_SYS(sys_getcpu, 3)
2102 MIPS_SYS(sys_epoll_pwait, 6)
2103 MIPS_SYS(sys_ioprio_set, 3)
2104 MIPS_SYS(sys_ioprio_get, 2)
Peter Maydelld979e8e2011-06-27 17:44:51 +01002105 MIPS_SYS(sys_utimensat, 4)
2106 MIPS_SYS(sys_signalfd, 3)
2107 MIPS_SYS(sys_ni_syscall, 0) /* was timerfd */
2108 MIPS_SYS(sys_eventfd, 1)
2109 MIPS_SYS(sys_fallocate, 6) /* 4320 */
2110 MIPS_SYS(sys_timerfd_create, 2)
2111 MIPS_SYS(sys_timerfd_gettime, 2)
2112 MIPS_SYS(sys_timerfd_settime, 4)
2113 MIPS_SYS(sys_signalfd4, 4)
2114 MIPS_SYS(sys_eventfd2, 2) /* 4325 */
2115 MIPS_SYS(sys_epoll_create1, 1)
2116 MIPS_SYS(sys_dup3, 3)
2117 MIPS_SYS(sys_pipe2, 2)
2118 MIPS_SYS(sys_inotify_init1, 1)
2119 MIPS_SYS(sys_preadv, 6) /* 4330 */
2120 MIPS_SYS(sys_pwritev, 6)
2121 MIPS_SYS(sys_rt_tgsigqueueinfo, 4)
2122 MIPS_SYS(sys_perf_event_open, 5)
2123 MIPS_SYS(sys_accept4, 4)
2124 MIPS_SYS(sys_recvmmsg, 5) /* 4335 */
2125 MIPS_SYS(sys_fanotify_init, 2)
2126 MIPS_SYS(sys_fanotify_mark, 6)
2127 MIPS_SYS(sys_prlimit64, 4)
2128 MIPS_SYS(sys_name_to_handle_at, 5)
2129 MIPS_SYS(sys_open_by_handle_at, 3) /* 4340 */
2130 MIPS_SYS(sys_clock_adjtime, 2)
2131 MIPS_SYS(sys_syncfs, 1)
bellard048f6b42005-11-26 18:47:20 +00002132};
2133
2134#undef MIPS_SYS
2135
Paul Brook590bc602009-07-09 17:45:17 +01002136static int do_store_exclusive(CPUMIPSState *env)
2137{
2138 target_ulong addr;
2139 target_ulong page_addr;
2140 target_ulong val;
2141 int flags;
2142 int segv = 0;
2143 int reg;
2144 int d;
2145
Aurelien Jarno5499b6f2009-11-22 13:08:14 +01002146 addr = env->lladdr;
Paul Brook590bc602009-07-09 17:45:17 +01002147 page_addr = addr & TARGET_PAGE_MASK;
2148 start_exclusive();
2149 mmap_lock();
2150 flags = page_get_flags(page_addr);
2151 if ((flags & PAGE_READ) == 0) {
2152 segv = 1;
2153 } else {
2154 reg = env->llreg & 0x1f;
2155 d = (env->llreg & 0x20) != 0;
2156 if (d) {
2157 segv = get_user_s64(val, addr);
2158 } else {
2159 segv = get_user_s32(val, addr);
2160 }
2161 if (!segv) {
2162 if (val != env->llval) {
2163 env->active_tc.gpr[reg] = 0;
2164 } else {
2165 if (d) {
2166 segv = put_user_u64(env->llnewval, addr);
2167 } else {
2168 segv = put_user_u32(env->llnewval, addr);
2169 }
2170 if (!segv) {
2171 env->active_tc.gpr[reg] = 1;
2172 }
2173 }
2174 }
2175 }
Aurelien Jarno5499b6f2009-11-22 13:08:14 +01002176 env->lladdr = -1;
Paul Brook590bc602009-07-09 17:45:17 +01002177 if (!segv) {
2178 env->active_tc.PC += 4;
2179 }
2180 mmap_unlock();
2181 end_exclusive();
2182 return segv;
2183}
2184
bellard048f6b42005-11-26 18:47:20 +00002185void cpu_loop(CPUMIPSState *env)
2186{
Anthony Liguoric227f092009-10-01 16:12:16 -05002187 target_siginfo_t info;
ths388bb212007-05-13 13:58:00 +00002188 int trapnr, ret;
bellard048f6b42005-11-26 18:47:20 +00002189 unsigned int syscall_num;
bellard048f6b42005-11-26 18:47:20 +00002190
2191 for(;;) {
Paul Brook590bc602009-07-09 17:45:17 +01002192 cpu_exec_start(env);
bellard048f6b42005-11-26 18:47:20 +00002193 trapnr = cpu_mips_exec(env);
Paul Brook590bc602009-07-09 17:45:17 +01002194 cpu_exec_end(env);
bellard048f6b42005-11-26 18:47:20 +00002195 switch(trapnr) {
2196 case EXCP_SYSCALL:
thsb5dc7732008-06-27 10:02:35 +00002197 syscall_num = env->active_tc.gpr[2] - 4000;
2198 env->active_tc.PC += 4;
ths388bb212007-05-13 13:58:00 +00002199 if (syscall_num >= sizeof(mips_syscall_args)) {
Wesley W. Terpstra7c2f6152011-07-12 14:33:23 +03002200 ret = -TARGET_ENOSYS;
ths388bb212007-05-13 13:58:00 +00002201 } else {
2202 int nb_args;
blueswir1992f48a2007-10-14 16:27:31 +00002203 abi_ulong sp_reg;
2204 abi_ulong arg5 = 0, arg6 = 0, arg7 = 0, arg8 = 0;
ths388bb212007-05-13 13:58:00 +00002205
2206 nb_args = mips_syscall_args[syscall_num];
thsb5dc7732008-06-27 10:02:35 +00002207 sp_reg = env->active_tc.gpr[29];
ths388bb212007-05-13 13:58:00 +00002208 switch (nb_args) {
2209 /* these arguments are taken from the stack */
An-Cheng Huang94c19612011-08-09 12:32:38 -07002210 case 8:
2211 if ((ret = get_user_ual(arg8, sp_reg + 28)) != 0) {
2212 goto done_syscall;
2213 }
2214 case 7:
2215 if ((ret = get_user_ual(arg7, sp_reg + 24)) != 0) {
2216 goto done_syscall;
2217 }
2218 case 6:
2219 if ((ret = get_user_ual(arg6, sp_reg + 20)) != 0) {
2220 goto done_syscall;
2221 }
2222 case 5:
2223 if ((ret = get_user_ual(arg5, sp_reg + 16)) != 0) {
2224 goto done_syscall;
2225 }
ths388bb212007-05-13 13:58:00 +00002226 default:
2227 break;
bellard048f6b42005-11-26 18:47:20 +00002228 }
thsb5dc7732008-06-27 10:02:35 +00002229 ret = do_syscall(env, env->active_tc.gpr[2],
2230 env->active_tc.gpr[4],
2231 env->active_tc.gpr[5],
2232 env->active_tc.gpr[6],
2233 env->active_tc.gpr[7],
Peter Maydell5945cfc2011-06-16 17:37:13 +01002234 arg5, arg6, arg7, arg8);
bellard048f6b42005-11-26 18:47:20 +00002235 }
An-Cheng Huang94c19612011-08-09 12:32:38 -07002236done_syscall:
pbrook0b1bcb02009-04-21 01:41:10 +00002237 if (ret == -TARGET_QEMU_ESIGRETURN) {
2238 /* Returning from a successful sigreturn syscall.
2239 Avoid clobbering register state. */
2240 break;
2241 }
ths388bb212007-05-13 13:58:00 +00002242 if ((unsigned int)ret >= (unsigned int)(-1133)) {
thsb5dc7732008-06-27 10:02:35 +00002243 env->active_tc.gpr[7] = 1; /* error flag */
ths388bb212007-05-13 13:58:00 +00002244 ret = -ret;
2245 } else {
thsb5dc7732008-06-27 10:02:35 +00002246 env->active_tc.gpr[7] = 0; /* error flag */
ths388bb212007-05-13 13:58:00 +00002247 }
thsb5dc7732008-06-27 10:02:35 +00002248 env->active_tc.gpr[2] = ret;
bellard048f6b42005-11-26 18:47:20 +00002249 break;
thsca7c2b12006-12-10 22:08:10 +00002250 case EXCP_TLBL:
2251 case EXCP_TLBS:
Wesley W. Terpstrae6e5bd22011-07-12 14:34:23 +03002252 case EXCP_AdEL:
2253 case EXCP_AdES:
pbrooke4474232009-04-21 01:03:10 +00002254 info.si_signo = TARGET_SIGSEGV;
2255 info.si_errno = 0;
2256 /* XXX: check env->error_code */
2257 info.si_code = TARGET_SEGV_MAPERR;
2258 info._sifields._sigfault._addr = env->CP0_BadVAddr;
2259 queue_signal(env, info.si_signo, &info);
2260 break;
bellard6900e842005-12-05 21:04:24 +00002261 case EXCP_CpU:
bellard048f6b42005-11-26 18:47:20 +00002262 case EXCP_RI:
bellardbc1ad2d2006-06-14 13:37:55 +00002263 info.si_signo = TARGET_SIGILL;
2264 info.si_errno = 0;
2265 info.si_code = 0;
pbrook624f7972008-05-31 16:11:38 +00002266 queue_signal(env, info.si_signo, &info);
bellard048f6b42005-11-26 18:47:20 +00002267 break;
bellard106ec872006-06-27 21:08:10 +00002268 case EXCP_INTERRUPT:
2269 /* just indicate that signals should be handled asap */
2270 break;
pbrookd08b2a22006-11-04 16:46:29 +00002271 case EXCP_DEBUG:
2272 {
2273 int sig;
2274
2275 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2276 if (sig)
2277 {
2278 info.si_signo = sig;
2279 info.si_errno = 0;
2280 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00002281 queue_signal(env, info.si_signo, &info);
pbrookd08b2a22006-11-04 16:46:29 +00002282 }
2283 }
2284 break;
Paul Brook590bc602009-07-09 17:45:17 +01002285 case EXCP_SC:
2286 if (do_store_exclusive(env)) {
2287 info.si_signo = TARGET_SIGSEGV;
2288 info.si_errno = 0;
2289 info.si_code = TARGET_SEGV_MAPERR;
2290 info._sifields._sigfault._addr = env->active_tc.PC;
2291 queue_signal(env, info.si_signo, &info);
2292 }
2293 break;
Jia Liu853c3242012-10-24 22:17:02 +08002294 case EXCP_DSPDIS:
2295 info.si_signo = TARGET_SIGILL;
2296 info.si_errno = 0;
2297 info.si_code = TARGET_ILL_ILLOPC;
2298 queue_signal(env, info.si_signo, &info);
2299 break;
bellard048f6b42005-11-26 18:47:20 +00002300 default:
2301 // error:
ths5fafdf22007-09-16 21:08:06 +00002302 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
bellard048f6b42005-11-26 18:47:20 +00002303 trapnr);
2304 cpu_dump_state(env, stderr, fprintf, 0);
2305 abort();
2306 }
2307 process_pending_signals(env);
2308 }
2309}
2310#endif
2311
Jia Liud9627832012-07-20 15:50:52 +08002312#ifdef TARGET_OPENRISC
2313
2314void cpu_loop(CPUOpenRISCState *env)
2315{
2316 int trapnr, gdbsig;
2317
2318 for (;;) {
2319 trapnr = cpu_exec(env);
2320 gdbsig = 0;
2321
2322 switch (trapnr) {
2323 case EXCP_RESET:
2324 qemu_log("\nReset request, exit, pc is %#x\n", env->pc);
2325 exit(1);
2326 break;
2327 case EXCP_BUSERR:
2328 qemu_log("\nBus error, exit, pc is %#x\n", env->pc);
2329 gdbsig = SIGBUS;
2330 break;
2331 case EXCP_DPF:
2332 case EXCP_IPF:
2333 cpu_dump_state(env, stderr, fprintf, 0);
2334 gdbsig = TARGET_SIGSEGV;
2335 break;
2336 case EXCP_TICK:
2337 qemu_log("\nTick time interrupt pc is %#x\n", env->pc);
2338 break;
2339 case EXCP_ALIGN:
2340 qemu_log("\nAlignment pc is %#x\n", env->pc);
2341 gdbsig = SIGBUS;
2342 break;
2343 case EXCP_ILLEGAL:
2344 qemu_log("\nIllegal instructionpc is %#x\n", env->pc);
2345 gdbsig = SIGILL;
2346 break;
2347 case EXCP_INT:
2348 qemu_log("\nExternal interruptpc is %#x\n", env->pc);
2349 break;
2350 case EXCP_DTLBMISS:
2351 case EXCP_ITLBMISS:
2352 qemu_log("\nTLB miss\n");
2353 break;
2354 case EXCP_RANGE:
2355 qemu_log("\nRange\n");
2356 gdbsig = SIGSEGV;
2357 break;
2358 case EXCP_SYSCALL:
2359 env->pc += 4; /* 0xc00; */
2360 env->gpr[11] = do_syscall(env,
2361 env->gpr[11], /* return value */
2362 env->gpr[3], /* r3 - r7 are params */
2363 env->gpr[4],
2364 env->gpr[5],
2365 env->gpr[6],
2366 env->gpr[7],
2367 env->gpr[8], 0, 0);
2368 break;
2369 case EXCP_FPE:
2370 qemu_log("\nFloating point error\n");
2371 break;
2372 case EXCP_TRAP:
2373 qemu_log("\nTrap\n");
2374 gdbsig = SIGTRAP;
2375 break;
2376 case EXCP_NR:
2377 qemu_log("\nNR\n");
2378 break;
2379 default:
2380 qemu_log("\nqemu: unhandled CPU exception %#x - aborting\n",
2381 trapnr);
2382 cpu_dump_state(env, stderr, fprintf, 0);
2383 gdbsig = TARGET_SIGILL;
2384 break;
2385 }
2386 if (gdbsig) {
2387 gdb_handlesig(env, gdbsig);
2388 if (gdbsig != TARGET_SIGTRAP) {
2389 exit(1);
2390 }
2391 }
2392
2393 process_pending_signals(env);
2394 }
2395}
2396
2397#endif /* TARGET_OPENRISC */
2398
bellardfdf9b3e2006-04-27 21:07:38 +00002399#ifdef TARGET_SH4
Andreas Färber05390242012-02-25 03:37:53 +01002400void cpu_loop(CPUSH4State *env)
bellardfdf9b3e2006-04-27 21:07:38 +00002401{
2402 int trapnr, ret;
Anthony Liguoric227f092009-10-01 16:12:16 -05002403 target_siginfo_t info;
ths3b46e622007-09-17 08:09:54 +00002404
bellardfdf9b3e2006-04-27 21:07:38 +00002405 while (1) {
2406 trapnr = cpu_sh4_exec (env);
ths3b46e622007-09-17 08:09:54 +00002407
bellardfdf9b3e2006-04-27 21:07:38 +00002408 switch (trapnr) {
2409 case 0x160:
aurel320b6d3ae2008-09-15 07:43:43 +00002410 env->pc += 2;
ths5fafdf22007-09-16 21:08:06 +00002411 ret = do_syscall(env,
2412 env->gregs[3],
2413 env->gregs[4],
2414 env->gregs[5],
2415 env->gregs[6],
2416 env->gregs[7],
2417 env->gregs[0],
Peter Maydell5945cfc2011-06-16 17:37:13 +01002418 env->gregs[1],
2419 0, 0);
pbrook9c2a9ea2006-06-18 19:12:54 +00002420 env->gregs[0] = ret;
bellardfdf9b3e2006-04-27 21:07:38 +00002421 break;
thsc3b5bc82007-12-02 06:31:25 +00002422 case EXCP_INTERRUPT:
2423 /* just indicate that signals should be handled asap */
2424 break;
pbrook355fb232006-06-17 19:58:25 +00002425 case EXCP_DEBUG:
2426 {
2427 int sig;
2428
2429 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2430 if (sig)
2431 {
2432 info.si_signo = sig;
2433 info.si_errno = 0;
2434 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00002435 queue_signal(env, info.si_signo, &info);
pbrook355fb232006-06-17 19:58:25 +00002436 }
2437 }
2438 break;
thsc3b5bc82007-12-02 06:31:25 +00002439 case 0xa0:
2440 case 0xc0:
2441 info.si_signo = SIGSEGV;
2442 info.si_errno = 0;
2443 info.si_code = TARGET_SEGV_MAPERR;
2444 info._sifields._sigfault._addr = env->tea;
pbrook624f7972008-05-31 16:11:38 +00002445 queue_signal(env, info.si_signo, &info);
thsc3b5bc82007-12-02 06:31:25 +00002446 break;
2447
bellardfdf9b3e2006-04-27 21:07:38 +00002448 default:
2449 printf ("Unhandled trap: 0x%x\n", trapnr);
2450 cpu_dump_state(env, stderr, fprintf, 0);
2451 exit (1);
2452 }
2453 process_pending_signals (env);
2454 }
2455}
2456#endif
2457
ths48733d12007-10-08 13:36:46 +00002458#ifdef TARGET_CRIS
Andreas Färber05390242012-02-25 03:37:53 +01002459void cpu_loop(CPUCRISState *env)
ths48733d12007-10-08 13:36:46 +00002460{
2461 int trapnr, ret;
Anthony Liguoric227f092009-10-01 16:12:16 -05002462 target_siginfo_t info;
ths48733d12007-10-08 13:36:46 +00002463
2464 while (1) {
2465 trapnr = cpu_cris_exec (env);
2466 switch (trapnr) {
2467 case 0xaa:
2468 {
2469 info.si_signo = SIGSEGV;
2470 info.si_errno = 0;
2471 /* XXX: check env->error_code */
2472 info.si_code = TARGET_SEGV_MAPERR;
edgar_igle00c1e72008-05-27 21:12:09 +00002473 info._sifields._sigfault._addr = env->pregs[PR_EDA];
pbrook624f7972008-05-31 16:11:38 +00002474 queue_signal(env, info.si_signo, &info);
ths48733d12007-10-08 13:36:46 +00002475 }
2476 break;
edgar_iglb6d3abd2008-02-28 11:29:27 +00002477 case EXCP_INTERRUPT:
2478 /* just indicate that signals should be handled asap */
2479 break;
ths48733d12007-10-08 13:36:46 +00002480 case EXCP_BREAK:
2481 ret = do_syscall(env,
2482 env->regs[9],
2483 env->regs[10],
2484 env->regs[11],
2485 env->regs[12],
2486 env->regs[13],
2487 env->pregs[7],
Peter Maydell5945cfc2011-06-16 17:37:13 +01002488 env->pregs[11],
2489 0, 0);
ths48733d12007-10-08 13:36:46 +00002490 env->regs[10] = ret;
ths48733d12007-10-08 13:36:46 +00002491 break;
2492 case EXCP_DEBUG:
2493 {
2494 int sig;
2495
2496 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2497 if (sig)
2498 {
2499 info.si_signo = sig;
2500 info.si_errno = 0;
2501 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00002502 queue_signal(env, info.si_signo, &info);
ths48733d12007-10-08 13:36:46 +00002503 }
2504 }
2505 break;
2506 default:
2507 printf ("Unhandled trap: 0x%x\n", trapnr);
2508 cpu_dump_state(env, stderr, fprintf, 0);
2509 exit (1);
2510 }
2511 process_pending_signals (env);
2512 }
2513}
2514#endif
2515
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002516#ifdef TARGET_MICROBLAZE
Andreas Färber05390242012-02-25 03:37:53 +01002517void cpu_loop(CPUMBState *env)
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002518{
2519 int trapnr, ret;
Anthony Liguoric227f092009-10-01 16:12:16 -05002520 target_siginfo_t info;
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002521
2522 while (1) {
2523 trapnr = cpu_mb_exec (env);
2524 switch (trapnr) {
2525 case 0xaa:
2526 {
2527 info.si_signo = SIGSEGV;
2528 info.si_errno = 0;
2529 /* XXX: check env->error_code */
2530 info.si_code = TARGET_SEGV_MAPERR;
2531 info._sifields._sigfault._addr = 0;
2532 queue_signal(env, info.si_signo, &info);
2533 }
2534 break;
2535 case EXCP_INTERRUPT:
2536 /* just indicate that signals should be handled asap */
2537 break;
2538 case EXCP_BREAK:
2539 /* Return address is 4 bytes after the call. */
2540 env->regs[14] += 4;
Edgar E. Iglesiasd7dce492012-04-26 14:18:25 +02002541 env->sregs[SR_PC] = env->regs[14];
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002542 ret = do_syscall(env,
2543 env->regs[12],
2544 env->regs[5],
2545 env->regs[6],
2546 env->regs[7],
2547 env->regs[8],
2548 env->regs[9],
Peter Maydell5945cfc2011-06-16 17:37:13 +01002549 env->regs[10],
2550 0, 0);
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002551 env->regs[3] = ret;
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002552 break;
Edgar E. Iglesiasb76da7e2010-09-09 10:24:01 +02002553 case EXCP_HW_EXCP:
2554 env->regs[17] = env->sregs[SR_PC] + 4;
2555 if (env->iflags & D_FLAG) {
2556 env->sregs[SR_ESR] |= 1 << 12;
2557 env->sregs[SR_PC] -= 4;
Dong Xu Wangb4916d72011-11-22 18:06:17 +08002558 /* FIXME: if branch was immed, replay the imm as well. */
Edgar E. Iglesiasb76da7e2010-09-09 10:24:01 +02002559 }
2560
2561 env->iflags &= ~(IMM_FLAG | D_FLAG);
2562
2563 switch (env->sregs[SR_ESR] & 31) {
Edgar E. Iglesias22a78d62011-08-22 18:42:54 +02002564 case ESR_EC_DIVZERO:
2565 info.si_signo = SIGFPE;
2566 info.si_errno = 0;
2567 info.si_code = TARGET_FPE_FLTDIV;
2568 info._sifields._sigfault._addr = 0;
2569 queue_signal(env, info.si_signo, &info);
2570 break;
Edgar E. Iglesiasb76da7e2010-09-09 10:24:01 +02002571 case ESR_EC_FPU:
2572 info.si_signo = SIGFPE;
2573 info.si_errno = 0;
2574 if (env->sregs[SR_FSR] & FSR_IO) {
2575 info.si_code = TARGET_FPE_FLTINV;
2576 }
2577 if (env->sregs[SR_FSR] & FSR_DZ) {
2578 info.si_code = TARGET_FPE_FLTDIV;
2579 }
2580 info._sifields._sigfault._addr = 0;
2581 queue_signal(env, info.si_signo, &info);
2582 break;
2583 default:
2584 printf ("Unhandled hw-exception: 0x%x\n",
Edgar E. Iglesias2e42d522011-04-11 23:57:07 +02002585 env->sregs[SR_ESR] & ESR_EC_MASK);
Edgar E. Iglesiasb76da7e2010-09-09 10:24:01 +02002586 cpu_dump_state(env, stderr, fprintf, 0);
2587 exit (1);
2588 break;
2589 }
2590 break;
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02002591 case EXCP_DEBUG:
2592 {
2593 int sig;
2594
2595 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2596 if (sig)
2597 {
2598 info.si_signo = sig;
2599 info.si_errno = 0;
2600 info.si_code = TARGET_TRAP_BRKPT;
2601 queue_signal(env, info.si_signo, &info);
2602 }
2603 }
2604 break;
2605 default:
2606 printf ("Unhandled trap: 0x%x\n", trapnr);
2607 cpu_dump_state(env, stderr, fprintf, 0);
2608 exit (1);
2609 }
2610 process_pending_signals (env);
2611 }
2612}
2613#endif
2614
pbrooke6e59062006-10-22 00:18:54 +00002615#ifdef TARGET_M68K
2616
2617void cpu_loop(CPUM68KState *env)
2618{
2619 int trapnr;
2620 unsigned int n;
Anthony Liguoric227f092009-10-01 16:12:16 -05002621 target_siginfo_t info;
pbrooke6e59062006-10-22 00:18:54 +00002622 TaskState *ts = env->opaque;
ths3b46e622007-09-17 08:09:54 +00002623
pbrooke6e59062006-10-22 00:18:54 +00002624 for(;;) {
2625 trapnr = cpu_m68k_exec(env);
2626 switch(trapnr) {
2627 case EXCP_ILLEGAL:
2628 {
2629 if (ts->sim_syscalls) {
2630 uint16_t nr;
2631 nr = lduw(env->pc + 2);
2632 env->pc += 4;
2633 do_m68k_simcall(env, nr);
2634 } else {
2635 goto do_sigill;
2636 }
2637 }
2638 break;
pbrooka87295e2007-05-26 15:09:38 +00002639 case EXCP_HALT_INSN:
pbrooke6e59062006-10-22 00:18:54 +00002640 /* Semihosing syscall. */
pbrooka87295e2007-05-26 15:09:38 +00002641 env->pc += 4;
pbrooke6e59062006-10-22 00:18:54 +00002642 do_m68k_semihosting(env, env->dregs[0]);
2643 break;
2644 case EXCP_LINEA:
2645 case EXCP_LINEF:
2646 case EXCP_UNSUPPORTED:
2647 do_sigill:
2648 info.si_signo = SIGILL;
2649 info.si_errno = 0;
2650 info.si_code = TARGET_ILL_ILLOPN;
2651 info._sifields._sigfault._addr = env->pc;
pbrook624f7972008-05-31 16:11:38 +00002652 queue_signal(env, info.si_signo, &info);
pbrooke6e59062006-10-22 00:18:54 +00002653 break;
2654 case EXCP_TRAP0:
2655 {
2656 ts->sim_syscalls = 0;
2657 n = env->dregs[0];
2658 env->pc += 2;
ths5fafdf22007-09-16 21:08:06 +00002659 env->dregs[0] = do_syscall(env,
2660 n,
pbrooke6e59062006-10-22 00:18:54 +00002661 env->dregs[1],
2662 env->dregs[2],
2663 env->dregs[3],
2664 env->dregs[4],
2665 env->dregs[5],
Peter Maydell5945cfc2011-06-16 17:37:13 +01002666 env->aregs[0],
2667 0, 0);
pbrooke6e59062006-10-22 00:18:54 +00002668 }
2669 break;
2670 case EXCP_INTERRUPT:
2671 /* just indicate that signals should be handled asap */
2672 break;
2673 case EXCP_ACCESS:
2674 {
2675 info.si_signo = SIGSEGV;
2676 info.si_errno = 0;
2677 /* XXX: check env->error_code */
2678 info.si_code = TARGET_SEGV_MAPERR;
2679 info._sifields._sigfault._addr = env->mmu.ar;
pbrook624f7972008-05-31 16:11:38 +00002680 queue_signal(env, info.si_signo, &info);
pbrooke6e59062006-10-22 00:18:54 +00002681 }
2682 break;
2683 case EXCP_DEBUG:
2684 {
2685 int sig;
2686
2687 sig = gdb_handlesig (env, TARGET_SIGTRAP);
2688 if (sig)
2689 {
2690 info.si_signo = sig;
2691 info.si_errno = 0;
2692 info.si_code = TARGET_TRAP_BRKPT;
pbrook624f7972008-05-31 16:11:38 +00002693 queue_signal(env, info.si_signo, &info);
pbrooke6e59062006-10-22 00:18:54 +00002694 }
2695 }
2696 break;
2697 default:
ths5fafdf22007-09-16 21:08:06 +00002698 fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n",
pbrooke6e59062006-10-22 00:18:54 +00002699 trapnr);
2700 cpu_dump_state(env, stderr, fprintf, 0);
2701 abort();
2702 }
2703 process_pending_signals(env);
2704 }
2705}
2706#endif /* TARGET_M68K */
2707
j_mayer7a3148a2007-04-05 07:13:51 +00002708#ifdef TARGET_ALPHA
Richard Henderson6910b8f2010-04-07 15:42:26 -07002709static void do_store_exclusive(CPUAlphaState *env, int reg, int quad)
2710{
2711 target_ulong addr, val, tmp;
2712 target_siginfo_t info;
2713 int ret = 0;
2714
2715 addr = env->lock_addr;
2716 tmp = env->lock_st_addr;
2717 env->lock_addr = -1;
2718 env->lock_st_addr = 0;
2719
2720 start_exclusive();
2721 mmap_lock();
2722
2723 if (addr == tmp) {
2724 if (quad ? get_user_s64(val, addr) : get_user_s32(val, addr)) {
2725 goto do_sigsegv;
2726 }
2727
2728 if (val == env->lock_value) {
2729 tmp = env->ir[reg];
2730 if (quad ? put_user_u64(tmp, addr) : put_user_u32(tmp, addr)) {
2731 goto do_sigsegv;
2732 }
2733 ret = 1;
2734 }
2735 }
2736 env->ir[reg] = ret;
2737 env->pc += 4;
2738
2739 mmap_unlock();
2740 end_exclusive();
2741 return;
2742
2743 do_sigsegv:
2744 mmap_unlock();
2745 end_exclusive();
2746
2747 info.si_signo = TARGET_SIGSEGV;
2748 info.si_errno = 0;
2749 info.si_code = TARGET_SEGV_MAPERR;
2750 info._sifields._sigfault._addr = addr;
2751 queue_signal(env, TARGET_SIGSEGV, &info);
2752}
2753
Andreas Färber05390242012-02-25 03:37:53 +01002754void cpu_loop(CPUAlphaState *env)
j_mayer7a3148a2007-04-05 07:13:51 +00002755{
j_mayere96efcf2007-04-14 12:17:09 +00002756 int trapnr;
Anthony Liguoric227f092009-10-01 16:12:16 -05002757 target_siginfo_t info;
Richard Henderson6049f4f2009-12-27 18:30:03 -08002758 abi_long sysret;
ths3b46e622007-09-17 08:09:54 +00002759
j_mayer7a3148a2007-04-05 07:13:51 +00002760 while (1) {
2761 trapnr = cpu_alpha_exec (env);
ths3b46e622007-09-17 08:09:54 +00002762
Richard Hendersonac316ca2010-04-12 16:14:54 -07002763 /* All of the traps imply a transition through PALcode, which
2764 implies an REI instruction has been executed. Which means
2765 that the intr_flag should be cleared. */
2766 env->intr_flag = 0;
2767
j_mayer7a3148a2007-04-05 07:13:51 +00002768 switch (trapnr) {
2769 case EXCP_RESET:
2770 fprintf(stderr, "Reset requested. Exit\n");
2771 exit(1);
2772 break;
2773 case EXCP_MCHK:
2774 fprintf(stderr, "Machine check exception. Exit\n");
2775 exit(1);
2776 break;
Richard Henderson07b6c132011-05-20 14:04:57 -07002777 case EXCP_SMP_INTERRUPT:
2778 case EXCP_CLK_INTERRUPT:
2779 case EXCP_DEV_INTERRUPT:
ths5fafdf22007-09-16 21:08:06 +00002780 fprintf(stderr, "External interrupt. Exit\n");
j_mayer7a3148a2007-04-05 07:13:51 +00002781 exit(1);
2782 break;
Richard Henderson07b6c132011-05-20 14:04:57 -07002783 case EXCP_MMFAULT:
Richard Henderson6910b8f2010-04-07 15:42:26 -07002784 env->lock_addr = -1;
Richard Henderson6049f4f2009-12-27 18:30:03 -08002785 info.si_signo = TARGET_SIGSEGV;
2786 info.si_errno = 0;
Richard Henderson129d8aa2011-05-20 13:30:00 -07002787 info.si_code = (page_get_flags(env->trap_arg0) & PAGE_VALID
Richard Henderson0be1d072010-05-21 10:03:33 -07002788 ? TARGET_SEGV_ACCERR : TARGET_SEGV_MAPERR);
Richard Henderson129d8aa2011-05-20 13:30:00 -07002789 info._sifields._sigfault._addr = env->trap_arg0;
Richard Henderson6049f4f2009-12-27 18:30:03 -08002790 queue_signal(env, info.si_signo, &info);
j_mayer7a3148a2007-04-05 07:13:51 +00002791 break;
j_mayer7a3148a2007-04-05 07:13:51 +00002792 case EXCP_UNALIGN:
Richard Henderson6910b8f2010-04-07 15:42:26 -07002793 env->lock_addr = -1;
Richard Henderson6049f4f2009-12-27 18:30:03 -08002794 info.si_signo = TARGET_SIGBUS;
2795 info.si_errno = 0;
2796 info.si_code = TARGET_BUS_ADRALN;
Richard Henderson129d8aa2011-05-20 13:30:00 -07002797 info._sifields._sigfault._addr = env->trap_arg0;
Richard Henderson6049f4f2009-12-27 18:30:03 -08002798 queue_signal(env, info.si_signo, &info);
j_mayer7a3148a2007-04-05 07:13:51 +00002799 break;
2800 case EXCP_OPCDEC:
Richard Henderson6049f4f2009-12-27 18:30:03 -08002801 do_sigill:
Richard Henderson6910b8f2010-04-07 15:42:26 -07002802 env->lock_addr = -1;
Richard Henderson6049f4f2009-12-27 18:30:03 -08002803 info.si_signo = TARGET_SIGILL;
2804 info.si_errno = 0;
2805 info.si_code = TARGET_ILL_ILLOPC;
2806 info._sifields._sigfault._addr = env->pc;
2807 queue_signal(env, info.si_signo, &info);
j_mayer7a3148a2007-04-05 07:13:51 +00002808 break;
Richard Henderson07b6c132011-05-20 14:04:57 -07002809 case EXCP_ARITH:
2810 env->lock_addr = -1;
2811 info.si_signo = TARGET_SIGFPE;
2812 info.si_errno = 0;
2813 info.si_code = TARGET_FPE_FLTINV;
2814 info._sifields._sigfault._addr = env->pc;
2815 queue_signal(env, info.si_signo, &info);
2816 break;
j_mayer7a3148a2007-04-05 07:13:51 +00002817 case EXCP_FEN:
Richard Henderson6049f4f2009-12-27 18:30:03 -08002818 /* No-op. Linux simply re-enables the FPU. */
j_mayer7a3148a2007-04-05 07:13:51 +00002819 break;
Richard Henderson07b6c132011-05-20 14:04:57 -07002820 case EXCP_CALL_PAL:
Richard Henderson6910b8f2010-04-07 15:42:26 -07002821 env->lock_addr = -1;
Richard Henderson07b6c132011-05-20 14:04:57 -07002822 switch (env->error_code) {
Richard Henderson6049f4f2009-12-27 18:30:03 -08002823 case 0x80:
2824 /* BPT */
2825 info.si_signo = TARGET_SIGTRAP;
2826 info.si_errno = 0;
2827 info.si_code = TARGET_TRAP_BRKPT;
2828 info._sifields._sigfault._addr = env->pc;
2829 queue_signal(env, info.si_signo, &info);
2830 break;
2831 case 0x81:
2832 /* BUGCHK */
2833 info.si_signo = TARGET_SIGTRAP;
2834 info.si_errno = 0;
2835 info.si_code = 0;
2836 info._sifields._sigfault._addr = env->pc;
2837 queue_signal(env, info.si_signo, &info);
2838 break;
2839 case 0x83:
2840 /* CALLSYS */
2841 trapnr = env->ir[IR_V0];
2842 sysret = do_syscall(env, trapnr,
2843 env->ir[IR_A0], env->ir[IR_A1],
2844 env->ir[IR_A2], env->ir[IR_A3],
Peter Maydell5945cfc2011-06-16 17:37:13 +01002845 env->ir[IR_A4], env->ir[IR_A5],
2846 0, 0);
Richard Hendersona5b3b132010-05-03 10:07:55 -07002847 if (trapnr == TARGET_NR_sigreturn
2848 || trapnr == TARGET_NR_rt_sigreturn) {
2849 break;
2850 }
2851 /* Syscall writes 0 to V0 to bypass error check, similar
Richard Henderson0e141972012-06-07 14:47:41 -07002852 to how this is handled internal to Linux kernel.
2853 (Ab)use trapnr temporarily as boolean indicating error. */
2854 trapnr = (env->ir[IR_V0] != 0 && sysret < 0);
2855 env->ir[IR_V0] = (trapnr ? -sysret : sysret);
2856 env->ir[IR_A3] = trapnr;
Richard Henderson6049f4f2009-12-27 18:30:03 -08002857 break;
2858 case 0x86:
2859 /* IMB */
2860 /* ??? We can probably elide the code using page_unprotect
2861 that is checking for self-modifying code. Instead we
2862 could simply call tb_flush here. Until we work out the
2863 changes required to turn off the extra write protection,
2864 this can be a no-op. */
2865 break;
2866 case 0x9E:
2867 /* RDUNIQUE */
2868 /* Handled in the translator for usermode. */
2869 abort();
2870 case 0x9F:
2871 /* WRUNIQUE */
2872 /* Handled in the translator for usermode. */
2873 abort();
2874 case 0xAA:
2875 /* GENTRAP */
2876 info.si_signo = TARGET_SIGFPE;
2877 switch (env->ir[IR_A0]) {
2878 case TARGET_GEN_INTOVF:
2879 info.si_code = TARGET_FPE_INTOVF;
2880 break;
2881 case TARGET_GEN_INTDIV:
2882 info.si_code = TARGET_FPE_INTDIV;
2883 break;
2884 case TARGET_GEN_FLTOVF:
2885 info.si_code = TARGET_FPE_FLTOVF;
2886 break;
2887 case TARGET_GEN_FLTUND:
2888 info.si_code = TARGET_FPE_FLTUND;
2889 break;
2890 case TARGET_GEN_FLTINV:
2891 info.si_code = TARGET_FPE_FLTINV;
2892 break;
2893 case TARGET_GEN_FLTINE:
2894 info.si_code = TARGET_FPE_FLTRES;
2895 break;
2896 case TARGET_GEN_ROPRAND:
2897 info.si_code = 0;
2898 break;
2899 default:
2900 info.si_signo = TARGET_SIGTRAP;
2901 info.si_code = 0;
2902 break;
2903 }
2904 info.si_errno = 0;
2905 info._sifields._sigfault._addr = env->pc;
2906 queue_signal(env, info.si_signo, &info);
2907 break;
2908 default:
2909 goto do_sigill;
2910 }
j_mayer7a3148a2007-04-05 07:13:51 +00002911 break;
j_mayer7a3148a2007-04-05 07:13:51 +00002912 case EXCP_DEBUG:
Richard Henderson6049f4f2009-12-27 18:30:03 -08002913 info.si_signo = gdb_handlesig (env, TARGET_SIGTRAP);
2914 if (info.si_signo) {
Richard Henderson6910b8f2010-04-07 15:42:26 -07002915 env->lock_addr = -1;
Richard Henderson6049f4f2009-12-27 18:30:03 -08002916 info.si_errno = 0;
2917 info.si_code = TARGET_TRAP_BRKPT;
2918 queue_signal(env, info.si_signo, &info);
j_mayer7a3148a2007-04-05 07:13:51 +00002919 }
2920 break;
Richard Henderson6910b8f2010-04-07 15:42:26 -07002921 case EXCP_STL_C:
2922 case EXCP_STQ_C:
2923 do_store_exclusive(env, env->error_code, trapnr - EXCP_STL_C);
2924 break;
Richard Hendersond0f20492012-05-31 12:05:23 -07002925 case EXCP_INTERRUPT:
2926 /* Just indicate that signals should be handled asap. */
2927 break;
j_mayer7a3148a2007-04-05 07:13:51 +00002928 default:
2929 printf ("Unhandled trap: 0x%x\n", trapnr);
2930 cpu_dump_state(env, stderr, fprintf, 0);
2931 exit (1);
2932 }
2933 process_pending_signals (env);
2934 }
2935}
2936#endif /* TARGET_ALPHA */
2937
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002938#ifdef TARGET_S390X
2939void cpu_loop(CPUS390XState *env)
2940{
Richard Hendersond5a103c2012-09-14 19:31:57 -07002941 int trapnr, n, sig;
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002942 target_siginfo_t info;
Richard Hendersond5a103c2012-09-14 19:31:57 -07002943 target_ulong addr;
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002944
2945 while (1) {
Richard Hendersond5a103c2012-09-14 19:31:57 -07002946 trapnr = cpu_s390x_exec(env);
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002947 switch (trapnr) {
2948 case EXCP_INTERRUPT:
Richard Hendersond5a103c2012-09-14 19:31:57 -07002949 /* Just indicate that signals should be handled asap. */
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002950 break;
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002951
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002952 case EXCP_SVC:
Richard Hendersond5a103c2012-09-14 19:31:57 -07002953 n = env->int_svc_code;
2954 if (!n) {
2955 /* syscalls > 255 */
2956 n = env->regs[1];
2957 }
2958 env->psw.addr += env->int_svc_ilen;
2959 env->regs[2] = do_syscall(env, n, env->regs[2], env->regs[3],
2960 env->regs[4], env->regs[5],
2961 env->regs[6], env->regs[7], 0, 0);
2962 break;
2963
2964 case EXCP_DEBUG:
2965 sig = gdb_handlesig(env, TARGET_SIGTRAP);
2966 if (sig) {
2967 n = TARGET_TRAP_BRKPT;
2968 goto do_signal_pc;
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002969 }
2970 break;
Richard Hendersond5a103c2012-09-14 19:31:57 -07002971 case EXCP_PGM:
2972 n = env->int_pgm_code;
2973 switch (n) {
2974 case PGM_OPERATION:
2975 case PGM_PRIVILEGED:
2976 sig = SIGILL;
2977 n = TARGET_ILL_ILLOPC;
2978 goto do_signal_pc;
2979 case PGM_PROTECTION:
2980 case PGM_ADDRESSING:
2981 sig = SIGSEGV;
Ulrich Hechta4c075f2009-07-24 16:57:31 +02002982 /* XXX: check env->error_code */
Richard Hendersond5a103c2012-09-14 19:31:57 -07002983 n = TARGET_SEGV_MAPERR;
2984 addr = env->__excp_addr;
2985 goto do_signal;
2986 case PGM_EXECUTE:
2987 case PGM_SPECIFICATION:
2988 case PGM_SPECIAL_OP:
2989 case PGM_OPERAND:
2990 do_sigill_opn:
2991 sig = SIGILL;
2992 n = TARGET_ILL_ILLOPN;
2993 goto do_signal_pc;
2994
2995 case PGM_FIXPT_OVERFLOW:
2996 sig = SIGFPE;
2997 n = TARGET_FPE_INTOVF;
2998 goto do_signal_pc;
2999 case PGM_FIXPT_DIVIDE:
3000 sig = SIGFPE;
3001 n = TARGET_FPE_INTDIV;
3002 goto do_signal_pc;
3003
3004 case PGM_DATA:
3005 n = (env->fpc >> 8) & 0xff;
3006 if (n == 0xff) {
3007 /* compare-and-trap */
3008 goto do_sigill_opn;
3009 } else {
3010 /* An IEEE exception, simulated or otherwise. */
3011 if (n & 0x80) {
3012 n = TARGET_FPE_FLTINV;
3013 } else if (n & 0x40) {
3014 n = TARGET_FPE_FLTDIV;
3015 } else if (n & 0x20) {
3016 n = TARGET_FPE_FLTOVF;
3017 } else if (n & 0x10) {
3018 n = TARGET_FPE_FLTUND;
3019 } else if (n & 0x08) {
3020 n = TARGET_FPE_FLTRES;
3021 } else {
3022 /* ??? Quantum exception; BFP, DFP error. */
3023 goto do_sigill_opn;
3024 }
3025 sig = SIGFPE;
3026 goto do_signal_pc;
3027 }
3028
3029 default:
3030 fprintf(stderr, "Unhandled program exception: %#x\n", n);
3031 cpu_dump_state(env, stderr, fprintf, 0);
3032 exit(1);
Ulrich Hechta4c075f2009-07-24 16:57:31 +02003033 }
3034 break;
Richard Hendersond5a103c2012-09-14 19:31:57 -07003035
3036 do_signal_pc:
3037 addr = env->psw.addr;
3038 do_signal:
3039 info.si_signo = sig;
3040 info.si_errno = 0;
3041 info.si_code = n;
3042 info._sifields._sigfault._addr = addr;
3043 queue_signal(env, info.si_signo, &info);
Ulrich Hechta4c075f2009-07-24 16:57:31 +02003044 break;
Richard Hendersond5a103c2012-09-14 19:31:57 -07003045
Ulrich Hechta4c075f2009-07-24 16:57:31 +02003046 default:
Richard Hendersond5a103c2012-09-14 19:31:57 -07003047 fprintf(stderr, "Unhandled trap: 0x%x\n", trapnr);
Ulrich Hechta4c075f2009-07-24 16:57:31 +02003048 cpu_dump_state(env, stderr, fprintf, 0);
Richard Hendersond5a103c2012-09-14 19:31:57 -07003049 exit(1);
Ulrich Hechta4c075f2009-07-24 16:57:31 +02003050 }
3051 process_pending_signals (env);
3052 }
3053}
3054
3055#endif /* TARGET_S390X */
3056
Andreas Färber9349b4f2012-03-14 01:38:32 +01003057THREAD CPUArchState *thread_env;
bellard59faf6d2003-06-25 16:18:50 +00003058
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03003059void task_settid(TaskState *ts)
3060{
3061 if (ts->ts_tid == 0) {
Juan Quintela2f7bb872009-07-27 16:13:24 +02003062#ifdef CONFIG_USE_NPTL
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03003063 ts->ts_tid = (pid_t)syscall(SYS_gettid);
3064#else
3065 /* when no threads are used, tid becomes pid */
3066 ts->ts_tid = getpid();
3067#endif
3068 }
3069}
3070
3071void stop_all_tasks(void)
3072{
3073 /*
3074 * We trust that when using NPTL, start_exclusive()
3075 * handles thread stopping correctly.
3076 */
3077 start_exclusive();
3078}
3079
pbrookc3a92832008-06-09 14:02:50 +00003080/* Assumes contents are already zeroed. */
pbrook624f7972008-05-31 16:11:38 +00003081void init_task_state(TaskState *ts)
3082{
3083 int i;
3084
pbrook624f7972008-05-31 16:11:38 +00003085 ts->used = 1;
3086 ts->first_free = ts->sigqueue_table;
3087 for (i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++) {
3088 ts->sigqueue_table[i].next = &ts->sigqueue_table[i + 1];
3089 }
3090 ts->sigqueue_table[i].next = NULL;
3091}
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003092
3093static void handle_arg_help(const char *arg)
3094{
3095 usage();
3096}
3097
3098static void handle_arg_log(const char *arg)
3099{
3100 int mask;
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003101
Peter Maydell4fde1eb2013-02-11 16:41:22 +00003102 mask = qemu_str_to_log_mask(arg);
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003103 if (!mask) {
Peter Maydell59a6fa62013-02-11 16:41:21 +00003104 qemu_print_log_usage(stdout);
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003105 exit(1);
3106 }
3107 cpu_set_log(mask);
3108}
3109
陳韋任50171d42011-11-08 17:46:44 +08003110static void handle_arg_log_filename(const char *arg)
3111{
Peter Maydell9a7e5422013-02-11 16:41:20 +00003112 qemu_set_log_filename(arg);
陳韋任50171d42011-11-08 17:46:44 +08003113}
3114
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003115static void handle_arg_set_env(const char *arg)
3116{
3117 char *r, *p, *token;
3118 r = p = strdup(arg);
3119 while ((token = strsep(&p, ",")) != NULL) {
3120 if (envlist_setenv(envlist, token) != 0) {
3121 usage();
3122 }
3123 }
3124 free(r);
3125}
3126
3127static void handle_arg_unset_env(const char *arg)
3128{
3129 char *r, *p, *token;
3130 r = p = strdup(arg);
3131 while ((token = strsep(&p, ",")) != NULL) {
3132 if (envlist_unsetenv(envlist, token) != 0) {
3133 usage();
3134 }
3135 }
3136 free(r);
3137}
3138
3139static void handle_arg_argv0(const char *arg)
3140{
3141 argv0 = strdup(arg);
3142}
3143
3144static void handle_arg_stack_size(const char *arg)
3145{
3146 char *p;
3147 guest_stack_size = strtoul(arg, &p, 0);
3148 if (guest_stack_size == 0) {
3149 usage();
3150 }
3151
3152 if (*p == 'M') {
3153 guest_stack_size *= 1024 * 1024;
3154 } else if (*p == 'k' || *p == 'K') {
3155 guest_stack_size *= 1024;
3156 }
3157}
3158
3159static void handle_arg_ld_prefix(const char *arg)
3160{
3161 interp_prefix = strdup(arg);
3162}
3163
3164static void handle_arg_pagesize(const char *arg)
3165{
3166 qemu_host_page_size = atoi(arg);
3167 if (qemu_host_page_size == 0 ||
3168 (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) {
3169 fprintf(stderr, "page size must be a power of two\n");
3170 exit(1);
3171 }
3172}
3173
3174static void handle_arg_gdb(const char *arg)
3175{
3176 gdbstub_port = atoi(arg);
3177}
3178
3179static void handle_arg_uname(const char *arg)
3180{
3181 qemu_uname_release = strdup(arg);
3182}
3183
3184static void handle_arg_cpu(const char *arg)
3185{
3186 cpu_model = strdup(arg);
Peter Maydellc8057f92012-08-02 13:45:54 +01003187 if (cpu_model == NULL || is_help_option(cpu_model)) {
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003188 /* XXX: implement xxx_cpu_list for targets that still miss it */
Peter Maydelle916cbf2012-09-05 17:41:08 -03003189#if defined(cpu_list)
3190 cpu_list(stdout, &fprintf);
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003191#endif
3192 exit(1);
3193 }
3194}
3195
3196#if defined(CONFIG_USE_GUEST_BASE)
3197static void handle_arg_guest_base(const char *arg)
3198{
3199 guest_base = strtol(arg, NULL, 0);
3200 have_guest_base = 1;
3201}
3202
3203static void handle_arg_reserved_va(const char *arg)
3204{
3205 char *p;
3206 int shift = 0;
3207 reserved_va = strtoul(arg, &p, 0);
3208 switch (*p) {
3209 case 'k':
3210 case 'K':
3211 shift = 10;
3212 break;
3213 case 'M':
3214 shift = 20;
3215 break;
3216 case 'G':
3217 shift = 30;
3218 break;
3219 }
3220 if (shift) {
3221 unsigned long unshifted = reserved_va;
3222 p++;
3223 reserved_va <<= shift;
3224 if (((reserved_va >> shift) != unshifted)
3225#if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS
3226 || (reserved_va > (1ul << TARGET_VIRT_ADDR_SPACE_BITS))
3227#endif
3228 ) {
3229 fprintf(stderr, "Reserved virtual address too big\n");
3230 exit(1);
3231 }
3232 }
3233 if (*p) {
3234 fprintf(stderr, "Unrecognised -R size suffix '%s'\n", p);
3235 exit(1);
3236 }
3237}
3238#endif
3239
3240static void handle_arg_singlestep(const char *arg)
3241{
3242 singlestep = 1;
3243}
3244
3245static void handle_arg_strace(const char *arg)
3246{
3247 do_strace = 1;
3248}
3249
3250static void handle_arg_version(const char *arg)
3251{
3252 printf("qemu-" TARGET_ARCH " version " QEMU_VERSION QEMU_PKGVERSION
3253 ", Copyright (c) 2003-2008 Fabrice Bellard\n");
Peter Maydell1386d4c2011-09-29 15:48:12 +01003254 exit(0);
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003255}
3256
3257struct qemu_argument {
3258 const char *argv;
3259 const char *env;
3260 bool has_arg;
3261 void (*handle_opt)(const char *arg);
3262 const char *example;
3263 const char *help;
3264};
3265
Jim Meyering42644ce2012-05-21 21:56:19 +02003266static const struct qemu_argument arg_table[] = {
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003267 {"h", "", false, handle_arg_help,
3268 "", "print this help"},
3269 {"g", "QEMU_GDB", true, handle_arg_gdb,
3270 "port", "wait gdb connection to 'port'"},
3271 {"L", "QEMU_LD_PREFIX", true, handle_arg_ld_prefix,
3272 "path", "set the elf interpreter prefix to 'path'"},
3273 {"s", "QEMU_STACK_SIZE", true, handle_arg_stack_size,
3274 "size", "set the stack size to 'size' bytes"},
3275 {"cpu", "QEMU_CPU", true, handle_arg_cpu,
Peter Maydellc8057f92012-08-02 13:45:54 +01003276 "model", "select CPU (-cpu help for list)"},
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003277 {"E", "QEMU_SET_ENV", true, handle_arg_set_env,
3278 "var=value", "sets targets environment variable (see below)"},
3279 {"U", "QEMU_UNSET_ENV", true, handle_arg_unset_env,
3280 "var", "unsets targets environment variable (see below)"},
3281 {"0", "QEMU_ARGV0", true, handle_arg_argv0,
3282 "argv0", "forces target process argv[0] to be 'argv0'"},
3283 {"r", "QEMU_UNAME", true, handle_arg_uname,
3284 "uname", "set qemu uname release string to 'uname'"},
3285#if defined(CONFIG_USE_GUEST_BASE)
3286 {"B", "QEMU_GUEST_BASE", true, handle_arg_guest_base,
3287 "address", "set guest_base address to 'address'"},
3288 {"R", "QEMU_RESERVED_VA", true, handle_arg_reserved_va,
3289 "size", "reserve 'size' bytes for guest virtual address space"},
3290#endif
3291 {"d", "QEMU_LOG", true, handle_arg_log,
3292 "options", "activate log"},
陳韋任50171d42011-11-08 17:46:44 +08003293 {"D", "QEMU_LOG_FILENAME", true, handle_arg_log_filename,
3294 "logfile", "override default logfile location"},
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003295 {"p", "QEMU_PAGESIZE", true, handle_arg_pagesize,
3296 "pagesize", "set the host page size to 'pagesize'"},
3297 {"singlestep", "QEMU_SINGLESTEP", false, handle_arg_singlestep,
3298 "", "run in singlestep mode"},
3299 {"strace", "QEMU_STRACE", false, handle_arg_strace,
3300 "", "log system calls"},
3301 {"version", "QEMU_VERSION", false, handle_arg_version,
Peter Maydell1386d4c2011-09-29 15:48:12 +01003302 "", "display version information and exit"},
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003303 {NULL, NULL, false, NULL, NULL, NULL}
3304};
3305
3306static void usage(void)
3307{
Jim Meyering42644ce2012-05-21 21:56:19 +02003308 const struct qemu_argument *arginfo;
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003309 int maxarglen;
3310 int maxenvlen;
3311
3312 printf("usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n"
3313 "Linux CPU emulator (compiled for " TARGET_ARCH " emulation)\n"
3314 "\n"
3315 "Options and associated environment variables:\n"
3316 "\n");
3317
3318 maxarglen = maxenvlen = 0;
3319
3320 for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
3321 if (strlen(arginfo->env) > maxenvlen) {
3322 maxenvlen = strlen(arginfo->env);
3323 }
3324 if (strlen(arginfo->argv) > maxarglen) {
3325 maxarglen = strlen(arginfo->argv);
3326 }
3327 }
3328
3329 printf("%-*s%-*sDescription\n", maxarglen+3, "Argument",
3330 maxenvlen+1, "Env-variable");
3331
3332 for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
3333 if (arginfo->has_arg) {
3334 printf("-%s %-*s %-*s %s\n", arginfo->argv,
3335 (int)(maxarglen-strlen(arginfo->argv)), arginfo->example,
3336 maxenvlen, arginfo->env, arginfo->help);
3337 } else {
3338 printf("-%-*s %-*s %s\n", maxarglen+1, arginfo->argv,
3339 maxenvlen, arginfo->env,
3340 arginfo->help);
3341 }
3342 }
3343
3344 printf("\n"
3345 "Defaults:\n"
3346 "QEMU_LD_PREFIX = %s\n"
3347 "QEMU_STACK_SIZE = %ld byte\n"
3348 "QEMU_LOG = %s\n",
3349 interp_prefix,
3350 guest_stack_size,
3351 DEBUG_LOGFILE);
3352
3353 printf("\n"
3354 "You can use -E and -U options or the QEMU_SET_ENV and\n"
3355 "QEMU_UNSET_ENV environment variables to set and unset\n"
3356 "environment variables for the target process.\n"
3357 "It is possible to provide several variables by separating them\n"
3358 "by commas in getsubopt(3) style. Additionally it is possible to\n"
3359 "provide the -E and -U options multiple times.\n"
3360 "The following lines are equivalent:\n"
3361 " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n"
3362 " -E var1=val2,var2=val2 -U LD_PRELOAD,LD_DEBUG\n"
3363 " QEMU_SET_ENV=var1=val2,var2=val2 QEMU_UNSET_ENV=LD_PRELOAD,LD_DEBUG\n"
3364 "Note that if you provide several changes to a single variable\n"
3365 "the last change will stay in effect.\n");
3366
3367 exit(1);
3368}
3369
3370static int parse_args(int argc, char **argv)
3371{
3372 const char *r;
3373 int optind;
Jim Meyering42644ce2012-05-21 21:56:19 +02003374 const struct qemu_argument *arginfo;
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003375
3376 for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
3377 if (arginfo->env == NULL) {
3378 continue;
3379 }
3380
3381 r = getenv(arginfo->env);
3382 if (r != NULL) {
3383 arginfo->handle_opt(r);
3384 }
3385 }
3386
3387 optind = 1;
3388 for (;;) {
3389 if (optind >= argc) {
3390 break;
3391 }
3392 r = argv[optind];
3393 if (r[0] != '-') {
3394 break;
3395 }
3396 optind++;
3397 r++;
3398 if (!strcmp(r, "-")) {
3399 break;
3400 }
3401
3402 for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) {
3403 if (!strcmp(r, arginfo->argv)) {
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003404 if (arginfo->has_arg) {
Peter Maydell1386d4c2011-09-29 15:48:12 +01003405 if (optind >= argc) {
3406 usage();
3407 }
3408 arginfo->handle_opt(argv[optind]);
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003409 optind++;
Peter Maydell1386d4c2011-09-29 15:48:12 +01003410 } else {
3411 arginfo->handle_opt(NULL);
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003412 }
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003413 break;
3414 }
3415 }
3416
3417 /* no option matched the current argv */
3418 if (arginfo->handle_opt == NULL) {
3419 usage();
3420 }
3421 }
3422
3423 if (optind >= argc) {
3424 usage();
3425 }
3426
3427 filename = argv[optind];
3428 exec_path = argv[optind];
3429
3430 return optind;
3431}
3432
malc902b3d52008-12-10 19:18:40 +00003433int main(int argc, char **argv, char **envp)
bellard31e31b82003-02-18 22:55:36 +00003434{
Matthew Fernandezc235d732011-06-07 16:32:40 +00003435 const char *log_file = DEBUG_LOGFILE;
bellard01ffc752003-02-18 23:00:51 +00003436 struct target_pt_regs regs1, *regs = &regs1;
bellard31e31b82003-02-18 22:55:36 +00003437 struct image_info info1, *info = &info1;
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03003438 struct linux_binprm bprm;
Nathan Froyd48e15fc2010-10-29 07:48:57 -07003439 TaskState *ts;
Andreas Färber9349b4f2012-03-14 01:38:32 +01003440 CPUArchState *env;
bellard586314f2003-03-03 15:02:29 +00003441 int optind;
aurel3204a6dfe2009-01-30 19:59:17 +00003442 char **target_environ, **wrk;
aurel327d8cec92009-04-15 16:11:52 +00003443 char **target_argv;
3444 int target_argc;
aurel327d8cec92009-04-15 16:11:52 +00003445 int i;
Arnaud Patardfd4d81d2009-06-19 10:39:36 +03003446 int ret;
thsb12b6a12007-06-17 16:38:39 +00003447
Andreas Färberce008c12012-03-04 21:32:36 +01003448 module_call_init(MODULE_INIT_QOM);
3449
malc902b3d52008-12-10 19:18:40 +00003450 qemu_cache_utils_init(envp);
3451
aurel3204a6dfe2009-01-30 19:59:17 +00003452 if ((envlist = envlist_create()) == NULL) {
3453 (void) fprintf(stderr, "Unable to allocate envlist\n");
3454 exit(1);
3455 }
3456
3457 /* add current environment into the list */
3458 for (wrk = environ; *wrk != NULL; wrk++) {
3459 (void) envlist_setenv(envlist, *wrk);
3460 }
3461
Richard Henderson703e0e82010-03-19 14:21:13 -07003462 /* Read the stack limit from the kernel. If it's "unlimited",
3463 then we can do little else besides use the default. */
3464 {
3465 struct rlimit lim;
3466 if (getrlimit(RLIMIT_STACK, &lim) == 0
takasi-y@ops.dti.ne.jp81bbe902010-04-12 04:07:35 +09003467 && lim.rlim_cur != RLIM_INFINITY
3468 && lim.rlim_cur == (target_long)lim.rlim_cur) {
Richard Henderson703e0e82010-03-19 14:21:13 -07003469 guest_stack_size = lim.rlim_cur;
3470 }
3471 }
3472
j_mayerb1f9be32007-03-19 08:08:28 +00003473 cpu_model = NULL;
john cooperb5ec5ce2010-02-20 11:14:59 -06003474#if defined(cpudef_setup)
3475 cpudef_setup(); /* parse cpu definitions in target config file (TBD) */
3476#endif
3477
Matthew Fernandezc235d732011-06-07 16:32:40 +00003478 /* init debug */
Peter Maydell9a7e5422013-02-11 16:41:20 +00003479 qemu_set_log_filename(log_file);
Johannes Schauerfc9c5412011-08-06 08:54:12 +02003480 optind = parse_args(argc, argv);
Peter Maydell4b5dfd82011-07-18 11:44:09 +01003481
bellard31e31b82003-02-18 22:55:36 +00003482 /* Zero out regs */
bellard01ffc752003-02-18 23:00:51 +00003483 memset(regs, 0, sizeof(struct target_pt_regs));
bellard31e31b82003-02-18 22:55:36 +00003484
3485 /* Zero out image_info */
3486 memset(info, 0, sizeof(struct image_info));
3487
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03003488 memset(&bprm, 0, sizeof (bprm));
3489
bellard74cd30b2003-04-11 00:13:41 +00003490 /* Scan interp_prefix dir for replacement files. */
3491 init_paths(interp_prefix);
3492
bellard46027c02007-11-08 13:56:19 +00003493 if (cpu_model == NULL) {
bellardaaed9092007-11-10 15:15:54 +00003494#if defined(TARGET_I386)
bellard46027c02007-11-08 13:56:19 +00003495#ifdef TARGET_X86_64
3496 cpu_model = "qemu64";
3497#else
3498 cpu_model = "qemu32";
3499#endif
bellardaaed9092007-11-10 15:15:54 +00003500#elif defined(TARGET_ARM)
pbrook088ab162009-04-09 15:20:50 +00003501 cpu_model = "any";
Guan Xuetaod2fbca92011-04-12 16:27:03 +08003502#elif defined(TARGET_UNICORE32)
3503 cpu_model = "any";
bellardaaed9092007-11-10 15:15:54 +00003504#elif defined(TARGET_M68K)
3505 cpu_model = "any";
3506#elif defined(TARGET_SPARC)
3507#ifdef TARGET_SPARC64
3508 cpu_model = "TI UltraSparc II";
3509#else
3510 cpu_model = "Fujitsu MB86904";
bellard46027c02007-11-08 13:56:19 +00003511#endif
bellardaaed9092007-11-10 15:15:54 +00003512#elif defined(TARGET_MIPS)
3513#if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64)
3514 cpu_model = "20Kc";
3515#else
3516 cpu_model = "24Kf";
3517#endif
Jia Liud9627832012-07-20 15:50:52 +08003518#elif defined TARGET_OPENRISC
3519 cpu_model = "or1200";
bellardaaed9092007-11-10 15:15:54 +00003520#elif defined(TARGET_PPC)
bellard7ded4f52007-11-15 15:37:50 +00003521#ifdef TARGET_PPC64
Aurelien Jarnof7177932010-04-06 12:21:05 +02003522 cpu_model = "970fx";
bellard7ded4f52007-11-15 15:37:50 +00003523#else
bellardaaed9092007-11-10 15:15:54 +00003524 cpu_model = "750";
bellard7ded4f52007-11-15 15:37:50 +00003525#endif
bellardaaed9092007-11-10 15:15:54 +00003526#else
3527 cpu_model = "any";
3528#endif
3529 }
Jan Kiszkad5ab9712011-08-02 16:10:21 +02003530 tcg_exec_init(0);
3531 cpu_exec_init_all();
bellard83fb7ad2004-07-05 21:25:26 +00003532 /* NOTE: we need to init the CPU at this stage to get
3533 qemu_host_page_size */
bellardaaed9092007-11-10 15:15:54 +00003534 env = cpu_init(cpu_model);
3535 if (!env) {
3536 fprintf(stderr, "Unable to find CPU definition\n");
3537 exit(1);
3538 }
Andreas Färber77868122013-01-20 05:34:10 +01003539#if defined(TARGET_SPARC) || defined(TARGET_PPC)
Andreas Färberff18b762012-05-05 14:47:34 +02003540 cpu_reset(ENV_GET_CPU(env));
Blue Swirlb55a37c2009-11-07 10:37:06 +00003541#endif
3542
pbrookd5975362008-06-07 20:50:51 +00003543 thread_env = env;
ths3b46e622007-09-17 08:09:54 +00003544
bellardb6741952007-11-11 14:46:06 +00003545 if (getenv("QEMU_STRACE")) {
3546 do_strace = 1;
thsb92c47c2007-11-01 00:07:38 +00003547 }
3548
aurel3204a6dfe2009-01-30 19:59:17 +00003549 target_environ = envlist_to_environ(envlist, NULL);
3550 envlist_free(envlist);
thsb12b6a12007-06-17 16:38:39 +00003551
Paul Brook379f6692009-07-17 12:48:08 +01003552#if defined(CONFIG_USE_GUEST_BASE)
3553 /*
3554 * Now that page sizes are configured in cpu_init() we can do
3555 * proper page alignment for guest_base.
3556 */
3557 guest_base = HOST_PAGE_ALIGN(guest_base);
Paul Brook68a1c812010-05-29 02:27:35 +01003558
Meador Inge806d1022012-07-26 16:50:02 +00003559 if (reserved_va || have_guest_base) {
3560 guest_base = init_guest_space(guest_base, reserved_va, 0,
3561 have_guest_base);
3562 if (guest_base == (unsigned long)-1) {
Peter Maydell097b8cb2012-08-20 11:36:32 +01003563 fprintf(stderr, "Unable to reserve 0x%lx bytes of virtual address "
3564 "space for use as guest address space (check your virtual "
3565 "memory ulimit setting or reserve less using -R option)\n",
3566 reserved_va);
Paul Brook68a1c812010-05-29 02:27:35 +01003567 exit(1);
3568 }
Dr. David Alan Gilbert97cc7562011-08-31 17:24:34 +01003569
Meador Inge806d1022012-07-26 16:50:02 +00003570 if (reserved_va) {
3571 mmap_next_start = reserved_va;
Dr. David Alan Gilbert97cc7562011-08-31 17:24:34 +01003572 }
3573 }
Richard Henderson14f24e12010-03-10 15:39:07 -08003574#endif /* CONFIG_USE_GUEST_BASE */
Paul Brook379f6692009-07-17 12:48:08 +01003575
3576 /*
3577 * Read in mmap_min_addr kernel parameter. This value is used
3578 * When loading the ELF image to determine whether guest_base
Richard Henderson14f24e12010-03-10 15:39:07 -08003579 * is needed. It is also used in mmap_find_vma.
Paul Brook379f6692009-07-17 12:48:08 +01003580 */
Richard Henderson14f24e12010-03-10 15:39:07 -08003581 {
Paul Brook379f6692009-07-17 12:48:08 +01003582 FILE *fp;
3583
3584 if ((fp = fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL) {
3585 unsigned long tmp;
3586 if (fscanf(fp, "%lu", &tmp) == 1) {
3587 mmap_min_addr = tmp;
3588 qemu_log("host mmap_min_addr=0x%lx\n", mmap_min_addr);
3589 }
3590 fclose(fp);
3591 }
3592 }
Paul Brook379f6692009-07-17 12:48:08 +01003593
aurel327d8cec92009-04-15 16:11:52 +00003594 /*
3595 * Prepare copy of argv vector for target.
3596 */
3597 target_argc = argc - optind;
3598 target_argv = calloc(target_argc + 1, sizeof (char *));
3599 if (target_argv == NULL) {
3600 (void) fprintf(stderr, "Unable to allocate memory for target_argv\n");
3601 exit(1);
3602 }
3603
3604 /*
3605 * If argv0 is specified (using '-0' switch) we replace
3606 * argv[0] pointer with the given one.
3607 */
3608 i = 0;
3609 if (argv0 != NULL) {
3610 target_argv[i++] = strdup(argv0);
3611 }
3612 for (; i < target_argc; i++) {
3613 target_argv[i] = strdup(argv[optind + i]);
3614 }
3615 target_argv[target_argc] = NULL;
3616
Anthony Liguori7267c092011-08-20 22:09:37 -05003617 ts = g_malloc0 (sizeof(TaskState));
Mika Westerbergedf8e2a2009-04-07 09:57:11 +03003618 init_task_state(ts);
3619 /* build Task State */
3620 ts->info = info;
3621 ts->bprm = &bprm;
3622 env->opaque = ts;
3623 task_settid(ts);
3624
Arnaud Patardfd4d81d2009-06-19 10:39:36 +03003625 ret = loader_exec(filename, target_argv, target_environ, regs,
3626 info, &bprm);
3627 if (ret != 0) {
Peter Maydell885c1d12012-08-24 06:55:53 +00003628 printf("Error while loading %s: %s\n", filename, strerror(-ret));
thsb12b6a12007-06-17 16:38:39 +00003629 _exit(1);
3630 }
3631
3632 for (wrk = target_environ; *wrk; wrk++) {
3633 free(*wrk);
bellard31e31b82003-02-18 22:55:36 +00003634 }
ths3b46e622007-09-17 08:09:54 +00003635
thsb12b6a12007-06-17 16:38:39 +00003636 free(target_environ);
3637
blueswir12e77eac2009-01-20 16:57:34 +00003638 if (qemu_log_enabled()) {
Paul Brook379f6692009-07-17 12:48:08 +01003639#if defined(CONFIG_USE_GUEST_BASE)
3640 qemu_log("guest_base 0x%lx\n", guest_base);
3641#endif
blueswir12e77eac2009-01-20 16:57:34 +00003642 log_page_dump();
ths3b46e622007-09-17 08:09:54 +00003643
blueswir12e77eac2009-01-20 16:57:34 +00003644 qemu_log("start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk);
3645 qemu_log("end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code);
3646 qemu_log("start_code 0x" TARGET_ABI_FMT_lx "\n",
3647 info->start_code);
3648 qemu_log("start_data 0x" TARGET_ABI_FMT_lx "\n",
3649 info->start_data);
3650 qemu_log("end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data);
3651 qemu_log("start_stack 0x" TARGET_ABI_FMT_lx "\n",
3652 info->start_stack);
3653 qemu_log("brk 0x" TARGET_ABI_FMT_lx "\n", info->brk);
3654 qemu_log("entry 0x" TARGET_ABI_FMT_lx "\n", info->entry);
3655 }
bellard31e31b82003-02-18 22:55:36 +00003656
pbrook53a59602006-03-25 19:31:22 +00003657 target_set_brk(info->brk);
bellard31e31b82003-02-18 22:55:36 +00003658 syscall_init();
bellard66fb9762003-03-23 01:06:05 +00003659 signal_init();
bellard31e31b82003-02-18 22:55:36 +00003660
Richard Henderson9002ec72010-05-06 08:50:41 -07003661#if defined(CONFIG_USE_GUEST_BASE)
3662 /* Now that we've loaded the binary, GUEST_BASE is fixed. Delay
3663 generating the prologue until now so that the prologue can take
3664 the real value of GUEST_BASE into account. */
3665 tcg_prologue_init(&tcg_ctx);
3666#endif
3667
bellardb346ff42003-06-15 20:05:50 +00003668#if defined(TARGET_I386)
bellard2e255c62003-08-21 23:25:21 +00003669 cpu_x86_set_cpl(env, 3);
3670
bellard3802ce22003-07-26 18:02:28 +00003671 env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK;
bellard1bde4652005-01-12 22:34:47 +00003672 env->hflags |= HF_PE_MASK;
3673 if (env->cpuid_features & CPUID_SSE) {
3674 env->cr[4] |= CR4_OSFXSR_MASK;
3675 env->hflags |= HF_OSFXSR_MASK;
3676 }
bellardd2fd1af2007-11-14 18:08:56 +00003677#ifndef TARGET_ABI32
bellard4dbc4222007-11-15 15:27:03 +00003678 /* enable 64 bit mode if possible */
3679 if (!(env->cpuid_ext2_features & CPUID_EXT2_LM)) {
3680 fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n");
3681 exit(1);
3682 }
bellardd2fd1af2007-11-14 18:08:56 +00003683 env->cr[4] |= CR4_PAE_MASK;
bellard4dbc4222007-11-15 15:27:03 +00003684 env->efer |= MSR_EFER_LMA | MSR_EFER_LME;
bellardd2fd1af2007-11-14 18:08:56 +00003685 env->hflags |= HF_LMA_MASK;
3686#endif
bellard1bde4652005-01-12 22:34:47 +00003687
bellard415e5612004-02-03 23:37:12 +00003688 /* flags setup : we activate the IRQs by default as in user mode */
3689 env->eflags |= IF_MASK;
ths3b46e622007-09-17 08:09:54 +00003690
bellard6dbad632003-03-16 18:05:05 +00003691 /* linux register setup */
bellardd2fd1af2007-11-14 18:08:56 +00003692#ifndef TARGET_ABI32
j_mayer84409dd2007-04-06 08:56:50 +00003693 env->regs[R_EAX] = regs->rax;
3694 env->regs[R_EBX] = regs->rbx;
3695 env->regs[R_ECX] = regs->rcx;
3696 env->regs[R_EDX] = regs->rdx;
3697 env->regs[R_ESI] = regs->rsi;
3698 env->regs[R_EDI] = regs->rdi;
3699 env->regs[R_EBP] = regs->rbp;
3700 env->regs[R_ESP] = regs->rsp;
3701 env->eip = regs->rip;
3702#else
bellard0ecfa992003-03-03 14:32:43 +00003703 env->regs[R_EAX] = regs->eax;
3704 env->regs[R_EBX] = regs->ebx;
3705 env->regs[R_ECX] = regs->ecx;
3706 env->regs[R_EDX] = regs->edx;
3707 env->regs[R_ESI] = regs->esi;
3708 env->regs[R_EDI] = regs->edi;
3709 env->regs[R_EBP] = regs->ebp;
3710 env->regs[R_ESP] = regs->esp;
bellarddab2ed92003-03-22 15:23:14 +00003711 env->eip = regs->eip;
j_mayer84409dd2007-04-06 08:56:50 +00003712#endif
bellard31e31b82003-02-18 22:55:36 +00003713
bellardf4beb512003-05-27 23:28:08 +00003714 /* linux interrupt setup */
balroge4415702008-11-10 02:55:33 +00003715#ifndef TARGET_ABI32
3716 env->idt.limit = 511;
3717#else
3718 env->idt.limit = 255;
3719#endif
3720 env->idt.base = target_mmap(0, sizeof(uint64_t) * (env->idt.limit + 1),
3721 PROT_READ|PROT_WRITE,
3722 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
3723 idt_table = g2h(env->idt.base);
bellardf4beb512003-05-27 23:28:08 +00003724 set_idt(0, 0);
3725 set_idt(1, 0);
3726 set_idt(2, 0);
3727 set_idt(3, 3);
3728 set_idt(4, 3);
bellardec95da62008-05-12 12:23:31 +00003729 set_idt(5, 0);
bellardf4beb512003-05-27 23:28:08 +00003730 set_idt(6, 0);
3731 set_idt(7, 0);
3732 set_idt(8, 0);
3733 set_idt(9, 0);
3734 set_idt(10, 0);
3735 set_idt(11, 0);
3736 set_idt(12, 0);
3737 set_idt(13, 0);
3738 set_idt(14, 0);
3739 set_idt(15, 0);
3740 set_idt(16, 0);
3741 set_idt(17, 0);
3742 set_idt(18, 0);
3743 set_idt(19, 0);
3744 set_idt(0x80, 3);
3745
bellard6dbad632003-03-16 18:05:05 +00003746 /* linux segment setup */
bellard8d18e892007-11-14 15:18:40 +00003747 {
3748 uint64_t *gdt_table;
balroge4415702008-11-10 02:55:33 +00003749 env->gdt.base = target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES,
3750 PROT_READ|PROT_WRITE,
3751 MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
bellard8d18e892007-11-14 15:18:40 +00003752 env->gdt.limit = sizeof(uint64_t) * TARGET_GDT_ENTRIES - 1;
balroge4415702008-11-10 02:55:33 +00003753 gdt_table = g2h(env->gdt.base);
bellardd2fd1af2007-11-14 18:08:56 +00003754#ifdef TARGET_ABI32
bellard8d18e892007-11-14 15:18:40 +00003755 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
3756 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
3757 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
bellardd2fd1af2007-11-14 18:08:56 +00003758#else
3759 /* 64 bit code segment */
3760 write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff,
3761 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
3762 DESC_L_MASK |
3763 (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT));
3764#endif
bellard8d18e892007-11-14 15:18:40 +00003765 write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff,
3766 DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK |
3767 (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT));
3768 }
bellard6dbad632003-03-16 18:05:05 +00003769 cpu_x86_load_seg(env, R_CS, __USER_CS);
bellardd2fd1af2007-11-14 18:08:56 +00003770 cpu_x86_load_seg(env, R_SS, __USER_DS);
3771#ifdef TARGET_ABI32
bellard6dbad632003-03-16 18:05:05 +00003772 cpu_x86_load_seg(env, R_DS, __USER_DS);
3773 cpu_x86_load_seg(env, R_ES, __USER_DS);
bellard6dbad632003-03-16 18:05:05 +00003774 cpu_x86_load_seg(env, R_FS, __USER_DS);
3775 cpu_x86_load_seg(env, R_GS, __USER_DS);
thsd6eb40f2007-06-21 22:55:02 +00003776 /* This hack makes Wine work... */
3777 env->segs[R_FS].selector = 0;
bellardd2fd1af2007-11-14 18:08:56 +00003778#else
3779 cpu_x86_load_seg(env, R_DS, 0);
3780 cpu_x86_load_seg(env, R_ES, 0);
3781 cpu_x86_load_seg(env, R_FS, 0);
3782 cpu_x86_load_seg(env, R_GS, 0);
3783#endif
bellardb346ff42003-06-15 20:05:50 +00003784#elif defined(TARGET_ARM)
3785 {
3786 int i;
bellardb5ff1b32005-11-26 10:38:39 +00003787 cpsr_write(env, regs->uregs[16], 0xffffffff);
bellardb346ff42003-06-15 20:05:50 +00003788 for(i = 0; i < 16; i++) {
3789 env->regs[i] = regs->uregs[i];
3790 }
Paul Brookd8fd2952012-03-30 18:02:50 +01003791 /* Enable BE8. */
3792 if (EF_ARM_EABI_VERSION(info->elf_flags) >= EF_ARM_EABI_VER4
3793 && (info->elf_flags & EF_ARM_BE8)) {
3794 env->bswap_code = 1;
3795 }
bellardb346ff42003-06-15 20:05:50 +00003796 }
Guan Xuetaod2fbca92011-04-12 16:27:03 +08003797#elif defined(TARGET_UNICORE32)
3798 {
3799 int i;
3800 cpu_asr_write(env, regs->uregs[32], 0xffffffff);
3801 for (i = 0; i < 32; i++) {
3802 env->regs[i] = regs->uregs[i];
3803 }
3804 }
bellard93ac68b2003-09-30 20:57:29 +00003805#elif defined(TARGET_SPARC)
bellard060366c2004-01-04 15:50:01 +00003806 {
3807 int i;
3808 env->pc = regs->pc;
3809 env->npc = regs->npc;
3810 env->y = regs->y;
3811 for(i = 0; i < 8; i++)
3812 env->gregs[i] = regs->u_regs[i];
3813 for(i = 0; i < 8; i++)
3814 env->regwptr[i] = regs->u_regs[i + 8];
3815 }
bellard67867302003-11-23 17:05:30 +00003816#elif defined(TARGET_PPC)
3817 {
3818 int i;
bellard3fc6c082005-07-02 20:59:34 +00003819
j_mayer0411a972007-10-25 21:35:50 +00003820#if defined(TARGET_PPC64)
3821#if defined(TARGET_ABI32)
3822 env->msr &= ~((target_ulong)1 << MSR_SF);
j_mayere85e7c62007-10-18 19:59:49 +00003823#else
j_mayer0411a972007-10-25 21:35:50 +00003824 env->msr |= (target_ulong)1 << MSR_SF;
3825#endif
j_mayer84409dd2007-04-06 08:56:50 +00003826#endif
bellard67867302003-11-23 17:05:30 +00003827 env->nip = regs->nip;
3828 for(i = 0; i < 32; i++) {
3829 env->gpr[i] = regs->gpr[i];
3830 }
3831 }
pbrooke6e59062006-10-22 00:18:54 +00003832#elif defined(TARGET_M68K)
3833 {
pbrooke6e59062006-10-22 00:18:54 +00003834 env->pc = regs->pc;
3835 env->dregs[0] = regs->d0;
3836 env->dregs[1] = regs->d1;
3837 env->dregs[2] = regs->d2;
3838 env->dregs[3] = regs->d3;
3839 env->dregs[4] = regs->d4;
3840 env->dregs[5] = regs->d5;
3841 env->dregs[6] = regs->d6;
3842 env->dregs[7] = regs->d7;
3843 env->aregs[0] = regs->a0;
3844 env->aregs[1] = regs->a1;
3845 env->aregs[2] = regs->a2;
3846 env->aregs[3] = regs->a3;
3847 env->aregs[4] = regs->a4;
3848 env->aregs[5] = regs->a5;
3849 env->aregs[6] = regs->a6;
3850 env->aregs[7] = regs->usp;
3851 env->sr = regs->sr;
3852 ts->sim_syscalls = 1;
3853 }
Edgar E. Iglesiasb779e292009-05-20 21:31:33 +02003854#elif defined(TARGET_MICROBLAZE)
3855 {
3856 env->regs[0] = regs->r0;
3857 env->regs[1] = regs->r1;
3858 env->regs[2] = regs->r2;
3859 env->regs[3] = regs->r3;
3860 env->regs[4] = regs->r4;
3861 env->regs[5] = regs->r5;
3862 env->regs[6] = regs->r6;
3863 env->regs[7] = regs->r7;
3864 env->regs[8] = regs->r8;
3865 env->regs[9] = regs->r9;
3866 env->regs[10] = regs->r10;
3867 env->regs[11] = regs->r11;
3868 env->regs[12] = regs->r12;
3869 env->regs[13] = regs->r13;
3870 env->regs[14] = regs->r14;
3871 env->regs[15] = regs->r15;
3872 env->regs[16] = regs->r16;
3873 env->regs[17] = regs->r17;
3874 env->regs[18] = regs->r18;
3875 env->regs[19] = regs->r19;
3876 env->regs[20] = regs->r20;
3877 env->regs[21] = regs->r21;
3878 env->regs[22] = regs->r22;
3879 env->regs[23] = regs->r23;
3880 env->regs[24] = regs->r24;
3881 env->regs[25] = regs->r25;
3882 env->regs[26] = regs->r26;
3883 env->regs[27] = regs->r27;
3884 env->regs[28] = regs->r28;
3885 env->regs[29] = regs->r29;
3886 env->regs[30] = regs->r30;
3887 env->regs[31] = regs->r31;
3888 env->sregs[SR_PC] = regs->pc;
3889 }
bellard048f6b42005-11-26 18:47:20 +00003890#elif defined(TARGET_MIPS)
3891 {
3892 int i;
3893
3894 for(i = 0; i < 32; i++) {
thsb5dc7732008-06-27 10:02:35 +00003895 env->active_tc.gpr[i] = regs->regs[i];
bellard048f6b42005-11-26 18:47:20 +00003896 }
Nathan Froyd0fddbbf2010-06-08 13:30:02 -07003897 env->active_tc.PC = regs->cp0_epc & ~(target_ulong)1;
3898 if (regs->cp0_epc & 1) {
3899 env->hflags |= MIPS_HFLAG_M16;
3900 }
bellard048f6b42005-11-26 18:47:20 +00003901 }
Jia Liud9627832012-07-20 15:50:52 +08003902#elif defined(TARGET_OPENRISC)
3903 {
3904 int i;
3905
3906 for (i = 0; i < 32; i++) {
3907 env->gpr[i] = regs->gpr[i];
3908 }
3909
3910 env->sr = regs->sr;
3911 env->pc = regs->pc;
3912 }
bellardfdf9b3e2006-04-27 21:07:38 +00003913#elif defined(TARGET_SH4)
3914 {
3915 int i;
3916
3917 for(i = 0; i < 16; i++) {
3918 env->gregs[i] = regs->regs[i];
3919 }
3920 env->pc = regs->pc;
3921 }
j_mayer7a3148a2007-04-05 07:13:51 +00003922#elif defined(TARGET_ALPHA)
3923 {
3924 int i;
3925
3926 for(i = 0; i < 28; i++) {
blueswir1992f48a2007-10-14 16:27:31 +00003927 env->ir[i] = ((abi_ulong *)regs)[i];
j_mayer7a3148a2007-04-05 07:13:51 +00003928 }
Richard Hendersondad081e2010-01-04 11:19:14 -08003929 env->ir[IR_SP] = regs->usp;
j_mayer7a3148a2007-04-05 07:13:51 +00003930 env->pc = regs->pc;
j_mayer7a3148a2007-04-05 07:13:51 +00003931 }
ths48733d12007-10-08 13:36:46 +00003932#elif defined(TARGET_CRIS)
3933 {
3934 env->regs[0] = regs->r0;
3935 env->regs[1] = regs->r1;
3936 env->regs[2] = regs->r2;
3937 env->regs[3] = regs->r3;
3938 env->regs[4] = regs->r4;
3939 env->regs[5] = regs->r5;
3940 env->regs[6] = regs->r6;
3941 env->regs[7] = regs->r7;
3942 env->regs[8] = regs->r8;
3943 env->regs[9] = regs->r9;
3944 env->regs[10] = regs->r10;
3945 env->regs[11] = regs->r11;
3946 env->regs[12] = regs->r12;
3947 env->regs[13] = regs->r13;
3948 env->regs[14] = info->start_stack;
3949 env->regs[15] = regs->acr;
3950 env->pc = regs->erp;
3951 }
Ulrich Hechta4c075f2009-07-24 16:57:31 +02003952#elif defined(TARGET_S390X)
3953 {
3954 int i;
3955 for (i = 0; i < 16; i++) {
3956 env->regs[i] = regs->gprs[i];
3957 }
3958 env->psw.mask = regs->psw.mask;
3959 env->psw.addr = regs->psw.addr;
3960 }
bellardb346ff42003-06-15 20:05:50 +00003961#else
3962#error unsupported target CPU
3963#endif
bellard31e31b82003-02-18 22:55:36 +00003964
Guan Xuetaod2fbca92011-04-12 16:27:03 +08003965#if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32)
pbrooka87295e2007-05-26 15:09:38 +00003966 ts->stack_base = info->start_stack;
3967 ts->heap_base = info->brk;
3968 /* This will be filled in on the first SYS_HEAPINFO call. */
3969 ts->heap_limit = 0;
3970#endif
3971
bellard74c33be2005-10-30 21:01:05 +00003972 if (gdbstub_port) {
Peter Maydellff7a9812011-09-06 14:15:50 +01003973 if (gdbserver_start(gdbstub_port) < 0) {
3974 fprintf(stderr, "qemu: could not open gdbserver on port %d\n",
3975 gdbstub_port);
3976 exit(1);
3977 }
bellard1fddef42005-04-17 19:16:13 +00003978 gdb_handlesig(env, 0);
3979 }
bellard1b6b0292003-03-22 17:31:38 +00003980 cpu_loop(env);
3981 /* never exits */
bellard31e31b82003-02-18 22:55:36 +00003982 return 0;
3983}