bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 1 | /* |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 2 | * qemu user main |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | 68d0f70 | 2008-01-06 17:21:48 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
Blue Swirl | 8167ee8 | 2009-07-16 20:47:01 +0000 | [diff] [blame] | 17 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 18 | */ |
| 19 | #include <stdlib.h> |
| 20 | #include <stdio.h> |
| 21 | #include <stdarg.h> |
bellard | 04369ff | 2003-03-20 22:33:23 +0000 | [diff] [blame] | 22 | #include <string.h> |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 23 | #include <errno.h> |
bellard | 0ecfa99 | 2003-03-03 14:32:43 +0000 | [diff] [blame] | 24 | #include <unistd.h> |
balrog | e441570 | 2008-11-10 02:55:33 +0000 | [diff] [blame] | 25 | #include <sys/mman.h> |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 26 | #include <sys/syscall.h> |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 27 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 28 | #include "qemu.h" |
aurel32 | ca10f86 | 2008-04-11 21:35:42 +0000 | [diff] [blame] | 29 | #include "qemu-common.h" |
malc | 902b3d5 | 2008-12-10 19:18:40 +0000 | [diff] [blame] | 30 | #include "cache-utils.h" |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 31 | /* For tb_lock */ |
| 32 | #include "exec-all.h" |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 33 | |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 34 | |
| 35 | #include "envlist.h" |
| 36 | |
bellard | 3ef693a | 2003-03-23 20:17:16 +0000 | [diff] [blame] | 37 | #define DEBUG_LOGFILE "/tmp/qemu.log" |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 38 | |
aurel32 | d088d66 | 2009-01-30 20:09:01 +0000 | [diff] [blame] | 39 | char *exec_path; |
| 40 | |
aurel32 | 1b530a6 | 2009-04-05 20:08:59 +0000 | [diff] [blame] | 41 | int singlestep; |
Paul Brook | 379f669 | 2009-07-17 12:48:08 +0100 | [diff] [blame] | 42 | #if defined(CONFIG_USE_GUEST_BASE) |
| 43 | unsigned long mmap_min_addr; |
| 44 | unsigned long guest_base; |
| 45 | int have_guest_base; |
| 46 | #endif |
aurel32 | 1b530a6 | 2009-04-05 20:08:59 +0000 | [diff] [blame] | 47 | |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 48 | static const char *interp_prefix = CONFIG_QEMU_PREFIX; |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 49 | const char *qemu_uname_release = CONFIG_UNAME_RELEASE; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 50 | |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 51 | /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so |
| 52 | we allocate a bigger stack. Need a better solution, for example |
| 53 | by remapping the process stack directly at the right place */ |
| 54 | unsigned long x86_stack_size = 512 * 1024; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 55 | |
| 56 | void gemu_log(const char *fmt, ...) |
| 57 | { |
| 58 | va_list ap; |
| 59 | |
| 60 | va_start(ap, fmt); |
| 61 | vfprintf(stderr, fmt, ap); |
| 62 | va_end(ap); |
| 63 | } |
| 64 | |
blueswir1 | 8fcd369 | 2008-08-17 20:26:25 +0000 | [diff] [blame] | 65 | #if defined(TARGET_I386) |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 66 | int cpu_get_pic_interrupt(CPUState *env) |
bellard | 92ccca6 | 2003-06-24 13:30:31 +0000 | [diff] [blame] | 67 | { |
| 68 | return -1; |
| 69 | } |
blueswir1 | 8fcd369 | 2008-08-17 20:26:25 +0000 | [diff] [blame] | 70 | #endif |
bellard | 92ccca6 | 2003-06-24 13:30:31 +0000 | [diff] [blame] | 71 | |
bellard | 28ab0e2 | 2004-05-20 14:02:14 +0000 | [diff] [blame] | 72 | /* timers for rdtsc */ |
| 73 | |
bellard | 1dce7c3 | 2006-07-13 23:20:22 +0000 | [diff] [blame] | 74 | #if 0 |
bellard | 28ab0e2 | 2004-05-20 14:02:14 +0000 | [diff] [blame] | 75 | |
| 76 | static uint64_t emu_time; |
| 77 | |
| 78 | int64_t cpu_get_real_ticks(void) |
| 79 | { |
| 80 | return emu_time++; |
| 81 | } |
| 82 | |
| 83 | #endif |
| 84 | |
Juan Quintela | 2f7bb87 | 2009-07-27 16:13:24 +0200 | [diff] [blame] | 85 | #if defined(CONFIG_USE_NPTL) |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 86 | /***********************************************************/ |
| 87 | /* Helper routines for implementing atomic operations. */ |
| 88 | |
| 89 | /* To implement exclusive operations we force all cpus to syncronise. |
| 90 | We don't require a full sync, only that no cpus are executing guest code. |
| 91 | The alternative is to map target atomic ops onto host equivalents, |
| 92 | which requires quite a lot of per host/target work. */ |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 93 | static pthread_mutex_t cpu_list_mutex = PTHREAD_MUTEX_INITIALIZER; |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 94 | static pthread_mutex_t exclusive_lock = PTHREAD_MUTEX_INITIALIZER; |
| 95 | static pthread_cond_t exclusive_cond = PTHREAD_COND_INITIALIZER; |
| 96 | static pthread_cond_t exclusive_resume = PTHREAD_COND_INITIALIZER; |
| 97 | static int pending_cpus; |
| 98 | |
| 99 | /* Make sure everything is in a consistent state for calling fork(). */ |
| 100 | void fork_start(void) |
| 101 | { |
| 102 | mmap_fork_start(); |
| 103 | pthread_mutex_lock(&tb_lock); |
| 104 | pthread_mutex_lock(&exclusive_lock); |
| 105 | } |
| 106 | |
| 107 | void fork_end(int child) |
| 108 | { |
| 109 | if (child) { |
| 110 | /* Child processes created by fork() only have a single thread. |
| 111 | Discard information about the parent threads. */ |
| 112 | first_cpu = thread_env; |
| 113 | thread_env->next_cpu = NULL; |
| 114 | pending_cpus = 0; |
| 115 | pthread_mutex_init(&exclusive_lock, NULL); |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 116 | pthread_mutex_init(&cpu_list_mutex, NULL); |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 117 | pthread_cond_init(&exclusive_cond, NULL); |
| 118 | pthread_cond_init(&exclusive_resume, NULL); |
| 119 | pthread_mutex_init(&tb_lock, NULL); |
aurel32 | 2b1319c | 2008-12-18 22:44:04 +0000 | [diff] [blame] | 120 | gdbserver_fork(thread_env); |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 121 | } else { |
| 122 | pthread_mutex_unlock(&exclusive_lock); |
| 123 | pthread_mutex_unlock(&tb_lock); |
| 124 | } |
| 125 | mmap_fork_end(child); |
| 126 | } |
| 127 | |
| 128 | /* Wait for pending exclusive operations to complete. The exclusive lock |
| 129 | must be held. */ |
| 130 | static inline void exclusive_idle(void) |
| 131 | { |
| 132 | while (pending_cpus) { |
| 133 | pthread_cond_wait(&exclusive_resume, &exclusive_lock); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | /* Start an exclusive operation. |
| 138 | Must only be called from outside cpu_arm_exec. */ |
| 139 | static inline void start_exclusive(void) |
| 140 | { |
| 141 | CPUState *other; |
| 142 | pthread_mutex_lock(&exclusive_lock); |
| 143 | exclusive_idle(); |
| 144 | |
| 145 | pending_cpus = 1; |
| 146 | /* Make all other cpus stop executing. */ |
| 147 | for (other = first_cpu; other; other = other->next_cpu) { |
| 148 | if (other->running) { |
| 149 | pending_cpus++; |
aurel32 | 3098dba | 2009-03-07 21:28:24 +0000 | [diff] [blame] | 150 | cpu_exit(other); |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 151 | } |
| 152 | } |
| 153 | if (pending_cpus > 1) { |
| 154 | pthread_cond_wait(&exclusive_cond, &exclusive_lock); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | /* Finish an exclusive operation. */ |
| 159 | static inline void end_exclusive(void) |
| 160 | { |
| 161 | pending_cpus = 0; |
| 162 | pthread_cond_broadcast(&exclusive_resume); |
| 163 | pthread_mutex_unlock(&exclusive_lock); |
| 164 | } |
| 165 | |
| 166 | /* Wait for exclusive ops to finish, and begin cpu execution. */ |
| 167 | static inline void cpu_exec_start(CPUState *env) |
| 168 | { |
| 169 | pthread_mutex_lock(&exclusive_lock); |
| 170 | exclusive_idle(); |
| 171 | env->running = 1; |
| 172 | pthread_mutex_unlock(&exclusive_lock); |
| 173 | } |
| 174 | |
| 175 | /* Mark cpu as not executing, and release pending exclusive ops. */ |
| 176 | static inline void cpu_exec_end(CPUState *env) |
| 177 | { |
| 178 | pthread_mutex_lock(&exclusive_lock); |
| 179 | env->running = 0; |
| 180 | if (pending_cpus > 1) { |
| 181 | pending_cpus--; |
| 182 | if (pending_cpus == 1) { |
| 183 | pthread_cond_signal(&exclusive_cond); |
| 184 | } |
| 185 | } |
| 186 | exclusive_idle(); |
| 187 | pthread_mutex_unlock(&exclusive_lock); |
| 188 | } |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 189 | |
| 190 | void cpu_list_lock(void) |
| 191 | { |
| 192 | pthread_mutex_lock(&cpu_list_mutex); |
| 193 | } |
| 194 | |
| 195 | void cpu_list_unlock(void) |
| 196 | { |
| 197 | pthread_mutex_unlock(&cpu_list_mutex); |
| 198 | } |
Juan Quintela | 2f7bb87 | 2009-07-27 16:13:24 +0200 | [diff] [blame] | 199 | #else /* if !CONFIG_USE_NPTL */ |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 200 | /* These are no-ops because we are not threadsafe. */ |
| 201 | static inline void cpu_exec_start(CPUState *env) |
| 202 | { |
| 203 | } |
| 204 | |
| 205 | static inline void cpu_exec_end(CPUState *env) |
| 206 | { |
| 207 | } |
| 208 | |
| 209 | static inline void start_exclusive(void) |
| 210 | { |
| 211 | } |
| 212 | |
| 213 | static inline void end_exclusive(void) |
| 214 | { |
| 215 | } |
| 216 | |
| 217 | void fork_start(void) |
| 218 | { |
| 219 | } |
| 220 | |
| 221 | void fork_end(int child) |
| 222 | { |
aurel32 | 2b1319c | 2008-12-18 22:44:04 +0000 | [diff] [blame] | 223 | if (child) { |
| 224 | gdbserver_fork(thread_env); |
| 225 | } |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 226 | } |
pbrook | c276471 | 2009-03-07 15:24:59 +0000 | [diff] [blame] | 227 | |
| 228 | void cpu_list_lock(void) |
| 229 | { |
| 230 | } |
| 231 | |
| 232 | void cpu_list_unlock(void) |
| 233 | { |
| 234 | } |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 235 | #endif |
| 236 | |
| 237 | |
bellard | a541f29 | 2004-04-12 20:39:29 +0000 | [diff] [blame] | 238 | #ifdef TARGET_I386 |
| 239 | /***********************************************************/ |
| 240 | /* CPUX86 core interface */ |
| 241 | |
bellard | 02a1602 | 2006-09-24 18:48:23 +0000 | [diff] [blame] | 242 | void cpu_smm_update(CPUState *env) |
| 243 | { |
| 244 | } |
| 245 | |
bellard | 28ab0e2 | 2004-05-20 14:02:14 +0000 | [diff] [blame] | 246 | uint64_t cpu_get_tsc(CPUX86State *env) |
| 247 | { |
| 248 | return cpu_get_real_ticks(); |
| 249 | } |
| 250 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 251 | static void write_dt(void *ptr, unsigned long addr, unsigned long limit, |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 252 | int flags) |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 253 | { |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 254 | unsigned int e1, e2; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 255 | uint32_t *p; |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 256 | e1 = (addr << 16) | (limit & 0xffff); |
| 257 | e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000); |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 258 | e2 |= flags; |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 259 | p = ptr; |
malc | d538e8f | 2008-08-20 22:39:26 +0000 | [diff] [blame] | 260 | p[0] = tswap32(e1); |
| 261 | p[1] = tswap32(e2); |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 262 | } |
| 263 | |
balrog | e441570 | 2008-11-10 02:55:33 +0000 | [diff] [blame] | 264 | static uint64_t *idt_table; |
blueswir1 | eb38c52 | 2008-09-06 17:47:39 +0000 | [diff] [blame] | 265 | #ifdef TARGET_X86_64 |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 266 | static void set_gate64(void *ptr, unsigned int type, unsigned int dpl, |
| 267 | uint64_t addr, unsigned int sel) |
| 268 | { |
bellard | 4dbc422 | 2007-11-15 15:27:03 +0000 | [diff] [blame] | 269 | uint32_t *p, e1, e2; |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 270 | e1 = (addr & 0xffff) | (sel << 16); |
| 271 | e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); |
| 272 | p = ptr; |
bellard | 4dbc422 | 2007-11-15 15:27:03 +0000 | [diff] [blame] | 273 | p[0] = tswap32(e1); |
| 274 | p[1] = tswap32(e2); |
| 275 | p[2] = tswap32(addr >> 32); |
| 276 | p[3] = 0; |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 277 | } |
| 278 | /* only dpl matters as we do only user space emulation */ |
| 279 | static void set_idt(int n, unsigned int dpl) |
| 280 | { |
| 281 | set_gate64(idt_table + n * 2, 0, dpl, 0, 0); |
| 282 | } |
| 283 | #else |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 284 | static void set_gate(void *ptr, unsigned int type, unsigned int dpl, |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 285 | uint32_t addr, unsigned int sel) |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 286 | { |
bellard | 4dbc422 | 2007-11-15 15:27:03 +0000 | [diff] [blame] | 287 | uint32_t *p, e1, e2; |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 288 | e1 = (addr & 0xffff) | (sel << 16); |
| 289 | e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 290 | p = ptr; |
bellard | 4dbc422 | 2007-11-15 15:27:03 +0000 | [diff] [blame] | 291 | p[0] = tswap32(e1); |
| 292 | p[1] = tswap32(e2); |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 293 | } |
| 294 | |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 295 | /* only dpl matters as we do only user space emulation */ |
| 296 | static void set_idt(int n, unsigned int dpl) |
| 297 | { |
| 298 | set_gate(idt_table + n, 0, dpl, 0, 0); |
| 299 | } |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 300 | #endif |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 301 | |
bellard | 89e957e | 2003-05-10 12:33:15 +0000 | [diff] [blame] | 302 | void cpu_loop(CPUX86State *env) |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 303 | { |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 304 | int trapnr; |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 305 | abi_ulong pc; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 306 | target_siginfo_t info; |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 307 | |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 308 | for(;;) { |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 309 | trapnr = cpu_x86_exec(env); |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 310 | switch(trapnr) { |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 311 | case 0x80: |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 312 | /* linux syscall from int $0x80 */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 313 | env->regs[R_EAX] = do_syscall(env, |
| 314 | env->regs[R_EAX], |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 315 | env->regs[R_EBX], |
| 316 | env->regs[R_ECX], |
| 317 | env->regs[R_EDX], |
| 318 | env->regs[R_ESI], |
| 319 | env->regs[R_EDI], |
| 320 | env->regs[R_EBP]); |
| 321 | break; |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 322 | #ifndef TARGET_ABI32 |
| 323 | case EXCP_SYSCALL: |
| 324 | /* linux syscall from syscall intruction */ |
| 325 | env->regs[R_EAX] = do_syscall(env, |
| 326 | env->regs[R_EAX], |
| 327 | env->regs[R_EDI], |
| 328 | env->regs[R_ESI], |
| 329 | env->regs[R_EDX], |
| 330 | env->regs[10], |
| 331 | env->regs[8], |
| 332 | env->regs[9]); |
| 333 | env->eip = env->exception_next_eip; |
| 334 | break; |
| 335 | #endif |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 336 | case EXCP0B_NOSEG: |
| 337 | case EXCP0C_STACK: |
| 338 | info.si_signo = SIGBUS; |
| 339 | info.si_errno = 0; |
| 340 | info.si_code = TARGET_SI_KERNEL; |
| 341 | info._sifields._sigfault._addr = 0; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 342 | queue_signal(env, info.si_signo, &info); |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 343 | break; |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 344 | case EXCP0D_GPF: |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 345 | /* XXX: potential problem if ABI32 */ |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 346 | #ifndef TARGET_X86_64 |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 347 | if (env->eflags & VM_MASK) { |
bellard | 89e957e | 2003-05-10 12:33:15 +0000 | [diff] [blame] | 348 | handle_vm86_fault(env); |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 349 | } else |
| 350 | #endif |
| 351 | { |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 352 | info.si_signo = SIGSEGV; |
| 353 | info.si_errno = 0; |
| 354 | info.si_code = TARGET_SI_KERNEL; |
| 355 | info._sifields._sigfault._addr = 0; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 356 | queue_signal(env, info.si_signo, &info); |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 357 | } |
| 358 | break; |
bellard | b689bc5 | 2003-05-08 15:33:33 +0000 | [diff] [blame] | 359 | case EXCP0E_PAGE: |
| 360 | info.si_signo = SIGSEGV; |
| 361 | info.si_errno = 0; |
| 362 | if (!(env->error_code & 1)) |
| 363 | info.si_code = TARGET_SEGV_MAPERR; |
| 364 | else |
| 365 | info.si_code = TARGET_SEGV_ACCERR; |
bellard | 970a87a | 2003-06-21 13:13:25 +0000 | [diff] [blame] | 366 | info._sifields._sigfault._addr = env->cr[2]; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 367 | queue_signal(env, info.si_signo, &info); |
bellard | b689bc5 | 2003-05-08 15:33:33 +0000 | [diff] [blame] | 368 | break; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 369 | case EXCP00_DIVZ: |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 370 | #ifndef TARGET_X86_64 |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 371 | if (env->eflags & VM_MASK) { |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 372 | handle_vm86_trap(env, trapnr); |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 373 | } else |
| 374 | #endif |
| 375 | { |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 376 | /* division by zero */ |
| 377 | info.si_signo = SIGFPE; |
| 378 | info.si_errno = 0; |
| 379 | info.si_code = TARGET_FPE_INTDIV; |
| 380 | info._sifields._sigfault._addr = env->eip; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 381 | queue_signal(env, info.si_signo, &info); |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 382 | } |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 383 | break; |
aliguori | 01df040 | 2008-11-18 21:08:15 +0000 | [diff] [blame] | 384 | case EXCP01_DB: |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 385 | case EXCP03_INT3: |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 386 | #ifndef TARGET_X86_64 |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 387 | if (env->eflags & VM_MASK) { |
| 388 | handle_vm86_trap(env, trapnr); |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 389 | } else |
| 390 | #endif |
| 391 | { |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 392 | info.si_signo = SIGTRAP; |
| 393 | info.si_errno = 0; |
aliguori | 01df040 | 2008-11-18 21:08:15 +0000 | [diff] [blame] | 394 | if (trapnr == EXCP01_DB) { |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 395 | info.si_code = TARGET_TRAP_BRKPT; |
| 396 | info._sifields._sigfault._addr = env->eip; |
| 397 | } else { |
| 398 | info.si_code = TARGET_SI_KERNEL; |
| 399 | info._sifields._sigfault._addr = 0; |
| 400 | } |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 401 | queue_signal(env, info.si_signo, &info); |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 402 | } |
| 403 | break; |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 404 | case EXCP04_INTO: |
| 405 | case EXCP05_BOUND: |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 406 | #ifndef TARGET_X86_64 |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 407 | if (env->eflags & VM_MASK) { |
bellard | 447db21 | 2003-05-10 15:10:36 +0000 | [diff] [blame] | 408 | handle_vm86_trap(env, trapnr); |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 409 | } else |
| 410 | #endif |
| 411 | { |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 412 | info.si_signo = SIGSEGV; |
| 413 | info.si_errno = 0; |
bellard | b689bc5 | 2003-05-08 15:33:33 +0000 | [diff] [blame] | 414 | info.si_code = TARGET_SI_KERNEL; |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 415 | info._sifields._sigfault._addr = 0; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 416 | queue_signal(env, info.si_signo, &info); |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 417 | } |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 418 | break; |
| 419 | case EXCP06_ILLOP: |
| 420 | info.si_signo = SIGILL; |
| 421 | info.si_errno = 0; |
| 422 | info.si_code = TARGET_ILL_ILLOPN; |
| 423 | info._sifields._sigfault._addr = env->eip; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 424 | queue_signal(env, info.si_signo, &info); |
bellard | 9de5e44 | 2003-03-23 16:49:39 +0000 | [diff] [blame] | 425 | break; |
| 426 | case EXCP_INTERRUPT: |
| 427 | /* just indicate that signals should be handled asap */ |
| 428 | break; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 429 | case EXCP_DEBUG: |
| 430 | { |
| 431 | int sig; |
| 432 | |
| 433 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 434 | if (sig) |
| 435 | { |
| 436 | info.si_signo = sig; |
| 437 | info.si_errno = 0; |
| 438 | info.si_code = TARGET_TRAP_BRKPT; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 439 | queue_signal(env, info.si_signo, &info); |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 440 | } |
| 441 | } |
| 442 | break; |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 443 | default: |
bellard | 970a87a | 2003-06-21 13:13:25 +0000 | [diff] [blame] | 444 | pc = env->segs[R_CS].base + env->eip; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 445 | fprintf(stderr, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n", |
bellard | bc8a22c | 2003-03-30 21:02:40 +0000 | [diff] [blame] | 446 | (long)pc, trapnr); |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 447 | abort(); |
| 448 | } |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 449 | process_pending_signals(env); |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 450 | } |
| 451 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 452 | #endif |
| 453 | |
| 454 | #ifdef TARGET_ARM |
| 455 | |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 456 | static void arm_cache_flush(abi_ulong start, abi_ulong last) |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 457 | { |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 458 | abi_ulong addr, last1; |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 459 | |
| 460 | if (last < start) |
| 461 | return; |
| 462 | addr = start; |
| 463 | for(;;) { |
| 464 | last1 = ((addr + TARGET_PAGE_SIZE) & TARGET_PAGE_MASK) - 1; |
| 465 | if (last1 > last) |
| 466 | last1 = last; |
| 467 | tb_invalidate_page_range(addr, last1 + 1); |
| 468 | if (last1 == last) |
| 469 | break; |
| 470 | addr = last1 + 1; |
| 471 | } |
| 472 | } |
| 473 | |
pbrook | fbb4a2e | 2008-05-29 00:20:44 +0000 | [diff] [blame] | 474 | /* Handle a jump to the kernel code page. */ |
| 475 | static int |
| 476 | do_kernel_trap(CPUARMState *env) |
| 477 | { |
| 478 | uint32_t addr; |
| 479 | uint32_t cpsr; |
| 480 | uint32_t val; |
| 481 | |
| 482 | switch (env->regs[15]) { |
| 483 | case 0xffff0fa0: /* __kernel_memory_barrier */ |
| 484 | /* ??? No-op. Will need to do better for SMP. */ |
| 485 | break; |
| 486 | case 0xffff0fc0: /* __kernel_cmpxchg */ |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 487 | /* XXX: This only works between threads, not between processes. |
| 488 | It's probably possible to implement this with native host |
| 489 | operations. However things like ldrex/strex are much harder so |
| 490 | there's not much point trying. */ |
| 491 | start_exclusive(); |
pbrook | fbb4a2e | 2008-05-29 00:20:44 +0000 | [diff] [blame] | 492 | cpsr = cpsr_read(env); |
| 493 | addr = env->regs[2]; |
| 494 | /* FIXME: This should SEGV if the access fails. */ |
| 495 | if (get_user_u32(val, addr)) |
| 496 | val = ~env->regs[0]; |
| 497 | if (val == env->regs[0]) { |
| 498 | val = env->regs[1]; |
| 499 | /* FIXME: Check for segfaults. */ |
| 500 | put_user_u32(val, addr); |
| 501 | env->regs[0] = 0; |
| 502 | cpsr |= CPSR_C; |
| 503 | } else { |
| 504 | env->regs[0] = -1; |
| 505 | cpsr &= ~CPSR_C; |
| 506 | } |
| 507 | cpsr_write(env, cpsr, CPSR_C); |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 508 | end_exclusive(); |
pbrook | fbb4a2e | 2008-05-29 00:20:44 +0000 | [diff] [blame] | 509 | break; |
| 510 | case 0xffff0fe0: /* __kernel_get_tls */ |
| 511 | env->regs[0] = env->cp15.c13_tls2; |
| 512 | break; |
| 513 | default: |
| 514 | return 1; |
| 515 | } |
| 516 | /* Jump back to the caller. */ |
| 517 | addr = env->regs[14]; |
| 518 | if (addr & 1) { |
| 519 | env->thumb = 1; |
| 520 | addr &= ~1; |
| 521 | } |
| 522 | env->regs[15] = addr; |
| 523 | |
| 524 | return 0; |
| 525 | } |
| 526 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 527 | void cpu_loop(CPUARMState *env) |
| 528 | { |
| 529 | int trapnr; |
| 530 | unsigned int n, insn; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 531 | target_siginfo_t info; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 532 | uint32_t addr; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 533 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 534 | for(;;) { |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 535 | cpu_exec_start(env); |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 536 | trapnr = cpu_arm_exec(env); |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 537 | cpu_exec_end(env); |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 538 | switch(trapnr) { |
| 539 | case EXCP_UDEF: |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 540 | { |
| 541 | TaskState *ts = env->opaque; |
| 542 | uint32_t opcode; |
aurel32 | 6d9a42b | 2008-04-07 20:30:53 +0000 | [diff] [blame] | 543 | int rc; |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 544 | |
| 545 | /* we handle the FPU emulation here, as Linux */ |
| 546 | /* we get the opcode */ |
bellard | 2f61969 | 2007-11-16 10:46:05 +0000 | [diff] [blame] | 547 | /* FIXME - what to do if get_user() fails? */ |
| 548 | get_user_u32(opcode, env->regs[15]); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 549 | |
aurel32 | 6d9a42b | 2008-04-07 20:30:53 +0000 | [diff] [blame] | 550 | rc = EmulateAll(opcode, &ts->fpa, env); |
| 551 | if (rc == 0) { /* illegal instruction */ |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 552 | info.si_signo = SIGILL; |
| 553 | info.si_errno = 0; |
| 554 | info.si_code = TARGET_ILL_ILLOPN; |
| 555 | info._sifields._sigfault._addr = env->regs[15]; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 556 | queue_signal(env, info.si_signo, &info); |
aurel32 | 6d9a42b | 2008-04-07 20:30:53 +0000 | [diff] [blame] | 557 | } else if (rc < 0) { /* FP exception */ |
| 558 | int arm_fpe=0; |
| 559 | |
| 560 | /* translate softfloat flags to FPSR flags */ |
| 561 | if (-rc & float_flag_invalid) |
| 562 | arm_fpe |= BIT_IOC; |
| 563 | if (-rc & float_flag_divbyzero) |
| 564 | arm_fpe |= BIT_DZC; |
| 565 | if (-rc & float_flag_overflow) |
| 566 | arm_fpe |= BIT_OFC; |
| 567 | if (-rc & float_flag_underflow) |
| 568 | arm_fpe |= BIT_UFC; |
| 569 | if (-rc & float_flag_inexact) |
| 570 | arm_fpe |= BIT_IXC; |
| 571 | |
| 572 | FPSR fpsr = ts->fpa.fpsr; |
| 573 | //printf("fpsr 0x%x, arm_fpe 0x%x\n",fpsr,arm_fpe); |
| 574 | |
| 575 | if (fpsr & (arm_fpe << 16)) { /* exception enabled? */ |
| 576 | info.si_signo = SIGFPE; |
| 577 | info.si_errno = 0; |
| 578 | |
| 579 | /* ordered by priority, least first */ |
| 580 | if (arm_fpe & BIT_IXC) info.si_code = TARGET_FPE_FLTRES; |
| 581 | if (arm_fpe & BIT_UFC) info.si_code = TARGET_FPE_FLTUND; |
| 582 | if (arm_fpe & BIT_OFC) info.si_code = TARGET_FPE_FLTOVF; |
| 583 | if (arm_fpe & BIT_DZC) info.si_code = TARGET_FPE_FLTDIV; |
| 584 | if (arm_fpe & BIT_IOC) info.si_code = TARGET_FPE_FLTINV; |
| 585 | |
| 586 | info._sifields._sigfault._addr = env->regs[15]; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 587 | queue_signal(env, info.si_signo, &info); |
aurel32 | 6d9a42b | 2008-04-07 20:30:53 +0000 | [diff] [blame] | 588 | } else { |
| 589 | env->regs[15] += 4; |
| 590 | } |
| 591 | |
| 592 | /* accumulate unenabled exceptions */ |
| 593 | if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC)) |
| 594 | fpsr |= BIT_IXC; |
| 595 | if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC)) |
| 596 | fpsr |= BIT_UFC; |
| 597 | if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC)) |
| 598 | fpsr |= BIT_OFC; |
| 599 | if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC)) |
| 600 | fpsr |= BIT_DZC; |
| 601 | if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC)) |
| 602 | fpsr |= BIT_IOC; |
| 603 | ts->fpa.fpsr=fpsr; |
| 604 | } else { /* everything OK */ |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 605 | /* increment PC */ |
| 606 | env->regs[15] += 4; |
| 607 | } |
| 608 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 609 | break; |
| 610 | case EXCP_SWI: |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 611 | case EXCP_BKPT: |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 612 | { |
pbrook | ce4defa | 2006-02-09 16:49:55 +0000 | [diff] [blame] | 613 | env->eabi = 1; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 614 | /* system call */ |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 615 | if (trapnr == EXCP_BKPT) { |
| 616 | if (env->thumb) { |
bellard | 2f61969 | 2007-11-16 10:46:05 +0000 | [diff] [blame] | 617 | /* FIXME - what to do if get_user() fails? */ |
| 618 | get_user_u16(insn, env->regs[15]); |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 619 | n = insn & 0xff; |
| 620 | env->regs[15] += 2; |
| 621 | } else { |
bellard | 2f61969 | 2007-11-16 10:46:05 +0000 | [diff] [blame] | 622 | /* FIXME - what to do if get_user() fails? */ |
| 623 | get_user_u32(insn, env->regs[15]); |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 624 | n = (insn & 0xf) | ((insn >> 4) & 0xff0); |
| 625 | env->regs[15] += 4; |
| 626 | } |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 627 | } else { |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 628 | if (env->thumb) { |
bellard | 2f61969 | 2007-11-16 10:46:05 +0000 | [diff] [blame] | 629 | /* FIXME - what to do if get_user() fails? */ |
| 630 | get_user_u16(insn, env->regs[15] - 2); |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 631 | n = insn & 0xff; |
| 632 | } else { |
bellard | 2f61969 | 2007-11-16 10:46:05 +0000 | [diff] [blame] | 633 | /* FIXME - what to do if get_user() fails? */ |
| 634 | get_user_u32(insn, env->regs[15] - 4); |
pbrook | 06c949e | 2006-02-04 19:35:26 +0000 | [diff] [blame] | 635 | n = insn & 0xffffff; |
| 636 | } |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 637 | } |
| 638 | |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 639 | if (n == ARM_NR_cacheflush) { |
| 640 | arm_cache_flush(env->regs[0], env->regs[1]); |
bellard | a4f8197 | 2005-04-23 18:25:41 +0000 | [diff] [blame] | 641 | } else if (n == ARM_NR_semihosting |
| 642 | || n == ARM_NR_thumb_semihosting) { |
| 643 | env->regs[0] = do_arm_semihosting (env); |
pbrook | ce4defa | 2006-02-09 16:49:55 +0000 | [diff] [blame] | 644 | } else if (n == 0 || n >= ARM_SYSCALL_BASE |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 645 | || (env->thumb && n == ARM_THUMB_SYSCALL)) { |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 646 | /* linux syscall */ |
pbrook | ce4defa | 2006-02-09 16:49:55 +0000 | [diff] [blame] | 647 | if (env->thumb || n == 0) { |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 648 | n = env->regs[7]; |
| 649 | } else { |
| 650 | n -= ARM_SYSCALL_BASE; |
pbrook | ce4defa | 2006-02-09 16:49:55 +0000 | [diff] [blame] | 651 | env->eabi = 0; |
bellard | 192c7bd | 2005-04-27 20:11:21 +0000 | [diff] [blame] | 652 | } |
pbrook | fbb4a2e | 2008-05-29 00:20:44 +0000 | [diff] [blame] | 653 | if ( n > ARM_NR_BASE) { |
| 654 | switch (n) { |
| 655 | case ARM_NR_cacheflush: |
| 656 | arm_cache_flush(env->regs[0], env->regs[1]); |
| 657 | break; |
| 658 | case ARM_NR_set_tls: |
| 659 | cpu_set_tls(env, env->regs[0]); |
| 660 | env->regs[0] = 0; |
| 661 | break; |
| 662 | default: |
| 663 | gemu_log("qemu: Unsupported ARM syscall: 0x%x\n", |
| 664 | n); |
| 665 | env->regs[0] = -TARGET_ENOSYS; |
| 666 | break; |
| 667 | } |
| 668 | } else { |
| 669 | env->regs[0] = do_syscall(env, |
| 670 | n, |
| 671 | env->regs[0], |
| 672 | env->regs[1], |
| 673 | env->regs[2], |
| 674 | env->regs[3], |
| 675 | env->regs[4], |
| 676 | env->regs[5]); |
| 677 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 678 | } else { |
| 679 | goto error; |
| 680 | } |
| 681 | } |
| 682 | break; |
bellard | 43fff23 | 2003-07-09 19:31:39 +0000 | [diff] [blame] | 683 | case EXCP_INTERRUPT: |
| 684 | /* just indicate that signals should be handled asap */ |
| 685 | break; |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 686 | case EXCP_PREFETCH_ABORT: |
balrog | eae473c | 2008-07-29 14:09:57 +0000 | [diff] [blame] | 687 | addr = env->cp15.c6_insn; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 688 | goto do_segv; |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 689 | case EXCP_DATA_ABORT: |
balrog | eae473c | 2008-07-29 14:09:57 +0000 | [diff] [blame] | 690 | addr = env->cp15.c6_data; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 691 | goto do_segv; |
| 692 | do_segv: |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 693 | { |
| 694 | info.si_signo = SIGSEGV; |
| 695 | info.si_errno = 0; |
| 696 | /* XXX: check env->error_code */ |
| 697 | info.si_code = TARGET_SEGV_MAPERR; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 698 | info._sifields._sigfault._addr = addr; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 699 | queue_signal(env, info.si_signo, &info); |
bellard | 68016c6 | 2005-02-07 23:12:27 +0000 | [diff] [blame] | 700 | } |
| 701 | break; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 702 | case EXCP_DEBUG: |
| 703 | { |
| 704 | int sig; |
| 705 | |
| 706 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 707 | if (sig) |
| 708 | { |
| 709 | info.si_signo = sig; |
| 710 | info.si_errno = 0; |
| 711 | info.si_code = TARGET_TRAP_BRKPT; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 712 | queue_signal(env, info.si_signo, &info); |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 713 | } |
| 714 | } |
| 715 | break; |
pbrook | fbb4a2e | 2008-05-29 00:20:44 +0000 | [diff] [blame] | 716 | case EXCP_KERNEL_TRAP: |
| 717 | if (do_kernel_trap(env)) |
| 718 | goto error; |
| 719 | break; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 720 | default: |
| 721 | error: |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 722 | fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 723 | trapnr); |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 724 | cpu_dump_state(env, stderr, fprintf, 0); |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 725 | abort(); |
| 726 | } |
| 727 | process_pending_signals(env); |
| 728 | } |
| 729 | } |
| 730 | |
| 731 | #endif |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 732 | |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 733 | #ifdef TARGET_SPARC |
blueswir1 | ed23fbd | 2008-08-30 09:20:21 +0000 | [diff] [blame] | 734 | #define SPARC64_STACK_BIAS 2047 |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 735 | |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 736 | //#define DEBUG_WIN |
| 737 | |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 738 | /* WARNING: dealing with register windows _is_ complicated. More info |
| 739 | can be found at http://www.sics.se/~psm/sparcstack.html */ |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 740 | static inline int get_reg_index(CPUSPARCState *env, int cwp, int index) |
| 741 | { |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 742 | index = (index + cwp * 16) % (16 * env->nwindows); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 743 | /* wrap handling : if cwp is on the last window, then we use the |
| 744 | registers 'after' the end */ |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 745 | if (index < 8 && env->cwp == env->nwindows - 1) |
| 746 | index += 16 * env->nwindows; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 747 | return index; |
| 748 | } |
| 749 | |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 750 | /* save the register window 'cwp1' */ |
| 751 | static inline void save_window_offset(CPUSPARCState *env, int cwp1) |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 752 | { |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 753 | unsigned int i; |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 754 | abi_ulong sp_ptr; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 755 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 756 | sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)]; |
blueswir1 | ed23fbd | 2008-08-30 09:20:21 +0000 | [diff] [blame] | 757 | #ifdef TARGET_SPARC64 |
| 758 | if (sp_ptr & 3) |
| 759 | sp_ptr += SPARC64_STACK_BIAS; |
| 760 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 761 | #if defined(DEBUG_WIN) |
blueswir1 | 2daf028 | 2008-06-15 18:02:48 +0000 | [diff] [blame] | 762 | printf("win_overflow: sp_ptr=0x" TARGET_ABI_FMT_lx " save_cwp=%d\n", |
| 763 | sp_ptr, cwp1); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 764 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 765 | for(i = 0; i < 16; i++) { |
bellard | 2f61969 | 2007-11-16 10:46:05 +0000 | [diff] [blame] | 766 | /* FIXME - what to do if put_user() fails? */ |
| 767 | put_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr); |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 768 | sp_ptr += sizeof(abi_ulong); |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 769 | } |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | static void save_window(CPUSPARCState *env) |
| 773 | { |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 774 | #ifndef TARGET_SPARC64 |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 775 | unsigned int new_wim; |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 776 | new_wim = ((env->wim >> 1) | (env->wim << (env->nwindows - 1))) & |
| 777 | ((1LL << env->nwindows) - 1); |
| 778 | save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2)); |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 779 | env->wim = new_wim; |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 780 | #else |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 781 | save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2)); |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 782 | env->cansave++; |
| 783 | env->canrestore--; |
| 784 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 785 | } |
| 786 | |
| 787 | static void restore_window(CPUSPARCState *env) |
| 788 | { |
blueswir1 | eda5295 | 2008-08-27 19:19:44 +0000 | [diff] [blame] | 789 | #ifndef TARGET_SPARC64 |
| 790 | unsigned int new_wim; |
| 791 | #endif |
| 792 | unsigned int i, cwp1; |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 793 | abi_ulong sp_ptr; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 794 | |
blueswir1 | eda5295 | 2008-08-27 19:19:44 +0000 | [diff] [blame] | 795 | #ifndef TARGET_SPARC64 |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 796 | new_wim = ((env->wim << 1) | (env->wim >> (env->nwindows - 1))) & |
| 797 | ((1LL << env->nwindows) - 1); |
blueswir1 | eda5295 | 2008-08-27 19:19:44 +0000 | [diff] [blame] | 798 | #endif |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 799 | |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 800 | /* restore the invalid window */ |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 801 | cwp1 = cpu_cwp_inc(env, env->cwp + 1); |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 802 | sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)]; |
blueswir1 | ed23fbd | 2008-08-30 09:20:21 +0000 | [diff] [blame] | 803 | #ifdef TARGET_SPARC64 |
| 804 | if (sp_ptr & 3) |
| 805 | sp_ptr += SPARC64_STACK_BIAS; |
| 806 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 807 | #if defined(DEBUG_WIN) |
blueswir1 | 2daf028 | 2008-06-15 18:02:48 +0000 | [diff] [blame] | 808 | printf("win_underflow: sp_ptr=0x" TARGET_ABI_FMT_lx " load_cwp=%d\n", |
| 809 | sp_ptr, cwp1); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 810 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 811 | for(i = 0; i < 16; i++) { |
bellard | 2f61969 | 2007-11-16 10:46:05 +0000 | [diff] [blame] | 812 | /* FIXME - what to do if get_user() fails? */ |
| 813 | get_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr); |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 814 | sp_ptr += sizeof(abi_ulong); |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 815 | } |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 816 | #ifdef TARGET_SPARC64 |
| 817 | env->canrestore++; |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 818 | if (env->cleanwin < env->nwindows - 1) |
| 819 | env->cleanwin++; |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 820 | env->cansave--; |
blueswir1 | eda5295 | 2008-08-27 19:19:44 +0000 | [diff] [blame] | 821 | #else |
| 822 | env->wim = new_wim; |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 823 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 824 | } |
| 825 | |
| 826 | static void flush_windows(CPUSPARCState *env) |
| 827 | { |
| 828 | int offset, cwp1; |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 829 | |
| 830 | offset = 1; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 831 | for(;;) { |
| 832 | /* if restore would invoke restore_window(), then we can stop */ |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 833 | cwp1 = cpu_cwp_inc(env, env->cwp + offset); |
blueswir1 | eda5295 | 2008-08-27 19:19:44 +0000 | [diff] [blame] | 834 | #ifndef TARGET_SPARC64 |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 835 | if (env->wim & (1 << cwp1)) |
| 836 | break; |
blueswir1 | eda5295 | 2008-08-27 19:19:44 +0000 | [diff] [blame] | 837 | #else |
| 838 | if (env->canrestore == 0) |
| 839 | break; |
| 840 | env->cansave++; |
| 841 | env->canrestore--; |
| 842 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 843 | save_window_offset(env, cwp1); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 844 | offset++; |
| 845 | } |
blueswir1 | 1a14026 | 2008-06-07 08:07:37 +0000 | [diff] [blame] | 846 | cwp1 = cpu_cwp_inc(env, env->cwp + 1); |
blueswir1 | eda5295 | 2008-08-27 19:19:44 +0000 | [diff] [blame] | 847 | #ifndef TARGET_SPARC64 |
| 848 | /* set wim so that restore will reload the registers */ |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 849 | env->wim = 1 << cwp1; |
blueswir1 | eda5295 | 2008-08-27 19:19:44 +0000 | [diff] [blame] | 850 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 851 | #if defined(DEBUG_WIN) |
| 852 | printf("flush_windows: nb=%d\n", offset - 1); |
bellard | 80a9d03 | 2005-01-03 23:31:27 +0000 | [diff] [blame] | 853 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 854 | } |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 855 | |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 856 | void cpu_loop (CPUSPARCState *env) |
| 857 | { |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 858 | int trapnr, ret; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 859 | target_siginfo_t info; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 860 | |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 861 | while (1) { |
| 862 | trapnr = cpu_sparc_exec (env); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 863 | |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 864 | switch (trapnr) { |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 865 | #ifndef TARGET_SPARC64 |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 866 | case 0x88: |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 867 | case 0x90: |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 868 | #else |
blueswir1 | cb33da5 | 2007-10-09 16:34:29 +0000 | [diff] [blame] | 869 | case 0x110: |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 870 | case 0x16d: |
| 871 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 872 | ret = do_syscall (env, env->gregs[1], |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 873 | env->regwptr[0], env->regwptr[1], |
| 874 | env->regwptr[2], env->regwptr[3], |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 875 | env->regwptr[4], env->regwptr[5]); |
| 876 | if ((unsigned int)ret >= (unsigned int)(-515)) { |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 877 | #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32) |
bellard | 2790872 | 2006-10-23 21:31:01 +0000 | [diff] [blame] | 878 | env->xcc |= PSR_CARRY; |
| 879 | #else |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 880 | env->psr |= PSR_CARRY; |
bellard | 2790872 | 2006-10-23 21:31:01 +0000 | [diff] [blame] | 881 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 882 | ret = -ret; |
| 883 | } else { |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 884 | #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32) |
bellard | 2790872 | 2006-10-23 21:31:01 +0000 | [diff] [blame] | 885 | env->xcc &= ~PSR_CARRY; |
| 886 | #else |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 887 | env->psr &= ~PSR_CARRY; |
bellard | 2790872 | 2006-10-23 21:31:01 +0000 | [diff] [blame] | 888 | #endif |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 889 | } |
| 890 | env->regwptr[0] = ret; |
| 891 | /* next instruction */ |
| 892 | env->pc = env->npc; |
| 893 | env->npc = env->npc + 4; |
| 894 | break; |
| 895 | case 0x83: /* flush windows */ |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 896 | #ifdef TARGET_ABI32 |
| 897 | case 0x103: |
| 898 | #endif |
bellard | 2623cba | 2005-02-19 17:25:31 +0000 | [diff] [blame] | 899 | flush_windows(env); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 900 | /* next instruction */ |
| 901 | env->pc = env->npc; |
| 902 | env->npc = env->npc + 4; |
| 903 | break; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 904 | #ifndef TARGET_SPARC64 |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 905 | case TT_WIN_OVF: /* window overflow */ |
| 906 | save_window(env); |
| 907 | break; |
| 908 | case TT_WIN_UNF: /* window underflow */ |
| 909 | restore_window(env); |
| 910 | break; |
bellard | 61ff6f5 | 2005-02-15 22:54:53 +0000 | [diff] [blame] | 911 | case TT_TFAULT: |
| 912 | case TT_DFAULT: |
| 913 | { |
| 914 | info.si_signo = SIGSEGV; |
| 915 | info.si_errno = 0; |
| 916 | /* XXX: check env->error_code */ |
| 917 | info.si_code = TARGET_SEGV_MAPERR; |
| 918 | info._sifields._sigfault._addr = env->mmuregs[4]; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 919 | queue_signal(env, info.si_signo, &info); |
bellard | 61ff6f5 | 2005-02-15 22:54:53 +0000 | [diff] [blame] | 920 | } |
| 921 | break; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 922 | #else |
bellard | 5ef5411 | 2006-07-18 21:14:09 +0000 | [diff] [blame] | 923 | case TT_SPILL: /* window overflow */ |
| 924 | save_window(env); |
| 925 | break; |
| 926 | case TT_FILL: /* window underflow */ |
| 927 | restore_window(env); |
| 928 | break; |
blueswir1 | 7f84a72 | 2007-07-07 20:46:41 +0000 | [diff] [blame] | 929 | case TT_TFAULT: |
| 930 | case TT_DFAULT: |
| 931 | { |
| 932 | info.si_signo = SIGSEGV; |
| 933 | info.si_errno = 0; |
| 934 | /* XXX: check env->error_code */ |
| 935 | info.si_code = TARGET_SEGV_MAPERR; |
| 936 | if (trapnr == TT_DFAULT) |
| 937 | info._sifields._sigfault._addr = env->dmmuregs[4]; |
| 938 | else |
Igor Kovalenko | 8194f35 | 2009-08-03 23:15:02 +0400 | [diff] [blame] | 939 | info._sifields._sigfault._addr = cpu_tsptr(env)->tpc; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 940 | queue_signal(env, info.si_signo, &info); |
blueswir1 | 7f84a72 | 2007-07-07 20:46:41 +0000 | [diff] [blame] | 941 | } |
| 942 | break; |
bellard | 27524dc | 2007-11-11 19:32:52 +0000 | [diff] [blame] | 943 | #ifndef TARGET_ABI32 |
blueswir1 | 5bfb56b | 2007-10-05 17:01:51 +0000 | [diff] [blame] | 944 | case 0x16e: |
| 945 | flush_windows(env); |
| 946 | sparc64_get_context(env); |
| 947 | break; |
| 948 | case 0x16f: |
| 949 | flush_windows(env); |
| 950 | sparc64_set_context(env); |
| 951 | break; |
bellard | 3475187 | 2005-07-02 14:31:34 +0000 | [diff] [blame] | 952 | #endif |
bellard | 27524dc | 2007-11-11 19:32:52 +0000 | [diff] [blame] | 953 | #endif |
bellard | 48dc41e | 2006-06-21 18:15:50 +0000 | [diff] [blame] | 954 | case EXCP_INTERRUPT: |
| 955 | /* just indicate that signals should be handled asap */ |
| 956 | break; |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 957 | case EXCP_DEBUG: |
| 958 | { |
| 959 | int sig; |
| 960 | |
| 961 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 962 | if (sig) |
| 963 | { |
| 964 | info.si_signo = sig; |
| 965 | info.si_errno = 0; |
| 966 | info.si_code = TARGET_TRAP_BRKPT; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 967 | queue_signal(env, info.si_signo, &info); |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 968 | } |
| 969 | } |
| 970 | break; |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 971 | default: |
| 972 | printf ("Unhandled trap: 0x%x\n", trapnr); |
bellard | 7fe4848 | 2004-10-09 18:08:01 +0000 | [diff] [blame] | 973 | cpu_dump_state(env, stderr, fprintf, 0); |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 974 | exit (1); |
| 975 | } |
| 976 | process_pending_signals (env); |
| 977 | } |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 978 | } |
| 979 | |
| 980 | #endif |
| 981 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 982 | #ifdef TARGET_PPC |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 983 | static inline uint64_t cpu_ppc_get_tb (CPUState *env) |
| 984 | { |
| 985 | /* TO FIX */ |
| 986 | return 0; |
| 987 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 988 | |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 989 | uint32_t cpu_ppc_load_tbl (CPUState *env) |
| 990 | { |
| 991 | return cpu_ppc_get_tb(env) & 0xFFFFFFFF; |
| 992 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 993 | |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 994 | uint32_t cpu_ppc_load_tbu (CPUState *env) |
| 995 | { |
| 996 | return cpu_ppc_get_tb(env) >> 32; |
| 997 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 998 | |
j_mayer | a062e36 | 2007-09-30 00:38:38 +0000 | [diff] [blame] | 999 | uint32_t cpu_ppc_load_atbl (CPUState *env) |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1000 | { |
j_mayer | a062e36 | 2007-09-30 00:38:38 +0000 | [diff] [blame] | 1001 | return cpu_ppc_get_tb(env) & 0xFFFFFFFF; |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1002 | } |
| 1003 | |
j_mayer | a062e36 | 2007-09-30 00:38:38 +0000 | [diff] [blame] | 1004 | uint32_t cpu_ppc_load_atbu (CPUState *env) |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1005 | { |
j_mayer | a062e36 | 2007-09-30 00:38:38 +0000 | [diff] [blame] | 1006 | return cpu_ppc_get_tb(env) >> 32; |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1007 | } |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1008 | |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 1009 | uint32_t cpu_ppc601_load_rtcu (CPUState *env) |
| 1010 | __attribute__ (( alias ("cpu_ppc_load_tbu") )); |
| 1011 | |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 1012 | uint32_t cpu_ppc601_load_rtcl (CPUState *env) |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1013 | { |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 1014 | return cpu_ppc_load_tbl(env) & 0x3FFFFF80; |
bellard | 9fddaa0 | 2004-05-21 12:59:32 +0000 | [diff] [blame] | 1015 | } |
j_mayer | 76a6625 | 2007-03-07 08:32:30 +0000 | [diff] [blame] | 1016 | |
j_mayer | a750fc0 | 2007-09-26 23:54:22 +0000 | [diff] [blame] | 1017 | /* XXX: to be fixed */ |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1018 | int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, target_ulong *valp) |
j_mayer | a750fc0 | 2007-09-26 23:54:22 +0000 | [diff] [blame] | 1019 | { |
| 1020 | return -1; |
| 1021 | } |
| 1022 | |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1023 | int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, target_ulong val) |
j_mayer | a750fc0 | 2007-09-26 23:54:22 +0000 | [diff] [blame] | 1024 | { |
| 1025 | return -1; |
| 1026 | } |
| 1027 | |
Blue Swirl | 001faf3 | 2009-05-13 17:53:17 +0000 | [diff] [blame] | 1028 | #define EXCP_DUMP(env, fmt, ...) \ |
| 1029 | do { \ |
| 1030 | fprintf(stderr, fmt , ## __VA_ARGS__); \ |
| 1031 | cpu_dump_state(env, stderr, fprintf, 0); \ |
| 1032 | qemu_log(fmt, ## __VA_ARGS__); \ |
malc | 430c7ec | 2009-07-15 20:52:47 +0400 | [diff] [blame] | 1033 | if (logfile) \ |
| 1034 | log_cpu_state(env, 0); \ |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1035 | } while (0) |
| 1036 | |
Nathan Froyd | 56f066b | 2009-08-03 08:43:27 -0700 | [diff] [blame] | 1037 | static int do_store_exclusive(CPUPPCState *env) |
| 1038 | { |
| 1039 | target_ulong addr; |
| 1040 | target_ulong page_addr; |
| 1041 | target_ulong val; |
| 1042 | int flags; |
| 1043 | int segv = 0; |
| 1044 | |
| 1045 | addr = env->reserve_ea; |
| 1046 | page_addr = addr & TARGET_PAGE_MASK; |
| 1047 | start_exclusive(); |
| 1048 | mmap_lock(); |
| 1049 | flags = page_get_flags(page_addr); |
| 1050 | if ((flags & PAGE_READ) == 0) { |
| 1051 | segv = 1; |
| 1052 | } else { |
| 1053 | int reg = env->reserve_info & 0x1f; |
| 1054 | int size = (env->reserve_info >> 5) & 0xf; |
| 1055 | int stored = 0; |
| 1056 | |
| 1057 | if (addr == env->reserve_addr) { |
| 1058 | switch (size) { |
| 1059 | case 1: segv = get_user_u8(val, addr); break; |
| 1060 | case 2: segv = get_user_u16(val, addr); break; |
| 1061 | case 4: segv = get_user_u32(val, addr); break; |
| 1062 | #if defined(TARGET_PPC64) |
| 1063 | case 8: segv = get_user_u64(val, addr); break; |
| 1064 | #endif |
| 1065 | default: abort(); |
| 1066 | } |
| 1067 | if (!segv && val == env->reserve_val) { |
| 1068 | val = env->gpr[reg]; |
| 1069 | switch (size) { |
| 1070 | case 1: segv = put_user_u8(val, addr); break; |
| 1071 | case 2: segv = put_user_u16(val, addr); break; |
| 1072 | case 4: segv = put_user_u32(val, addr); break; |
| 1073 | #if defined(TARGET_PPC64) |
| 1074 | case 8: segv = put_user_u64(val, addr); break; |
| 1075 | #endif |
| 1076 | default: abort(); |
| 1077 | } |
| 1078 | if (!segv) { |
| 1079 | stored = 1; |
| 1080 | } |
| 1081 | } |
| 1082 | } |
| 1083 | env->crf[0] = (stored << 1) | xer_so; |
| 1084 | env->reserve_addr = (target_ulong)-1; |
| 1085 | } |
| 1086 | if (!segv) { |
| 1087 | env->nip += 4; |
| 1088 | } |
| 1089 | mmap_unlock(); |
| 1090 | end_exclusive(); |
| 1091 | return segv; |
| 1092 | } |
| 1093 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1094 | void cpu_loop(CPUPPCState *env) |
| 1095 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1096 | target_siginfo_t info; |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 1097 | int trapnr; |
| 1098 | uint32_t ret; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1099 | |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1100 | for(;;) { |
Nathan Froyd | 56f066b | 2009-08-03 08:43:27 -0700 | [diff] [blame] | 1101 | cpu_exec_start(env); |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1102 | trapnr = cpu_ppc_exec(env); |
Nathan Froyd | 56f066b | 2009-08-03 08:43:27 -0700 | [diff] [blame] | 1103 | cpu_exec_end(env); |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1104 | switch(trapnr) { |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1105 | case POWERPC_EXCP_NONE: |
| 1106 | /* Just go on */ |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1107 | break; |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1108 | case POWERPC_EXCP_CRITICAL: /* Critical input */ |
| 1109 | cpu_abort(env, "Critical interrupt while in user mode. " |
| 1110 | "Aborting\n"); |
| 1111 | break; |
| 1112 | case POWERPC_EXCP_MCHECK: /* Machine check exception */ |
| 1113 | cpu_abort(env, "Machine check exception while in user mode. " |
| 1114 | "Aborting\n"); |
| 1115 | break; |
| 1116 | case POWERPC_EXCP_DSI: /* Data storage exception */ |
Blue Swirl | 90e189e | 2009-08-16 11:13:18 +0000 | [diff] [blame] | 1117 | EXCP_DUMP(env, "Invalid data memory access: 0x" TARGET_FMT_lx "\n", |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1118 | env->spr[SPR_DAR]); |
| 1119 | /* XXX: check this. Seems bugged */ |
| 1120 | switch (env->error_code & 0xFF000000) { |
| 1121 | case 0x40000000: |
| 1122 | info.si_signo = TARGET_SIGSEGV; |
| 1123 | info.si_errno = 0; |
| 1124 | info.si_code = TARGET_SEGV_MAPERR; |
| 1125 | break; |
| 1126 | case 0x04000000: |
| 1127 | info.si_signo = TARGET_SIGILL; |
| 1128 | info.si_errno = 0; |
| 1129 | info.si_code = TARGET_ILL_ILLADR; |
| 1130 | break; |
| 1131 | case 0x08000000: |
| 1132 | info.si_signo = TARGET_SIGSEGV; |
| 1133 | info.si_errno = 0; |
| 1134 | info.si_code = TARGET_SEGV_ACCERR; |
| 1135 | break; |
| 1136 | default: |
| 1137 | /* Let's send a regular segfault... */ |
| 1138 | EXCP_DUMP(env, "Invalid segfault errno (%02x)\n", |
| 1139 | env->error_code); |
| 1140 | info.si_signo = TARGET_SIGSEGV; |
| 1141 | info.si_errno = 0; |
| 1142 | info.si_code = TARGET_SEGV_MAPERR; |
| 1143 | break; |
| 1144 | } |
| 1145 | info._sifields._sigfault._addr = env->nip; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1146 | queue_signal(env, info.si_signo, &info); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1147 | break; |
| 1148 | case POWERPC_EXCP_ISI: /* Instruction storage exception */ |
Blue Swirl | 90e189e | 2009-08-16 11:13:18 +0000 | [diff] [blame] | 1149 | EXCP_DUMP(env, "Invalid instruction fetch: 0x\n" TARGET_FMT_lx |
| 1150 | "\n", env->spr[SPR_SRR0]); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1151 | /* XXX: check this */ |
| 1152 | switch (env->error_code & 0xFF000000) { |
| 1153 | case 0x40000000: |
| 1154 | info.si_signo = TARGET_SIGSEGV; |
| 1155 | info.si_errno = 0; |
| 1156 | info.si_code = TARGET_SEGV_MAPERR; |
| 1157 | break; |
| 1158 | case 0x10000000: |
| 1159 | case 0x08000000: |
| 1160 | info.si_signo = TARGET_SIGSEGV; |
| 1161 | info.si_errno = 0; |
| 1162 | info.si_code = TARGET_SEGV_ACCERR; |
| 1163 | break; |
| 1164 | default: |
| 1165 | /* Let's send a regular segfault... */ |
| 1166 | EXCP_DUMP(env, "Invalid segfault errno (%02x)\n", |
| 1167 | env->error_code); |
| 1168 | info.si_signo = TARGET_SIGSEGV; |
| 1169 | info.si_errno = 0; |
| 1170 | info.si_code = TARGET_SEGV_MAPERR; |
| 1171 | break; |
| 1172 | } |
| 1173 | info._sifields._sigfault._addr = env->nip - 4; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1174 | queue_signal(env, info.si_signo, &info); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1175 | break; |
| 1176 | case POWERPC_EXCP_EXTERNAL: /* External input */ |
| 1177 | cpu_abort(env, "External interrupt while in user mode. " |
| 1178 | "Aborting\n"); |
| 1179 | break; |
| 1180 | case POWERPC_EXCP_ALIGN: /* Alignment exception */ |
| 1181 | EXCP_DUMP(env, "Unaligned memory access\n"); |
| 1182 | /* XXX: check this */ |
| 1183 | info.si_signo = TARGET_SIGBUS; |
| 1184 | info.si_errno = 0; |
| 1185 | info.si_code = TARGET_BUS_ADRALN; |
| 1186 | info._sifields._sigfault._addr = env->nip - 4; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1187 | queue_signal(env, info.si_signo, &info); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1188 | break; |
| 1189 | case POWERPC_EXCP_PROGRAM: /* Program exception */ |
| 1190 | /* XXX: check this */ |
| 1191 | switch (env->error_code & ~0xF) { |
| 1192 | case POWERPC_EXCP_FP: |
| 1193 | EXCP_DUMP(env, "Floating point program exception\n"); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1194 | info.si_signo = TARGET_SIGFPE; |
| 1195 | info.si_errno = 0; |
| 1196 | switch (env->error_code & 0xF) { |
| 1197 | case POWERPC_EXCP_FP_OX: |
| 1198 | info.si_code = TARGET_FPE_FLTOVF; |
| 1199 | break; |
| 1200 | case POWERPC_EXCP_FP_UX: |
| 1201 | info.si_code = TARGET_FPE_FLTUND; |
| 1202 | break; |
| 1203 | case POWERPC_EXCP_FP_ZX: |
| 1204 | case POWERPC_EXCP_FP_VXZDZ: |
| 1205 | info.si_code = TARGET_FPE_FLTDIV; |
| 1206 | break; |
| 1207 | case POWERPC_EXCP_FP_XX: |
| 1208 | info.si_code = TARGET_FPE_FLTRES; |
| 1209 | break; |
| 1210 | case POWERPC_EXCP_FP_VXSOFT: |
| 1211 | info.si_code = TARGET_FPE_FLTINV; |
| 1212 | break; |
j_mayer | 7c58044 | 2007-10-27 17:54:30 +0000 | [diff] [blame] | 1213 | case POWERPC_EXCP_FP_VXSNAN: |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1214 | case POWERPC_EXCP_FP_VXISI: |
| 1215 | case POWERPC_EXCP_FP_VXIDI: |
| 1216 | case POWERPC_EXCP_FP_VXIMZ: |
| 1217 | case POWERPC_EXCP_FP_VXVC: |
| 1218 | case POWERPC_EXCP_FP_VXSQRT: |
| 1219 | case POWERPC_EXCP_FP_VXCVI: |
| 1220 | info.si_code = TARGET_FPE_FLTSUB; |
| 1221 | break; |
| 1222 | default: |
| 1223 | EXCP_DUMP(env, "Unknown floating point exception (%02x)\n", |
| 1224 | env->error_code); |
| 1225 | break; |
| 1226 | } |
| 1227 | break; |
| 1228 | case POWERPC_EXCP_INVAL: |
| 1229 | EXCP_DUMP(env, "Invalid instruction\n"); |
| 1230 | info.si_signo = TARGET_SIGILL; |
| 1231 | info.si_errno = 0; |
| 1232 | switch (env->error_code & 0xF) { |
| 1233 | case POWERPC_EXCP_INVAL_INVAL: |
| 1234 | info.si_code = TARGET_ILL_ILLOPC; |
| 1235 | break; |
| 1236 | case POWERPC_EXCP_INVAL_LSWX: |
| 1237 | info.si_code = TARGET_ILL_ILLOPN; |
| 1238 | break; |
| 1239 | case POWERPC_EXCP_INVAL_SPR: |
| 1240 | info.si_code = TARGET_ILL_PRVREG; |
| 1241 | break; |
| 1242 | case POWERPC_EXCP_INVAL_FP: |
| 1243 | info.si_code = TARGET_ILL_COPROC; |
| 1244 | break; |
| 1245 | default: |
| 1246 | EXCP_DUMP(env, "Unknown invalid operation (%02x)\n", |
| 1247 | env->error_code & 0xF); |
| 1248 | info.si_code = TARGET_ILL_ILLADR; |
| 1249 | break; |
| 1250 | } |
| 1251 | break; |
| 1252 | case POWERPC_EXCP_PRIV: |
| 1253 | EXCP_DUMP(env, "Privilege violation\n"); |
| 1254 | info.si_signo = TARGET_SIGILL; |
| 1255 | info.si_errno = 0; |
| 1256 | switch (env->error_code & 0xF) { |
| 1257 | case POWERPC_EXCP_PRIV_OPC: |
| 1258 | info.si_code = TARGET_ILL_PRVOPC; |
| 1259 | break; |
| 1260 | case POWERPC_EXCP_PRIV_REG: |
| 1261 | info.si_code = TARGET_ILL_PRVREG; |
| 1262 | break; |
| 1263 | default: |
| 1264 | EXCP_DUMP(env, "Unknown privilege violation (%02x)\n", |
| 1265 | env->error_code & 0xF); |
| 1266 | info.si_code = TARGET_ILL_PRVOPC; |
| 1267 | break; |
| 1268 | } |
| 1269 | break; |
| 1270 | case POWERPC_EXCP_TRAP: |
| 1271 | cpu_abort(env, "Tried to call a TRAP\n"); |
| 1272 | break; |
| 1273 | default: |
| 1274 | /* Should not happen ! */ |
| 1275 | cpu_abort(env, "Unknown program exception (%02x)\n", |
| 1276 | env->error_code); |
| 1277 | break; |
| 1278 | } |
| 1279 | info._sifields._sigfault._addr = env->nip - 4; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1280 | queue_signal(env, info.si_signo, &info); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1281 | break; |
| 1282 | case POWERPC_EXCP_FPU: /* Floating-point unavailable exception */ |
| 1283 | EXCP_DUMP(env, "No floating point allowed\n"); |
| 1284 | info.si_signo = TARGET_SIGILL; |
| 1285 | info.si_errno = 0; |
| 1286 | info.si_code = TARGET_ILL_COPROC; |
| 1287 | info._sifields._sigfault._addr = env->nip - 4; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1288 | queue_signal(env, info.si_signo, &info); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1289 | break; |
| 1290 | case POWERPC_EXCP_SYSCALL: /* System call exception */ |
| 1291 | cpu_abort(env, "Syscall exception while in user mode. " |
| 1292 | "Aborting\n"); |
| 1293 | break; |
| 1294 | case POWERPC_EXCP_APU: /* Auxiliary processor unavailable */ |
| 1295 | EXCP_DUMP(env, "No APU instruction allowed\n"); |
| 1296 | info.si_signo = TARGET_SIGILL; |
| 1297 | info.si_errno = 0; |
| 1298 | info.si_code = TARGET_ILL_COPROC; |
| 1299 | info._sifields._sigfault._addr = env->nip - 4; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1300 | queue_signal(env, info.si_signo, &info); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1301 | break; |
| 1302 | case POWERPC_EXCP_DECR: /* Decrementer exception */ |
| 1303 | cpu_abort(env, "Decrementer interrupt while in user mode. " |
| 1304 | "Aborting\n"); |
| 1305 | break; |
| 1306 | case POWERPC_EXCP_FIT: /* Fixed-interval timer interrupt */ |
| 1307 | cpu_abort(env, "Fix interval timer interrupt while in user mode. " |
| 1308 | "Aborting\n"); |
| 1309 | break; |
| 1310 | case POWERPC_EXCP_WDT: /* Watchdog timer interrupt */ |
| 1311 | cpu_abort(env, "Watchdog timer interrupt while in user mode. " |
| 1312 | "Aborting\n"); |
| 1313 | break; |
| 1314 | case POWERPC_EXCP_DTLB: /* Data TLB error */ |
| 1315 | cpu_abort(env, "Data TLB exception while in user mode. " |
| 1316 | "Aborting\n"); |
| 1317 | break; |
| 1318 | case POWERPC_EXCP_ITLB: /* Instruction TLB error */ |
| 1319 | cpu_abort(env, "Instruction TLB exception while in user mode. " |
| 1320 | "Aborting\n"); |
| 1321 | break; |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1322 | case POWERPC_EXCP_SPEU: /* SPE/embedded floating-point unavail. */ |
| 1323 | EXCP_DUMP(env, "No SPE/floating-point instruction allowed\n"); |
| 1324 | info.si_signo = TARGET_SIGILL; |
| 1325 | info.si_errno = 0; |
| 1326 | info.si_code = TARGET_ILL_COPROC; |
| 1327 | info._sifields._sigfault._addr = env->nip - 4; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1328 | queue_signal(env, info.si_signo, &info); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1329 | break; |
| 1330 | case POWERPC_EXCP_EFPDI: /* Embedded floating-point data IRQ */ |
| 1331 | cpu_abort(env, "Embedded floating-point data IRQ not handled\n"); |
| 1332 | break; |
| 1333 | case POWERPC_EXCP_EFPRI: /* Embedded floating-point round IRQ */ |
| 1334 | cpu_abort(env, "Embedded floating-point round IRQ not handled\n"); |
| 1335 | break; |
| 1336 | case POWERPC_EXCP_EPERFM: /* Embedded performance monitor IRQ */ |
| 1337 | cpu_abort(env, "Performance monitor exception not handled\n"); |
| 1338 | break; |
| 1339 | case POWERPC_EXCP_DOORI: /* Embedded doorbell interrupt */ |
| 1340 | cpu_abort(env, "Doorbell interrupt while in user mode. " |
| 1341 | "Aborting\n"); |
| 1342 | break; |
| 1343 | case POWERPC_EXCP_DOORCI: /* Embedded doorbell critical interrupt */ |
| 1344 | cpu_abort(env, "Doorbell critical interrupt while in user mode. " |
| 1345 | "Aborting\n"); |
| 1346 | break; |
| 1347 | case POWERPC_EXCP_RESET: /* System reset exception */ |
| 1348 | cpu_abort(env, "Reset interrupt while in user mode. " |
| 1349 | "Aborting\n"); |
| 1350 | break; |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1351 | case POWERPC_EXCP_DSEG: /* Data segment exception */ |
| 1352 | cpu_abort(env, "Data segment exception while in user mode. " |
| 1353 | "Aborting\n"); |
| 1354 | break; |
| 1355 | case POWERPC_EXCP_ISEG: /* Instruction segment exception */ |
| 1356 | cpu_abort(env, "Instruction segment exception " |
| 1357 | "while in user mode. Aborting\n"); |
| 1358 | break; |
j_mayer | e85e7c6 | 2007-10-18 19:59:49 +0000 | [diff] [blame] | 1359 | /* PowerPC 64 with hypervisor mode support */ |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1360 | case POWERPC_EXCP_HDECR: /* Hypervisor decrementer exception */ |
| 1361 | cpu_abort(env, "Hypervisor decrementer interrupt " |
| 1362 | "while in user mode. Aborting\n"); |
| 1363 | break; |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1364 | case POWERPC_EXCP_TRACE: /* Trace exception */ |
| 1365 | /* Nothing to do: |
| 1366 | * we use this exception to emulate step-by-step execution mode. |
| 1367 | */ |
| 1368 | break; |
j_mayer | e85e7c6 | 2007-10-18 19:59:49 +0000 | [diff] [blame] | 1369 | /* PowerPC 64 with hypervisor mode support */ |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1370 | case POWERPC_EXCP_HDSI: /* Hypervisor data storage exception */ |
| 1371 | cpu_abort(env, "Hypervisor data storage exception " |
| 1372 | "while in user mode. Aborting\n"); |
| 1373 | break; |
| 1374 | case POWERPC_EXCP_HISI: /* Hypervisor instruction storage excp */ |
| 1375 | cpu_abort(env, "Hypervisor instruction storage exception " |
| 1376 | "while in user mode. Aborting\n"); |
| 1377 | break; |
| 1378 | case POWERPC_EXCP_HDSEG: /* Hypervisor data segment exception */ |
| 1379 | cpu_abort(env, "Hypervisor data segment exception " |
| 1380 | "while in user mode. Aborting\n"); |
| 1381 | break; |
| 1382 | case POWERPC_EXCP_HISEG: /* Hypervisor instruction segment excp */ |
| 1383 | cpu_abort(env, "Hypervisor instruction segment exception " |
| 1384 | "while in user mode. Aborting\n"); |
| 1385 | break; |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1386 | case POWERPC_EXCP_VPU: /* Vector unavailable exception */ |
| 1387 | EXCP_DUMP(env, "No Altivec instructions allowed\n"); |
| 1388 | info.si_signo = TARGET_SIGILL; |
| 1389 | info.si_errno = 0; |
| 1390 | info.si_code = TARGET_ILL_COPROC; |
| 1391 | info._sifields._sigfault._addr = env->nip - 4; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1392 | queue_signal(env, info.si_signo, &info); |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1393 | break; |
| 1394 | case POWERPC_EXCP_PIT: /* Programmable interval timer IRQ */ |
| 1395 | cpu_abort(env, "Programable interval timer interrupt " |
| 1396 | "while in user mode. Aborting\n"); |
| 1397 | break; |
| 1398 | case POWERPC_EXCP_IO: /* IO error exception */ |
| 1399 | cpu_abort(env, "IO error exception while in user mode. " |
| 1400 | "Aborting\n"); |
| 1401 | break; |
| 1402 | case POWERPC_EXCP_RUNM: /* Run mode exception */ |
| 1403 | cpu_abort(env, "Run mode exception while in user mode. " |
| 1404 | "Aborting\n"); |
| 1405 | break; |
| 1406 | case POWERPC_EXCP_EMUL: /* Emulation trap exception */ |
| 1407 | cpu_abort(env, "Emulation trap exception not handled\n"); |
| 1408 | break; |
| 1409 | case POWERPC_EXCP_IFTLB: /* Instruction fetch TLB error */ |
| 1410 | cpu_abort(env, "Instruction fetch TLB exception " |
| 1411 | "while in user-mode. Aborting"); |
| 1412 | break; |
| 1413 | case POWERPC_EXCP_DLTLB: /* Data load TLB miss */ |
| 1414 | cpu_abort(env, "Data load TLB exception while in user-mode. " |
| 1415 | "Aborting"); |
| 1416 | break; |
| 1417 | case POWERPC_EXCP_DSTLB: /* Data store TLB miss */ |
| 1418 | cpu_abort(env, "Data store TLB exception while in user-mode. " |
| 1419 | "Aborting"); |
| 1420 | break; |
| 1421 | case POWERPC_EXCP_FPA: /* Floating-point assist exception */ |
| 1422 | cpu_abort(env, "Floating-point assist exception not handled\n"); |
| 1423 | break; |
| 1424 | case POWERPC_EXCP_IABR: /* Instruction address breakpoint */ |
| 1425 | cpu_abort(env, "Instruction address breakpoint exception " |
| 1426 | "not handled\n"); |
| 1427 | break; |
| 1428 | case POWERPC_EXCP_SMI: /* System management interrupt */ |
| 1429 | cpu_abort(env, "System management interrupt while in user mode. " |
| 1430 | "Aborting\n"); |
| 1431 | break; |
| 1432 | case POWERPC_EXCP_THERM: /* Thermal interrupt */ |
| 1433 | cpu_abort(env, "Thermal interrupt interrupt while in user mode. " |
| 1434 | "Aborting\n"); |
| 1435 | break; |
| 1436 | case POWERPC_EXCP_PERFM: /* Embedded performance monitor IRQ */ |
| 1437 | cpu_abort(env, "Performance monitor exception not handled\n"); |
| 1438 | break; |
| 1439 | case POWERPC_EXCP_VPUA: /* Vector assist exception */ |
| 1440 | cpu_abort(env, "Vector assist exception not handled\n"); |
| 1441 | break; |
| 1442 | case POWERPC_EXCP_SOFTP: /* Soft patch exception */ |
| 1443 | cpu_abort(env, "Soft patch exception not handled\n"); |
| 1444 | break; |
| 1445 | case POWERPC_EXCP_MAINT: /* Maintenance exception */ |
| 1446 | cpu_abort(env, "Maintenance exception while in user mode. " |
| 1447 | "Aborting\n"); |
| 1448 | break; |
| 1449 | case POWERPC_EXCP_STOP: /* stop translation */ |
| 1450 | /* We did invalidate the instruction cache. Go on */ |
| 1451 | break; |
| 1452 | case POWERPC_EXCP_BRANCH: /* branch instruction: */ |
| 1453 | /* We just stopped because of a branch. Go on */ |
| 1454 | break; |
| 1455 | case POWERPC_EXCP_SYSCALL_USER: |
| 1456 | /* system call in user-mode emulation */ |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1457 | /* WARNING: |
| 1458 | * PPC ABI uses overflow flag in cr0 to signal an error |
| 1459 | * in syscalls. |
| 1460 | */ |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 1461 | #if 0 |
| 1462 | printf("syscall %d 0x%08x 0x%08x 0x%08x 0x%08x\n", env->gpr[0], |
| 1463 | env->gpr[3], env->gpr[4], env->gpr[5], env->gpr[6]); |
| 1464 | #endif |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1465 | env->crf[0] &= ~0x1; |
| 1466 | ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4], |
| 1467 | env->gpr[5], env->gpr[6], env->gpr[7], |
| 1468 | env->gpr[8]); |
Nathan Froyd | bcd4933 | 2009-05-12 19:13:18 -0700 | [diff] [blame] | 1469 | if (ret == (uint32_t)(-TARGET_QEMU_ESIGRETURN)) { |
| 1470 | /* Returning from a successful sigreturn syscall. |
| 1471 | Avoid corrupting register state. */ |
| 1472 | break; |
| 1473 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1474 | if (ret > (uint32_t)(-515)) { |
| 1475 | env->crf[0] |= 0x1; |
| 1476 | ret = -ret; |
| 1477 | } |
| 1478 | env->gpr[3] = ret; |
bellard | 61190b1 | 2004-01-04 23:54:31 +0000 | [diff] [blame] | 1479 | #if 0 |
| 1480 | printf("syscall returned 0x%08x (%d)\n", ret, ret); |
| 1481 | #endif |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1482 | break; |
Nathan Froyd | 56f066b | 2009-08-03 08:43:27 -0700 | [diff] [blame] | 1483 | case POWERPC_EXCP_STCX: |
| 1484 | if (do_store_exclusive(env)) { |
| 1485 | info.si_signo = TARGET_SIGSEGV; |
| 1486 | info.si_errno = 0; |
| 1487 | info.si_code = TARGET_SEGV_MAPERR; |
| 1488 | info._sifields._sigfault._addr = env->nip; |
| 1489 | queue_signal(env, info.si_signo, &info); |
| 1490 | } |
| 1491 | break; |
aurel32 | 71f7575 | 2008-11-14 17:05:54 +0000 | [diff] [blame] | 1492 | case EXCP_DEBUG: |
| 1493 | { |
| 1494 | int sig; |
| 1495 | |
| 1496 | sig = gdb_handlesig(env, TARGET_SIGTRAP); |
| 1497 | if (sig) { |
| 1498 | info.si_signo = sig; |
| 1499 | info.si_errno = 0; |
| 1500 | info.si_code = TARGET_TRAP_BRKPT; |
| 1501 | queue_signal(env, info.si_signo, &info); |
| 1502 | } |
| 1503 | } |
| 1504 | break; |
j_mayer | 56ba31f | 2007-09-30 15:15:18 +0000 | [diff] [blame] | 1505 | case EXCP_INTERRUPT: |
| 1506 | /* just indicate that signals should be handled asap */ |
| 1507 | break; |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1508 | default: |
j_mayer | e1833e1 | 2007-09-29 13:06:16 +0000 | [diff] [blame] | 1509 | cpu_abort(env, "Unknown exception 0x%d. Aborting\n", trapnr); |
| 1510 | break; |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 1511 | } |
| 1512 | process_pending_signals(env); |
| 1513 | } |
| 1514 | } |
| 1515 | #endif |
| 1516 | |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1517 | #ifdef TARGET_MIPS |
| 1518 | |
| 1519 | #define MIPS_SYS(name, args) args, |
| 1520 | |
| 1521 | static const uint8_t mips_syscall_args[] = { |
| 1522 | MIPS_SYS(sys_syscall , 0) /* 4000 */ |
| 1523 | MIPS_SYS(sys_exit , 1) |
| 1524 | MIPS_SYS(sys_fork , 0) |
| 1525 | MIPS_SYS(sys_read , 3) |
| 1526 | MIPS_SYS(sys_write , 3) |
| 1527 | MIPS_SYS(sys_open , 3) /* 4005 */ |
| 1528 | MIPS_SYS(sys_close , 1) |
| 1529 | MIPS_SYS(sys_waitpid , 3) |
| 1530 | MIPS_SYS(sys_creat , 2) |
| 1531 | MIPS_SYS(sys_link , 2) |
| 1532 | MIPS_SYS(sys_unlink , 1) /* 4010 */ |
| 1533 | MIPS_SYS(sys_execve , 0) |
| 1534 | MIPS_SYS(sys_chdir , 1) |
| 1535 | MIPS_SYS(sys_time , 1) |
| 1536 | MIPS_SYS(sys_mknod , 3) |
| 1537 | MIPS_SYS(sys_chmod , 2) /* 4015 */ |
| 1538 | MIPS_SYS(sys_lchown , 3) |
| 1539 | MIPS_SYS(sys_ni_syscall , 0) |
| 1540 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_stat */ |
| 1541 | MIPS_SYS(sys_lseek , 3) |
| 1542 | MIPS_SYS(sys_getpid , 0) /* 4020 */ |
| 1543 | MIPS_SYS(sys_mount , 5) |
| 1544 | MIPS_SYS(sys_oldumount , 1) |
| 1545 | MIPS_SYS(sys_setuid , 1) |
| 1546 | MIPS_SYS(sys_getuid , 0) |
| 1547 | MIPS_SYS(sys_stime , 1) /* 4025 */ |
| 1548 | MIPS_SYS(sys_ptrace , 4) |
| 1549 | MIPS_SYS(sys_alarm , 1) |
| 1550 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_fstat */ |
| 1551 | MIPS_SYS(sys_pause , 0) |
| 1552 | MIPS_SYS(sys_utime , 2) /* 4030 */ |
| 1553 | MIPS_SYS(sys_ni_syscall , 0) |
| 1554 | MIPS_SYS(sys_ni_syscall , 0) |
| 1555 | MIPS_SYS(sys_access , 2) |
| 1556 | MIPS_SYS(sys_nice , 1) |
| 1557 | MIPS_SYS(sys_ni_syscall , 0) /* 4035 */ |
| 1558 | MIPS_SYS(sys_sync , 0) |
| 1559 | MIPS_SYS(sys_kill , 2) |
| 1560 | MIPS_SYS(sys_rename , 2) |
| 1561 | MIPS_SYS(sys_mkdir , 2) |
| 1562 | MIPS_SYS(sys_rmdir , 1) /* 4040 */ |
| 1563 | MIPS_SYS(sys_dup , 1) |
| 1564 | MIPS_SYS(sys_pipe , 0) |
| 1565 | MIPS_SYS(sys_times , 1) |
| 1566 | MIPS_SYS(sys_ni_syscall , 0) |
| 1567 | MIPS_SYS(sys_brk , 1) /* 4045 */ |
| 1568 | MIPS_SYS(sys_setgid , 1) |
| 1569 | MIPS_SYS(sys_getgid , 0) |
| 1570 | MIPS_SYS(sys_ni_syscall , 0) /* was signal(2) */ |
| 1571 | MIPS_SYS(sys_geteuid , 0) |
| 1572 | MIPS_SYS(sys_getegid , 0) /* 4050 */ |
| 1573 | MIPS_SYS(sys_acct , 0) |
| 1574 | MIPS_SYS(sys_umount , 2) |
| 1575 | MIPS_SYS(sys_ni_syscall , 0) |
| 1576 | MIPS_SYS(sys_ioctl , 3) |
| 1577 | MIPS_SYS(sys_fcntl , 3) /* 4055 */ |
| 1578 | MIPS_SYS(sys_ni_syscall , 2) |
| 1579 | MIPS_SYS(sys_setpgid , 2) |
| 1580 | MIPS_SYS(sys_ni_syscall , 0) |
| 1581 | MIPS_SYS(sys_olduname , 1) |
| 1582 | MIPS_SYS(sys_umask , 1) /* 4060 */ |
| 1583 | MIPS_SYS(sys_chroot , 1) |
| 1584 | MIPS_SYS(sys_ustat , 2) |
| 1585 | MIPS_SYS(sys_dup2 , 2) |
| 1586 | MIPS_SYS(sys_getppid , 0) |
| 1587 | MIPS_SYS(sys_getpgrp , 0) /* 4065 */ |
| 1588 | MIPS_SYS(sys_setsid , 0) |
| 1589 | MIPS_SYS(sys_sigaction , 3) |
| 1590 | MIPS_SYS(sys_sgetmask , 0) |
| 1591 | MIPS_SYS(sys_ssetmask , 1) |
| 1592 | MIPS_SYS(sys_setreuid , 2) /* 4070 */ |
| 1593 | MIPS_SYS(sys_setregid , 2) |
| 1594 | MIPS_SYS(sys_sigsuspend , 0) |
| 1595 | MIPS_SYS(sys_sigpending , 1) |
| 1596 | MIPS_SYS(sys_sethostname , 2) |
| 1597 | MIPS_SYS(sys_setrlimit , 2) /* 4075 */ |
| 1598 | MIPS_SYS(sys_getrlimit , 2) |
| 1599 | MIPS_SYS(sys_getrusage , 2) |
| 1600 | MIPS_SYS(sys_gettimeofday, 2) |
| 1601 | MIPS_SYS(sys_settimeofday, 2) |
| 1602 | MIPS_SYS(sys_getgroups , 2) /* 4080 */ |
| 1603 | MIPS_SYS(sys_setgroups , 2) |
| 1604 | MIPS_SYS(sys_ni_syscall , 0) /* old_select */ |
| 1605 | MIPS_SYS(sys_symlink , 2) |
| 1606 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_lstat */ |
| 1607 | MIPS_SYS(sys_readlink , 3) /* 4085 */ |
| 1608 | MIPS_SYS(sys_uselib , 1) |
| 1609 | MIPS_SYS(sys_swapon , 2) |
| 1610 | MIPS_SYS(sys_reboot , 3) |
| 1611 | MIPS_SYS(old_readdir , 3) |
| 1612 | MIPS_SYS(old_mmap , 6) /* 4090 */ |
| 1613 | MIPS_SYS(sys_munmap , 2) |
| 1614 | MIPS_SYS(sys_truncate , 2) |
| 1615 | MIPS_SYS(sys_ftruncate , 2) |
| 1616 | MIPS_SYS(sys_fchmod , 2) |
| 1617 | MIPS_SYS(sys_fchown , 3) /* 4095 */ |
| 1618 | MIPS_SYS(sys_getpriority , 2) |
| 1619 | MIPS_SYS(sys_setpriority , 3) |
| 1620 | MIPS_SYS(sys_ni_syscall , 0) |
| 1621 | MIPS_SYS(sys_statfs , 2) |
| 1622 | MIPS_SYS(sys_fstatfs , 2) /* 4100 */ |
| 1623 | MIPS_SYS(sys_ni_syscall , 0) /* was ioperm(2) */ |
| 1624 | MIPS_SYS(sys_socketcall , 2) |
| 1625 | MIPS_SYS(sys_syslog , 3) |
| 1626 | MIPS_SYS(sys_setitimer , 3) |
| 1627 | MIPS_SYS(sys_getitimer , 2) /* 4105 */ |
| 1628 | MIPS_SYS(sys_newstat , 2) |
| 1629 | MIPS_SYS(sys_newlstat , 2) |
| 1630 | MIPS_SYS(sys_newfstat , 2) |
| 1631 | MIPS_SYS(sys_uname , 1) |
| 1632 | MIPS_SYS(sys_ni_syscall , 0) /* 4110 was iopl(2) */ |
| 1633 | MIPS_SYS(sys_vhangup , 0) |
| 1634 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_idle() */ |
| 1635 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_vm86 */ |
| 1636 | MIPS_SYS(sys_wait4 , 4) |
| 1637 | MIPS_SYS(sys_swapoff , 1) /* 4115 */ |
| 1638 | MIPS_SYS(sys_sysinfo , 1) |
| 1639 | MIPS_SYS(sys_ipc , 6) |
| 1640 | MIPS_SYS(sys_fsync , 1) |
| 1641 | MIPS_SYS(sys_sigreturn , 0) |
Paul Brook | 1811396 | 2009-07-09 13:11:52 +0100 | [diff] [blame] | 1642 | MIPS_SYS(sys_clone , 6) /* 4120 */ |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1643 | MIPS_SYS(sys_setdomainname, 2) |
| 1644 | MIPS_SYS(sys_newuname , 1) |
| 1645 | MIPS_SYS(sys_ni_syscall , 0) /* sys_modify_ldt */ |
| 1646 | MIPS_SYS(sys_adjtimex , 1) |
| 1647 | MIPS_SYS(sys_mprotect , 3) /* 4125 */ |
| 1648 | MIPS_SYS(sys_sigprocmask , 3) |
| 1649 | MIPS_SYS(sys_ni_syscall , 0) /* was create_module */ |
| 1650 | MIPS_SYS(sys_init_module , 5) |
| 1651 | MIPS_SYS(sys_delete_module, 1) |
| 1652 | MIPS_SYS(sys_ni_syscall , 0) /* 4130 was get_kernel_syms */ |
| 1653 | MIPS_SYS(sys_quotactl , 0) |
| 1654 | MIPS_SYS(sys_getpgid , 1) |
| 1655 | MIPS_SYS(sys_fchdir , 1) |
| 1656 | MIPS_SYS(sys_bdflush , 2) |
| 1657 | MIPS_SYS(sys_sysfs , 3) /* 4135 */ |
| 1658 | MIPS_SYS(sys_personality , 1) |
| 1659 | MIPS_SYS(sys_ni_syscall , 0) /* for afs_syscall */ |
| 1660 | MIPS_SYS(sys_setfsuid , 1) |
| 1661 | MIPS_SYS(sys_setfsgid , 1) |
| 1662 | MIPS_SYS(sys_llseek , 5) /* 4140 */ |
| 1663 | MIPS_SYS(sys_getdents , 3) |
| 1664 | MIPS_SYS(sys_select , 5) |
| 1665 | MIPS_SYS(sys_flock , 2) |
| 1666 | MIPS_SYS(sys_msync , 3) |
| 1667 | MIPS_SYS(sys_readv , 3) /* 4145 */ |
| 1668 | MIPS_SYS(sys_writev , 3) |
| 1669 | MIPS_SYS(sys_cacheflush , 3) |
| 1670 | MIPS_SYS(sys_cachectl , 3) |
| 1671 | MIPS_SYS(sys_sysmips , 4) |
| 1672 | MIPS_SYS(sys_ni_syscall , 0) /* 4150 */ |
| 1673 | MIPS_SYS(sys_getsid , 1) |
| 1674 | MIPS_SYS(sys_fdatasync , 0) |
| 1675 | MIPS_SYS(sys_sysctl , 1) |
| 1676 | MIPS_SYS(sys_mlock , 2) |
| 1677 | MIPS_SYS(sys_munlock , 2) /* 4155 */ |
| 1678 | MIPS_SYS(sys_mlockall , 1) |
| 1679 | MIPS_SYS(sys_munlockall , 0) |
| 1680 | MIPS_SYS(sys_sched_setparam, 2) |
| 1681 | MIPS_SYS(sys_sched_getparam, 2) |
| 1682 | MIPS_SYS(sys_sched_setscheduler, 3) /* 4160 */ |
| 1683 | MIPS_SYS(sys_sched_getscheduler, 1) |
| 1684 | MIPS_SYS(sys_sched_yield , 0) |
| 1685 | MIPS_SYS(sys_sched_get_priority_max, 1) |
| 1686 | MIPS_SYS(sys_sched_get_priority_min, 1) |
| 1687 | MIPS_SYS(sys_sched_rr_get_interval, 2) /* 4165 */ |
| 1688 | MIPS_SYS(sys_nanosleep, 2) |
| 1689 | MIPS_SYS(sys_mremap , 4) |
| 1690 | MIPS_SYS(sys_accept , 3) |
| 1691 | MIPS_SYS(sys_bind , 3) |
| 1692 | MIPS_SYS(sys_connect , 3) /* 4170 */ |
| 1693 | MIPS_SYS(sys_getpeername , 3) |
| 1694 | MIPS_SYS(sys_getsockname , 3) |
| 1695 | MIPS_SYS(sys_getsockopt , 5) |
| 1696 | MIPS_SYS(sys_listen , 2) |
| 1697 | MIPS_SYS(sys_recv , 4) /* 4175 */ |
| 1698 | MIPS_SYS(sys_recvfrom , 6) |
| 1699 | MIPS_SYS(sys_recvmsg , 3) |
| 1700 | MIPS_SYS(sys_send , 4) |
| 1701 | MIPS_SYS(sys_sendmsg , 3) |
| 1702 | MIPS_SYS(sys_sendto , 6) /* 4180 */ |
| 1703 | MIPS_SYS(sys_setsockopt , 5) |
| 1704 | MIPS_SYS(sys_shutdown , 2) |
| 1705 | MIPS_SYS(sys_socket , 3) |
| 1706 | MIPS_SYS(sys_socketpair , 4) |
| 1707 | MIPS_SYS(sys_setresuid , 3) /* 4185 */ |
| 1708 | MIPS_SYS(sys_getresuid , 3) |
| 1709 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_query_module */ |
| 1710 | MIPS_SYS(sys_poll , 3) |
| 1711 | MIPS_SYS(sys_nfsservctl , 3) |
| 1712 | MIPS_SYS(sys_setresgid , 3) /* 4190 */ |
| 1713 | MIPS_SYS(sys_getresgid , 3) |
| 1714 | MIPS_SYS(sys_prctl , 5) |
| 1715 | MIPS_SYS(sys_rt_sigreturn, 0) |
| 1716 | MIPS_SYS(sys_rt_sigaction, 4) |
| 1717 | MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */ |
| 1718 | MIPS_SYS(sys_rt_sigpending, 2) |
| 1719 | MIPS_SYS(sys_rt_sigtimedwait, 4) |
| 1720 | MIPS_SYS(sys_rt_sigqueueinfo, 3) |
| 1721 | MIPS_SYS(sys_rt_sigsuspend, 0) |
| 1722 | MIPS_SYS(sys_pread64 , 6) /* 4200 */ |
| 1723 | MIPS_SYS(sys_pwrite64 , 6) |
| 1724 | MIPS_SYS(sys_chown , 3) |
| 1725 | MIPS_SYS(sys_getcwd , 2) |
| 1726 | MIPS_SYS(sys_capget , 2) |
| 1727 | MIPS_SYS(sys_capset , 2) /* 4205 */ |
| 1728 | MIPS_SYS(sys_sigaltstack , 0) |
| 1729 | MIPS_SYS(sys_sendfile , 4) |
| 1730 | MIPS_SYS(sys_ni_syscall , 0) |
| 1731 | MIPS_SYS(sys_ni_syscall , 0) |
| 1732 | MIPS_SYS(sys_mmap2 , 6) /* 4210 */ |
| 1733 | MIPS_SYS(sys_truncate64 , 4) |
| 1734 | MIPS_SYS(sys_ftruncate64 , 4) |
| 1735 | MIPS_SYS(sys_stat64 , 2) |
| 1736 | MIPS_SYS(sys_lstat64 , 2) |
| 1737 | MIPS_SYS(sys_fstat64 , 2) /* 4215 */ |
| 1738 | MIPS_SYS(sys_pivot_root , 2) |
| 1739 | MIPS_SYS(sys_mincore , 3) |
| 1740 | MIPS_SYS(sys_madvise , 3) |
| 1741 | MIPS_SYS(sys_getdents64 , 3) |
| 1742 | MIPS_SYS(sys_fcntl64 , 3) /* 4220 */ |
| 1743 | MIPS_SYS(sys_ni_syscall , 0) |
| 1744 | MIPS_SYS(sys_gettid , 0) |
| 1745 | MIPS_SYS(sys_readahead , 5) |
| 1746 | MIPS_SYS(sys_setxattr , 5) |
| 1747 | MIPS_SYS(sys_lsetxattr , 5) /* 4225 */ |
| 1748 | MIPS_SYS(sys_fsetxattr , 5) |
| 1749 | MIPS_SYS(sys_getxattr , 4) |
| 1750 | MIPS_SYS(sys_lgetxattr , 4) |
| 1751 | MIPS_SYS(sys_fgetxattr , 4) |
| 1752 | MIPS_SYS(sys_listxattr , 3) /* 4230 */ |
| 1753 | MIPS_SYS(sys_llistxattr , 3) |
| 1754 | MIPS_SYS(sys_flistxattr , 3) |
| 1755 | MIPS_SYS(sys_removexattr , 2) |
| 1756 | MIPS_SYS(sys_lremovexattr, 2) |
| 1757 | MIPS_SYS(sys_fremovexattr, 2) /* 4235 */ |
| 1758 | MIPS_SYS(sys_tkill , 2) |
| 1759 | MIPS_SYS(sys_sendfile64 , 5) |
| 1760 | MIPS_SYS(sys_futex , 2) |
| 1761 | MIPS_SYS(sys_sched_setaffinity, 3) |
| 1762 | MIPS_SYS(sys_sched_getaffinity, 3) /* 4240 */ |
| 1763 | MIPS_SYS(sys_io_setup , 2) |
| 1764 | MIPS_SYS(sys_io_destroy , 1) |
| 1765 | MIPS_SYS(sys_io_getevents, 5) |
| 1766 | MIPS_SYS(sys_io_submit , 3) |
| 1767 | MIPS_SYS(sys_io_cancel , 3) /* 4245 */ |
| 1768 | MIPS_SYS(sys_exit_group , 1) |
| 1769 | MIPS_SYS(sys_lookup_dcookie, 3) |
| 1770 | MIPS_SYS(sys_epoll_create, 1) |
| 1771 | MIPS_SYS(sys_epoll_ctl , 4) |
| 1772 | MIPS_SYS(sys_epoll_wait , 3) /* 4250 */ |
| 1773 | MIPS_SYS(sys_remap_file_pages, 5) |
| 1774 | MIPS_SYS(sys_set_tid_address, 1) |
| 1775 | MIPS_SYS(sys_restart_syscall, 0) |
| 1776 | MIPS_SYS(sys_fadvise64_64, 7) |
| 1777 | MIPS_SYS(sys_statfs64 , 3) /* 4255 */ |
| 1778 | MIPS_SYS(sys_fstatfs64 , 2) |
| 1779 | MIPS_SYS(sys_timer_create, 3) |
| 1780 | MIPS_SYS(sys_timer_settime, 4) |
| 1781 | MIPS_SYS(sys_timer_gettime, 2) |
| 1782 | MIPS_SYS(sys_timer_getoverrun, 1) /* 4260 */ |
| 1783 | MIPS_SYS(sys_timer_delete, 1) |
| 1784 | MIPS_SYS(sys_clock_settime, 2) |
| 1785 | MIPS_SYS(sys_clock_gettime, 2) |
| 1786 | MIPS_SYS(sys_clock_getres, 2) |
| 1787 | MIPS_SYS(sys_clock_nanosleep, 4) /* 4265 */ |
| 1788 | MIPS_SYS(sys_tgkill , 3) |
| 1789 | MIPS_SYS(sys_utimes , 2) |
| 1790 | MIPS_SYS(sys_mbind , 4) |
| 1791 | MIPS_SYS(sys_ni_syscall , 0) /* sys_get_mempolicy */ |
| 1792 | MIPS_SYS(sys_ni_syscall , 0) /* 4270 sys_set_mempolicy */ |
| 1793 | MIPS_SYS(sys_mq_open , 4) |
| 1794 | MIPS_SYS(sys_mq_unlink , 1) |
| 1795 | MIPS_SYS(sys_mq_timedsend, 5) |
| 1796 | MIPS_SYS(sys_mq_timedreceive, 5) |
| 1797 | MIPS_SYS(sys_mq_notify , 2) /* 4275 */ |
| 1798 | MIPS_SYS(sys_mq_getsetattr, 3) |
| 1799 | MIPS_SYS(sys_ni_syscall , 0) /* sys_vserver */ |
| 1800 | MIPS_SYS(sys_waitid , 4) |
| 1801 | MIPS_SYS(sys_ni_syscall , 0) /* available, was setaltroot */ |
| 1802 | MIPS_SYS(sys_add_key , 5) |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1803 | MIPS_SYS(sys_request_key, 4) |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1804 | MIPS_SYS(sys_keyctl , 5) |
ths | 6f5b89a | 2007-03-02 20:48:00 +0000 | [diff] [blame] | 1805 | MIPS_SYS(sys_set_thread_area, 1) |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1806 | MIPS_SYS(sys_inotify_init, 0) |
| 1807 | MIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */ |
| 1808 | MIPS_SYS(sys_inotify_rm_watch, 2) |
| 1809 | MIPS_SYS(sys_migrate_pages, 4) |
| 1810 | MIPS_SYS(sys_openat, 4) |
| 1811 | MIPS_SYS(sys_mkdirat, 3) |
| 1812 | MIPS_SYS(sys_mknodat, 4) /* 4290 */ |
| 1813 | MIPS_SYS(sys_fchownat, 5) |
| 1814 | MIPS_SYS(sys_futimesat, 3) |
| 1815 | MIPS_SYS(sys_fstatat64, 4) |
| 1816 | MIPS_SYS(sys_unlinkat, 3) |
| 1817 | MIPS_SYS(sys_renameat, 4) /* 4295 */ |
| 1818 | MIPS_SYS(sys_linkat, 5) |
| 1819 | MIPS_SYS(sys_symlinkat, 3) |
| 1820 | MIPS_SYS(sys_readlinkat, 4) |
| 1821 | MIPS_SYS(sys_fchmodat, 3) |
| 1822 | MIPS_SYS(sys_faccessat, 3) /* 4300 */ |
| 1823 | MIPS_SYS(sys_pselect6, 6) |
| 1824 | MIPS_SYS(sys_ppoll, 5) |
| 1825 | MIPS_SYS(sys_unshare, 1) |
| 1826 | MIPS_SYS(sys_splice, 4) |
| 1827 | MIPS_SYS(sys_sync_file_range, 7) /* 4305 */ |
| 1828 | MIPS_SYS(sys_tee, 4) |
| 1829 | MIPS_SYS(sys_vmsplice, 4) |
| 1830 | MIPS_SYS(sys_move_pages, 6) |
| 1831 | MIPS_SYS(sys_set_robust_list, 2) |
| 1832 | MIPS_SYS(sys_get_robust_list, 3) /* 4310 */ |
| 1833 | MIPS_SYS(sys_kexec_load, 4) |
| 1834 | MIPS_SYS(sys_getcpu, 3) |
| 1835 | MIPS_SYS(sys_epoll_pwait, 6) |
| 1836 | MIPS_SYS(sys_ioprio_set, 3) |
| 1837 | MIPS_SYS(sys_ioprio_get, 2) |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1838 | }; |
| 1839 | |
| 1840 | #undef MIPS_SYS |
| 1841 | |
Paul Brook | 590bc60 | 2009-07-09 17:45:17 +0100 | [diff] [blame] | 1842 | static int do_store_exclusive(CPUMIPSState *env) |
| 1843 | { |
| 1844 | target_ulong addr; |
| 1845 | target_ulong page_addr; |
| 1846 | target_ulong val; |
| 1847 | int flags; |
| 1848 | int segv = 0; |
| 1849 | int reg; |
| 1850 | int d; |
| 1851 | |
| 1852 | addr = env->CP0_LLAddr; |
| 1853 | page_addr = addr & TARGET_PAGE_MASK; |
| 1854 | start_exclusive(); |
| 1855 | mmap_lock(); |
| 1856 | flags = page_get_flags(page_addr); |
| 1857 | if ((flags & PAGE_READ) == 0) { |
| 1858 | segv = 1; |
| 1859 | } else { |
| 1860 | reg = env->llreg & 0x1f; |
| 1861 | d = (env->llreg & 0x20) != 0; |
| 1862 | if (d) { |
| 1863 | segv = get_user_s64(val, addr); |
| 1864 | } else { |
| 1865 | segv = get_user_s32(val, addr); |
| 1866 | } |
| 1867 | if (!segv) { |
| 1868 | if (val != env->llval) { |
| 1869 | env->active_tc.gpr[reg] = 0; |
| 1870 | } else { |
| 1871 | if (d) { |
| 1872 | segv = put_user_u64(env->llnewval, addr); |
| 1873 | } else { |
| 1874 | segv = put_user_u32(env->llnewval, addr); |
| 1875 | } |
| 1876 | if (!segv) { |
| 1877 | env->active_tc.gpr[reg] = 1; |
| 1878 | } |
| 1879 | } |
| 1880 | } |
| 1881 | } |
| 1882 | env->CP0_LLAddr = -1; |
| 1883 | if (!segv) { |
| 1884 | env->active_tc.PC += 4; |
| 1885 | } |
| 1886 | mmap_unlock(); |
| 1887 | end_exclusive(); |
| 1888 | return segv; |
| 1889 | } |
| 1890 | |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1891 | void cpu_loop(CPUMIPSState *env) |
| 1892 | { |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 1893 | target_siginfo_t info; |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1894 | int trapnr, ret; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1895 | unsigned int syscall_num; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1896 | |
| 1897 | for(;;) { |
Paul Brook | 590bc60 | 2009-07-09 17:45:17 +0100 | [diff] [blame] | 1898 | cpu_exec_start(env); |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1899 | trapnr = cpu_mips_exec(env); |
Paul Brook | 590bc60 | 2009-07-09 17:45:17 +0100 | [diff] [blame] | 1900 | cpu_exec_end(env); |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1901 | switch(trapnr) { |
| 1902 | case EXCP_SYSCALL: |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 1903 | syscall_num = env->active_tc.gpr[2] - 4000; |
| 1904 | env->active_tc.PC += 4; |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1905 | if (syscall_num >= sizeof(mips_syscall_args)) { |
| 1906 | ret = -ENOSYS; |
| 1907 | } else { |
| 1908 | int nb_args; |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 1909 | abi_ulong sp_reg; |
| 1910 | abi_ulong arg5 = 0, arg6 = 0, arg7 = 0, arg8 = 0; |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1911 | |
| 1912 | nb_args = mips_syscall_args[syscall_num]; |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 1913 | sp_reg = env->active_tc.gpr[29]; |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1914 | switch (nb_args) { |
| 1915 | /* these arguments are taken from the stack */ |
bellard | 2f61969 | 2007-11-16 10:46:05 +0000 | [diff] [blame] | 1916 | /* FIXME - what to do if get_user() fails? */ |
| 1917 | case 8: get_user_ual(arg8, sp_reg + 28); |
| 1918 | case 7: get_user_ual(arg7, sp_reg + 24); |
| 1919 | case 6: get_user_ual(arg6, sp_reg + 20); |
| 1920 | case 5: get_user_ual(arg5, sp_reg + 16); |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1921 | default: |
| 1922 | break; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1923 | } |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 1924 | ret = do_syscall(env, env->active_tc.gpr[2], |
| 1925 | env->active_tc.gpr[4], |
| 1926 | env->active_tc.gpr[5], |
| 1927 | env->active_tc.gpr[6], |
| 1928 | env->active_tc.gpr[7], |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1929 | arg5, arg6/*, arg7, arg8*/); |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1930 | } |
pbrook | 0b1bcb0 | 2009-04-21 01:41:10 +0000 | [diff] [blame] | 1931 | if (ret == -TARGET_QEMU_ESIGRETURN) { |
| 1932 | /* Returning from a successful sigreturn syscall. |
| 1933 | Avoid clobbering register state. */ |
| 1934 | break; |
| 1935 | } |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1936 | if ((unsigned int)ret >= (unsigned int)(-1133)) { |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 1937 | env->active_tc.gpr[7] = 1; /* error flag */ |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1938 | ret = -ret; |
| 1939 | } else { |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 1940 | env->active_tc.gpr[7] = 0; /* error flag */ |
ths | 388bb21 | 2007-05-13 13:58:00 +0000 | [diff] [blame] | 1941 | } |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 1942 | env->active_tc.gpr[2] = ret; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1943 | break; |
ths | ca7c2b1 | 2006-12-10 22:08:10 +0000 | [diff] [blame] | 1944 | case EXCP_TLBL: |
| 1945 | case EXCP_TLBS: |
pbrook | e447423 | 2009-04-21 01:03:10 +0000 | [diff] [blame] | 1946 | info.si_signo = TARGET_SIGSEGV; |
| 1947 | info.si_errno = 0; |
| 1948 | /* XXX: check env->error_code */ |
| 1949 | info.si_code = TARGET_SEGV_MAPERR; |
| 1950 | info._sifields._sigfault._addr = env->CP0_BadVAddr; |
| 1951 | queue_signal(env, info.si_signo, &info); |
| 1952 | break; |
bellard | 6900e84 | 2005-12-05 21:04:24 +0000 | [diff] [blame] | 1953 | case EXCP_CpU: |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1954 | case EXCP_RI: |
bellard | bc1ad2d | 2006-06-14 13:37:55 +0000 | [diff] [blame] | 1955 | info.si_signo = TARGET_SIGILL; |
| 1956 | info.si_errno = 0; |
| 1957 | info.si_code = 0; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1958 | queue_signal(env, info.si_signo, &info); |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1959 | break; |
bellard | 106ec87 | 2006-06-27 21:08:10 +0000 | [diff] [blame] | 1960 | case EXCP_INTERRUPT: |
| 1961 | /* just indicate that signals should be handled asap */ |
| 1962 | break; |
pbrook | d08b2a2 | 2006-11-04 16:46:29 +0000 | [diff] [blame] | 1963 | case EXCP_DEBUG: |
| 1964 | { |
| 1965 | int sig; |
| 1966 | |
| 1967 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 1968 | if (sig) |
| 1969 | { |
| 1970 | info.si_signo = sig; |
| 1971 | info.si_errno = 0; |
| 1972 | info.si_code = TARGET_TRAP_BRKPT; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 1973 | queue_signal(env, info.si_signo, &info); |
pbrook | d08b2a2 | 2006-11-04 16:46:29 +0000 | [diff] [blame] | 1974 | } |
| 1975 | } |
| 1976 | break; |
Paul Brook | 590bc60 | 2009-07-09 17:45:17 +0100 | [diff] [blame] | 1977 | case EXCP_SC: |
| 1978 | if (do_store_exclusive(env)) { |
| 1979 | info.si_signo = TARGET_SIGSEGV; |
| 1980 | info.si_errno = 0; |
| 1981 | info.si_code = TARGET_SEGV_MAPERR; |
| 1982 | info._sifields._sigfault._addr = env->active_tc.PC; |
| 1983 | queue_signal(env, info.si_signo, &info); |
| 1984 | } |
| 1985 | break; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1986 | default: |
| 1987 | // error: |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1988 | fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 1989 | trapnr); |
| 1990 | cpu_dump_state(env, stderr, fprintf, 0); |
| 1991 | abort(); |
| 1992 | } |
| 1993 | process_pending_signals(env); |
| 1994 | } |
| 1995 | } |
| 1996 | #endif |
| 1997 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 1998 | #ifdef TARGET_SH4 |
| 1999 | void cpu_loop (CPUState *env) |
| 2000 | { |
| 2001 | int trapnr, ret; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2002 | target_siginfo_t info; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2003 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 2004 | while (1) { |
| 2005 | trapnr = cpu_sh4_exec (env); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2006 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 2007 | switch (trapnr) { |
| 2008 | case 0x160: |
aurel32 | 0b6d3ae | 2008-09-15 07:43:43 +0000 | [diff] [blame] | 2009 | env->pc += 2; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2010 | ret = do_syscall(env, |
| 2011 | env->gregs[3], |
| 2012 | env->gregs[4], |
| 2013 | env->gregs[5], |
| 2014 | env->gregs[6], |
| 2015 | env->gregs[7], |
| 2016 | env->gregs[0], |
ths | fca743f | 2007-11-20 15:22:44 +0000 | [diff] [blame] | 2017 | env->gregs[1]); |
pbrook | 9c2a9ea | 2006-06-18 19:12:54 +0000 | [diff] [blame] | 2018 | env->gregs[0] = ret; |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 2019 | break; |
ths | c3b5bc8 | 2007-12-02 06:31:25 +0000 | [diff] [blame] | 2020 | case EXCP_INTERRUPT: |
| 2021 | /* just indicate that signals should be handled asap */ |
| 2022 | break; |
pbrook | 355fb23 | 2006-06-17 19:58:25 +0000 | [diff] [blame] | 2023 | case EXCP_DEBUG: |
| 2024 | { |
| 2025 | int sig; |
| 2026 | |
| 2027 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 2028 | if (sig) |
| 2029 | { |
| 2030 | info.si_signo = sig; |
| 2031 | info.si_errno = 0; |
| 2032 | info.si_code = TARGET_TRAP_BRKPT; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2033 | queue_signal(env, info.si_signo, &info); |
pbrook | 355fb23 | 2006-06-17 19:58:25 +0000 | [diff] [blame] | 2034 | } |
| 2035 | } |
| 2036 | break; |
ths | c3b5bc8 | 2007-12-02 06:31:25 +0000 | [diff] [blame] | 2037 | case 0xa0: |
| 2038 | case 0xc0: |
| 2039 | info.si_signo = SIGSEGV; |
| 2040 | info.si_errno = 0; |
| 2041 | info.si_code = TARGET_SEGV_MAPERR; |
| 2042 | info._sifields._sigfault._addr = env->tea; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2043 | queue_signal(env, info.si_signo, &info); |
ths | c3b5bc8 | 2007-12-02 06:31:25 +0000 | [diff] [blame] | 2044 | break; |
| 2045 | |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 2046 | default: |
| 2047 | printf ("Unhandled trap: 0x%x\n", trapnr); |
| 2048 | cpu_dump_state(env, stderr, fprintf, 0); |
| 2049 | exit (1); |
| 2050 | } |
| 2051 | process_pending_signals (env); |
| 2052 | } |
| 2053 | } |
| 2054 | #endif |
| 2055 | |
ths | 48733d1 | 2007-10-08 13:36:46 +0000 | [diff] [blame] | 2056 | #ifdef TARGET_CRIS |
| 2057 | void cpu_loop (CPUState *env) |
| 2058 | { |
| 2059 | int trapnr, ret; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2060 | target_siginfo_t info; |
ths | 48733d1 | 2007-10-08 13:36:46 +0000 | [diff] [blame] | 2061 | |
| 2062 | while (1) { |
| 2063 | trapnr = cpu_cris_exec (env); |
| 2064 | switch (trapnr) { |
| 2065 | case 0xaa: |
| 2066 | { |
| 2067 | info.si_signo = SIGSEGV; |
| 2068 | info.si_errno = 0; |
| 2069 | /* XXX: check env->error_code */ |
| 2070 | info.si_code = TARGET_SEGV_MAPERR; |
edgar_igl | e00c1e7 | 2008-05-27 21:12:09 +0000 | [diff] [blame] | 2071 | info._sifields._sigfault._addr = env->pregs[PR_EDA]; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2072 | queue_signal(env, info.si_signo, &info); |
ths | 48733d1 | 2007-10-08 13:36:46 +0000 | [diff] [blame] | 2073 | } |
| 2074 | break; |
edgar_igl | b6d3abd | 2008-02-28 11:29:27 +0000 | [diff] [blame] | 2075 | case EXCP_INTERRUPT: |
| 2076 | /* just indicate that signals should be handled asap */ |
| 2077 | break; |
ths | 48733d1 | 2007-10-08 13:36:46 +0000 | [diff] [blame] | 2078 | case EXCP_BREAK: |
| 2079 | ret = do_syscall(env, |
| 2080 | env->regs[9], |
| 2081 | env->regs[10], |
| 2082 | env->regs[11], |
| 2083 | env->regs[12], |
| 2084 | env->regs[13], |
| 2085 | env->pregs[7], |
| 2086 | env->pregs[11]); |
| 2087 | env->regs[10] = ret; |
ths | 48733d1 | 2007-10-08 13:36:46 +0000 | [diff] [blame] | 2088 | break; |
| 2089 | case EXCP_DEBUG: |
| 2090 | { |
| 2091 | int sig; |
| 2092 | |
| 2093 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 2094 | if (sig) |
| 2095 | { |
| 2096 | info.si_signo = sig; |
| 2097 | info.si_errno = 0; |
| 2098 | info.si_code = TARGET_TRAP_BRKPT; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2099 | queue_signal(env, info.si_signo, &info); |
ths | 48733d1 | 2007-10-08 13:36:46 +0000 | [diff] [blame] | 2100 | } |
| 2101 | } |
| 2102 | break; |
| 2103 | default: |
| 2104 | printf ("Unhandled trap: 0x%x\n", trapnr); |
| 2105 | cpu_dump_state(env, stderr, fprintf, 0); |
| 2106 | exit (1); |
| 2107 | } |
| 2108 | process_pending_signals (env); |
| 2109 | } |
| 2110 | } |
| 2111 | #endif |
| 2112 | |
Edgar E. Iglesias | b779e29 | 2009-05-20 21:31:33 +0200 | [diff] [blame] | 2113 | #ifdef TARGET_MICROBLAZE |
| 2114 | void cpu_loop (CPUState *env) |
| 2115 | { |
| 2116 | int trapnr, ret; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2117 | target_siginfo_t info; |
Edgar E. Iglesias | b779e29 | 2009-05-20 21:31:33 +0200 | [diff] [blame] | 2118 | |
| 2119 | while (1) { |
| 2120 | trapnr = cpu_mb_exec (env); |
| 2121 | switch (trapnr) { |
| 2122 | case 0xaa: |
| 2123 | { |
| 2124 | info.si_signo = SIGSEGV; |
| 2125 | info.si_errno = 0; |
| 2126 | /* XXX: check env->error_code */ |
| 2127 | info.si_code = TARGET_SEGV_MAPERR; |
| 2128 | info._sifields._sigfault._addr = 0; |
| 2129 | queue_signal(env, info.si_signo, &info); |
| 2130 | } |
| 2131 | break; |
| 2132 | case EXCP_INTERRUPT: |
| 2133 | /* just indicate that signals should be handled asap */ |
| 2134 | break; |
| 2135 | case EXCP_BREAK: |
| 2136 | /* Return address is 4 bytes after the call. */ |
| 2137 | env->regs[14] += 4; |
| 2138 | ret = do_syscall(env, |
| 2139 | env->regs[12], |
| 2140 | env->regs[5], |
| 2141 | env->regs[6], |
| 2142 | env->regs[7], |
| 2143 | env->regs[8], |
| 2144 | env->regs[9], |
| 2145 | env->regs[10]); |
| 2146 | env->regs[3] = ret; |
| 2147 | env->sregs[SR_PC] = env->regs[14]; |
| 2148 | break; |
| 2149 | case EXCP_DEBUG: |
| 2150 | { |
| 2151 | int sig; |
| 2152 | |
| 2153 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 2154 | if (sig) |
| 2155 | { |
| 2156 | info.si_signo = sig; |
| 2157 | info.si_errno = 0; |
| 2158 | info.si_code = TARGET_TRAP_BRKPT; |
| 2159 | queue_signal(env, info.si_signo, &info); |
| 2160 | } |
| 2161 | } |
| 2162 | break; |
| 2163 | default: |
| 2164 | printf ("Unhandled trap: 0x%x\n", trapnr); |
| 2165 | cpu_dump_state(env, stderr, fprintf, 0); |
| 2166 | exit (1); |
| 2167 | } |
| 2168 | process_pending_signals (env); |
| 2169 | } |
| 2170 | } |
| 2171 | #endif |
| 2172 | |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2173 | #ifdef TARGET_M68K |
| 2174 | |
| 2175 | void cpu_loop(CPUM68KState *env) |
| 2176 | { |
| 2177 | int trapnr; |
| 2178 | unsigned int n; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2179 | target_siginfo_t info; |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2180 | TaskState *ts = env->opaque; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2181 | |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2182 | for(;;) { |
| 2183 | trapnr = cpu_m68k_exec(env); |
| 2184 | switch(trapnr) { |
| 2185 | case EXCP_ILLEGAL: |
| 2186 | { |
| 2187 | if (ts->sim_syscalls) { |
| 2188 | uint16_t nr; |
| 2189 | nr = lduw(env->pc + 2); |
| 2190 | env->pc += 4; |
| 2191 | do_m68k_simcall(env, nr); |
| 2192 | } else { |
| 2193 | goto do_sigill; |
| 2194 | } |
| 2195 | } |
| 2196 | break; |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 2197 | case EXCP_HALT_INSN: |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2198 | /* Semihosing syscall. */ |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 2199 | env->pc += 4; |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2200 | do_m68k_semihosting(env, env->dregs[0]); |
| 2201 | break; |
| 2202 | case EXCP_LINEA: |
| 2203 | case EXCP_LINEF: |
| 2204 | case EXCP_UNSUPPORTED: |
| 2205 | do_sigill: |
| 2206 | info.si_signo = SIGILL; |
| 2207 | info.si_errno = 0; |
| 2208 | info.si_code = TARGET_ILL_ILLOPN; |
| 2209 | info._sifields._sigfault._addr = env->pc; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2210 | queue_signal(env, info.si_signo, &info); |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2211 | break; |
| 2212 | case EXCP_TRAP0: |
| 2213 | { |
| 2214 | ts->sim_syscalls = 0; |
| 2215 | n = env->dregs[0]; |
| 2216 | env->pc += 2; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2217 | env->dregs[0] = do_syscall(env, |
| 2218 | n, |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2219 | env->dregs[1], |
| 2220 | env->dregs[2], |
| 2221 | env->dregs[3], |
| 2222 | env->dregs[4], |
| 2223 | env->dregs[5], |
pbrook | bb7ec04 | 2008-03-25 22:28:25 +0000 | [diff] [blame] | 2224 | env->aregs[0]); |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2225 | } |
| 2226 | break; |
| 2227 | case EXCP_INTERRUPT: |
| 2228 | /* just indicate that signals should be handled asap */ |
| 2229 | break; |
| 2230 | case EXCP_ACCESS: |
| 2231 | { |
| 2232 | info.si_signo = SIGSEGV; |
| 2233 | info.si_errno = 0; |
| 2234 | /* XXX: check env->error_code */ |
| 2235 | info.si_code = TARGET_SEGV_MAPERR; |
| 2236 | info._sifields._sigfault._addr = env->mmu.ar; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2237 | queue_signal(env, info.si_signo, &info); |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2238 | } |
| 2239 | break; |
| 2240 | case EXCP_DEBUG: |
| 2241 | { |
| 2242 | int sig; |
| 2243 | |
| 2244 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 2245 | if (sig) |
| 2246 | { |
| 2247 | info.si_signo = sig; |
| 2248 | info.si_errno = 0; |
| 2249 | info.si_code = TARGET_TRAP_BRKPT; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2250 | queue_signal(env, info.si_signo, &info); |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2251 | } |
| 2252 | } |
| 2253 | break; |
| 2254 | default: |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2255 | fprintf(stderr, "qemu: unhandled CPU exception 0x%x - aborting\n", |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2256 | trapnr); |
| 2257 | cpu_dump_state(env, stderr, fprintf, 0); |
| 2258 | abort(); |
| 2259 | } |
| 2260 | process_pending_signals(env); |
| 2261 | } |
| 2262 | } |
| 2263 | #endif /* TARGET_M68K */ |
| 2264 | |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2265 | #ifdef TARGET_ALPHA |
| 2266 | void cpu_loop (CPUState *env) |
| 2267 | { |
j_mayer | e96efcf | 2007-04-14 12:17:09 +0000 | [diff] [blame] | 2268 | int trapnr; |
Anthony Liguori | c227f09 | 2009-10-01 16:12:16 -0500 | [diff] [blame] | 2269 | target_siginfo_t info; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2270 | |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2271 | while (1) { |
| 2272 | trapnr = cpu_alpha_exec (env); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2273 | |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2274 | switch (trapnr) { |
| 2275 | case EXCP_RESET: |
| 2276 | fprintf(stderr, "Reset requested. Exit\n"); |
| 2277 | exit(1); |
| 2278 | break; |
| 2279 | case EXCP_MCHK: |
| 2280 | fprintf(stderr, "Machine check exception. Exit\n"); |
| 2281 | exit(1); |
| 2282 | break; |
| 2283 | case EXCP_ARITH: |
| 2284 | fprintf(stderr, "Arithmetic trap.\n"); |
| 2285 | exit(1); |
| 2286 | break; |
| 2287 | case EXCP_HW_INTERRUPT: |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2288 | fprintf(stderr, "External interrupt. Exit\n"); |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2289 | exit(1); |
| 2290 | break; |
| 2291 | case EXCP_DFAULT: |
| 2292 | fprintf(stderr, "MMU data fault\n"); |
| 2293 | exit(1); |
| 2294 | break; |
| 2295 | case EXCP_DTB_MISS_PAL: |
| 2296 | fprintf(stderr, "MMU data TLB miss in PALcode\n"); |
| 2297 | exit(1); |
| 2298 | break; |
| 2299 | case EXCP_ITB_MISS: |
| 2300 | fprintf(stderr, "MMU instruction TLB miss\n"); |
| 2301 | exit(1); |
| 2302 | break; |
| 2303 | case EXCP_ITB_ACV: |
| 2304 | fprintf(stderr, "MMU instruction access violation\n"); |
| 2305 | exit(1); |
| 2306 | break; |
| 2307 | case EXCP_DTB_MISS_NATIVE: |
| 2308 | fprintf(stderr, "MMU data TLB miss\n"); |
| 2309 | exit(1); |
| 2310 | break; |
| 2311 | case EXCP_UNALIGN: |
| 2312 | fprintf(stderr, "Unaligned access\n"); |
| 2313 | exit(1); |
| 2314 | break; |
| 2315 | case EXCP_OPCDEC: |
| 2316 | fprintf(stderr, "Invalid instruction\n"); |
| 2317 | exit(1); |
| 2318 | break; |
| 2319 | case EXCP_FEN: |
| 2320 | fprintf(stderr, "Floating-point not allowed\n"); |
| 2321 | exit(1); |
| 2322 | break; |
| 2323 | case EXCP_CALL_PAL ... (EXCP_CALL_PALP - 1): |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2324 | call_pal(env, (trapnr >> 6) | 0x80); |
| 2325 | break; |
| 2326 | case EXCP_CALL_PALP ... (EXCP_CALL_PALE - 1): |
blueswir1 | 7f75ffd | 2007-05-27 19:39:27 +0000 | [diff] [blame] | 2327 | fprintf(stderr, "Privileged call to PALcode\n"); |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2328 | exit(1); |
| 2329 | break; |
| 2330 | case EXCP_DEBUG: |
| 2331 | { |
| 2332 | int sig; |
| 2333 | |
| 2334 | sig = gdb_handlesig (env, TARGET_SIGTRAP); |
| 2335 | if (sig) |
| 2336 | { |
| 2337 | info.si_signo = sig; |
| 2338 | info.si_errno = 0; |
| 2339 | info.si_code = TARGET_TRAP_BRKPT; |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2340 | queue_signal(env, info.si_signo, &info); |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2341 | } |
| 2342 | } |
| 2343 | break; |
| 2344 | default: |
| 2345 | printf ("Unhandled trap: 0x%x\n", trapnr); |
| 2346 | cpu_dump_state(env, stderr, fprintf, 0); |
| 2347 | exit (1); |
| 2348 | } |
| 2349 | process_pending_signals (env); |
| 2350 | } |
| 2351 | } |
| 2352 | #endif /* TARGET_ALPHA */ |
| 2353 | |
blueswir1 | 8fcd369 | 2008-08-17 20:26:25 +0000 | [diff] [blame] | 2354 | static void usage(void) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2355 | { |
pbrook | 4a19f1e | 2009-04-07 23:17:49 +0000 | [diff] [blame] | 2356 | printf("qemu-" TARGET_ARCH " version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n" |
bellard | 68d0f70 | 2008-01-06 17:21:48 +0000 | [diff] [blame] | 2357 | "usage: qemu-" TARGET_ARCH " [options] program [arguments...]\n" |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2358 | "Linux CPU emulator (compiled for %s emulation)\n" |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2359 | "\n" |
bellard | 68d0f70 | 2008-01-06 17:21:48 +0000 | [diff] [blame] | 2360 | "Standard options:\n" |
ths | b12b6a1 | 2007-06-17 16:38:39 +0000 | [diff] [blame] | 2361 | "-h print this help\n" |
| 2362 | "-g port wait gdb connection to port\n" |
| 2363 | "-L path set the elf interpreter prefix (default=%s)\n" |
| 2364 | "-s size set the stack size in bytes (default=%ld)\n" |
| 2365 | "-cpu model select CPU (-cpu ? for list)\n" |
| 2366 | "-drop-ld-preload drop LD_PRELOAD for target process\n" |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 2367 | "-E var=value sets/modifies targets environment variable(s)\n" |
| 2368 | "-U var unsets targets environment variable(s)\n" |
aurel32 | 7d8cec9 | 2009-04-15 16:11:52 +0000 | [diff] [blame] | 2369 | "-0 argv0 forces target process argv[0] to be argv0\n" |
Paul Brook | 379f669 | 2009-07-17 12:48:08 +0100 | [diff] [blame] | 2370 | #if defined(CONFIG_USE_GUEST_BASE) |
| 2371 | "-B address set guest_base address to address\n" |
| 2372 | #endif |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 2373 | "\n" |
bellard | 68d0f70 | 2008-01-06 17:21:48 +0000 | [diff] [blame] | 2374 | "Debug options:\n" |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 2375 | "-d options activate log (logfile=%s)\n" |
bellard | b674195 | 2007-11-11 14:46:06 +0000 | [diff] [blame] | 2376 | "-p pagesize set the host page size to 'pagesize'\n" |
aurel32 | 1b530a6 | 2009-04-05 20:08:59 +0000 | [diff] [blame] | 2377 | "-singlestep always run in singlestep mode\n" |
balrog | b01bcae | 2007-12-16 13:05:59 +0000 | [diff] [blame] | 2378 | "-strace log system calls\n" |
| 2379 | "\n" |
bellard | 68d0f70 | 2008-01-06 17:21:48 +0000 | [diff] [blame] | 2380 | "Environment variables:\n" |
balrog | b01bcae | 2007-12-16 13:05:59 +0000 | [diff] [blame] | 2381 | "QEMU_STRACE Print system calls and arguments similar to the\n" |
| 2382 | " 'strace' program. Enable by setting to any value.\n" |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 2383 | "You can use -E and -U options to set/unset environment variables\n" |
| 2384 | "for target process. It is possible to provide several variables\n" |
| 2385 | "by repeating the option. For example:\n" |
| 2386 | " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n" |
| 2387 | "Note that if you provide several changes to single variable\n" |
| 2388 | "last change will stay in effect.\n" |
balrog | b01bcae | 2007-12-16 13:05:59 +0000 | [diff] [blame] | 2389 | , |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2390 | TARGET_ARCH, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2391 | interp_prefix, |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 2392 | x86_stack_size, |
| 2393 | DEBUG_LOGFILE); |
blueswir1 | 2d18e63 | 2009-02-28 20:14:00 +0000 | [diff] [blame] | 2394 | exit(1); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2395 | } |
| 2396 | |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 2397 | THREAD CPUState *thread_env; |
bellard | 59faf6d | 2003-06-25 16:18:50 +0000 | [diff] [blame] | 2398 | |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2399 | void task_settid(TaskState *ts) |
| 2400 | { |
| 2401 | if (ts->ts_tid == 0) { |
Juan Quintela | 2f7bb87 | 2009-07-27 16:13:24 +0200 | [diff] [blame] | 2402 | #ifdef CONFIG_USE_NPTL |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2403 | ts->ts_tid = (pid_t)syscall(SYS_gettid); |
| 2404 | #else |
| 2405 | /* when no threads are used, tid becomes pid */ |
| 2406 | ts->ts_tid = getpid(); |
| 2407 | #endif |
| 2408 | } |
| 2409 | } |
| 2410 | |
| 2411 | void stop_all_tasks(void) |
| 2412 | { |
| 2413 | /* |
| 2414 | * We trust that when using NPTL, start_exclusive() |
| 2415 | * handles thread stopping correctly. |
| 2416 | */ |
| 2417 | start_exclusive(); |
| 2418 | } |
| 2419 | |
pbrook | c3a9283 | 2008-06-09 14:02:50 +0000 | [diff] [blame] | 2420 | /* Assumes contents are already zeroed. */ |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2421 | void init_task_state(TaskState *ts) |
| 2422 | { |
| 2423 | int i; |
| 2424 | |
pbrook | 624f797 | 2008-05-31 16:11:38 +0000 | [diff] [blame] | 2425 | ts->used = 1; |
| 2426 | ts->first_free = ts->sigqueue_table; |
| 2427 | for (i = 0; i < MAX_SIGQUEUE_SIZE - 1; i++) { |
| 2428 | ts->sigqueue_table[i].next = &ts->sigqueue_table[i + 1]; |
| 2429 | } |
| 2430 | ts->sigqueue_table[i].next = NULL; |
| 2431 | } |
| 2432 | |
malc | 902b3d5 | 2008-12-10 19:18:40 +0000 | [diff] [blame] | 2433 | int main(int argc, char **argv, char **envp) |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2434 | { |
| 2435 | const char *filename; |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 2436 | const char *cpu_model; |
bellard | 01ffc75 | 2003-02-18 23:00:51 +0000 | [diff] [blame] | 2437 | struct target_pt_regs regs1, *regs = ®s1; |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2438 | struct image_info info1, *info = &info1; |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2439 | struct linux_binprm bprm; |
bellard | 851e67a | 2003-03-29 16:53:14 +0000 | [diff] [blame] | 2440 | TaskState ts1, *ts = &ts1; |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2441 | CPUState *env; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 2442 | int optind; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2443 | const char *r; |
bellard | 74c33be | 2005-10-30 21:01:05 +0000 | [diff] [blame] | 2444 | int gdbstub_port = 0; |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 2445 | char **target_environ, **wrk; |
aurel32 | 7d8cec9 | 2009-04-15 16:11:52 +0000 | [diff] [blame] | 2446 | char **target_argv; |
| 2447 | int target_argc; |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 2448 | envlist_t *envlist = NULL; |
aurel32 | 7d8cec9 | 2009-04-15 16:11:52 +0000 | [diff] [blame] | 2449 | const char *argv0 = NULL; |
| 2450 | int i; |
Arnaud Patard | fd4d81d | 2009-06-19 10:39:36 +0300 | [diff] [blame] | 2451 | int ret; |
ths | b12b6a1 | 2007-06-17 16:38:39 +0000 | [diff] [blame] | 2452 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2453 | if (argc <= 1) |
pbrook | 44de1b3 | 2008-03-26 22:40:25 +0000 | [diff] [blame] | 2454 | usage(); |
bellard | f801f97 | 2003-04-07 21:31:06 +0000 | [diff] [blame] | 2455 | |
malc | 902b3d5 | 2008-12-10 19:18:40 +0000 | [diff] [blame] | 2456 | qemu_cache_utils_init(envp); |
| 2457 | |
bellard | cc38b84 | 2003-10-27 21:16:14 +0000 | [diff] [blame] | 2458 | /* init debug */ |
| 2459 | cpu_set_log_filename(DEBUG_LOGFILE); |
| 2460 | |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 2461 | if ((envlist = envlist_create()) == NULL) { |
| 2462 | (void) fprintf(stderr, "Unable to allocate envlist\n"); |
| 2463 | exit(1); |
| 2464 | } |
| 2465 | |
| 2466 | /* add current environment into the list */ |
| 2467 | for (wrk = environ; *wrk != NULL; wrk++) { |
| 2468 | (void) envlist_setenv(envlist, *wrk); |
| 2469 | } |
| 2470 | |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 2471 | cpu_model = NULL; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 2472 | optind = 1; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2473 | for(;;) { |
| 2474 | if (optind >= argc) |
| 2475 | break; |
| 2476 | r = argv[optind]; |
| 2477 | if (r[0] != '-') |
| 2478 | break; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 2479 | optind++; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2480 | r++; |
| 2481 | if (!strcmp(r, "-")) { |
| 2482 | break; |
| 2483 | } else if (!strcmp(r, "d")) { |
bellard | e19e89a | 2004-03-21 17:08:23 +0000 | [diff] [blame] | 2484 | int mask; |
blueswir1 | c7cd6a3 | 2008-10-02 18:27:46 +0000 | [diff] [blame] | 2485 | const CPULogItem *item; |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 2486 | |
| 2487 | if (optind >= argc) |
| 2488 | break; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2489 | |
bellard | 6f1f31c | 2004-04-25 18:00:45 +0000 | [diff] [blame] | 2490 | r = argv[optind++]; |
| 2491 | mask = cpu_str_to_log_mask(r); |
bellard | e19e89a | 2004-03-21 17:08:23 +0000 | [diff] [blame] | 2492 | if (!mask) { |
| 2493 | printf("Log items (comma separated):\n"); |
| 2494 | for(item = cpu_log_items; item->mask != 0; item++) { |
| 2495 | printf("%-10s %s\n", item->name, item->help); |
| 2496 | } |
| 2497 | exit(1); |
| 2498 | } |
| 2499 | cpu_set_log(mask); |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 2500 | } else if (!strcmp(r, "E")) { |
| 2501 | r = argv[optind++]; |
| 2502 | if (envlist_setenv(envlist, r) != 0) |
| 2503 | usage(); |
| 2504 | } else if (!strcmp(r, "U")) { |
| 2505 | r = argv[optind++]; |
| 2506 | if (envlist_unsetenv(envlist, r) != 0) |
| 2507 | usage(); |
aurel32 | 7d8cec9 | 2009-04-15 16:11:52 +0000 | [diff] [blame] | 2508 | } else if (!strcmp(r, "0")) { |
| 2509 | r = argv[optind++]; |
| 2510 | argv0 = r; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2511 | } else if (!strcmp(r, "s")) { |
aurel32 | 491150d | 2009-02-09 19:02:09 +0000 | [diff] [blame] | 2512 | if (optind >= argc) |
| 2513 | break; |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2514 | r = argv[optind++]; |
| 2515 | x86_stack_size = strtol(r, (char **)&r, 0); |
| 2516 | if (x86_stack_size <= 0) |
pbrook | 44de1b3 | 2008-03-26 22:40:25 +0000 | [diff] [blame] | 2517 | usage(); |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2518 | if (*r == 'M') |
| 2519 | x86_stack_size *= 1024 * 1024; |
| 2520 | else if (*r == 'k' || *r == 'K') |
| 2521 | x86_stack_size *= 1024; |
| 2522 | } else if (!strcmp(r, "L")) { |
| 2523 | interp_prefix = argv[optind++]; |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 2524 | } else if (!strcmp(r, "p")) { |
aurel32 | 491150d | 2009-02-09 19:02:09 +0000 | [diff] [blame] | 2525 | if (optind >= argc) |
| 2526 | break; |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2527 | qemu_host_page_size = atoi(argv[optind++]); |
| 2528 | if (qemu_host_page_size == 0 || |
| 2529 | (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) { |
bellard | 5493600 | 2003-05-13 00:25:15 +0000 | [diff] [blame] | 2530 | fprintf(stderr, "page size must be a power of two\n"); |
| 2531 | exit(1); |
| 2532 | } |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 2533 | } else if (!strcmp(r, "g")) { |
aurel32 | 491150d | 2009-02-09 19:02:09 +0000 | [diff] [blame] | 2534 | if (optind >= argc) |
| 2535 | break; |
bellard | 74c33be | 2005-10-30 21:01:05 +0000 | [diff] [blame] | 2536 | gdbstub_port = atoi(argv[optind++]); |
pbrook | c593722 | 2006-05-14 11:30:38 +0000 | [diff] [blame] | 2537 | } else if (!strcmp(r, "r")) { |
| 2538 | qemu_uname_release = argv[optind++]; |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 2539 | } else if (!strcmp(r, "cpu")) { |
| 2540 | cpu_model = argv[optind++]; |
aurel32 | 491150d | 2009-02-09 19:02:09 +0000 | [diff] [blame] | 2541 | if (cpu_model == NULL || strcmp(cpu_model, "?") == 0) { |
j_mayer | c732abe | 2007-10-12 06:47:46 +0000 | [diff] [blame] | 2542 | /* XXX: implement xxx_cpu_list for targets that still miss it */ |
| 2543 | #if defined(cpu_list) |
| 2544 | cpu_list(stdout, &fprintf); |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 2545 | #endif |
blueswir1 | 2d18e63 | 2009-02-28 20:14:00 +0000 | [diff] [blame] | 2546 | exit(1); |
j_mayer | b1f9be3 | 2007-03-19 08:08:28 +0000 | [diff] [blame] | 2547 | } |
Paul Brook | 379f669 | 2009-07-17 12:48:08 +0100 | [diff] [blame] | 2548 | #if defined(CONFIG_USE_GUEST_BASE) |
| 2549 | } else if (!strcmp(r, "B")) { |
| 2550 | guest_base = strtol(argv[optind++], NULL, 0); |
| 2551 | have_guest_base = 1; |
| 2552 | #endif |
ths | b12b6a1 | 2007-06-17 16:38:39 +0000 | [diff] [blame] | 2553 | } else if (!strcmp(r, "drop-ld-preload")) { |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 2554 | (void) envlist_unsetenv(envlist, "LD_PRELOAD"); |
aurel32 | 1b530a6 | 2009-04-05 20:08:59 +0000 | [diff] [blame] | 2555 | } else if (!strcmp(r, "singlestep")) { |
| 2556 | singlestep = 1; |
bellard | b674195 | 2007-11-11 14:46:06 +0000 | [diff] [blame] | 2557 | } else if (!strcmp(r, "strace")) { |
| 2558 | do_strace = 1; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2559 | } else |
bellard | c698105 | 2004-02-16 21:49:03 +0000 | [diff] [blame] | 2560 | { |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2561 | usage(); |
| 2562 | } |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 2563 | } |
bellard | d691f66 | 2003-03-24 21:58:34 +0000 | [diff] [blame] | 2564 | if (optind >= argc) |
| 2565 | usage(); |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 2566 | filename = argv[optind]; |
aurel32 | d088d66 | 2009-01-30 20:09:01 +0000 | [diff] [blame] | 2567 | exec_path = argv[optind]; |
bellard | 586314f | 2003-03-03 15:02:29 +0000 | [diff] [blame] | 2568 | |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2569 | /* Zero out regs */ |
bellard | 01ffc75 | 2003-02-18 23:00:51 +0000 | [diff] [blame] | 2570 | memset(regs, 0, sizeof(struct target_pt_regs)); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2571 | |
| 2572 | /* Zero out image_info */ |
| 2573 | memset(info, 0, sizeof(struct image_info)); |
| 2574 | |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2575 | memset(&bprm, 0, sizeof (bprm)); |
| 2576 | |
bellard | 74cd30b | 2003-04-11 00:13:41 +0000 | [diff] [blame] | 2577 | /* Scan interp_prefix dir for replacement files. */ |
| 2578 | init_paths(interp_prefix); |
| 2579 | |
bellard | 46027c0 | 2007-11-08 13:56:19 +0000 | [diff] [blame] | 2580 | if (cpu_model == NULL) { |
bellard | aaed909 | 2007-11-10 15:15:54 +0000 | [diff] [blame] | 2581 | #if defined(TARGET_I386) |
bellard | 46027c0 | 2007-11-08 13:56:19 +0000 | [diff] [blame] | 2582 | #ifdef TARGET_X86_64 |
| 2583 | cpu_model = "qemu64"; |
| 2584 | #else |
| 2585 | cpu_model = "qemu32"; |
| 2586 | #endif |
bellard | aaed909 | 2007-11-10 15:15:54 +0000 | [diff] [blame] | 2587 | #elif defined(TARGET_ARM) |
pbrook | 088ab16 | 2009-04-09 15:20:50 +0000 | [diff] [blame] | 2588 | cpu_model = "any"; |
bellard | aaed909 | 2007-11-10 15:15:54 +0000 | [diff] [blame] | 2589 | #elif defined(TARGET_M68K) |
| 2590 | cpu_model = "any"; |
| 2591 | #elif defined(TARGET_SPARC) |
| 2592 | #ifdef TARGET_SPARC64 |
| 2593 | cpu_model = "TI UltraSparc II"; |
| 2594 | #else |
| 2595 | cpu_model = "Fujitsu MB86904"; |
bellard | 46027c0 | 2007-11-08 13:56:19 +0000 | [diff] [blame] | 2596 | #endif |
bellard | aaed909 | 2007-11-10 15:15:54 +0000 | [diff] [blame] | 2597 | #elif defined(TARGET_MIPS) |
| 2598 | #if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64) |
| 2599 | cpu_model = "20Kc"; |
| 2600 | #else |
| 2601 | cpu_model = "24Kf"; |
| 2602 | #endif |
| 2603 | #elif defined(TARGET_PPC) |
bellard | 7ded4f5 | 2007-11-15 15:37:50 +0000 | [diff] [blame] | 2604 | #ifdef TARGET_PPC64 |
| 2605 | cpu_model = "970"; |
| 2606 | #else |
bellard | aaed909 | 2007-11-10 15:15:54 +0000 | [diff] [blame] | 2607 | cpu_model = "750"; |
bellard | 7ded4f5 | 2007-11-15 15:37:50 +0000 | [diff] [blame] | 2608 | #endif |
bellard | aaed909 | 2007-11-10 15:15:54 +0000 | [diff] [blame] | 2609 | #else |
| 2610 | cpu_model = "any"; |
| 2611 | #endif |
| 2612 | } |
bellard | 26a5f13 | 2008-05-28 12:30:31 +0000 | [diff] [blame] | 2613 | cpu_exec_init_all(0); |
bellard | 83fb7ad | 2004-07-05 21:25:26 +0000 | [diff] [blame] | 2614 | /* NOTE: we need to init the CPU at this stage to get |
| 2615 | qemu_host_page_size */ |
bellard | aaed909 | 2007-11-10 15:15:54 +0000 | [diff] [blame] | 2616 | env = cpu_init(cpu_model); |
| 2617 | if (!env) { |
| 2618 | fprintf(stderr, "Unable to find CPU definition\n"); |
| 2619 | exit(1); |
| 2620 | } |
Blue Swirl | b55a37c | 2009-11-07 10:37:06 +0000 | [diff] [blame^] | 2621 | #if defined(TARGET_I386) || defined(TARGET_SPARC) || defined(TARGET_PPC) |
| 2622 | cpu_reset(env); |
| 2623 | #endif |
| 2624 | |
pbrook | d597536 | 2008-06-07 20:50:51 +0000 | [diff] [blame] | 2625 | thread_env = env; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2626 | |
bellard | b674195 | 2007-11-11 14:46:06 +0000 | [diff] [blame] | 2627 | if (getenv("QEMU_STRACE")) { |
| 2628 | do_strace = 1; |
ths | b92c47c | 2007-11-01 00:07:38 +0000 | [diff] [blame] | 2629 | } |
| 2630 | |
aurel32 | 04a6dfe | 2009-01-30 19:59:17 +0000 | [diff] [blame] | 2631 | target_environ = envlist_to_environ(envlist, NULL); |
| 2632 | envlist_free(envlist); |
ths | b12b6a1 | 2007-06-17 16:38:39 +0000 | [diff] [blame] | 2633 | |
Paul Brook | 379f669 | 2009-07-17 12:48:08 +0100 | [diff] [blame] | 2634 | #if defined(CONFIG_USE_GUEST_BASE) |
| 2635 | /* |
| 2636 | * Now that page sizes are configured in cpu_init() we can do |
| 2637 | * proper page alignment for guest_base. |
| 2638 | */ |
| 2639 | guest_base = HOST_PAGE_ALIGN(guest_base); |
| 2640 | |
| 2641 | /* |
| 2642 | * Read in mmap_min_addr kernel parameter. This value is used |
| 2643 | * When loading the ELF image to determine whether guest_base |
| 2644 | * is needed. |
| 2645 | * |
| 2646 | * When user has explicitly set the quest base, we skip this |
| 2647 | * test. |
| 2648 | */ |
| 2649 | if (!have_guest_base) { |
| 2650 | FILE *fp; |
| 2651 | |
| 2652 | if ((fp = fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL) { |
| 2653 | unsigned long tmp; |
| 2654 | if (fscanf(fp, "%lu", &tmp) == 1) { |
| 2655 | mmap_min_addr = tmp; |
| 2656 | qemu_log("host mmap_min_addr=0x%lx\n", mmap_min_addr); |
| 2657 | } |
| 2658 | fclose(fp); |
| 2659 | } |
| 2660 | } |
| 2661 | #endif /* CONFIG_USE_GUEST_BASE */ |
| 2662 | |
aurel32 | 7d8cec9 | 2009-04-15 16:11:52 +0000 | [diff] [blame] | 2663 | /* |
| 2664 | * Prepare copy of argv vector for target. |
| 2665 | */ |
| 2666 | target_argc = argc - optind; |
| 2667 | target_argv = calloc(target_argc + 1, sizeof (char *)); |
| 2668 | if (target_argv == NULL) { |
| 2669 | (void) fprintf(stderr, "Unable to allocate memory for target_argv\n"); |
| 2670 | exit(1); |
| 2671 | } |
| 2672 | |
| 2673 | /* |
| 2674 | * If argv0 is specified (using '-0' switch) we replace |
| 2675 | * argv[0] pointer with the given one. |
| 2676 | */ |
| 2677 | i = 0; |
| 2678 | if (argv0 != NULL) { |
| 2679 | target_argv[i++] = strdup(argv0); |
| 2680 | } |
| 2681 | for (; i < target_argc; i++) { |
| 2682 | target_argv[i] = strdup(argv[optind + i]); |
| 2683 | } |
| 2684 | target_argv[target_argc] = NULL; |
| 2685 | |
Mika Westerberg | edf8e2a | 2009-04-07 09:57:11 +0300 | [diff] [blame] | 2686 | memset(ts, 0, sizeof(TaskState)); |
| 2687 | init_task_state(ts); |
| 2688 | /* build Task State */ |
| 2689 | ts->info = info; |
| 2690 | ts->bprm = &bprm; |
| 2691 | env->opaque = ts; |
| 2692 | task_settid(ts); |
| 2693 | |
Arnaud Patard | fd4d81d | 2009-06-19 10:39:36 +0300 | [diff] [blame] | 2694 | ret = loader_exec(filename, target_argv, target_environ, regs, |
| 2695 | info, &bprm); |
| 2696 | if (ret != 0) { |
| 2697 | printf("Error %d while loading %s\n", ret, filename); |
ths | b12b6a1 | 2007-06-17 16:38:39 +0000 | [diff] [blame] | 2698 | _exit(1); |
| 2699 | } |
| 2700 | |
aurel32 | 7d8cec9 | 2009-04-15 16:11:52 +0000 | [diff] [blame] | 2701 | for (i = 0; i < target_argc; i++) { |
| 2702 | free(target_argv[i]); |
| 2703 | } |
| 2704 | free(target_argv); |
| 2705 | |
ths | b12b6a1 | 2007-06-17 16:38:39 +0000 | [diff] [blame] | 2706 | for (wrk = target_environ; *wrk; wrk++) { |
| 2707 | free(*wrk); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2708 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2709 | |
ths | b12b6a1 | 2007-06-17 16:38:39 +0000 | [diff] [blame] | 2710 | free(target_environ); |
| 2711 | |
blueswir1 | 2e77eac | 2009-01-20 16:57:34 +0000 | [diff] [blame] | 2712 | if (qemu_log_enabled()) { |
Paul Brook | 379f669 | 2009-07-17 12:48:08 +0100 | [diff] [blame] | 2713 | #if defined(CONFIG_USE_GUEST_BASE) |
| 2714 | qemu_log("guest_base 0x%lx\n", guest_base); |
| 2715 | #endif |
blueswir1 | 2e77eac | 2009-01-20 16:57:34 +0000 | [diff] [blame] | 2716 | log_page_dump(); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2717 | |
blueswir1 | 2e77eac | 2009-01-20 16:57:34 +0000 | [diff] [blame] | 2718 | qemu_log("start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk); |
| 2719 | qemu_log("end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code); |
| 2720 | qemu_log("start_code 0x" TARGET_ABI_FMT_lx "\n", |
| 2721 | info->start_code); |
| 2722 | qemu_log("start_data 0x" TARGET_ABI_FMT_lx "\n", |
| 2723 | info->start_data); |
| 2724 | qemu_log("end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data); |
| 2725 | qemu_log("start_stack 0x" TARGET_ABI_FMT_lx "\n", |
| 2726 | info->start_stack); |
| 2727 | qemu_log("brk 0x" TARGET_ABI_FMT_lx "\n", info->brk); |
| 2728 | qemu_log("entry 0x" TARGET_ABI_FMT_lx "\n", info->entry); |
| 2729 | } |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2730 | |
pbrook | 53a5960 | 2006-03-25 19:31:22 +0000 | [diff] [blame] | 2731 | target_set_brk(info->brk); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2732 | syscall_init(); |
bellard | 66fb976 | 2003-03-23 01:06:05 +0000 | [diff] [blame] | 2733 | signal_init(); |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2734 | |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2735 | #if defined(TARGET_I386) |
bellard | 2e255c6 | 2003-08-21 23:25:21 +0000 | [diff] [blame] | 2736 | cpu_x86_set_cpl(env, 3); |
| 2737 | |
bellard | 3802ce2 | 2003-07-26 18:02:28 +0000 | [diff] [blame] | 2738 | env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK; |
bellard | 1bde465 | 2005-01-12 22:34:47 +0000 | [diff] [blame] | 2739 | env->hflags |= HF_PE_MASK; |
| 2740 | if (env->cpuid_features & CPUID_SSE) { |
| 2741 | env->cr[4] |= CR4_OSFXSR_MASK; |
| 2742 | env->hflags |= HF_OSFXSR_MASK; |
| 2743 | } |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 2744 | #ifndef TARGET_ABI32 |
bellard | 4dbc422 | 2007-11-15 15:27:03 +0000 | [diff] [blame] | 2745 | /* enable 64 bit mode if possible */ |
| 2746 | if (!(env->cpuid_ext2_features & CPUID_EXT2_LM)) { |
| 2747 | fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n"); |
| 2748 | exit(1); |
| 2749 | } |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 2750 | env->cr[4] |= CR4_PAE_MASK; |
bellard | 4dbc422 | 2007-11-15 15:27:03 +0000 | [diff] [blame] | 2751 | env->efer |= MSR_EFER_LMA | MSR_EFER_LME; |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 2752 | env->hflags |= HF_LMA_MASK; |
| 2753 | #endif |
bellard | 1bde465 | 2005-01-12 22:34:47 +0000 | [diff] [blame] | 2754 | |
bellard | 415e561 | 2004-02-03 23:37:12 +0000 | [diff] [blame] | 2755 | /* flags setup : we activate the IRQs by default as in user mode */ |
| 2756 | env->eflags |= IF_MASK; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2757 | |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 2758 | /* linux register setup */ |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 2759 | #ifndef TARGET_ABI32 |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 2760 | env->regs[R_EAX] = regs->rax; |
| 2761 | env->regs[R_EBX] = regs->rbx; |
| 2762 | env->regs[R_ECX] = regs->rcx; |
| 2763 | env->regs[R_EDX] = regs->rdx; |
| 2764 | env->regs[R_ESI] = regs->rsi; |
| 2765 | env->regs[R_EDI] = regs->rdi; |
| 2766 | env->regs[R_EBP] = regs->rbp; |
| 2767 | env->regs[R_ESP] = regs->rsp; |
| 2768 | env->eip = regs->rip; |
| 2769 | #else |
bellard | 0ecfa99 | 2003-03-03 14:32:43 +0000 | [diff] [blame] | 2770 | env->regs[R_EAX] = regs->eax; |
| 2771 | env->regs[R_EBX] = regs->ebx; |
| 2772 | env->regs[R_ECX] = regs->ecx; |
| 2773 | env->regs[R_EDX] = regs->edx; |
| 2774 | env->regs[R_ESI] = regs->esi; |
| 2775 | env->regs[R_EDI] = regs->edi; |
| 2776 | env->regs[R_EBP] = regs->ebp; |
| 2777 | env->regs[R_ESP] = regs->esp; |
bellard | dab2ed9 | 2003-03-22 15:23:14 +0000 | [diff] [blame] | 2778 | env->eip = regs->eip; |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 2779 | #endif |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2780 | |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 2781 | /* linux interrupt setup */ |
balrog | e441570 | 2008-11-10 02:55:33 +0000 | [diff] [blame] | 2782 | #ifndef TARGET_ABI32 |
| 2783 | env->idt.limit = 511; |
| 2784 | #else |
| 2785 | env->idt.limit = 255; |
| 2786 | #endif |
| 2787 | env->idt.base = target_mmap(0, sizeof(uint64_t) * (env->idt.limit + 1), |
| 2788 | PROT_READ|PROT_WRITE, |
| 2789 | MAP_ANONYMOUS|MAP_PRIVATE, -1, 0); |
| 2790 | idt_table = g2h(env->idt.base); |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 2791 | set_idt(0, 0); |
| 2792 | set_idt(1, 0); |
| 2793 | set_idt(2, 0); |
| 2794 | set_idt(3, 3); |
| 2795 | set_idt(4, 3); |
bellard | ec95da6 | 2008-05-12 12:23:31 +0000 | [diff] [blame] | 2796 | set_idt(5, 0); |
bellard | f4beb51 | 2003-05-27 23:28:08 +0000 | [diff] [blame] | 2797 | set_idt(6, 0); |
| 2798 | set_idt(7, 0); |
| 2799 | set_idt(8, 0); |
| 2800 | set_idt(9, 0); |
| 2801 | set_idt(10, 0); |
| 2802 | set_idt(11, 0); |
| 2803 | set_idt(12, 0); |
| 2804 | set_idt(13, 0); |
| 2805 | set_idt(14, 0); |
| 2806 | set_idt(15, 0); |
| 2807 | set_idt(16, 0); |
| 2808 | set_idt(17, 0); |
| 2809 | set_idt(18, 0); |
| 2810 | set_idt(19, 0); |
| 2811 | set_idt(0x80, 3); |
| 2812 | |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 2813 | /* linux segment setup */ |
bellard | 8d18e89 | 2007-11-14 15:18:40 +0000 | [diff] [blame] | 2814 | { |
| 2815 | uint64_t *gdt_table; |
balrog | e441570 | 2008-11-10 02:55:33 +0000 | [diff] [blame] | 2816 | env->gdt.base = target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES, |
| 2817 | PROT_READ|PROT_WRITE, |
| 2818 | MAP_ANONYMOUS|MAP_PRIVATE, -1, 0); |
bellard | 8d18e89 | 2007-11-14 15:18:40 +0000 | [diff] [blame] | 2819 | env->gdt.limit = sizeof(uint64_t) * TARGET_GDT_ENTRIES - 1; |
balrog | e441570 | 2008-11-10 02:55:33 +0000 | [diff] [blame] | 2820 | gdt_table = g2h(env->gdt.base); |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 2821 | #ifdef TARGET_ABI32 |
bellard | 8d18e89 | 2007-11-14 15:18:40 +0000 | [diff] [blame] | 2822 | write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff, |
| 2823 | DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | |
| 2824 | (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT)); |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 2825 | #else |
| 2826 | /* 64 bit code segment */ |
| 2827 | write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff, |
| 2828 | DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | |
| 2829 | DESC_L_MASK | |
| 2830 | (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT)); |
| 2831 | #endif |
bellard | 8d18e89 | 2007-11-14 15:18:40 +0000 | [diff] [blame] | 2832 | write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff, |
| 2833 | DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | |
| 2834 | (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT)); |
| 2835 | } |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 2836 | cpu_x86_load_seg(env, R_CS, __USER_CS); |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 2837 | cpu_x86_load_seg(env, R_SS, __USER_DS); |
| 2838 | #ifdef TARGET_ABI32 |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 2839 | cpu_x86_load_seg(env, R_DS, __USER_DS); |
| 2840 | cpu_x86_load_seg(env, R_ES, __USER_DS); |
bellard | 6dbad63 | 2003-03-16 18:05:05 +0000 | [diff] [blame] | 2841 | cpu_x86_load_seg(env, R_FS, __USER_DS); |
| 2842 | cpu_x86_load_seg(env, R_GS, __USER_DS); |
ths | d6eb40f | 2007-06-21 22:55:02 +0000 | [diff] [blame] | 2843 | /* This hack makes Wine work... */ |
| 2844 | env->segs[R_FS].selector = 0; |
bellard | d2fd1af | 2007-11-14 18:08:56 +0000 | [diff] [blame] | 2845 | #else |
| 2846 | cpu_x86_load_seg(env, R_DS, 0); |
| 2847 | cpu_x86_load_seg(env, R_ES, 0); |
| 2848 | cpu_x86_load_seg(env, R_FS, 0); |
| 2849 | cpu_x86_load_seg(env, R_GS, 0); |
| 2850 | #endif |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2851 | #elif defined(TARGET_ARM) |
| 2852 | { |
| 2853 | int i; |
bellard | b5ff1b3 | 2005-11-26 10:38:39 +0000 | [diff] [blame] | 2854 | cpsr_write(env, regs->uregs[16], 0xffffffff); |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2855 | for(i = 0; i < 16; i++) { |
| 2856 | env->regs[i] = regs->uregs[i]; |
| 2857 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2858 | } |
bellard | 93ac68b | 2003-09-30 20:57:29 +0000 | [diff] [blame] | 2859 | #elif defined(TARGET_SPARC) |
bellard | 060366c | 2004-01-04 15:50:01 +0000 | [diff] [blame] | 2860 | { |
| 2861 | int i; |
| 2862 | env->pc = regs->pc; |
| 2863 | env->npc = regs->npc; |
| 2864 | env->y = regs->y; |
| 2865 | for(i = 0; i < 8; i++) |
| 2866 | env->gregs[i] = regs->u_regs[i]; |
| 2867 | for(i = 0; i < 8; i++) |
| 2868 | env->regwptr[i] = regs->u_regs[i + 8]; |
| 2869 | } |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 2870 | #elif defined(TARGET_PPC) |
| 2871 | { |
| 2872 | int i; |
bellard | 3fc6c08 | 2005-07-02 20:59:34 +0000 | [diff] [blame] | 2873 | |
j_mayer | 0411a97 | 2007-10-25 21:35:50 +0000 | [diff] [blame] | 2874 | #if defined(TARGET_PPC64) |
| 2875 | #if defined(TARGET_ABI32) |
| 2876 | env->msr &= ~((target_ulong)1 << MSR_SF); |
j_mayer | e85e7c6 | 2007-10-18 19:59:49 +0000 | [diff] [blame] | 2877 | #else |
j_mayer | 0411a97 | 2007-10-25 21:35:50 +0000 | [diff] [blame] | 2878 | env->msr |= (target_ulong)1 << MSR_SF; |
| 2879 | #endif |
j_mayer | 84409dd | 2007-04-06 08:56:50 +0000 | [diff] [blame] | 2880 | #endif |
bellard | 6786730 | 2003-11-23 17:05:30 +0000 | [diff] [blame] | 2881 | env->nip = regs->nip; |
| 2882 | for(i = 0; i < 32; i++) { |
| 2883 | env->gpr[i] = regs->gpr[i]; |
| 2884 | } |
| 2885 | } |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2886 | #elif defined(TARGET_M68K) |
| 2887 | { |
pbrook | e6e5906 | 2006-10-22 00:18:54 +0000 | [diff] [blame] | 2888 | env->pc = regs->pc; |
| 2889 | env->dregs[0] = regs->d0; |
| 2890 | env->dregs[1] = regs->d1; |
| 2891 | env->dregs[2] = regs->d2; |
| 2892 | env->dregs[3] = regs->d3; |
| 2893 | env->dregs[4] = regs->d4; |
| 2894 | env->dregs[5] = regs->d5; |
| 2895 | env->dregs[6] = regs->d6; |
| 2896 | env->dregs[7] = regs->d7; |
| 2897 | env->aregs[0] = regs->a0; |
| 2898 | env->aregs[1] = regs->a1; |
| 2899 | env->aregs[2] = regs->a2; |
| 2900 | env->aregs[3] = regs->a3; |
| 2901 | env->aregs[4] = regs->a4; |
| 2902 | env->aregs[5] = regs->a5; |
| 2903 | env->aregs[6] = regs->a6; |
| 2904 | env->aregs[7] = regs->usp; |
| 2905 | env->sr = regs->sr; |
| 2906 | ts->sim_syscalls = 1; |
| 2907 | } |
Edgar E. Iglesias | b779e29 | 2009-05-20 21:31:33 +0200 | [diff] [blame] | 2908 | #elif defined(TARGET_MICROBLAZE) |
| 2909 | { |
| 2910 | env->regs[0] = regs->r0; |
| 2911 | env->regs[1] = regs->r1; |
| 2912 | env->regs[2] = regs->r2; |
| 2913 | env->regs[3] = regs->r3; |
| 2914 | env->regs[4] = regs->r4; |
| 2915 | env->regs[5] = regs->r5; |
| 2916 | env->regs[6] = regs->r6; |
| 2917 | env->regs[7] = regs->r7; |
| 2918 | env->regs[8] = regs->r8; |
| 2919 | env->regs[9] = regs->r9; |
| 2920 | env->regs[10] = regs->r10; |
| 2921 | env->regs[11] = regs->r11; |
| 2922 | env->regs[12] = regs->r12; |
| 2923 | env->regs[13] = regs->r13; |
| 2924 | env->regs[14] = regs->r14; |
| 2925 | env->regs[15] = regs->r15; |
| 2926 | env->regs[16] = regs->r16; |
| 2927 | env->regs[17] = regs->r17; |
| 2928 | env->regs[18] = regs->r18; |
| 2929 | env->regs[19] = regs->r19; |
| 2930 | env->regs[20] = regs->r20; |
| 2931 | env->regs[21] = regs->r21; |
| 2932 | env->regs[22] = regs->r22; |
| 2933 | env->regs[23] = regs->r23; |
| 2934 | env->regs[24] = regs->r24; |
| 2935 | env->regs[25] = regs->r25; |
| 2936 | env->regs[26] = regs->r26; |
| 2937 | env->regs[27] = regs->r27; |
| 2938 | env->regs[28] = regs->r28; |
| 2939 | env->regs[29] = regs->r29; |
| 2940 | env->regs[30] = regs->r30; |
| 2941 | env->regs[31] = regs->r31; |
| 2942 | env->sregs[SR_PC] = regs->pc; |
| 2943 | } |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 2944 | #elif defined(TARGET_MIPS) |
| 2945 | { |
| 2946 | int i; |
| 2947 | |
| 2948 | for(i = 0; i < 32; i++) { |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 2949 | env->active_tc.gpr[i] = regs->regs[i]; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 2950 | } |
ths | b5dc773 | 2008-06-27 10:02:35 +0000 | [diff] [blame] | 2951 | env->active_tc.PC = regs->cp0_epc; |
bellard | 048f6b4 | 2005-11-26 18:47:20 +0000 | [diff] [blame] | 2952 | } |
bellard | fdf9b3e | 2006-04-27 21:07:38 +0000 | [diff] [blame] | 2953 | #elif defined(TARGET_SH4) |
| 2954 | { |
| 2955 | int i; |
| 2956 | |
| 2957 | for(i = 0; i < 16; i++) { |
| 2958 | env->gregs[i] = regs->regs[i]; |
| 2959 | } |
| 2960 | env->pc = regs->pc; |
| 2961 | } |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2962 | #elif defined(TARGET_ALPHA) |
| 2963 | { |
| 2964 | int i; |
| 2965 | |
| 2966 | for(i = 0; i < 28; i++) { |
blueswir1 | 992f48a | 2007-10-14 16:27:31 +0000 | [diff] [blame] | 2967 | env->ir[i] = ((abi_ulong *)regs)[i]; |
j_mayer | 7a3148a | 2007-04-05 07:13:51 +0000 | [diff] [blame] | 2968 | } |
| 2969 | env->ipr[IPR_USP] = regs->usp; |
| 2970 | env->ir[30] = regs->usp; |
| 2971 | env->pc = regs->pc; |
| 2972 | env->unique = regs->unique; |
| 2973 | } |
ths | 48733d1 | 2007-10-08 13:36:46 +0000 | [diff] [blame] | 2974 | #elif defined(TARGET_CRIS) |
| 2975 | { |
| 2976 | env->regs[0] = regs->r0; |
| 2977 | env->regs[1] = regs->r1; |
| 2978 | env->regs[2] = regs->r2; |
| 2979 | env->regs[3] = regs->r3; |
| 2980 | env->regs[4] = regs->r4; |
| 2981 | env->regs[5] = regs->r5; |
| 2982 | env->regs[6] = regs->r6; |
| 2983 | env->regs[7] = regs->r7; |
| 2984 | env->regs[8] = regs->r8; |
| 2985 | env->regs[9] = regs->r9; |
| 2986 | env->regs[10] = regs->r10; |
| 2987 | env->regs[11] = regs->r11; |
| 2988 | env->regs[12] = regs->r12; |
| 2989 | env->regs[13] = regs->r13; |
| 2990 | env->regs[14] = info->start_stack; |
| 2991 | env->regs[15] = regs->acr; |
| 2992 | env->pc = regs->erp; |
| 2993 | } |
bellard | b346ff4 | 2003-06-15 20:05:50 +0000 | [diff] [blame] | 2994 | #else |
| 2995 | #error unsupported target CPU |
| 2996 | #endif |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 2997 | |
pbrook | a87295e | 2007-05-26 15:09:38 +0000 | [diff] [blame] | 2998 | #if defined(TARGET_ARM) || defined(TARGET_M68K) |
| 2999 | ts->stack_base = info->start_stack; |
| 3000 | ts->heap_base = info->brk; |
| 3001 | /* This will be filled in on the first SYS_HEAPINFO call. */ |
| 3002 | ts->heap_limit = 0; |
| 3003 | #endif |
| 3004 | |
bellard | 74c33be | 2005-10-30 21:01:05 +0000 | [diff] [blame] | 3005 | if (gdbstub_port) { |
| 3006 | gdbserver_start (gdbstub_port); |
bellard | 1fddef4 | 2005-04-17 19:16:13 +0000 | [diff] [blame] | 3007 | gdb_handlesig(env, 0); |
| 3008 | } |
bellard | 1b6b029 | 2003-03-22 17:31:38 +0000 | [diff] [blame] | 3009 | cpu_loop(env); |
| 3010 | /* never exits */ |
bellard | 31e31b8 | 2003-02-18 22:55:36 +0000 | [diff] [blame] | 3011 | return 0; |
| 3012 | } |