]>
Commit | Line | Data |
---|---|---|
31e31b8a | 1 | /* |
93ac68bc | 2 | * qemu user main |
5fafdf24 | 3 | * |
68d0f70e | 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
31e31b8a FB |
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 | |
8167ee88 | 17 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
31e31b8a | 18 | */ |
d39594e9 | 19 | #include "qemu/osdep.h" |
67a1de0d | 20 | #include "qemu-version.h" |
edf8e2af | 21 | #include <sys/syscall.h> |
703e0e89 | 22 | #include <sys/resource.h> |
31e31b8a | 23 | |
daa76aa4 | 24 | #include "qapi/error.h" |
3ef693a0 | 25 | #include "qemu.h" |
f348b6d1 | 26 | #include "qemu/path.h" |
6533dd6e | 27 | #include "qemu/config-file.h" |
f348b6d1 VB |
28 | #include "qemu/cutils.h" |
29 | #include "qemu/help_option.h" | |
2b41f10e | 30 | #include "cpu.h" |
63c91552 | 31 | #include "exec/exec-all.h" |
9002ec79 | 32 | #include "tcg.h" |
1de7afc9 PB |
33 | #include "qemu/timer.h" |
34 | #include "qemu/envlist.h" | |
d8fd2954 | 35 | #include "elf.h" |
508127e2 | 36 | #include "exec/log.h" |
6533dd6e | 37 | #include "trace/control.h" |
04a6dfeb | 38 | |
d088d664 AJ |
39 | char *exec_path; |
40 | ||
1b530a6d | 41 | int singlestep; |
8cb76755 SW |
42 | static const char *filename; |
43 | static const char *argv0; | |
44 | static int gdbstub_port; | |
45 | static envlist_t *envlist; | |
51fb256a | 46 | static const char *cpu_model; |
379f6698 PB |
47 | unsigned long mmap_min_addr; |
48 | unsigned long guest_base; | |
49 | int have_guest_base; | |
120a9848 PB |
50 | |
51 | #define EXCP_DUMP(env, fmt, ...) \ | |
52 | do { \ | |
53 | CPUState *cs = ENV_GET_CPU(env); \ | |
54 | fprintf(stderr, fmt , ## __VA_ARGS__); \ | |
55 | cpu_dump_state(cs, stderr, fprintf, 0); \ | |
56 | if (qemu_log_separate()) { \ | |
57 | qemu_log(fmt, ## __VA_ARGS__); \ | |
58 | log_cpu_state(cs, 0); \ | |
59 | } \ | |
60 | } while (0) | |
61 | ||
288e65b9 AG |
62 | /* |
63 | * When running 32-on-64 we should make sure we can fit all of the possible | |
64 | * guest address space into a contiguous chunk of virtual host memory. | |
65 | * | |
66 | * This way we will never overlap with our own libraries or binaries or stack | |
67 | * or anything else that QEMU maps. | |
18e80c55 RH |
68 | * |
69 | * Many cpus reserve the high bit (or more than one for some 64-bit cpus) | |
70 | * of the address for the kernel. Some cpus rely on this and user space | |
71 | * uses the high bit(s) for pointer tagging and the like. For them, we | |
72 | * must preserve the expected address space. | |
288e65b9 | 73 | */ |
18e80c55 RH |
74 | #ifndef MAX_RESERVED_VA |
75 | # if HOST_LONG_BITS > TARGET_VIRT_ADDR_SPACE_BITS | |
76 | # if TARGET_VIRT_ADDR_SPACE_BITS == 32 && \ | |
77 | (TARGET_LONG_BITS == 32 || defined(TARGET_ABI32)) | |
78 | /* There are a number of places where we assign reserved_va to a variable | |
79 | of type abi_ulong and expect it to fit. Avoid the last page. */ | |
80 | # define MAX_RESERVED_VA (0xfffffffful & TARGET_PAGE_MASK) | |
81 | # else | |
82 | # define MAX_RESERVED_VA (1ul << TARGET_VIRT_ADDR_SPACE_BITS) | |
83 | # endif | |
314992b1 | 84 | # else |
18e80c55 | 85 | # define MAX_RESERVED_VA 0 |
314992b1 | 86 | # endif |
18e80c55 RH |
87 | #endif |
88 | ||
89 | /* That said, reserving *too* much vm space via mmap can run into problems | |
90 | with rlimits, oom due to page table creation, etc. We will still try it, | |
91 | if directed by the command-line option, but not by default. */ | |
92 | #if HOST_LONG_BITS == 64 && TARGET_VIRT_ADDR_SPACE_BITS <= 32 | |
93 | unsigned long reserved_va = MAX_RESERVED_VA; | |
288e65b9 | 94 | #else |
68a1c816 | 95 | unsigned long reserved_va; |
379f6698 | 96 | #endif |
1b530a6d | 97 | |
d03f9c32 | 98 | static void usage(int exitcode); |
fc9c5412 | 99 | |
7ee2822c | 100 | static const char *interp_prefix = CONFIG_QEMU_INTERP_PREFIX; |
e586822a | 101 | const char *qemu_uname_release; |
586314f2 | 102 | |
9de5e440 FB |
103 | /* XXX: on x86 MAP_GROWSDOWN only works if ESP <= address + 32, so |
104 | we allocate a bigger stack. Need a better solution, for example | |
105 | by remapping the process stack directly at the right place */ | |
703e0e89 | 106 | unsigned long guest_stack_size = 8 * 1024 * 1024UL; |
31e31b8a FB |
107 | |
108 | void gemu_log(const char *fmt, ...) | |
109 | { | |
110 | va_list ap; | |
111 | ||
112 | va_start(ap, fmt); | |
113 | vfprintf(stderr, fmt, ap); | |
114 | va_end(ap); | |
115 | } | |
116 | ||
8fcd3692 | 117 | #if defined(TARGET_I386) |
05390248 | 118 | int cpu_get_pic_interrupt(CPUX86State *env) |
92ccca6a FB |
119 | { |
120 | return -1; | |
121 | } | |
8fcd3692 | 122 | #endif |
92ccca6a | 123 | |
d5975363 PB |
124 | /***********************************************************/ |
125 | /* Helper routines for implementing atomic operations. */ | |
126 | ||
d5975363 PB |
127 | /* Make sure everything is in a consistent state for calling fork(). */ |
128 | void fork_start(void) | |
129 | { | |
267f685b | 130 | cpu_list_lock(); |
44ded3d0 | 131 | qemu_mutex_lock(&tb_ctx.tb_lock); |
d032d1b4 | 132 | mmap_fork_start(); |
d5975363 PB |
133 | } |
134 | ||
135 | void fork_end(int child) | |
136 | { | |
d032d1b4 | 137 | mmap_fork_end(child); |
d5975363 | 138 | if (child) { |
bdc44640 | 139 | CPUState *cpu, *next_cpu; |
d5975363 PB |
140 | /* Child processes created by fork() only have a single thread. |
141 | Discard information about the parent threads. */ | |
bdc44640 AF |
142 | CPU_FOREACH_SAFE(cpu, next_cpu) { |
143 | if (cpu != thread_cpu) { | |
014628a7 | 144 | QTAILQ_REMOVE(&cpus, cpu, node); |
bdc44640 AF |
145 | } |
146 | } | |
44ded3d0 | 147 | qemu_mutex_init(&tb_ctx.tb_lock); |
267f685b | 148 | qemu_init_cpu_list(); |
f7ec7f7b | 149 | gdbserver_fork(thread_cpu); |
d5975363 | 150 | } else { |
44ded3d0 | 151 | qemu_mutex_unlock(&tb_ctx.tb_lock); |
267f685b | 152 | cpu_list_unlock(); |
d5975363 | 153 | } |
d5975363 PB |
154 | } |
155 | ||
a541f297 FB |
156 | #ifdef TARGET_I386 |
157 | /***********************************************************/ | |
158 | /* CPUX86 core interface */ | |
159 | ||
28ab0e2e FB |
160 | uint64_t cpu_get_tsc(CPUX86State *env) |
161 | { | |
4a7428c5 | 162 | return cpu_get_host_ticks(); |
28ab0e2e FB |
163 | } |
164 | ||
5fafdf24 | 165 | static void write_dt(void *ptr, unsigned long addr, unsigned long limit, |
f4beb510 | 166 | int flags) |
6dbad63e | 167 | { |
f4beb510 | 168 | unsigned int e1, e2; |
53a5960a | 169 | uint32_t *p; |
6dbad63e FB |
170 | e1 = (addr << 16) | (limit & 0xffff); |
171 | e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000); | |
f4beb510 | 172 | e2 |= flags; |
53a5960a | 173 | p = ptr; |
d538e8f5 | 174 | p[0] = tswap32(e1); |
175 | p[1] = tswap32(e2); | |
f4beb510 FB |
176 | } |
177 | ||
e441570f | 178 | static uint64_t *idt_table; |
eb38c52c | 179 | #ifdef TARGET_X86_64 |
d2fd1af7 FB |
180 | static void set_gate64(void *ptr, unsigned int type, unsigned int dpl, |
181 | uint64_t addr, unsigned int sel) | |
f4beb510 | 182 | { |
4dbc422b | 183 | uint32_t *p, e1, e2; |
f4beb510 FB |
184 | e1 = (addr & 0xffff) | (sel << 16); |
185 | e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); | |
53a5960a | 186 | p = ptr; |
4dbc422b FB |
187 | p[0] = tswap32(e1); |
188 | p[1] = tswap32(e2); | |
189 | p[2] = tswap32(addr >> 32); | |
190 | p[3] = 0; | |
6dbad63e | 191 | } |
d2fd1af7 FB |
192 | /* only dpl matters as we do only user space emulation */ |
193 | static void set_idt(int n, unsigned int dpl) | |
194 | { | |
195 | set_gate64(idt_table + n * 2, 0, dpl, 0, 0); | |
196 | } | |
197 | #else | |
d2fd1af7 FB |
198 | static void set_gate(void *ptr, unsigned int type, unsigned int dpl, |
199 | uint32_t addr, unsigned int sel) | |
200 | { | |
4dbc422b | 201 | uint32_t *p, e1, e2; |
d2fd1af7 FB |
202 | e1 = (addr & 0xffff) | (sel << 16); |
203 | e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); | |
204 | p = ptr; | |
4dbc422b FB |
205 | p[0] = tswap32(e1); |
206 | p[1] = tswap32(e2); | |
d2fd1af7 FB |
207 | } |
208 | ||
f4beb510 FB |
209 | /* only dpl matters as we do only user space emulation */ |
210 | static void set_idt(int n, unsigned int dpl) | |
211 | { | |
212 | set_gate(idt_table + n, 0, dpl, 0, 0); | |
213 | } | |
d2fd1af7 | 214 | #endif |
31e31b8a | 215 | |
89e957e7 | 216 | void cpu_loop(CPUX86State *env) |
1b6b029e | 217 | { |
db6b81d4 | 218 | CPUState *cs = CPU(x86_env_get_cpu(env)); |
bc8a22cc | 219 | int trapnr; |
992f48a0 | 220 | abi_ulong pc; |
0284b03b | 221 | abi_ulong ret; |
c227f099 | 222 | target_siginfo_t info; |
851e67a1 | 223 | |
1b6b029e | 224 | for(;;) { |
b040bc9c | 225 | cpu_exec_start(cs); |
8642c1b8 | 226 | trapnr = cpu_exec(cs); |
b040bc9c | 227 | cpu_exec_end(cs); |
d148d90e SF |
228 | process_queued_cpu_work(cs); |
229 | ||
bc8a22cc | 230 | switch(trapnr) { |
f4beb510 | 231 | case 0x80: |
d2fd1af7 | 232 | /* linux syscall from int $0x80 */ |
0284b03b TB |
233 | ret = do_syscall(env, |
234 | env->regs[R_EAX], | |
235 | env->regs[R_EBX], | |
236 | env->regs[R_ECX], | |
237 | env->regs[R_EDX], | |
238 | env->regs[R_ESI], | |
239 | env->regs[R_EDI], | |
240 | env->regs[R_EBP], | |
241 | 0, 0); | |
242 | if (ret == -TARGET_ERESTARTSYS) { | |
243 | env->eip -= 2; | |
244 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
245 | env->regs[R_EAX] = ret; | |
246 | } | |
f4beb510 | 247 | break; |
d2fd1af7 FB |
248 | #ifndef TARGET_ABI32 |
249 | case EXCP_SYSCALL: | |
5ba18547 | 250 | /* linux syscall from syscall instruction */ |
0284b03b TB |
251 | ret = do_syscall(env, |
252 | env->regs[R_EAX], | |
253 | env->regs[R_EDI], | |
254 | env->regs[R_ESI], | |
255 | env->regs[R_EDX], | |
256 | env->regs[10], | |
257 | env->regs[8], | |
258 | env->regs[9], | |
259 | 0, 0); | |
260 | if (ret == -TARGET_ERESTARTSYS) { | |
261 | env->eip -= 2; | |
262 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
263 | env->regs[R_EAX] = ret; | |
264 | } | |
d2fd1af7 FB |
265 | break; |
266 | #endif | |
f4beb510 FB |
267 | case EXCP0B_NOSEG: |
268 | case EXCP0C_STACK: | |
a86b3c64 | 269 | info.si_signo = TARGET_SIGBUS; |
f4beb510 FB |
270 | info.si_errno = 0; |
271 | info.si_code = TARGET_SI_KERNEL; | |
272 | info._sifields._sigfault._addr = 0; | |
9d2803f7 | 273 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
f4beb510 | 274 | break; |
1b6b029e | 275 | case EXCP0D_GPF: |
d2fd1af7 | 276 | /* XXX: potential problem if ABI32 */ |
84409ddb | 277 | #ifndef TARGET_X86_64 |
851e67a1 | 278 | if (env->eflags & VM_MASK) { |
89e957e7 | 279 | handle_vm86_fault(env); |
84409ddb JM |
280 | } else |
281 | #endif | |
282 | { | |
a86b3c64 | 283 | info.si_signo = TARGET_SIGSEGV; |
f4beb510 FB |
284 | info.si_errno = 0; |
285 | info.si_code = TARGET_SI_KERNEL; | |
286 | info._sifields._sigfault._addr = 0; | |
9d2803f7 | 287 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
1b6b029e FB |
288 | } |
289 | break; | |
b689bc57 | 290 | case EXCP0E_PAGE: |
a86b3c64 | 291 | info.si_signo = TARGET_SIGSEGV; |
b689bc57 FB |
292 | info.si_errno = 0; |
293 | if (!(env->error_code & 1)) | |
294 | info.si_code = TARGET_SEGV_MAPERR; | |
295 | else | |
296 | info.si_code = TARGET_SEGV_ACCERR; | |
970a87a6 | 297 | info._sifields._sigfault._addr = env->cr[2]; |
9d2803f7 | 298 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
b689bc57 | 299 | break; |
9de5e440 | 300 | case EXCP00_DIVZ: |
84409ddb | 301 | #ifndef TARGET_X86_64 |
bc8a22cc | 302 | if (env->eflags & VM_MASK) { |
447db213 | 303 | handle_vm86_trap(env, trapnr); |
84409ddb JM |
304 | } else |
305 | #endif | |
306 | { | |
bc8a22cc | 307 | /* division by zero */ |
a86b3c64 | 308 | info.si_signo = TARGET_SIGFPE; |
bc8a22cc FB |
309 | info.si_errno = 0; |
310 | info.si_code = TARGET_FPE_INTDIV; | |
311 | info._sifields._sigfault._addr = env->eip; | |
9d2803f7 | 312 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
bc8a22cc | 313 | } |
9de5e440 | 314 | break; |
01df040b | 315 | case EXCP01_DB: |
447db213 | 316 | case EXCP03_INT3: |
84409ddb | 317 | #ifndef TARGET_X86_64 |
447db213 FB |
318 | if (env->eflags & VM_MASK) { |
319 | handle_vm86_trap(env, trapnr); | |
84409ddb JM |
320 | } else |
321 | #endif | |
322 | { | |
a86b3c64 | 323 | info.si_signo = TARGET_SIGTRAP; |
447db213 | 324 | info.si_errno = 0; |
01df040b | 325 | if (trapnr == EXCP01_DB) { |
447db213 FB |
326 | info.si_code = TARGET_TRAP_BRKPT; |
327 | info._sifields._sigfault._addr = env->eip; | |
328 | } else { | |
329 | info.si_code = TARGET_SI_KERNEL; | |
330 | info._sifields._sigfault._addr = 0; | |
331 | } | |
9d2803f7 | 332 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
447db213 FB |
333 | } |
334 | break; | |
9de5e440 FB |
335 | case EXCP04_INTO: |
336 | case EXCP05_BOUND: | |
84409ddb | 337 | #ifndef TARGET_X86_64 |
bc8a22cc | 338 | if (env->eflags & VM_MASK) { |
447db213 | 339 | handle_vm86_trap(env, trapnr); |
84409ddb JM |
340 | } else |
341 | #endif | |
342 | { | |
a86b3c64 | 343 | info.si_signo = TARGET_SIGSEGV; |
bc8a22cc | 344 | info.si_errno = 0; |
b689bc57 | 345 | info.si_code = TARGET_SI_KERNEL; |
bc8a22cc | 346 | info._sifields._sigfault._addr = 0; |
9d2803f7 | 347 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
bc8a22cc | 348 | } |
9de5e440 FB |
349 | break; |
350 | case EXCP06_ILLOP: | |
a86b3c64 | 351 | info.si_signo = TARGET_SIGILL; |
9de5e440 FB |
352 | info.si_errno = 0; |
353 | info.si_code = TARGET_ILL_ILLOPN; | |
354 | info._sifields._sigfault._addr = env->eip; | |
9d2803f7 | 355 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
9de5e440 FB |
356 | break; |
357 | case EXCP_INTERRUPT: | |
358 | /* just indicate that signals should be handled asap */ | |
359 | break; | |
1fddef4b FB |
360 | case EXCP_DEBUG: |
361 | { | |
362 | int sig; | |
363 | ||
db6b81d4 | 364 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
1fddef4b FB |
365 | if (sig) |
366 | { | |
367 | info.si_signo = sig; | |
368 | info.si_errno = 0; | |
369 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 370 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
1fddef4b FB |
371 | } |
372 | } | |
373 | break; | |
fdbc2b57 RH |
374 | case EXCP_ATOMIC: |
375 | cpu_exec_step_atomic(cs); | |
376 | break; | |
1b6b029e | 377 | default: |
970a87a6 | 378 | pc = env->segs[R_CS].base + env->eip; |
120a9848 PB |
379 | EXCP_DUMP(env, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n", |
380 | (long)pc, trapnr); | |
1b6b029e FB |
381 | abort(); |
382 | } | |
66fb9763 | 383 | process_pending_signals(env); |
1b6b029e FB |
384 | } |
385 | } | |
b346ff46 FB |
386 | #endif |
387 | ||
388 | #ifdef TARGET_ARM | |
389 | ||
49017bd8 | 390 | #define get_user_code_u32(x, gaddr, env) \ |
d8fd2954 | 391 | ({ abi_long __r = get_user_u32((x), (gaddr)); \ |
f9fd40eb | 392 | if (!__r && bswap_code(arm_sctlr_b(env))) { \ |
d8fd2954 PB |
393 | (x) = bswap32(x); \ |
394 | } \ | |
395 | __r; \ | |
396 | }) | |
397 | ||
49017bd8 | 398 | #define get_user_code_u16(x, gaddr, env) \ |
d8fd2954 | 399 | ({ abi_long __r = get_user_u16((x), (gaddr)); \ |
f9fd40eb | 400 | if (!__r && bswap_code(arm_sctlr_b(env))) { \ |
d8fd2954 PB |
401 | (x) = bswap16(x); \ |
402 | } \ | |
403 | __r; \ | |
404 | }) | |
405 | ||
c3ae85fc PB |
406 | #define get_user_data_u32(x, gaddr, env) \ |
407 | ({ abi_long __r = get_user_u32((x), (gaddr)); \ | |
408 | if (!__r && arm_cpu_bswap_data(env)) { \ | |
409 | (x) = bswap32(x); \ | |
410 | } \ | |
411 | __r; \ | |
412 | }) | |
413 | ||
414 | #define get_user_data_u16(x, gaddr, env) \ | |
415 | ({ abi_long __r = get_user_u16((x), (gaddr)); \ | |
416 | if (!__r && arm_cpu_bswap_data(env)) { \ | |
417 | (x) = bswap16(x); \ | |
418 | } \ | |
419 | __r; \ | |
420 | }) | |
421 | ||
422 | #define put_user_data_u32(x, gaddr, env) \ | |
423 | ({ typeof(x) __x = (x); \ | |
424 | if (arm_cpu_bswap_data(env)) { \ | |
425 | __x = bswap32(__x); \ | |
426 | } \ | |
427 | put_user_u32(__x, (gaddr)); \ | |
428 | }) | |
429 | ||
430 | #define put_user_data_u16(x, gaddr, env) \ | |
431 | ({ typeof(x) __x = (x); \ | |
432 | if (arm_cpu_bswap_data(env)) { \ | |
433 | __x = bswap16(__x); \ | |
434 | } \ | |
435 | put_user_u16(__x, (gaddr)); \ | |
436 | }) | |
437 | ||
1861c454 PM |
438 | #ifdef TARGET_ABI32 |
439 | /* Commpage handling -- there is no commpage for AArch64 */ | |
440 | ||
97cc7560 DDAG |
441 | /* |
442 | * See the Linux kernel's Documentation/arm/kernel_user_helpers.txt | |
443 | * Input: | |
444 | * r0 = pointer to oldval | |
445 | * r1 = pointer to newval | |
446 | * r2 = pointer to target value | |
447 | * | |
448 | * Output: | |
449 | * r0 = 0 if *ptr was changed, non-0 if no exchange happened | |
450 | * C set if *ptr was changed, clear if no exchange happened | |
451 | * | |
452 | * Note segv's in kernel helpers are a bit tricky, we can set the | |
453 | * data address sensibly but the PC address is just the entry point. | |
454 | */ | |
455 | static void arm_kernel_cmpxchg64_helper(CPUARMState *env) | |
456 | { | |
457 | uint64_t oldval, newval, val; | |
458 | uint32_t addr, cpsr; | |
459 | target_siginfo_t info; | |
460 | ||
461 | /* Based on the 32 bit code in do_kernel_trap */ | |
462 | ||
463 | /* XXX: This only works between threads, not between processes. | |
464 | It's probably possible to implement this with native host | |
465 | operations. However things like ldrex/strex are much harder so | |
466 | there's not much point trying. */ | |
467 | start_exclusive(); | |
468 | cpsr = cpsr_read(env); | |
469 | addr = env->regs[2]; | |
470 | ||
471 | if (get_user_u64(oldval, env->regs[0])) { | |
abf1172f | 472 | env->exception.vaddress = env->regs[0]; |
97cc7560 DDAG |
473 | goto segv; |
474 | }; | |
475 | ||
476 | if (get_user_u64(newval, env->regs[1])) { | |
abf1172f | 477 | env->exception.vaddress = env->regs[1]; |
97cc7560 DDAG |
478 | goto segv; |
479 | }; | |
480 | ||
481 | if (get_user_u64(val, addr)) { | |
abf1172f | 482 | env->exception.vaddress = addr; |
97cc7560 DDAG |
483 | goto segv; |
484 | } | |
485 | ||
486 | if (val == oldval) { | |
487 | val = newval; | |
488 | ||
489 | if (put_user_u64(val, addr)) { | |
abf1172f | 490 | env->exception.vaddress = addr; |
97cc7560 DDAG |
491 | goto segv; |
492 | }; | |
493 | ||
494 | env->regs[0] = 0; | |
495 | cpsr |= CPSR_C; | |
496 | } else { | |
497 | env->regs[0] = -1; | |
498 | cpsr &= ~CPSR_C; | |
499 | } | |
50866ba5 | 500 | cpsr_write(env, cpsr, CPSR_C, CPSRWriteByInstr); |
97cc7560 DDAG |
501 | end_exclusive(); |
502 | return; | |
503 | ||
504 | segv: | |
505 | end_exclusive(); | |
506 | /* We get the PC of the entry address - which is as good as anything, | |
507 | on a real kernel what you get depends on which mode it uses. */ | |
a86b3c64 | 508 | info.si_signo = TARGET_SIGSEGV; |
97cc7560 DDAG |
509 | info.si_errno = 0; |
510 | /* XXX: check env->error_code */ | |
511 | info.si_code = TARGET_SEGV_MAPERR; | |
abf1172f | 512 | info._sifields._sigfault._addr = env->exception.vaddress; |
9d2803f7 | 513 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
97cc7560 DDAG |
514 | } |
515 | ||
fbb4a2e3 PB |
516 | /* Handle a jump to the kernel code page. */ |
517 | static int | |
518 | do_kernel_trap(CPUARMState *env) | |
519 | { | |
520 | uint32_t addr; | |
521 | uint32_t cpsr; | |
522 | uint32_t val; | |
523 | ||
524 | switch (env->regs[15]) { | |
525 | case 0xffff0fa0: /* __kernel_memory_barrier */ | |
526 | /* ??? No-op. Will need to do better for SMP. */ | |
527 | break; | |
528 | case 0xffff0fc0: /* __kernel_cmpxchg */ | |
d5975363 PB |
529 | /* XXX: This only works between threads, not between processes. |
530 | It's probably possible to implement this with native host | |
531 | operations. However things like ldrex/strex are much harder so | |
532 | there's not much point trying. */ | |
533 | start_exclusive(); | |
fbb4a2e3 PB |
534 | cpsr = cpsr_read(env); |
535 | addr = env->regs[2]; | |
536 | /* FIXME: This should SEGV if the access fails. */ | |
537 | if (get_user_u32(val, addr)) | |
538 | val = ~env->regs[0]; | |
539 | if (val == env->regs[0]) { | |
540 | val = env->regs[1]; | |
541 | /* FIXME: Check for segfaults. */ | |
542 | put_user_u32(val, addr); | |
543 | env->regs[0] = 0; | |
544 | cpsr |= CPSR_C; | |
545 | } else { | |
546 | env->regs[0] = -1; | |
547 | cpsr &= ~CPSR_C; | |
548 | } | |
50866ba5 | 549 | cpsr_write(env, cpsr, CPSR_C, CPSRWriteByInstr); |
d5975363 | 550 | end_exclusive(); |
fbb4a2e3 PB |
551 | break; |
552 | case 0xffff0fe0: /* __kernel_get_tls */ | |
b8d43285 | 553 | env->regs[0] = cpu_get_tls(env); |
fbb4a2e3 | 554 | break; |
97cc7560 DDAG |
555 | case 0xffff0f60: /* __kernel_cmpxchg64 */ |
556 | arm_kernel_cmpxchg64_helper(env); | |
557 | break; | |
558 | ||
fbb4a2e3 PB |
559 | default: |
560 | return 1; | |
561 | } | |
562 | /* Jump back to the caller. */ | |
563 | addr = env->regs[14]; | |
564 | if (addr & 1) { | |
565 | env->thumb = 1; | |
566 | addr &= ~1; | |
567 | } | |
568 | env->regs[15] = addr; | |
569 | ||
570 | return 0; | |
571 | } | |
572 | ||
b346ff46 FB |
573 | void cpu_loop(CPUARMState *env) |
574 | { | |
0315c31c | 575 | CPUState *cs = CPU(arm_env_get_cpu(env)); |
b346ff46 FB |
576 | int trapnr; |
577 | unsigned int n, insn; | |
c227f099 | 578 | target_siginfo_t info; |
b5ff1b31 | 579 | uint32_t addr; |
f0267ef7 | 580 | abi_ulong ret; |
3b46e624 | 581 | |
b346ff46 | 582 | for(;;) { |
0315c31c | 583 | cpu_exec_start(cs); |
8642c1b8 | 584 | trapnr = cpu_exec(cs); |
0315c31c | 585 | cpu_exec_end(cs); |
d148d90e SF |
586 | process_queued_cpu_work(cs); |
587 | ||
b346ff46 FB |
588 | switch(trapnr) { |
589 | case EXCP_UDEF: | |
7517748e | 590 | case EXCP_NOCP: |
e13886e3 | 591 | case EXCP_INVSTATE: |
c6981055 | 592 | { |
0429a971 | 593 | TaskState *ts = cs->opaque; |
c6981055 | 594 | uint32_t opcode; |
6d9a42be | 595 | int rc; |
c6981055 FB |
596 | |
597 | /* we handle the FPU emulation here, as Linux */ | |
598 | /* we get the opcode */ | |
2f619698 | 599 | /* FIXME - what to do if get_user() fails? */ |
49017bd8 | 600 | get_user_code_u32(opcode, env->regs[15], env); |
3b46e624 | 601 | |
6d9a42be AJ |
602 | rc = EmulateAll(opcode, &ts->fpa, env); |
603 | if (rc == 0) { /* illegal instruction */ | |
a86b3c64 | 604 | info.si_signo = TARGET_SIGILL; |
c6981055 FB |
605 | info.si_errno = 0; |
606 | info.si_code = TARGET_ILL_ILLOPN; | |
607 | info._sifields._sigfault._addr = env->regs[15]; | |
9d2803f7 | 608 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
6d9a42be AJ |
609 | } else if (rc < 0) { /* FP exception */ |
610 | int arm_fpe=0; | |
611 | ||
612 | /* translate softfloat flags to FPSR flags */ | |
613 | if (-rc & float_flag_invalid) | |
614 | arm_fpe |= BIT_IOC; | |
615 | if (-rc & float_flag_divbyzero) | |
616 | arm_fpe |= BIT_DZC; | |
617 | if (-rc & float_flag_overflow) | |
618 | arm_fpe |= BIT_OFC; | |
619 | if (-rc & float_flag_underflow) | |
620 | arm_fpe |= BIT_UFC; | |
621 | if (-rc & float_flag_inexact) | |
622 | arm_fpe |= BIT_IXC; | |
623 | ||
624 | FPSR fpsr = ts->fpa.fpsr; | |
625 | //printf("fpsr 0x%x, arm_fpe 0x%x\n",fpsr,arm_fpe); | |
626 | ||
627 | if (fpsr & (arm_fpe << 16)) { /* exception enabled? */ | |
a86b3c64 | 628 | info.si_signo = TARGET_SIGFPE; |
6d9a42be AJ |
629 | info.si_errno = 0; |
630 | ||
631 | /* ordered by priority, least first */ | |
632 | if (arm_fpe & BIT_IXC) info.si_code = TARGET_FPE_FLTRES; | |
633 | if (arm_fpe & BIT_UFC) info.si_code = TARGET_FPE_FLTUND; | |
634 | if (arm_fpe & BIT_OFC) info.si_code = TARGET_FPE_FLTOVF; | |
635 | if (arm_fpe & BIT_DZC) info.si_code = TARGET_FPE_FLTDIV; | |
636 | if (arm_fpe & BIT_IOC) info.si_code = TARGET_FPE_FLTINV; | |
637 | ||
638 | info._sifields._sigfault._addr = env->regs[15]; | |
9d2803f7 | 639 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
6d9a42be AJ |
640 | } else { |
641 | env->regs[15] += 4; | |
642 | } | |
643 | ||
644 | /* accumulate unenabled exceptions */ | |
645 | if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC)) | |
646 | fpsr |= BIT_IXC; | |
647 | if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC)) | |
648 | fpsr |= BIT_UFC; | |
649 | if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC)) | |
650 | fpsr |= BIT_OFC; | |
651 | if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC)) | |
652 | fpsr |= BIT_DZC; | |
653 | if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC)) | |
654 | fpsr |= BIT_IOC; | |
655 | ts->fpa.fpsr=fpsr; | |
656 | } else { /* everything OK */ | |
c6981055 FB |
657 | /* increment PC */ |
658 | env->regs[15] += 4; | |
659 | } | |
660 | } | |
b346ff46 FB |
661 | break; |
662 | case EXCP_SWI: | |
06c949e6 | 663 | case EXCP_BKPT: |
b346ff46 | 664 | { |
ce4defa0 | 665 | env->eabi = 1; |
b346ff46 | 666 | /* system call */ |
06c949e6 PB |
667 | if (trapnr == EXCP_BKPT) { |
668 | if (env->thumb) { | |
2f619698 | 669 | /* FIXME - what to do if get_user() fails? */ |
49017bd8 | 670 | get_user_code_u16(insn, env->regs[15], env); |
06c949e6 PB |
671 | n = insn & 0xff; |
672 | env->regs[15] += 2; | |
673 | } else { | |
2f619698 | 674 | /* FIXME - what to do if get_user() fails? */ |
49017bd8 | 675 | get_user_code_u32(insn, env->regs[15], env); |
06c949e6 PB |
676 | n = (insn & 0xf) | ((insn >> 4) & 0xff0); |
677 | env->regs[15] += 4; | |
678 | } | |
192c7bd9 | 679 | } else { |
06c949e6 | 680 | if (env->thumb) { |
2f619698 | 681 | /* FIXME - what to do if get_user() fails? */ |
49017bd8 | 682 | get_user_code_u16(insn, env->regs[15] - 2, env); |
06c949e6 PB |
683 | n = insn & 0xff; |
684 | } else { | |
2f619698 | 685 | /* FIXME - what to do if get_user() fails? */ |
49017bd8 | 686 | get_user_code_u32(insn, env->regs[15] - 4, env); |
06c949e6 PB |
687 | n = insn & 0xffffff; |
688 | } | |
192c7bd9 FB |
689 | } |
690 | ||
6f1f31c0 | 691 | if (n == ARM_NR_cacheflush) { |
dcfd14b3 | 692 | /* nop */ |
a4f81979 FB |
693 | } else if (n == ARM_NR_semihosting |
694 | || n == ARM_NR_thumb_semihosting) { | |
695 | env->regs[0] = do_arm_semihosting (env); | |
3a1363ac | 696 | } else if (n == 0 || n >= ARM_SYSCALL_BASE || env->thumb) { |
b346ff46 | 697 | /* linux syscall */ |
ce4defa0 | 698 | if (env->thumb || n == 0) { |
192c7bd9 FB |
699 | n = env->regs[7]; |
700 | } else { | |
701 | n -= ARM_SYSCALL_BASE; | |
ce4defa0 | 702 | env->eabi = 0; |
192c7bd9 | 703 | } |
fbb4a2e3 PB |
704 | if ( n > ARM_NR_BASE) { |
705 | switch (n) { | |
706 | case ARM_NR_cacheflush: | |
dcfd14b3 | 707 | /* nop */ |
fbb4a2e3 PB |
708 | break; |
709 | case ARM_NR_set_tls: | |
710 | cpu_set_tls(env, env->regs[0]); | |
711 | env->regs[0] = 0; | |
712 | break; | |
d5355087 HL |
713 | case ARM_NR_breakpoint: |
714 | env->regs[15] -= env->thumb ? 2 : 4; | |
715 | goto excp_debug; | |
fbb4a2e3 PB |
716 | default: |
717 | gemu_log("qemu: Unsupported ARM syscall: 0x%x\n", | |
718 | n); | |
719 | env->regs[0] = -TARGET_ENOSYS; | |
720 | break; | |
721 | } | |
722 | } else { | |
f0267ef7 TB |
723 | ret = do_syscall(env, |
724 | n, | |
725 | env->regs[0], | |
726 | env->regs[1], | |
727 | env->regs[2], | |
728 | env->regs[3], | |
729 | env->regs[4], | |
730 | env->regs[5], | |
731 | 0, 0); | |
732 | if (ret == -TARGET_ERESTARTSYS) { | |
733 | env->regs[15] -= env->thumb ? 2 : 4; | |
734 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
735 | env->regs[0] = ret; | |
736 | } | |
fbb4a2e3 | 737 | } |
b346ff46 FB |
738 | } else { |
739 | goto error; | |
740 | } | |
741 | } | |
742 | break; | |
19a6e31c PM |
743 | case EXCP_SEMIHOST: |
744 | env->regs[0] = do_arm_semihosting(env); | |
745 | break; | |
43fff238 FB |
746 | case EXCP_INTERRUPT: |
747 | /* just indicate that signals should be handled asap */ | |
748 | break; | |
68016c62 FB |
749 | case EXCP_PREFETCH_ABORT: |
750 | case EXCP_DATA_ABORT: | |
abf1172f | 751 | addr = env->exception.vaddress; |
68016c62 | 752 | { |
a86b3c64 | 753 | info.si_signo = TARGET_SIGSEGV; |
68016c62 FB |
754 | info.si_errno = 0; |
755 | /* XXX: check env->error_code */ | |
756 | info.si_code = TARGET_SEGV_MAPERR; | |
b5ff1b31 | 757 | info._sifields._sigfault._addr = addr; |
9d2803f7 | 758 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
68016c62 FB |
759 | } |
760 | break; | |
1fddef4b | 761 | case EXCP_DEBUG: |
d5355087 | 762 | excp_debug: |
1fddef4b FB |
763 | { |
764 | int sig; | |
765 | ||
db6b81d4 | 766 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
1fddef4b FB |
767 | if (sig) |
768 | { | |
769 | info.si_signo = sig; | |
770 | info.si_errno = 0; | |
771 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 772 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
1fddef4b FB |
773 | } |
774 | } | |
775 | break; | |
fbb4a2e3 PB |
776 | case EXCP_KERNEL_TRAP: |
777 | if (do_kernel_trap(env)) | |
778 | goto error; | |
779 | break; | |
f911e0a3 PM |
780 | case EXCP_YIELD: |
781 | /* nothing to do here for user-mode, just resume guest code */ | |
782 | break; | |
fdbc2b57 RH |
783 | case EXCP_ATOMIC: |
784 | cpu_exec_step_atomic(cs); | |
785 | break; | |
b346ff46 FB |
786 | default: |
787 | error: | |
120a9848 | 788 | EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr); |
b346ff46 FB |
789 | abort(); |
790 | } | |
791 | process_pending_signals(env); | |
792 | } | |
793 | } | |
794 | ||
1861c454 PM |
795 | #else |
796 | ||
797 | /* AArch64 main loop */ | |
798 | void cpu_loop(CPUARMState *env) | |
799 | { | |
800 | CPUState *cs = CPU(arm_env_get_cpu(env)); | |
801 | int trapnr, sig; | |
f0267ef7 | 802 | abi_long ret; |
1861c454 | 803 | target_siginfo_t info; |
1861c454 PM |
804 | |
805 | for (;;) { | |
806 | cpu_exec_start(cs); | |
8642c1b8 | 807 | trapnr = cpu_exec(cs); |
1861c454 | 808 | cpu_exec_end(cs); |
d148d90e | 809 | process_queued_cpu_work(cs); |
1861c454 PM |
810 | |
811 | switch (trapnr) { | |
812 | case EXCP_SWI: | |
f0267ef7 TB |
813 | ret = do_syscall(env, |
814 | env->xregs[8], | |
815 | env->xregs[0], | |
816 | env->xregs[1], | |
817 | env->xregs[2], | |
818 | env->xregs[3], | |
819 | env->xregs[4], | |
820 | env->xregs[5], | |
821 | 0, 0); | |
822 | if (ret == -TARGET_ERESTARTSYS) { | |
823 | env->pc -= 4; | |
824 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
825 | env->xregs[0] = ret; | |
826 | } | |
1861c454 PM |
827 | break; |
828 | case EXCP_INTERRUPT: | |
829 | /* just indicate that signals should be handled asap */ | |
830 | break; | |
831 | case EXCP_UDEF: | |
a86b3c64 | 832 | info.si_signo = TARGET_SIGILL; |
1861c454 PM |
833 | info.si_errno = 0; |
834 | info.si_code = TARGET_ILL_ILLOPN; | |
835 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 836 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
1861c454 PM |
837 | break; |
838 | case EXCP_PREFETCH_ABORT: | |
1861c454 | 839 | case EXCP_DATA_ABORT: |
a86b3c64 | 840 | info.si_signo = TARGET_SIGSEGV; |
1861c454 PM |
841 | info.si_errno = 0; |
842 | /* XXX: check env->error_code */ | |
843 | info.si_code = TARGET_SEGV_MAPERR; | |
686581ad | 844 | info._sifields._sigfault._addr = env->exception.vaddress; |
9d2803f7 | 845 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
1861c454 PM |
846 | break; |
847 | case EXCP_DEBUG: | |
848 | case EXCP_BKPT: | |
849 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); | |
850 | if (sig) { | |
851 | info.si_signo = sig; | |
852 | info.si_errno = 0; | |
853 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 854 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
1861c454 PM |
855 | } |
856 | break; | |
8012c84f PM |
857 | case EXCP_SEMIHOST: |
858 | env->xregs[0] = do_arm_semihosting(env); | |
859 | break; | |
f911e0a3 PM |
860 | case EXCP_YIELD: |
861 | /* nothing to do here for user-mode, just resume guest code */ | |
862 | break; | |
fdbc2b57 RH |
863 | case EXCP_ATOMIC: |
864 | cpu_exec_step_atomic(cs); | |
865 | break; | |
1861c454 | 866 | default: |
120a9848 | 867 | EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr); |
1861c454 PM |
868 | abort(); |
869 | } | |
870 | process_pending_signals(env); | |
fa2ef212 MM |
871 | /* Exception return on AArch64 always clears the exclusive monitor, |
872 | * so any return to running guest code implies this. | |
fa2ef212 MM |
873 | */ |
874 | env->exclusive_addr = -1; | |
1861c454 PM |
875 | } |
876 | } | |
877 | #endif /* ndef TARGET_ABI32 */ | |
878 | ||
b346ff46 | 879 | #endif |
1b6b029e | 880 | |
d2fbca94 GX |
881 | #ifdef TARGET_UNICORE32 |
882 | ||
05390248 | 883 | void cpu_loop(CPUUniCore32State *env) |
d2fbca94 | 884 | { |
0315c31c | 885 | CPUState *cs = CPU(uc32_env_get_cpu(env)); |
d2fbca94 GX |
886 | int trapnr; |
887 | unsigned int n, insn; | |
888 | target_siginfo_t info; | |
889 | ||
890 | for (;;) { | |
0315c31c | 891 | cpu_exec_start(cs); |
8642c1b8 | 892 | trapnr = cpu_exec(cs); |
0315c31c | 893 | cpu_exec_end(cs); |
d148d90e SF |
894 | process_queued_cpu_work(cs); |
895 | ||
d2fbca94 GX |
896 | switch (trapnr) { |
897 | case UC32_EXCP_PRIV: | |
898 | { | |
899 | /* system call */ | |
900 | get_user_u32(insn, env->regs[31] - 4); | |
901 | n = insn & 0xffffff; | |
902 | ||
903 | if (n >= UC32_SYSCALL_BASE) { | |
904 | /* linux syscall */ | |
905 | n -= UC32_SYSCALL_BASE; | |
906 | if (n == UC32_SYSCALL_NR_set_tls) { | |
907 | cpu_set_tls(env, env->regs[0]); | |
908 | env->regs[0] = 0; | |
909 | } else { | |
256cb6af | 910 | abi_long ret = do_syscall(env, |
d2fbca94 GX |
911 | n, |
912 | env->regs[0], | |
913 | env->regs[1], | |
914 | env->regs[2], | |
915 | env->regs[3], | |
916 | env->regs[4], | |
5945cfcb PM |
917 | env->regs[5], |
918 | 0, 0); | |
256cb6af TB |
919 | if (ret == -TARGET_ERESTARTSYS) { |
920 | env->regs[31] -= 4; | |
921 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
922 | env->regs[0] = ret; | |
923 | } | |
d2fbca94 GX |
924 | } |
925 | } else { | |
926 | goto error; | |
927 | } | |
928 | } | |
929 | break; | |
d48813dd GX |
930 | case UC32_EXCP_DTRAP: |
931 | case UC32_EXCP_ITRAP: | |
a86b3c64 | 932 | info.si_signo = TARGET_SIGSEGV; |
d2fbca94 GX |
933 | info.si_errno = 0; |
934 | /* XXX: check env->error_code */ | |
935 | info.si_code = TARGET_SEGV_MAPERR; | |
936 | info._sifields._sigfault._addr = env->cp0.c4_faultaddr; | |
9d2803f7 | 937 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
d2fbca94 GX |
938 | break; |
939 | case EXCP_INTERRUPT: | |
940 | /* just indicate that signals should be handled asap */ | |
941 | break; | |
942 | case EXCP_DEBUG: | |
943 | { | |
944 | int sig; | |
945 | ||
db6b81d4 | 946 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
d2fbca94 GX |
947 | if (sig) { |
948 | info.si_signo = sig; | |
949 | info.si_errno = 0; | |
950 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 951 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
d2fbca94 GX |
952 | } |
953 | } | |
954 | break; | |
fdbc2b57 RH |
955 | case EXCP_ATOMIC: |
956 | cpu_exec_step_atomic(cs); | |
957 | break; | |
d2fbca94 GX |
958 | default: |
959 | goto error; | |
960 | } | |
961 | process_pending_signals(env); | |
962 | } | |
963 | ||
964 | error: | |
120a9848 | 965 | EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr); |
d2fbca94 GX |
966 | abort(); |
967 | } | |
968 | #endif | |
969 | ||
93ac68bc | 970 | #ifdef TARGET_SPARC |
ed23fbd9 | 971 | #define SPARC64_STACK_BIAS 2047 |
93ac68bc | 972 | |
060366c5 FB |
973 | //#define DEBUG_WIN |
974 | ||
2623cbaf FB |
975 | /* WARNING: dealing with register windows _is_ complicated. More info |
976 | can be found at http://www.sics.se/~psm/sparcstack.html */ | |
060366c5 FB |
977 | static inline int get_reg_index(CPUSPARCState *env, int cwp, int index) |
978 | { | |
1a14026e | 979 | index = (index + cwp * 16) % (16 * env->nwindows); |
060366c5 FB |
980 | /* wrap handling : if cwp is on the last window, then we use the |
981 | registers 'after' the end */ | |
1a14026e BS |
982 | if (index < 8 && env->cwp == env->nwindows - 1) |
983 | index += 16 * env->nwindows; | |
060366c5 FB |
984 | return index; |
985 | } | |
986 | ||
2623cbaf FB |
987 | /* save the register window 'cwp1' */ |
988 | static inline void save_window_offset(CPUSPARCState *env, int cwp1) | |
060366c5 | 989 | { |
2623cbaf | 990 | unsigned int i; |
992f48a0 | 991 | abi_ulong sp_ptr; |
3b46e624 | 992 | |
53a5960a | 993 | sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)]; |
ed23fbd9 BS |
994 | #ifdef TARGET_SPARC64 |
995 | if (sp_ptr & 3) | |
996 | sp_ptr += SPARC64_STACK_BIAS; | |
997 | #endif | |
060366c5 | 998 | #if defined(DEBUG_WIN) |
2daf0284 BS |
999 | printf("win_overflow: sp_ptr=0x" TARGET_ABI_FMT_lx " save_cwp=%d\n", |
1000 | sp_ptr, cwp1); | |
060366c5 | 1001 | #endif |
2623cbaf | 1002 | for(i = 0; i < 16; i++) { |
2f619698 FB |
1003 | /* FIXME - what to do if put_user() fails? */ |
1004 | put_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr); | |
992f48a0 | 1005 | sp_ptr += sizeof(abi_ulong); |
2623cbaf | 1006 | } |
060366c5 FB |
1007 | } |
1008 | ||
1009 | static void save_window(CPUSPARCState *env) | |
1010 | { | |
5ef54116 | 1011 | #ifndef TARGET_SPARC64 |
2623cbaf | 1012 | unsigned int new_wim; |
1a14026e BS |
1013 | new_wim = ((env->wim >> 1) | (env->wim << (env->nwindows - 1))) & |
1014 | ((1LL << env->nwindows) - 1); | |
1015 | save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2)); | |
2623cbaf | 1016 | env->wim = new_wim; |
5ef54116 | 1017 | #else |
1a14026e | 1018 | save_window_offset(env, cpu_cwp_dec(env, env->cwp - 2)); |
5ef54116 FB |
1019 | env->cansave++; |
1020 | env->canrestore--; | |
1021 | #endif | |
060366c5 FB |
1022 | } |
1023 | ||
1024 | static void restore_window(CPUSPARCState *env) | |
1025 | { | |
eda52953 BS |
1026 | #ifndef TARGET_SPARC64 |
1027 | unsigned int new_wim; | |
1028 | #endif | |
1029 | unsigned int i, cwp1; | |
992f48a0 | 1030 | abi_ulong sp_ptr; |
3b46e624 | 1031 | |
eda52953 | 1032 | #ifndef TARGET_SPARC64 |
1a14026e BS |
1033 | new_wim = ((env->wim << 1) | (env->wim >> (env->nwindows - 1))) & |
1034 | ((1LL << env->nwindows) - 1); | |
eda52953 | 1035 | #endif |
3b46e624 | 1036 | |
060366c5 | 1037 | /* restore the invalid window */ |
1a14026e | 1038 | cwp1 = cpu_cwp_inc(env, env->cwp + 1); |
53a5960a | 1039 | sp_ptr = env->regbase[get_reg_index(env, cwp1, 6)]; |
ed23fbd9 BS |
1040 | #ifdef TARGET_SPARC64 |
1041 | if (sp_ptr & 3) | |
1042 | sp_ptr += SPARC64_STACK_BIAS; | |
1043 | #endif | |
060366c5 | 1044 | #if defined(DEBUG_WIN) |
2daf0284 BS |
1045 | printf("win_underflow: sp_ptr=0x" TARGET_ABI_FMT_lx " load_cwp=%d\n", |
1046 | sp_ptr, cwp1); | |
060366c5 | 1047 | #endif |
2623cbaf | 1048 | for(i = 0; i < 16; i++) { |
2f619698 FB |
1049 | /* FIXME - what to do if get_user() fails? */ |
1050 | get_user_ual(env->regbase[get_reg_index(env, cwp1, 8 + i)], sp_ptr); | |
992f48a0 | 1051 | sp_ptr += sizeof(abi_ulong); |
2623cbaf | 1052 | } |
5ef54116 FB |
1053 | #ifdef TARGET_SPARC64 |
1054 | env->canrestore++; | |
1a14026e BS |
1055 | if (env->cleanwin < env->nwindows - 1) |
1056 | env->cleanwin++; | |
5ef54116 | 1057 | env->cansave--; |
eda52953 BS |
1058 | #else |
1059 | env->wim = new_wim; | |
5ef54116 | 1060 | #endif |
060366c5 FB |
1061 | } |
1062 | ||
1063 | static void flush_windows(CPUSPARCState *env) | |
1064 | { | |
1065 | int offset, cwp1; | |
2623cbaf FB |
1066 | |
1067 | offset = 1; | |
060366c5 FB |
1068 | for(;;) { |
1069 | /* if restore would invoke restore_window(), then we can stop */ | |
1a14026e | 1070 | cwp1 = cpu_cwp_inc(env, env->cwp + offset); |
eda52953 | 1071 | #ifndef TARGET_SPARC64 |
060366c5 FB |
1072 | if (env->wim & (1 << cwp1)) |
1073 | break; | |
eda52953 BS |
1074 | #else |
1075 | if (env->canrestore == 0) | |
1076 | break; | |
1077 | env->cansave++; | |
1078 | env->canrestore--; | |
1079 | #endif | |
2623cbaf | 1080 | save_window_offset(env, cwp1); |
060366c5 FB |
1081 | offset++; |
1082 | } | |
1a14026e | 1083 | cwp1 = cpu_cwp_inc(env, env->cwp + 1); |
eda52953 BS |
1084 | #ifndef TARGET_SPARC64 |
1085 | /* set wim so that restore will reload the registers */ | |
2623cbaf | 1086 | env->wim = 1 << cwp1; |
eda52953 | 1087 | #endif |
2623cbaf FB |
1088 | #if defined(DEBUG_WIN) |
1089 | printf("flush_windows: nb=%d\n", offset - 1); | |
80a9d035 | 1090 | #endif |
2623cbaf | 1091 | } |
060366c5 | 1092 | |
93ac68bc FB |
1093 | void cpu_loop (CPUSPARCState *env) |
1094 | { | |
878096ee | 1095 | CPUState *cs = CPU(sparc_env_get_cpu(env)); |
2cc20260 RH |
1096 | int trapnr; |
1097 | abi_long ret; | |
c227f099 | 1098 | target_siginfo_t info; |
3b46e624 | 1099 | |
060366c5 | 1100 | while (1) { |
b040bc9c | 1101 | cpu_exec_start(cs); |
8642c1b8 | 1102 | trapnr = cpu_exec(cs); |
b040bc9c | 1103 | cpu_exec_end(cs); |
d148d90e | 1104 | process_queued_cpu_work(cs); |
3b46e624 | 1105 | |
20132b96 RH |
1106 | /* Compute PSR before exposing state. */ |
1107 | if (env->cc_op != CC_OP_FLAGS) { | |
1108 | cpu_get_psr(env); | |
1109 | } | |
1110 | ||
060366c5 | 1111 | switch (trapnr) { |
5ef54116 | 1112 | #ifndef TARGET_SPARC64 |
5fafdf24 | 1113 | case 0x88: |
060366c5 | 1114 | case 0x90: |
5ef54116 | 1115 | #else |
cb33da57 | 1116 | case 0x110: |
5ef54116 FB |
1117 | case 0x16d: |
1118 | #endif | |
060366c5 | 1119 | ret = do_syscall (env, env->gregs[1], |
5fafdf24 TS |
1120 | env->regwptr[0], env->regwptr[1], |
1121 | env->regwptr[2], env->regwptr[3], | |
5945cfcb PM |
1122 | env->regwptr[4], env->regwptr[5], |
1123 | 0, 0); | |
c0bea68f TB |
1124 | if (ret == -TARGET_ERESTARTSYS || ret == -TARGET_QEMU_ESIGRETURN) { |
1125 | break; | |
1126 | } | |
2cc20260 | 1127 | if ((abi_ulong)ret >= (abi_ulong)(-515)) { |
992f48a0 | 1128 | #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32) |
27908725 FB |
1129 | env->xcc |= PSR_CARRY; |
1130 | #else | |
060366c5 | 1131 | env->psr |= PSR_CARRY; |
27908725 | 1132 | #endif |
060366c5 FB |
1133 | ret = -ret; |
1134 | } else { | |
992f48a0 | 1135 | #if defined(TARGET_SPARC64) && !defined(TARGET_ABI32) |
27908725 FB |
1136 | env->xcc &= ~PSR_CARRY; |
1137 | #else | |
060366c5 | 1138 | env->psr &= ~PSR_CARRY; |
27908725 | 1139 | #endif |
060366c5 FB |
1140 | } |
1141 | env->regwptr[0] = ret; | |
1142 | /* next instruction */ | |
1143 | env->pc = env->npc; | |
1144 | env->npc = env->npc + 4; | |
1145 | break; | |
1146 | case 0x83: /* flush windows */ | |
992f48a0 BS |
1147 | #ifdef TARGET_ABI32 |
1148 | case 0x103: | |
1149 | #endif | |
2623cbaf | 1150 | flush_windows(env); |
060366c5 FB |
1151 | /* next instruction */ |
1152 | env->pc = env->npc; | |
1153 | env->npc = env->npc + 4; | |
1154 | break; | |
3475187d | 1155 | #ifndef TARGET_SPARC64 |
060366c5 FB |
1156 | case TT_WIN_OVF: /* window overflow */ |
1157 | save_window(env); | |
1158 | break; | |
1159 | case TT_WIN_UNF: /* window underflow */ | |
1160 | restore_window(env); | |
1161 | break; | |
61ff6f58 FB |
1162 | case TT_TFAULT: |
1163 | case TT_DFAULT: | |
1164 | { | |
59f7182f | 1165 | info.si_signo = TARGET_SIGSEGV; |
61ff6f58 FB |
1166 | info.si_errno = 0; |
1167 | /* XXX: check env->error_code */ | |
1168 | info.si_code = TARGET_SEGV_MAPERR; | |
1169 | info._sifields._sigfault._addr = env->mmuregs[4]; | |
9d2803f7 | 1170 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
61ff6f58 FB |
1171 | } |
1172 | break; | |
3475187d | 1173 | #else |
5ef54116 FB |
1174 | case TT_SPILL: /* window overflow */ |
1175 | save_window(env); | |
1176 | break; | |
1177 | case TT_FILL: /* window underflow */ | |
1178 | restore_window(env); | |
1179 | break; | |
7f84a729 BS |
1180 | case TT_TFAULT: |
1181 | case TT_DFAULT: | |
1182 | { | |
59f7182f | 1183 | info.si_signo = TARGET_SIGSEGV; |
7f84a729 BS |
1184 | info.si_errno = 0; |
1185 | /* XXX: check env->error_code */ | |
1186 | info.si_code = TARGET_SEGV_MAPERR; | |
1187 | if (trapnr == TT_DFAULT) | |
96df2bc9 | 1188 | info._sifields._sigfault._addr = env->dmmu.mmuregs[4]; |
7f84a729 | 1189 | else |
8194f35a | 1190 | info._sifields._sigfault._addr = cpu_tsptr(env)->tpc; |
9d2803f7 | 1191 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
7f84a729 BS |
1192 | } |
1193 | break; | |
27524dc3 | 1194 | #ifndef TARGET_ABI32 |
5bfb56b2 BS |
1195 | case 0x16e: |
1196 | flush_windows(env); | |
1197 | sparc64_get_context(env); | |
1198 | break; | |
1199 | case 0x16f: | |
1200 | flush_windows(env); | |
1201 | sparc64_set_context(env); | |
1202 | break; | |
27524dc3 | 1203 | #endif |
3475187d | 1204 | #endif |
48dc41eb FB |
1205 | case EXCP_INTERRUPT: |
1206 | /* just indicate that signals should be handled asap */ | |
1207 | break; | |
75f22e4e RH |
1208 | case TT_ILL_INSN: |
1209 | { | |
1210 | info.si_signo = TARGET_SIGILL; | |
1211 | info.si_errno = 0; | |
1212 | info.si_code = TARGET_ILL_ILLOPC; | |
1213 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 1214 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
75f22e4e RH |
1215 | } |
1216 | break; | |
1fddef4b FB |
1217 | case EXCP_DEBUG: |
1218 | { | |
1219 | int sig; | |
1220 | ||
db6b81d4 | 1221 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
1fddef4b FB |
1222 | if (sig) |
1223 | { | |
1224 | info.si_signo = sig; | |
1225 | info.si_errno = 0; | |
1226 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 1227 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
1fddef4b FB |
1228 | } |
1229 | } | |
1230 | break; | |
fdbc2b57 RH |
1231 | case EXCP_ATOMIC: |
1232 | cpu_exec_step_atomic(cs); | |
1233 | break; | |
060366c5 FB |
1234 | default: |
1235 | printf ("Unhandled trap: 0x%x\n", trapnr); | |
878096ee | 1236 | cpu_dump_state(cs, stderr, fprintf, 0); |
4d1275c2 | 1237 | exit(EXIT_FAILURE); |
060366c5 FB |
1238 | } |
1239 | process_pending_signals (env); | |
1240 | } | |
93ac68bc FB |
1241 | } |
1242 | ||
1243 | #endif | |
1244 | ||
67867308 | 1245 | #ifdef TARGET_PPC |
05390248 | 1246 | static inline uint64_t cpu_ppc_get_tb(CPUPPCState *env) |
9fddaa0c | 1247 | { |
4a7428c5 | 1248 | return cpu_get_host_ticks(); |
9fddaa0c | 1249 | } |
3b46e624 | 1250 | |
05390248 | 1251 | uint64_t cpu_ppc_load_tbl(CPUPPCState *env) |
9fddaa0c | 1252 | { |
e3ea6529 | 1253 | return cpu_ppc_get_tb(env); |
9fddaa0c | 1254 | } |
3b46e624 | 1255 | |
05390248 | 1256 | uint32_t cpu_ppc_load_tbu(CPUPPCState *env) |
9fddaa0c FB |
1257 | { |
1258 | return cpu_ppc_get_tb(env) >> 32; | |
1259 | } | |
3b46e624 | 1260 | |
05390248 | 1261 | uint64_t cpu_ppc_load_atbl(CPUPPCState *env) |
9fddaa0c | 1262 | { |
b711de95 | 1263 | return cpu_ppc_get_tb(env); |
9fddaa0c | 1264 | } |
5fafdf24 | 1265 | |
05390248 | 1266 | uint32_t cpu_ppc_load_atbu(CPUPPCState *env) |
9fddaa0c | 1267 | { |
a062e36c | 1268 | return cpu_ppc_get_tb(env) >> 32; |
9fddaa0c | 1269 | } |
76a66253 | 1270 | |
05390248 | 1271 | uint32_t cpu_ppc601_load_rtcu(CPUPPCState *env) |
76a66253 JM |
1272 | __attribute__ (( alias ("cpu_ppc_load_tbu") )); |
1273 | ||
05390248 | 1274 | uint32_t cpu_ppc601_load_rtcl(CPUPPCState *env) |
9fddaa0c | 1275 | { |
76a66253 | 1276 | return cpu_ppc_load_tbl(env) & 0x3FFFFF80; |
9fddaa0c | 1277 | } |
76a66253 | 1278 | |
a750fc0b | 1279 | /* XXX: to be fixed */ |
73b01960 | 1280 | int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, uint32_t *valp) |
a750fc0b JM |
1281 | { |
1282 | return -1; | |
1283 | } | |
1284 | ||
73b01960 | 1285 | int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, uint32_t val) |
a750fc0b JM |
1286 | { |
1287 | return -1; | |
1288 | } | |
1289 | ||
56f066bb NF |
1290 | static int do_store_exclusive(CPUPPCState *env) |
1291 | { | |
1292 | target_ulong addr; | |
1293 | target_ulong page_addr; | |
e22c357b | 1294 | target_ulong val, val2 __attribute__((unused)) = 0; |
56f066bb NF |
1295 | int flags; |
1296 | int segv = 0; | |
1297 | ||
1298 | addr = env->reserve_ea; | |
1299 | page_addr = addr & TARGET_PAGE_MASK; | |
1300 | start_exclusive(); | |
1301 | mmap_lock(); | |
1302 | flags = page_get_flags(page_addr); | |
1303 | if ((flags & PAGE_READ) == 0) { | |
1304 | segv = 1; | |
1305 | } else { | |
1306 | int reg = env->reserve_info & 0x1f; | |
4b1daa72 | 1307 | int size = env->reserve_info >> 5; |
56f066bb NF |
1308 | int stored = 0; |
1309 | ||
1310 | if (addr == env->reserve_addr) { | |
1311 | switch (size) { | |
1312 | case 1: segv = get_user_u8(val, addr); break; | |
1313 | case 2: segv = get_user_u16(val, addr); break; | |
1314 | case 4: segv = get_user_u32(val, addr); break; | |
1315 | #if defined(TARGET_PPC64) | |
1316 | case 8: segv = get_user_u64(val, addr); break; | |
27b95bfe TM |
1317 | case 16: { |
1318 | segv = get_user_u64(val, addr); | |
1319 | if (!segv) { | |
1320 | segv = get_user_u64(val2, addr + 8); | |
1321 | } | |
1322 | break; | |
1323 | } | |
56f066bb NF |
1324 | #endif |
1325 | default: abort(); | |
1326 | } | |
1327 | if (!segv && val == env->reserve_val) { | |
1328 | val = env->gpr[reg]; | |
1329 | switch (size) { | |
1330 | case 1: segv = put_user_u8(val, addr); break; | |
1331 | case 2: segv = put_user_u16(val, addr); break; | |
1332 | case 4: segv = put_user_u32(val, addr); break; | |
1333 | #if defined(TARGET_PPC64) | |
1334 | case 8: segv = put_user_u64(val, addr); break; | |
27b95bfe TM |
1335 | case 16: { |
1336 | if (val2 == env->reserve_val2) { | |
e22c357b DK |
1337 | if (msr_le) { |
1338 | val2 = val; | |
1339 | val = env->gpr[reg+1]; | |
1340 | } else { | |
1341 | val2 = env->gpr[reg+1]; | |
1342 | } | |
27b95bfe TM |
1343 | segv = put_user_u64(val, addr); |
1344 | if (!segv) { | |
1345 | segv = put_user_u64(val2, addr + 8); | |
1346 | } | |
1347 | } | |
1348 | break; | |
1349 | } | |
56f066bb NF |
1350 | #endif |
1351 | default: abort(); | |
1352 | } | |
1353 | if (!segv) { | |
1354 | stored = 1; | |
1355 | } | |
1356 | } | |
1357 | } | |
1358 | env->crf[0] = (stored << 1) | xer_so; | |
1359 | env->reserve_addr = (target_ulong)-1; | |
1360 | } | |
1361 | if (!segv) { | |
1362 | env->nip += 4; | |
1363 | } | |
1364 | mmap_unlock(); | |
1365 | end_exclusive(); | |
1366 | return segv; | |
1367 | } | |
1368 | ||
67867308 FB |
1369 | void cpu_loop(CPUPPCState *env) |
1370 | { | |
0315c31c | 1371 | CPUState *cs = CPU(ppc_env_get_cpu(env)); |
c227f099 | 1372 | target_siginfo_t info; |
61190b14 | 1373 | int trapnr; |
9e0e2f96 | 1374 | target_ulong ret; |
3b46e624 | 1375 | |
67867308 | 1376 | for(;;) { |
0315c31c | 1377 | cpu_exec_start(cs); |
8642c1b8 | 1378 | trapnr = cpu_exec(cs); |
0315c31c | 1379 | cpu_exec_end(cs); |
d148d90e SF |
1380 | process_queued_cpu_work(cs); |
1381 | ||
67867308 | 1382 | switch(trapnr) { |
e1833e1f JM |
1383 | case POWERPC_EXCP_NONE: |
1384 | /* Just go on */ | |
67867308 | 1385 | break; |
e1833e1f | 1386 | case POWERPC_EXCP_CRITICAL: /* Critical input */ |
a47dddd7 | 1387 | cpu_abort(cs, "Critical interrupt while in user mode. " |
e1833e1f | 1388 | "Aborting\n"); |
61190b14 | 1389 | break; |
e1833e1f | 1390 | case POWERPC_EXCP_MCHECK: /* Machine check exception */ |
a47dddd7 | 1391 | cpu_abort(cs, "Machine check exception while in user mode. " |
e1833e1f JM |
1392 | "Aborting\n"); |
1393 | break; | |
1394 | case POWERPC_EXCP_DSI: /* Data storage exception */ | |
e1833e1f | 1395 | /* XXX: check this. Seems bugged */ |
2be0071f FB |
1396 | switch (env->error_code & 0xFF000000) { |
1397 | case 0x40000000: | |
ba4a8df8 | 1398 | case 0x42000000: |
61190b14 FB |
1399 | info.si_signo = TARGET_SIGSEGV; |
1400 | info.si_errno = 0; | |
1401 | info.si_code = TARGET_SEGV_MAPERR; | |
1402 | break; | |
2be0071f | 1403 | case 0x04000000: |
61190b14 FB |
1404 | info.si_signo = TARGET_SIGILL; |
1405 | info.si_errno = 0; | |
1406 | info.si_code = TARGET_ILL_ILLADR; | |
1407 | break; | |
2be0071f | 1408 | case 0x08000000: |
61190b14 FB |
1409 | info.si_signo = TARGET_SIGSEGV; |
1410 | info.si_errno = 0; | |
1411 | info.si_code = TARGET_SEGV_ACCERR; | |
1412 | break; | |
61190b14 FB |
1413 | default: |
1414 | /* Let's send a regular segfault... */ | |
e1833e1f JM |
1415 | EXCP_DUMP(env, "Invalid segfault errno (%02x)\n", |
1416 | env->error_code); | |
61190b14 FB |
1417 | info.si_signo = TARGET_SIGSEGV; |
1418 | info.si_errno = 0; | |
1419 | info.si_code = TARGET_SEGV_MAPERR; | |
1420 | break; | |
1421 | } | |
15e692a6 | 1422 | info._sifields._sigfault._addr = env->spr[SPR_DAR]; |
9d2803f7 | 1423 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
67867308 | 1424 | break; |
e1833e1f | 1425 | case POWERPC_EXCP_ISI: /* Instruction storage exception */ |
e1833e1f | 1426 | /* XXX: check this */ |
2be0071f FB |
1427 | switch (env->error_code & 0xFF000000) { |
1428 | case 0x40000000: | |
61190b14 | 1429 | info.si_signo = TARGET_SIGSEGV; |
67867308 | 1430 | info.si_errno = 0; |
61190b14 FB |
1431 | info.si_code = TARGET_SEGV_MAPERR; |
1432 | break; | |
2be0071f FB |
1433 | case 0x10000000: |
1434 | case 0x08000000: | |
61190b14 FB |
1435 | info.si_signo = TARGET_SIGSEGV; |
1436 | info.si_errno = 0; | |
1437 | info.si_code = TARGET_SEGV_ACCERR; | |
1438 | break; | |
1439 | default: | |
1440 | /* Let's send a regular segfault... */ | |
e1833e1f JM |
1441 | EXCP_DUMP(env, "Invalid segfault errno (%02x)\n", |
1442 | env->error_code); | |
61190b14 FB |
1443 | info.si_signo = TARGET_SIGSEGV; |
1444 | info.si_errno = 0; | |
1445 | info.si_code = TARGET_SEGV_MAPERR; | |
1446 | break; | |
1447 | } | |
1448 | info._sifields._sigfault._addr = env->nip - 4; | |
9d2803f7 | 1449 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
67867308 | 1450 | break; |
e1833e1f | 1451 | case POWERPC_EXCP_EXTERNAL: /* External input */ |
a47dddd7 | 1452 | cpu_abort(cs, "External interrupt while in user mode. " |
e1833e1f JM |
1453 | "Aborting\n"); |
1454 | break; | |
1455 | case POWERPC_EXCP_ALIGN: /* Alignment exception */ | |
e1833e1f | 1456 | /* XXX: check this */ |
61190b14 | 1457 | info.si_signo = TARGET_SIGBUS; |
67867308 | 1458 | info.si_errno = 0; |
61190b14 | 1459 | info.si_code = TARGET_BUS_ADRALN; |
6bb9a0a9 | 1460 | info._sifields._sigfault._addr = env->nip; |
9d2803f7 | 1461 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
67867308 | 1462 | break; |
e1833e1f | 1463 | case POWERPC_EXCP_PROGRAM: /* Program exception */ |
9b2fadda | 1464 | case POWERPC_EXCP_HV_EMU: /* HV emulation */ |
e1833e1f | 1465 | /* XXX: check this */ |
61190b14 | 1466 | switch (env->error_code & ~0xF) { |
e1833e1f | 1467 | case POWERPC_EXCP_FP: |
61190b14 FB |
1468 | info.si_signo = TARGET_SIGFPE; |
1469 | info.si_errno = 0; | |
1470 | switch (env->error_code & 0xF) { | |
e1833e1f | 1471 | case POWERPC_EXCP_FP_OX: |
61190b14 FB |
1472 | info.si_code = TARGET_FPE_FLTOVF; |
1473 | break; | |
e1833e1f | 1474 | case POWERPC_EXCP_FP_UX: |
61190b14 FB |
1475 | info.si_code = TARGET_FPE_FLTUND; |
1476 | break; | |
e1833e1f JM |
1477 | case POWERPC_EXCP_FP_ZX: |
1478 | case POWERPC_EXCP_FP_VXZDZ: | |
61190b14 FB |
1479 | info.si_code = TARGET_FPE_FLTDIV; |
1480 | break; | |
e1833e1f | 1481 | case POWERPC_EXCP_FP_XX: |
61190b14 FB |
1482 | info.si_code = TARGET_FPE_FLTRES; |
1483 | break; | |
e1833e1f | 1484 | case POWERPC_EXCP_FP_VXSOFT: |
61190b14 FB |
1485 | info.si_code = TARGET_FPE_FLTINV; |
1486 | break; | |
7c58044c | 1487 | case POWERPC_EXCP_FP_VXSNAN: |
e1833e1f JM |
1488 | case POWERPC_EXCP_FP_VXISI: |
1489 | case POWERPC_EXCP_FP_VXIDI: | |
1490 | case POWERPC_EXCP_FP_VXIMZ: | |
1491 | case POWERPC_EXCP_FP_VXVC: | |
1492 | case POWERPC_EXCP_FP_VXSQRT: | |
1493 | case POWERPC_EXCP_FP_VXCVI: | |
61190b14 FB |
1494 | info.si_code = TARGET_FPE_FLTSUB; |
1495 | break; | |
1496 | default: | |
e1833e1f JM |
1497 | EXCP_DUMP(env, "Unknown floating point exception (%02x)\n", |
1498 | env->error_code); | |
1499 | break; | |
61190b14 | 1500 | } |
e1833e1f JM |
1501 | break; |
1502 | case POWERPC_EXCP_INVAL: | |
61190b14 FB |
1503 | info.si_signo = TARGET_SIGILL; |
1504 | info.si_errno = 0; | |
1505 | switch (env->error_code & 0xF) { | |
e1833e1f | 1506 | case POWERPC_EXCP_INVAL_INVAL: |
61190b14 FB |
1507 | info.si_code = TARGET_ILL_ILLOPC; |
1508 | break; | |
e1833e1f | 1509 | case POWERPC_EXCP_INVAL_LSWX: |
a750fc0b | 1510 | info.si_code = TARGET_ILL_ILLOPN; |
61190b14 | 1511 | break; |
e1833e1f | 1512 | case POWERPC_EXCP_INVAL_SPR: |
61190b14 FB |
1513 | info.si_code = TARGET_ILL_PRVREG; |
1514 | break; | |
e1833e1f | 1515 | case POWERPC_EXCP_INVAL_FP: |
61190b14 FB |
1516 | info.si_code = TARGET_ILL_COPROC; |
1517 | break; | |
1518 | default: | |
e1833e1f JM |
1519 | EXCP_DUMP(env, "Unknown invalid operation (%02x)\n", |
1520 | env->error_code & 0xF); | |
61190b14 FB |
1521 | info.si_code = TARGET_ILL_ILLADR; |
1522 | break; | |
1523 | } | |
1524 | break; | |
e1833e1f | 1525 | case POWERPC_EXCP_PRIV: |
61190b14 FB |
1526 | info.si_signo = TARGET_SIGILL; |
1527 | info.si_errno = 0; | |
1528 | switch (env->error_code & 0xF) { | |
e1833e1f | 1529 | case POWERPC_EXCP_PRIV_OPC: |
61190b14 FB |
1530 | info.si_code = TARGET_ILL_PRVOPC; |
1531 | break; | |
e1833e1f | 1532 | case POWERPC_EXCP_PRIV_REG: |
61190b14 | 1533 | info.si_code = TARGET_ILL_PRVREG; |
e1833e1f | 1534 | break; |
61190b14 | 1535 | default: |
e1833e1f JM |
1536 | EXCP_DUMP(env, "Unknown privilege violation (%02x)\n", |
1537 | env->error_code & 0xF); | |
61190b14 FB |
1538 | info.si_code = TARGET_ILL_PRVOPC; |
1539 | break; | |
1540 | } | |
1541 | break; | |
e1833e1f | 1542 | case POWERPC_EXCP_TRAP: |
a47dddd7 | 1543 | cpu_abort(cs, "Tried to call a TRAP\n"); |
e1833e1f | 1544 | break; |
61190b14 FB |
1545 | default: |
1546 | /* Should not happen ! */ | |
a47dddd7 | 1547 | cpu_abort(cs, "Unknown program exception (%02x)\n", |
e1833e1f JM |
1548 | env->error_code); |
1549 | break; | |
61190b14 | 1550 | } |
bd6fefe7 | 1551 | info._sifields._sigfault._addr = env->nip; |
9d2803f7 | 1552 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
67867308 | 1553 | break; |
e1833e1f | 1554 | case POWERPC_EXCP_FPU: /* Floating-point unavailable exception */ |
61190b14 | 1555 | info.si_signo = TARGET_SIGILL; |
67867308 | 1556 | info.si_errno = 0; |
61190b14 | 1557 | info.si_code = TARGET_ILL_COPROC; |
bd6fefe7 | 1558 | info._sifields._sigfault._addr = env->nip; |
9d2803f7 | 1559 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
67867308 | 1560 | break; |
e1833e1f | 1561 | case POWERPC_EXCP_SYSCALL: /* System call exception */ |
a47dddd7 | 1562 | cpu_abort(cs, "Syscall exception while in user mode. " |
e1833e1f | 1563 | "Aborting\n"); |
61190b14 | 1564 | break; |
e1833e1f | 1565 | case POWERPC_EXCP_APU: /* Auxiliary processor unavailable */ |
e1833e1f JM |
1566 | info.si_signo = TARGET_SIGILL; |
1567 | info.si_errno = 0; | |
1568 | info.si_code = TARGET_ILL_COPROC; | |
bd6fefe7 | 1569 | info._sifields._sigfault._addr = env->nip; |
9d2803f7 | 1570 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
61190b14 | 1571 | break; |
e1833e1f | 1572 | case POWERPC_EXCP_DECR: /* Decrementer exception */ |
a47dddd7 | 1573 | cpu_abort(cs, "Decrementer interrupt while in user mode. " |
e1833e1f | 1574 | "Aborting\n"); |
61190b14 | 1575 | break; |
e1833e1f | 1576 | case POWERPC_EXCP_FIT: /* Fixed-interval timer interrupt */ |
a47dddd7 | 1577 | cpu_abort(cs, "Fix interval timer interrupt while in user mode. " |
e1833e1f JM |
1578 | "Aborting\n"); |
1579 | break; | |
1580 | case POWERPC_EXCP_WDT: /* Watchdog timer interrupt */ | |
a47dddd7 | 1581 | cpu_abort(cs, "Watchdog timer interrupt while in user mode. " |
e1833e1f JM |
1582 | "Aborting\n"); |
1583 | break; | |
1584 | case POWERPC_EXCP_DTLB: /* Data TLB error */ | |
a47dddd7 | 1585 | cpu_abort(cs, "Data TLB exception while in user mode. " |
e1833e1f JM |
1586 | "Aborting\n"); |
1587 | break; | |
1588 | case POWERPC_EXCP_ITLB: /* Instruction TLB error */ | |
a47dddd7 | 1589 | cpu_abort(cs, "Instruction TLB exception while in user mode. " |
e1833e1f JM |
1590 | "Aborting\n"); |
1591 | break; | |
e1833e1f | 1592 | case POWERPC_EXCP_SPEU: /* SPE/embedded floating-point unavail. */ |
e1833e1f JM |
1593 | info.si_signo = TARGET_SIGILL; |
1594 | info.si_errno = 0; | |
1595 | info.si_code = TARGET_ILL_COPROC; | |
bd6fefe7 | 1596 | info._sifields._sigfault._addr = env->nip; |
9d2803f7 | 1597 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
e1833e1f JM |
1598 | break; |
1599 | case POWERPC_EXCP_EFPDI: /* Embedded floating-point data IRQ */ | |
a47dddd7 | 1600 | cpu_abort(cs, "Embedded floating-point data IRQ not handled\n"); |
e1833e1f JM |
1601 | break; |
1602 | case POWERPC_EXCP_EFPRI: /* Embedded floating-point round IRQ */ | |
a47dddd7 | 1603 | cpu_abort(cs, "Embedded floating-point round IRQ not handled\n"); |
e1833e1f JM |
1604 | break; |
1605 | case POWERPC_EXCP_EPERFM: /* Embedded performance monitor IRQ */ | |
a47dddd7 | 1606 | cpu_abort(cs, "Performance monitor exception not handled\n"); |
e1833e1f JM |
1607 | break; |
1608 | case POWERPC_EXCP_DOORI: /* Embedded doorbell interrupt */ | |
a47dddd7 | 1609 | cpu_abort(cs, "Doorbell interrupt while in user mode. " |
e1833e1f JM |
1610 | "Aborting\n"); |
1611 | break; | |
1612 | case POWERPC_EXCP_DOORCI: /* Embedded doorbell critical interrupt */ | |
a47dddd7 | 1613 | cpu_abort(cs, "Doorbell critical interrupt while in user mode. " |
e1833e1f JM |
1614 | "Aborting\n"); |
1615 | break; | |
1616 | case POWERPC_EXCP_RESET: /* System reset exception */ | |
a47dddd7 | 1617 | cpu_abort(cs, "Reset interrupt while in user mode. " |
e1833e1f JM |
1618 | "Aborting\n"); |
1619 | break; | |
e1833e1f | 1620 | case POWERPC_EXCP_DSEG: /* Data segment exception */ |
a47dddd7 | 1621 | cpu_abort(cs, "Data segment exception while in user mode. " |
e1833e1f JM |
1622 | "Aborting\n"); |
1623 | break; | |
1624 | case POWERPC_EXCP_ISEG: /* Instruction segment exception */ | |
a47dddd7 | 1625 | cpu_abort(cs, "Instruction segment exception " |
e1833e1f JM |
1626 | "while in user mode. Aborting\n"); |
1627 | break; | |
e85e7c6e | 1628 | /* PowerPC 64 with hypervisor mode support */ |
e1833e1f | 1629 | case POWERPC_EXCP_HDECR: /* Hypervisor decrementer exception */ |
a47dddd7 | 1630 | cpu_abort(cs, "Hypervisor decrementer interrupt " |
e1833e1f JM |
1631 | "while in user mode. Aborting\n"); |
1632 | break; | |
e1833e1f JM |
1633 | case POWERPC_EXCP_TRACE: /* Trace exception */ |
1634 | /* Nothing to do: | |
1635 | * we use this exception to emulate step-by-step execution mode. | |
1636 | */ | |
1637 | break; | |
e85e7c6e | 1638 | /* PowerPC 64 with hypervisor mode support */ |
e1833e1f | 1639 | case POWERPC_EXCP_HDSI: /* Hypervisor data storage exception */ |
a47dddd7 | 1640 | cpu_abort(cs, "Hypervisor data storage exception " |
e1833e1f JM |
1641 | "while in user mode. Aborting\n"); |
1642 | break; | |
1643 | case POWERPC_EXCP_HISI: /* Hypervisor instruction storage excp */ | |
a47dddd7 | 1644 | cpu_abort(cs, "Hypervisor instruction storage exception " |
e1833e1f JM |
1645 | "while in user mode. Aborting\n"); |
1646 | break; | |
1647 | case POWERPC_EXCP_HDSEG: /* Hypervisor data segment exception */ | |
a47dddd7 | 1648 | cpu_abort(cs, "Hypervisor data segment exception " |
e1833e1f JM |
1649 | "while in user mode. Aborting\n"); |
1650 | break; | |
1651 | case POWERPC_EXCP_HISEG: /* Hypervisor instruction segment excp */ | |
a47dddd7 | 1652 | cpu_abort(cs, "Hypervisor instruction segment exception " |
e1833e1f JM |
1653 | "while in user mode. Aborting\n"); |
1654 | break; | |
e1833e1f | 1655 | case POWERPC_EXCP_VPU: /* Vector unavailable exception */ |
e1833e1f JM |
1656 | info.si_signo = TARGET_SIGILL; |
1657 | info.si_errno = 0; | |
1658 | info.si_code = TARGET_ILL_COPROC; | |
bd6fefe7 | 1659 | info._sifields._sigfault._addr = env->nip; |
9d2803f7 | 1660 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
e1833e1f JM |
1661 | break; |
1662 | case POWERPC_EXCP_PIT: /* Programmable interval timer IRQ */ | |
a47dddd7 | 1663 | cpu_abort(cs, "Programmable interval timer interrupt " |
e1833e1f JM |
1664 | "while in user mode. Aborting\n"); |
1665 | break; | |
1666 | case POWERPC_EXCP_IO: /* IO error exception */ | |
a47dddd7 | 1667 | cpu_abort(cs, "IO error exception while in user mode. " |
e1833e1f JM |
1668 | "Aborting\n"); |
1669 | break; | |
1670 | case POWERPC_EXCP_RUNM: /* Run mode exception */ | |
a47dddd7 | 1671 | cpu_abort(cs, "Run mode exception while in user mode. " |
e1833e1f JM |
1672 | "Aborting\n"); |
1673 | break; | |
1674 | case POWERPC_EXCP_EMUL: /* Emulation trap exception */ | |
a47dddd7 | 1675 | cpu_abort(cs, "Emulation trap exception not handled\n"); |
e1833e1f JM |
1676 | break; |
1677 | case POWERPC_EXCP_IFTLB: /* Instruction fetch TLB error */ | |
a47dddd7 | 1678 | cpu_abort(cs, "Instruction fetch TLB exception " |
e1833e1f JM |
1679 | "while in user-mode. Aborting"); |
1680 | break; | |
1681 | case POWERPC_EXCP_DLTLB: /* Data load TLB miss */ | |
a47dddd7 | 1682 | cpu_abort(cs, "Data load TLB exception while in user-mode. " |
e1833e1f JM |
1683 | "Aborting"); |
1684 | break; | |
1685 | case POWERPC_EXCP_DSTLB: /* Data store TLB miss */ | |
a47dddd7 | 1686 | cpu_abort(cs, "Data store TLB exception while in user-mode. " |
e1833e1f JM |
1687 | "Aborting"); |
1688 | break; | |
1689 | case POWERPC_EXCP_FPA: /* Floating-point assist exception */ | |
a47dddd7 | 1690 | cpu_abort(cs, "Floating-point assist exception not handled\n"); |
e1833e1f JM |
1691 | break; |
1692 | case POWERPC_EXCP_IABR: /* Instruction address breakpoint */ | |
a47dddd7 | 1693 | cpu_abort(cs, "Instruction address breakpoint exception " |
e1833e1f JM |
1694 | "not handled\n"); |
1695 | break; | |
1696 | case POWERPC_EXCP_SMI: /* System management interrupt */ | |
a47dddd7 | 1697 | cpu_abort(cs, "System management interrupt while in user mode. " |
e1833e1f JM |
1698 | "Aborting\n"); |
1699 | break; | |
1700 | case POWERPC_EXCP_THERM: /* Thermal interrupt */ | |
a47dddd7 | 1701 | cpu_abort(cs, "Thermal interrupt interrupt while in user mode. " |
e1833e1f JM |
1702 | "Aborting\n"); |
1703 | break; | |
1704 | case POWERPC_EXCP_PERFM: /* Embedded performance monitor IRQ */ | |
a47dddd7 | 1705 | cpu_abort(cs, "Performance monitor exception not handled\n"); |
e1833e1f JM |
1706 | break; |
1707 | case POWERPC_EXCP_VPUA: /* Vector assist exception */ | |
a47dddd7 | 1708 | cpu_abort(cs, "Vector assist exception not handled\n"); |
e1833e1f JM |
1709 | break; |
1710 | case POWERPC_EXCP_SOFTP: /* Soft patch exception */ | |
a47dddd7 | 1711 | cpu_abort(cs, "Soft patch exception not handled\n"); |
e1833e1f JM |
1712 | break; |
1713 | case POWERPC_EXCP_MAINT: /* Maintenance exception */ | |
a47dddd7 | 1714 | cpu_abort(cs, "Maintenance exception while in user mode. " |
e1833e1f JM |
1715 | "Aborting\n"); |
1716 | break; | |
1717 | case POWERPC_EXCP_STOP: /* stop translation */ | |
1718 | /* We did invalidate the instruction cache. Go on */ | |
1719 | break; | |
1720 | case POWERPC_EXCP_BRANCH: /* branch instruction: */ | |
1721 | /* We just stopped because of a branch. Go on */ | |
1722 | break; | |
1723 | case POWERPC_EXCP_SYSCALL_USER: | |
1724 | /* system call in user-mode emulation */ | |
1725 | /* WARNING: | |
1726 | * PPC ABI uses overflow flag in cr0 to signal an error | |
1727 | * in syscalls. | |
1728 | */ | |
e1833e1f | 1729 | env->crf[0] &= ~0x1; |
2635531f | 1730 | env->nip += 4; |
e1833e1f JM |
1731 | ret = do_syscall(env, env->gpr[0], env->gpr[3], env->gpr[4], |
1732 | env->gpr[5], env->gpr[6], env->gpr[7], | |
5945cfcb | 1733 | env->gpr[8], 0, 0); |
6db9d00e | 1734 | if (ret == -TARGET_ERESTARTSYS) { |
2635531f | 1735 | env->nip -= 4; |
6db9d00e TB |
1736 | break; |
1737 | } | |
9e0e2f96 | 1738 | if (ret == (target_ulong)(-TARGET_QEMU_ESIGRETURN)) { |
bcd4933a NF |
1739 | /* Returning from a successful sigreturn syscall. |
1740 | Avoid corrupting register state. */ | |
1741 | break; | |
1742 | } | |
9e0e2f96 | 1743 | if (ret > (target_ulong)(-515)) { |
e1833e1f JM |
1744 | env->crf[0] |= 0x1; |
1745 | ret = -ret; | |
61190b14 | 1746 | } |
e1833e1f | 1747 | env->gpr[3] = ret; |
e1833e1f | 1748 | break; |
56f066bb NF |
1749 | case POWERPC_EXCP_STCX: |
1750 | if (do_store_exclusive(env)) { | |
1751 | info.si_signo = TARGET_SIGSEGV; | |
1752 | info.si_errno = 0; | |
1753 | info.si_code = TARGET_SEGV_MAPERR; | |
1754 | info._sifields._sigfault._addr = env->nip; | |
9d2803f7 | 1755 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
56f066bb NF |
1756 | } |
1757 | break; | |
71f75756 AJ |
1758 | case EXCP_DEBUG: |
1759 | { | |
1760 | int sig; | |
1761 | ||
db6b81d4 | 1762 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
71f75756 AJ |
1763 | if (sig) { |
1764 | info.si_signo = sig; | |
1765 | info.si_errno = 0; | |
1766 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 1767 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
71f75756 AJ |
1768 | } |
1769 | } | |
1770 | break; | |
56ba31ff JM |
1771 | case EXCP_INTERRUPT: |
1772 | /* just indicate that signals should be handled asap */ | |
1773 | break; | |
fdbc2b57 RH |
1774 | case EXCP_ATOMIC: |
1775 | cpu_exec_step_atomic(cs); | |
1776 | break; | |
e1833e1f | 1777 | default: |
8223f345 | 1778 | cpu_abort(cs, "Unknown exception 0x%x. Aborting\n", trapnr); |
e1833e1f | 1779 | break; |
67867308 FB |
1780 | } |
1781 | process_pending_signals(env); | |
1782 | } | |
1783 | } | |
1784 | #endif | |
1785 | ||
048f6b4d FB |
1786 | #ifdef TARGET_MIPS |
1787 | ||
ff4f7382 RH |
1788 | # ifdef TARGET_ABI_MIPSO32 |
1789 | # define MIPS_SYS(name, args) args, | |
048f6b4d | 1790 | static const uint8_t mips_syscall_args[] = { |
29fb0f25 | 1791 | MIPS_SYS(sys_syscall , 8) /* 4000 */ |
048f6b4d FB |
1792 | MIPS_SYS(sys_exit , 1) |
1793 | MIPS_SYS(sys_fork , 0) | |
1794 | MIPS_SYS(sys_read , 3) | |
1795 | MIPS_SYS(sys_write , 3) | |
1796 | MIPS_SYS(sys_open , 3) /* 4005 */ | |
1797 | MIPS_SYS(sys_close , 1) | |
1798 | MIPS_SYS(sys_waitpid , 3) | |
1799 | MIPS_SYS(sys_creat , 2) | |
1800 | MIPS_SYS(sys_link , 2) | |
1801 | MIPS_SYS(sys_unlink , 1) /* 4010 */ | |
1802 | MIPS_SYS(sys_execve , 0) | |
1803 | MIPS_SYS(sys_chdir , 1) | |
1804 | MIPS_SYS(sys_time , 1) | |
1805 | MIPS_SYS(sys_mknod , 3) | |
1806 | MIPS_SYS(sys_chmod , 2) /* 4015 */ | |
1807 | MIPS_SYS(sys_lchown , 3) | |
1808 | MIPS_SYS(sys_ni_syscall , 0) | |
1809 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_stat */ | |
1810 | MIPS_SYS(sys_lseek , 3) | |
1811 | MIPS_SYS(sys_getpid , 0) /* 4020 */ | |
1812 | MIPS_SYS(sys_mount , 5) | |
868e34d7 | 1813 | MIPS_SYS(sys_umount , 1) |
048f6b4d FB |
1814 | MIPS_SYS(sys_setuid , 1) |
1815 | MIPS_SYS(sys_getuid , 0) | |
1816 | MIPS_SYS(sys_stime , 1) /* 4025 */ | |
1817 | MIPS_SYS(sys_ptrace , 4) | |
1818 | MIPS_SYS(sys_alarm , 1) | |
1819 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_fstat */ | |
1820 | MIPS_SYS(sys_pause , 0) | |
1821 | MIPS_SYS(sys_utime , 2) /* 4030 */ | |
1822 | MIPS_SYS(sys_ni_syscall , 0) | |
1823 | MIPS_SYS(sys_ni_syscall , 0) | |
1824 | MIPS_SYS(sys_access , 2) | |
1825 | MIPS_SYS(sys_nice , 1) | |
1826 | MIPS_SYS(sys_ni_syscall , 0) /* 4035 */ | |
1827 | MIPS_SYS(sys_sync , 0) | |
1828 | MIPS_SYS(sys_kill , 2) | |
1829 | MIPS_SYS(sys_rename , 2) | |
1830 | MIPS_SYS(sys_mkdir , 2) | |
1831 | MIPS_SYS(sys_rmdir , 1) /* 4040 */ | |
1832 | MIPS_SYS(sys_dup , 1) | |
1833 | MIPS_SYS(sys_pipe , 0) | |
1834 | MIPS_SYS(sys_times , 1) | |
1835 | MIPS_SYS(sys_ni_syscall , 0) | |
1836 | MIPS_SYS(sys_brk , 1) /* 4045 */ | |
1837 | MIPS_SYS(sys_setgid , 1) | |
1838 | MIPS_SYS(sys_getgid , 0) | |
1839 | MIPS_SYS(sys_ni_syscall , 0) /* was signal(2) */ | |
1840 | MIPS_SYS(sys_geteuid , 0) | |
1841 | MIPS_SYS(sys_getegid , 0) /* 4050 */ | |
1842 | MIPS_SYS(sys_acct , 0) | |
868e34d7 | 1843 | MIPS_SYS(sys_umount2 , 2) |
048f6b4d FB |
1844 | MIPS_SYS(sys_ni_syscall , 0) |
1845 | MIPS_SYS(sys_ioctl , 3) | |
1846 | MIPS_SYS(sys_fcntl , 3) /* 4055 */ | |
1847 | MIPS_SYS(sys_ni_syscall , 2) | |
1848 | MIPS_SYS(sys_setpgid , 2) | |
1849 | MIPS_SYS(sys_ni_syscall , 0) | |
1850 | MIPS_SYS(sys_olduname , 1) | |
1851 | MIPS_SYS(sys_umask , 1) /* 4060 */ | |
1852 | MIPS_SYS(sys_chroot , 1) | |
1853 | MIPS_SYS(sys_ustat , 2) | |
1854 | MIPS_SYS(sys_dup2 , 2) | |
1855 | MIPS_SYS(sys_getppid , 0) | |
1856 | MIPS_SYS(sys_getpgrp , 0) /* 4065 */ | |
1857 | MIPS_SYS(sys_setsid , 0) | |
1858 | MIPS_SYS(sys_sigaction , 3) | |
1859 | MIPS_SYS(sys_sgetmask , 0) | |
1860 | MIPS_SYS(sys_ssetmask , 1) | |
1861 | MIPS_SYS(sys_setreuid , 2) /* 4070 */ | |
1862 | MIPS_SYS(sys_setregid , 2) | |
1863 | MIPS_SYS(sys_sigsuspend , 0) | |
1864 | MIPS_SYS(sys_sigpending , 1) | |
1865 | MIPS_SYS(sys_sethostname , 2) | |
1866 | MIPS_SYS(sys_setrlimit , 2) /* 4075 */ | |
1867 | MIPS_SYS(sys_getrlimit , 2) | |
1868 | MIPS_SYS(sys_getrusage , 2) | |
1869 | MIPS_SYS(sys_gettimeofday, 2) | |
1870 | MIPS_SYS(sys_settimeofday, 2) | |
1871 | MIPS_SYS(sys_getgroups , 2) /* 4080 */ | |
1872 | MIPS_SYS(sys_setgroups , 2) | |
1873 | MIPS_SYS(sys_ni_syscall , 0) /* old_select */ | |
1874 | MIPS_SYS(sys_symlink , 2) | |
1875 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_lstat */ | |
1876 | MIPS_SYS(sys_readlink , 3) /* 4085 */ | |
1877 | MIPS_SYS(sys_uselib , 1) | |
1878 | MIPS_SYS(sys_swapon , 2) | |
1879 | MIPS_SYS(sys_reboot , 3) | |
1880 | MIPS_SYS(old_readdir , 3) | |
1881 | MIPS_SYS(old_mmap , 6) /* 4090 */ | |
1882 | MIPS_SYS(sys_munmap , 2) | |
1883 | MIPS_SYS(sys_truncate , 2) | |
1884 | MIPS_SYS(sys_ftruncate , 2) | |
1885 | MIPS_SYS(sys_fchmod , 2) | |
1886 | MIPS_SYS(sys_fchown , 3) /* 4095 */ | |
1887 | MIPS_SYS(sys_getpriority , 2) | |
1888 | MIPS_SYS(sys_setpriority , 3) | |
1889 | MIPS_SYS(sys_ni_syscall , 0) | |
1890 | MIPS_SYS(sys_statfs , 2) | |
1891 | MIPS_SYS(sys_fstatfs , 2) /* 4100 */ | |
1892 | MIPS_SYS(sys_ni_syscall , 0) /* was ioperm(2) */ | |
1893 | MIPS_SYS(sys_socketcall , 2) | |
1894 | MIPS_SYS(sys_syslog , 3) | |
1895 | MIPS_SYS(sys_setitimer , 3) | |
1896 | MIPS_SYS(sys_getitimer , 2) /* 4105 */ | |
1897 | MIPS_SYS(sys_newstat , 2) | |
1898 | MIPS_SYS(sys_newlstat , 2) | |
1899 | MIPS_SYS(sys_newfstat , 2) | |
1900 | MIPS_SYS(sys_uname , 1) | |
1901 | MIPS_SYS(sys_ni_syscall , 0) /* 4110 was iopl(2) */ | |
1902 | MIPS_SYS(sys_vhangup , 0) | |
1903 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_idle() */ | |
1904 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_vm86 */ | |
1905 | MIPS_SYS(sys_wait4 , 4) | |
1906 | MIPS_SYS(sys_swapoff , 1) /* 4115 */ | |
1907 | MIPS_SYS(sys_sysinfo , 1) | |
1908 | MIPS_SYS(sys_ipc , 6) | |
1909 | MIPS_SYS(sys_fsync , 1) | |
1910 | MIPS_SYS(sys_sigreturn , 0) | |
18113962 | 1911 | MIPS_SYS(sys_clone , 6) /* 4120 */ |
048f6b4d FB |
1912 | MIPS_SYS(sys_setdomainname, 2) |
1913 | MIPS_SYS(sys_newuname , 1) | |
1914 | MIPS_SYS(sys_ni_syscall , 0) /* sys_modify_ldt */ | |
1915 | MIPS_SYS(sys_adjtimex , 1) | |
1916 | MIPS_SYS(sys_mprotect , 3) /* 4125 */ | |
1917 | MIPS_SYS(sys_sigprocmask , 3) | |
1918 | MIPS_SYS(sys_ni_syscall , 0) /* was create_module */ | |
1919 | MIPS_SYS(sys_init_module , 5) | |
1920 | MIPS_SYS(sys_delete_module, 1) | |
1921 | MIPS_SYS(sys_ni_syscall , 0) /* 4130 was get_kernel_syms */ | |
1922 | MIPS_SYS(sys_quotactl , 0) | |
1923 | MIPS_SYS(sys_getpgid , 1) | |
1924 | MIPS_SYS(sys_fchdir , 1) | |
1925 | MIPS_SYS(sys_bdflush , 2) | |
1926 | MIPS_SYS(sys_sysfs , 3) /* 4135 */ | |
1927 | MIPS_SYS(sys_personality , 1) | |
1928 | MIPS_SYS(sys_ni_syscall , 0) /* for afs_syscall */ | |
1929 | MIPS_SYS(sys_setfsuid , 1) | |
1930 | MIPS_SYS(sys_setfsgid , 1) | |
1931 | MIPS_SYS(sys_llseek , 5) /* 4140 */ | |
1932 | MIPS_SYS(sys_getdents , 3) | |
1933 | MIPS_SYS(sys_select , 5) | |
1934 | MIPS_SYS(sys_flock , 2) | |
1935 | MIPS_SYS(sys_msync , 3) | |
1936 | MIPS_SYS(sys_readv , 3) /* 4145 */ | |
1937 | MIPS_SYS(sys_writev , 3) | |
1938 | MIPS_SYS(sys_cacheflush , 3) | |
1939 | MIPS_SYS(sys_cachectl , 3) | |
1940 | MIPS_SYS(sys_sysmips , 4) | |
1941 | MIPS_SYS(sys_ni_syscall , 0) /* 4150 */ | |
1942 | MIPS_SYS(sys_getsid , 1) | |
1943 | MIPS_SYS(sys_fdatasync , 0) | |
1944 | MIPS_SYS(sys_sysctl , 1) | |
1945 | MIPS_SYS(sys_mlock , 2) | |
1946 | MIPS_SYS(sys_munlock , 2) /* 4155 */ | |
1947 | MIPS_SYS(sys_mlockall , 1) | |
1948 | MIPS_SYS(sys_munlockall , 0) | |
1949 | MIPS_SYS(sys_sched_setparam, 2) | |
1950 | MIPS_SYS(sys_sched_getparam, 2) | |
1951 | MIPS_SYS(sys_sched_setscheduler, 3) /* 4160 */ | |
1952 | MIPS_SYS(sys_sched_getscheduler, 1) | |
1953 | MIPS_SYS(sys_sched_yield , 0) | |
1954 | MIPS_SYS(sys_sched_get_priority_max, 1) | |
1955 | MIPS_SYS(sys_sched_get_priority_min, 1) | |
1956 | MIPS_SYS(sys_sched_rr_get_interval, 2) /* 4165 */ | |
1957 | MIPS_SYS(sys_nanosleep, 2) | |
b0932e06 | 1958 | MIPS_SYS(sys_mremap , 5) |
048f6b4d FB |
1959 | MIPS_SYS(sys_accept , 3) |
1960 | MIPS_SYS(sys_bind , 3) | |
1961 | MIPS_SYS(sys_connect , 3) /* 4170 */ | |
1962 | MIPS_SYS(sys_getpeername , 3) | |
1963 | MIPS_SYS(sys_getsockname , 3) | |
1964 | MIPS_SYS(sys_getsockopt , 5) | |
1965 | MIPS_SYS(sys_listen , 2) | |
1966 | MIPS_SYS(sys_recv , 4) /* 4175 */ | |
1967 | MIPS_SYS(sys_recvfrom , 6) | |
1968 | MIPS_SYS(sys_recvmsg , 3) | |
1969 | MIPS_SYS(sys_send , 4) | |
1970 | MIPS_SYS(sys_sendmsg , 3) | |
1971 | MIPS_SYS(sys_sendto , 6) /* 4180 */ | |
1972 | MIPS_SYS(sys_setsockopt , 5) | |
1973 | MIPS_SYS(sys_shutdown , 2) | |
1974 | MIPS_SYS(sys_socket , 3) | |
1975 | MIPS_SYS(sys_socketpair , 4) | |
1976 | MIPS_SYS(sys_setresuid , 3) /* 4185 */ | |
1977 | MIPS_SYS(sys_getresuid , 3) | |
1978 | MIPS_SYS(sys_ni_syscall , 0) /* was sys_query_module */ | |
1979 | MIPS_SYS(sys_poll , 3) | |
1980 | MIPS_SYS(sys_nfsservctl , 3) | |
1981 | MIPS_SYS(sys_setresgid , 3) /* 4190 */ | |
1982 | MIPS_SYS(sys_getresgid , 3) | |
1983 | MIPS_SYS(sys_prctl , 5) | |
1984 | MIPS_SYS(sys_rt_sigreturn, 0) | |
1985 | MIPS_SYS(sys_rt_sigaction, 4) | |
1986 | MIPS_SYS(sys_rt_sigprocmask, 4) /* 4195 */ | |
1987 | MIPS_SYS(sys_rt_sigpending, 2) | |
1988 | MIPS_SYS(sys_rt_sigtimedwait, 4) | |
1989 | MIPS_SYS(sys_rt_sigqueueinfo, 3) | |
1990 | MIPS_SYS(sys_rt_sigsuspend, 0) | |
1991 | MIPS_SYS(sys_pread64 , 6) /* 4200 */ | |
1992 | MIPS_SYS(sys_pwrite64 , 6) | |
1993 | MIPS_SYS(sys_chown , 3) | |
1994 | MIPS_SYS(sys_getcwd , 2) | |
1995 | MIPS_SYS(sys_capget , 2) | |
1996 | MIPS_SYS(sys_capset , 2) /* 4205 */ | |
053ebb27 | 1997 | MIPS_SYS(sys_sigaltstack , 2) |
048f6b4d FB |
1998 | MIPS_SYS(sys_sendfile , 4) |
1999 | MIPS_SYS(sys_ni_syscall , 0) | |
2000 | MIPS_SYS(sys_ni_syscall , 0) | |
2001 | MIPS_SYS(sys_mmap2 , 6) /* 4210 */ | |
2002 | MIPS_SYS(sys_truncate64 , 4) | |
2003 | MIPS_SYS(sys_ftruncate64 , 4) | |
2004 | MIPS_SYS(sys_stat64 , 2) | |
2005 | MIPS_SYS(sys_lstat64 , 2) | |
2006 | MIPS_SYS(sys_fstat64 , 2) /* 4215 */ | |
2007 | MIPS_SYS(sys_pivot_root , 2) | |
2008 | MIPS_SYS(sys_mincore , 3) | |
2009 | MIPS_SYS(sys_madvise , 3) | |
2010 | MIPS_SYS(sys_getdents64 , 3) | |
2011 | MIPS_SYS(sys_fcntl64 , 3) /* 4220 */ | |
2012 | MIPS_SYS(sys_ni_syscall , 0) | |
2013 | MIPS_SYS(sys_gettid , 0) | |
2014 | MIPS_SYS(sys_readahead , 5) | |
2015 | MIPS_SYS(sys_setxattr , 5) | |
2016 | MIPS_SYS(sys_lsetxattr , 5) /* 4225 */ | |
2017 | MIPS_SYS(sys_fsetxattr , 5) | |
2018 | MIPS_SYS(sys_getxattr , 4) | |
2019 | MIPS_SYS(sys_lgetxattr , 4) | |
2020 | MIPS_SYS(sys_fgetxattr , 4) | |
2021 | MIPS_SYS(sys_listxattr , 3) /* 4230 */ | |
2022 | MIPS_SYS(sys_llistxattr , 3) | |
2023 | MIPS_SYS(sys_flistxattr , 3) | |
2024 | MIPS_SYS(sys_removexattr , 2) | |
2025 | MIPS_SYS(sys_lremovexattr, 2) | |
2026 | MIPS_SYS(sys_fremovexattr, 2) /* 4235 */ | |
2027 | MIPS_SYS(sys_tkill , 2) | |
2028 | MIPS_SYS(sys_sendfile64 , 5) | |
43be1343 | 2029 | MIPS_SYS(sys_futex , 6) |
048f6b4d FB |
2030 | MIPS_SYS(sys_sched_setaffinity, 3) |
2031 | MIPS_SYS(sys_sched_getaffinity, 3) /* 4240 */ | |
2032 | MIPS_SYS(sys_io_setup , 2) | |
2033 | MIPS_SYS(sys_io_destroy , 1) | |
2034 | MIPS_SYS(sys_io_getevents, 5) | |
2035 | MIPS_SYS(sys_io_submit , 3) | |
2036 | MIPS_SYS(sys_io_cancel , 3) /* 4245 */ | |
2037 | MIPS_SYS(sys_exit_group , 1) | |
2038 | MIPS_SYS(sys_lookup_dcookie, 3) | |
2039 | MIPS_SYS(sys_epoll_create, 1) | |
2040 | MIPS_SYS(sys_epoll_ctl , 4) | |
2041 | MIPS_SYS(sys_epoll_wait , 3) /* 4250 */ | |
2042 | MIPS_SYS(sys_remap_file_pages, 5) | |
2043 | MIPS_SYS(sys_set_tid_address, 1) | |
2044 | MIPS_SYS(sys_restart_syscall, 0) | |
2045 | MIPS_SYS(sys_fadvise64_64, 7) | |
2046 | MIPS_SYS(sys_statfs64 , 3) /* 4255 */ | |
2047 | MIPS_SYS(sys_fstatfs64 , 2) | |
2048 | MIPS_SYS(sys_timer_create, 3) | |
2049 | MIPS_SYS(sys_timer_settime, 4) | |
2050 | MIPS_SYS(sys_timer_gettime, 2) | |
2051 | MIPS_SYS(sys_timer_getoverrun, 1) /* 4260 */ | |
2052 | MIPS_SYS(sys_timer_delete, 1) | |
2053 | MIPS_SYS(sys_clock_settime, 2) | |
2054 | MIPS_SYS(sys_clock_gettime, 2) | |
2055 | MIPS_SYS(sys_clock_getres, 2) | |
2056 | MIPS_SYS(sys_clock_nanosleep, 4) /* 4265 */ | |
2057 | MIPS_SYS(sys_tgkill , 3) | |
2058 | MIPS_SYS(sys_utimes , 2) | |
2059 | MIPS_SYS(sys_mbind , 4) | |
2060 | MIPS_SYS(sys_ni_syscall , 0) /* sys_get_mempolicy */ | |
2061 | MIPS_SYS(sys_ni_syscall , 0) /* 4270 sys_set_mempolicy */ | |
2062 | MIPS_SYS(sys_mq_open , 4) | |
2063 | MIPS_SYS(sys_mq_unlink , 1) | |
2064 | MIPS_SYS(sys_mq_timedsend, 5) | |
2065 | MIPS_SYS(sys_mq_timedreceive, 5) | |
2066 | MIPS_SYS(sys_mq_notify , 2) /* 4275 */ | |
2067 | MIPS_SYS(sys_mq_getsetattr, 3) | |
2068 | MIPS_SYS(sys_ni_syscall , 0) /* sys_vserver */ | |
2069 | MIPS_SYS(sys_waitid , 4) | |
2070 | MIPS_SYS(sys_ni_syscall , 0) /* available, was setaltroot */ | |
2071 | MIPS_SYS(sys_add_key , 5) | |
388bb21a | 2072 | MIPS_SYS(sys_request_key, 4) |
048f6b4d | 2073 | MIPS_SYS(sys_keyctl , 5) |
6f5b89a0 | 2074 | MIPS_SYS(sys_set_thread_area, 1) |
388bb21a TS |
2075 | MIPS_SYS(sys_inotify_init, 0) |
2076 | MIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */ | |
2077 | MIPS_SYS(sys_inotify_rm_watch, 2) | |
2078 | MIPS_SYS(sys_migrate_pages, 4) | |
2079 | MIPS_SYS(sys_openat, 4) | |
2080 | MIPS_SYS(sys_mkdirat, 3) | |
2081 | MIPS_SYS(sys_mknodat, 4) /* 4290 */ | |
2082 | MIPS_SYS(sys_fchownat, 5) | |
2083 | MIPS_SYS(sys_futimesat, 3) | |
2084 | MIPS_SYS(sys_fstatat64, 4) | |
2085 | MIPS_SYS(sys_unlinkat, 3) | |
2086 | MIPS_SYS(sys_renameat, 4) /* 4295 */ | |
2087 | MIPS_SYS(sys_linkat, 5) | |
2088 | MIPS_SYS(sys_symlinkat, 3) | |
2089 | MIPS_SYS(sys_readlinkat, 4) | |
2090 | MIPS_SYS(sys_fchmodat, 3) | |
2091 | MIPS_SYS(sys_faccessat, 3) /* 4300 */ | |
2092 | MIPS_SYS(sys_pselect6, 6) | |
2093 | MIPS_SYS(sys_ppoll, 5) | |
2094 | MIPS_SYS(sys_unshare, 1) | |
b0932e06 | 2095 | MIPS_SYS(sys_splice, 6) |
388bb21a TS |
2096 | MIPS_SYS(sys_sync_file_range, 7) /* 4305 */ |
2097 | MIPS_SYS(sys_tee, 4) | |
2098 | MIPS_SYS(sys_vmsplice, 4) | |
2099 | MIPS_SYS(sys_move_pages, 6) | |
2100 | MIPS_SYS(sys_set_robust_list, 2) | |
2101 | MIPS_SYS(sys_get_robust_list, 3) /* 4310 */ | |
2102 | MIPS_SYS(sys_kexec_load, 4) | |
2103 | MIPS_SYS(sys_getcpu, 3) | |
2104 | MIPS_SYS(sys_epoll_pwait, 6) | |
2105 | MIPS_SYS(sys_ioprio_set, 3) | |
2106 | MIPS_SYS(sys_ioprio_get, 2) | |
d979e8eb PM |
2107 | MIPS_SYS(sys_utimensat, 4) |
2108 | MIPS_SYS(sys_signalfd, 3) | |
2109 | MIPS_SYS(sys_ni_syscall, 0) /* was timerfd */ | |
2110 | MIPS_SYS(sys_eventfd, 1) | |
2111 | MIPS_SYS(sys_fallocate, 6) /* 4320 */ | |
2112 | MIPS_SYS(sys_timerfd_create, 2) | |
2113 | MIPS_SYS(sys_timerfd_gettime, 2) | |
2114 | MIPS_SYS(sys_timerfd_settime, 4) | |
2115 | MIPS_SYS(sys_signalfd4, 4) | |
2116 | MIPS_SYS(sys_eventfd2, 2) /* 4325 */ | |
2117 | MIPS_SYS(sys_epoll_create1, 1) | |
2118 | MIPS_SYS(sys_dup3, 3) | |
2119 | MIPS_SYS(sys_pipe2, 2) | |
2120 | MIPS_SYS(sys_inotify_init1, 1) | |
2e6eeb67 AM |
2121 | MIPS_SYS(sys_preadv, 5) /* 4330 */ |
2122 | MIPS_SYS(sys_pwritev, 5) | |
d979e8eb PM |
2123 | MIPS_SYS(sys_rt_tgsigqueueinfo, 4) |
2124 | MIPS_SYS(sys_perf_event_open, 5) | |
2125 | MIPS_SYS(sys_accept4, 4) | |
2126 | MIPS_SYS(sys_recvmmsg, 5) /* 4335 */ | |
2127 | MIPS_SYS(sys_fanotify_init, 2) | |
2128 | MIPS_SYS(sys_fanotify_mark, 6) | |
2129 | MIPS_SYS(sys_prlimit64, 4) | |
2130 | MIPS_SYS(sys_name_to_handle_at, 5) | |
2131 | MIPS_SYS(sys_open_by_handle_at, 3) /* 4340 */ | |
2132 | MIPS_SYS(sys_clock_adjtime, 2) | |
2133 | MIPS_SYS(sys_syncfs, 1) | |
2e6eeb67 AM |
2134 | MIPS_SYS(sys_sendmmsg, 4) |
2135 | MIPS_SYS(sys_setns, 2) | |
2136 | MIPS_SYS(sys_process_vm_readv, 6) /* 345 */ | |
2137 | MIPS_SYS(sys_process_vm_writev, 6) | |
2138 | MIPS_SYS(sys_kcmp, 5) | |
2139 | MIPS_SYS(sys_finit_module, 3) | |
2140 | MIPS_SYS(sys_sched_setattr, 2) | |
2141 | MIPS_SYS(sys_sched_getattr, 3) /* 350 */ | |
2142 | MIPS_SYS(sys_renameat2, 5) | |
2143 | MIPS_SYS(sys_seccomp, 3) | |
2144 | MIPS_SYS(sys_getrandom, 3) | |
2145 | MIPS_SYS(sys_memfd_create, 2) | |
2146 | MIPS_SYS(sys_bpf, 3) /* 355 */ | |
2147 | MIPS_SYS(sys_execveat, 5) | |
2148 | MIPS_SYS(sys_userfaultfd, 1) | |
2149 | MIPS_SYS(sys_membarrier, 2) | |
2150 | MIPS_SYS(sys_mlock2, 3) | |
2151 | MIPS_SYS(sys_copy_file_range, 6) /* 360 */ | |
2152 | MIPS_SYS(sys_preadv2, 6) | |
2153 | MIPS_SYS(sys_pwritev2, 6) | |
048f6b4d | 2154 | }; |
ff4f7382 RH |
2155 | # undef MIPS_SYS |
2156 | # endif /* O32 */ | |
048f6b4d | 2157 | |
590bc601 PB |
2158 | static int do_store_exclusive(CPUMIPSState *env) |
2159 | { | |
2160 | target_ulong addr; | |
2161 | target_ulong page_addr; | |
2162 | target_ulong val; | |
2163 | int flags; | |
2164 | int segv = 0; | |
2165 | int reg; | |
2166 | int d; | |
2167 | ||
5499b6ff | 2168 | addr = env->lladdr; |
590bc601 PB |
2169 | page_addr = addr & TARGET_PAGE_MASK; |
2170 | start_exclusive(); | |
2171 | mmap_lock(); | |
2172 | flags = page_get_flags(page_addr); | |
2173 | if ((flags & PAGE_READ) == 0) { | |
2174 | segv = 1; | |
2175 | } else { | |
2176 | reg = env->llreg & 0x1f; | |
2177 | d = (env->llreg & 0x20) != 0; | |
2178 | if (d) { | |
2179 | segv = get_user_s64(val, addr); | |
2180 | } else { | |
2181 | segv = get_user_s32(val, addr); | |
2182 | } | |
2183 | if (!segv) { | |
2184 | if (val != env->llval) { | |
2185 | env->active_tc.gpr[reg] = 0; | |
2186 | } else { | |
2187 | if (d) { | |
2188 | segv = put_user_u64(env->llnewval, addr); | |
2189 | } else { | |
2190 | segv = put_user_u32(env->llnewval, addr); | |
2191 | } | |
2192 | if (!segv) { | |
2193 | env->active_tc.gpr[reg] = 1; | |
2194 | } | |
2195 | } | |
2196 | } | |
2197 | } | |
5499b6ff | 2198 | env->lladdr = -1; |
590bc601 PB |
2199 | if (!segv) { |
2200 | env->active_tc.PC += 4; | |
2201 | } | |
2202 | mmap_unlock(); | |
2203 | end_exclusive(); | |
2204 | return segv; | |
2205 | } | |
2206 | ||
54b2f42c MI |
2207 | /* Break codes */ |
2208 | enum { | |
2209 | BRK_OVERFLOW = 6, | |
2210 | BRK_DIVZERO = 7 | |
2211 | }; | |
2212 | ||
2213 | static int do_break(CPUMIPSState *env, target_siginfo_t *info, | |
2214 | unsigned int code) | |
2215 | { | |
2216 | int ret = -1; | |
2217 | ||
2218 | switch (code) { | |
2219 | case BRK_OVERFLOW: | |
2220 | case BRK_DIVZERO: | |
2221 | info->si_signo = TARGET_SIGFPE; | |
2222 | info->si_errno = 0; | |
2223 | info->si_code = (code == BRK_OVERFLOW) ? FPE_INTOVF : FPE_INTDIV; | |
9d2803f7 | 2224 | queue_signal(env, info->si_signo, QEMU_SI_FAULT, &*info); |
54b2f42c MI |
2225 | ret = 0; |
2226 | break; | |
2227 | default: | |
b51910ba PJ |
2228 | info->si_signo = TARGET_SIGTRAP; |
2229 | info->si_errno = 0; | |
9d2803f7 | 2230 | queue_signal(env, info->si_signo, QEMU_SI_FAULT, &*info); |
b51910ba | 2231 | ret = 0; |
54b2f42c MI |
2232 | break; |
2233 | } | |
2234 | ||
2235 | return ret; | |
2236 | } | |
2237 | ||
048f6b4d FB |
2238 | void cpu_loop(CPUMIPSState *env) |
2239 | { | |
0315c31c | 2240 | CPUState *cs = CPU(mips_env_get_cpu(env)); |
c227f099 | 2241 | target_siginfo_t info; |
ff4f7382 RH |
2242 | int trapnr; |
2243 | abi_long ret; | |
2244 | # ifdef TARGET_ABI_MIPSO32 | |
048f6b4d | 2245 | unsigned int syscall_num; |
ff4f7382 | 2246 | # endif |
048f6b4d FB |
2247 | |
2248 | for(;;) { | |
0315c31c | 2249 | cpu_exec_start(cs); |
8642c1b8 | 2250 | trapnr = cpu_exec(cs); |
0315c31c | 2251 | cpu_exec_end(cs); |
d148d90e SF |
2252 | process_queued_cpu_work(cs); |
2253 | ||
048f6b4d FB |
2254 | switch(trapnr) { |
2255 | case EXCP_SYSCALL: | |
b5dc7732 | 2256 | env->active_tc.PC += 4; |
ff4f7382 RH |
2257 | # ifdef TARGET_ABI_MIPSO32 |
2258 | syscall_num = env->active_tc.gpr[2] - 4000; | |
388bb21a | 2259 | if (syscall_num >= sizeof(mips_syscall_args)) { |
7c2f6157 | 2260 | ret = -TARGET_ENOSYS; |
388bb21a TS |
2261 | } else { |
2262 | int nb_args; | |
992f48a0 BS |
2263 | abi_ulong sp_reg; |
2264 | abi_ulong arg5 = 0, arg6 = 0, arg7 = 0, arg8 = 0; | |
388bb21a TS |
2265 | |
2266 | nb_args = mips_syscall_args[syscall_num]; | |
b5dc7732 | 2267 | sp_reg = env->active_tc.gpr[29]; |
388bb21a TS |
2268 | switch (nb_args) { |
2269 | /* these arguments are taken from the stack */ | |
94c19610 ACH |
2270 | case 8: |
2271 | if ((ret = get_user_ual(arg8, sp_reg + 28)) != 0) { | |
2272 | goto done_syscall; | |
2273 | } | |
2274 | case 7: | |
2275 | if ((ret = get_user_ual(arg7, sp_reg + 24)) != 0) { | |
2276 | goto done_syscall; | |
2277 | } | |
2278 | case 6: | |
2279 | if ((ret = get_user_ual(arg6, sp_reg + 20)) != 0) { | |
2280 | goto done_syscall; | |
2281 | } | |
2282 | case 5: | |
2283 | if ((ret = get_user_ual(arg5, sp_reg + 16)) != 0) { | |
2284 | goto done_syscall; | |
2285 | } | |
388bb21a TS |
2286 | default: |
2287 | break; | |
048f6b4d | 2288 | } |
b5dc7732 TS |
2289 | ret = do_syscall(env, env->active_tc.gpr[2], |
2290 | env->active_tc.gpr[4], | |
2291 | env->active_tc.gpr[5], | |
2292 | env->active_tc.gpr[6], | |
2293 | env->active_tc.gpr[7], | |
5945cfcb | 2294 | arg5, arg6, arg7, arg8); |
388bb21a | 2295 | } |
94c19610 | 2296 | done_syscall: |
ff4f7382 RH |
2297 | # else |
2298 | ret = do_syscall(env, env->active_tc.gpr[2], | |
2299 | env->active_tc.gpr[4], env->active_tc.gpr[5], | |
2300 | env->active_tc.gpr[6], env->active_tc.gpr[7], | |
2301 | env->active_tc.gpr[8], env->active_tc.gpr[9], | |
2302 | env->active_tc.gpr[10], env->active_tc.gpr[11]); | |
2303 | # endif /* O32 */ | |
2eb3ae27 TB |
2304 | if (ret == -TARGET_ERESTARTSYS) { |
2305 | env->active_tc.PC -= 4; | |
2306 | break; | |
2307 | } | |
0b1bcb00 PB |
2308 | if (ret == -TARGET_QEMU_ESIGRETURN) { |
2309 | /* Returning from a successful sigreturn syscall. | |
2310 | Avoid clobbering register state. */ | |
2311 | break; | |
2312 | } | |
ff4f7382 | 2313 | if ((abi_ulong)ret >= (abi_ulong)-1133) { |
b5dc7732 | 2314 | env->active_tc.gpr[7] = 1; /* error flag */ |
388bb21a TS |
2315 | ret = -ret; |
2316 | } else { | |
b5dc7732 | 2317 | env->active_tc.gpr[7] = 0; /* error flag */ |
048f6b4d | 2318 | } |
b5dc7732 | 2319 | env->active_tc.gpr[2] = ret; |
048f6b4d | 2320 | break; |
ca7c2b1b TS |
2321 | case EXCP_TLBL: |
2322 | case EXCP_TLBS: | |
e6e5bd2d WT |
2323 | case EXCP_AdEL: |
2324 | case EXCP_AdES: | |
e4474235 PB |
2325 | info.si_signo = TARGET_SIGSEGV; |
2326 | info.si_errno = 0; | |
2327 | /* XXX: check env->error_code */ | |
2328 | info.si_code = TARGET_SEGV_MAPERR; | |
2329 | info._sifields._sigfault._addr = env->CP0_BadVAddr; | |
9d2803f7 | 2330 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
e4474235 | 2331 | break; |
6900e84b | 2332 | case EXCP_CpU: |
048f6b4d | 2333 | case EXCP_RI: |
bc1ad2de FB |
2334 | info.si_signo = TARGET_SIGILL; |
2335 | info.si_errno = 0; | |
2336 | info.si_code = 0; | |
9d2803f7 | 2337 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
048f6b4d | 2338 | break; |
106ec879 FB |
2339 | case EXCP_INTERRUPT: |
2340 | /* just indicate that signals should be handled asap */ | |
2341 | break; | |
d08b2a28 PB |
2342 | case EXCP_DEBUG: |
2343 | { | |
2344 | int sig; | |
2345 | ||
db6b81d4 | 2346 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
d08b2a28 PB |
2347 | if (sig) |
2348 | { | |
2349 | info.si_signo = sig; | |
2350 | info.si_errno = 0; | |
2351 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 2352 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
d08b2a28 PB |
2353 | } |
2354 | } | |
2355 | break; | |
590bc601 PB |
2356 | case EXCP_SC: |
2357 | if (do_store_exclusive(env)) { | |
2358 | info.si_signo = TARGET_SIGSEGV; | |
2359 | info.si_errno = 0; | |
2360 | info.si_code = TARGET_SEGV_MAPERR; | |
2361 | info._sifields._sigfault._addr = env->active_tc.PC; | |
9d2803f7 | 2362 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
590bc601 PB |
2363 | } |
2364 | break; | |
853c3240 JL |
2365 | case EXCP_DSPDIS: |
2366 | info.si_signo = TARGET_SIGILL; | |
2367 | info.si_errno = 0; | |
2368 | info.si_code = TARGET_ILL_ILLOPC; | |
9d2803f7 | 2369 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
853c3240 | 2370 | break; |
54b2f42c MI |
2371 | /* The code below was inspired by the MIPS Linux kernel trap |
2372 | * handling code in arch/mips/kernel/traps.c. | |
2373 | */ | |
2374 | case EXCP_BREAK: | |
2375 | { | |
2376 | abi_ulong trap_instr; | |
2377 | unsigned int code; | |
2378 | ||
a0333817 KCY |
2379 | if (env->hflags & MIPS_HFLAG_M16) { |
2380 | if (env->insn_flags & ASE_MICROMIPS) { | |
2381 | /* microMIPS mode */ | |
1308c464 KCY |
2382 | ret = get_user_u16(trap_instr, env->active_tc.PC); |
2383 | if (ret != 0) { | |
2384 | goto error; | |
2385 | } | |
a0333817 | 2386 | |
1308c464 KCY |
2387 | if ((trap_instr >> 10) == 0x11) { |
2388 | /* 16-bit instruction */ | |
2389 | code = trap_instr & 0xf; | |
2390 | } else { | |
2391 | /* 32-bit instruction */ | |
2392 | abi_ulong instr_lo; | |
2393 | ||
2394 | ret = get_user_u16(instr_lo, | |
2395 | env->active_tc.PC + 2); | |
2396 | if (ret != 0) { | |
2397 | goto error; | |
2398 | } | |
2399 | trap_instr = (trap_instr << 16) | instr_lo; | |
2400 | code = ((trap_instr >> 6) & ((1 << 20) - 1)); | |
2401 | /* Unfortunately, microMIPS also suffers from | |
2402 | the old assembler bug... */ | |
2403 | if (code >= (1 << 10)) { | |
2404 | code >>= 10; | |
2405 | } | |
2406 | } | |
a0333817 KCY |
2407 | } else { |
2408 | /* MIPS16e mode */ | |
2409 | ret = get_user_u16(trap_instr, env->active_tc.PC); | |
2410 | if (ret != 0) { | |
2411 | goto error; | |
2412 | } | |
2413 | code = (trap_instr >> 6) & 0x3f; | |
a0333817 KCY |
2414 | } |
2415 | } else { | |
f01a361b | 2416 | ret = get_user_u32(trap_instr, env->active_tc.PC); |
1308c464 KCY |
2417 | if (ret != 0) { |
2418 | goto error; | |
2419 | } | |
54b2f42c | 2420 | |
1308c464 KCY |
2421 | /* As described in the original Linux kernel code, the |
2422 | * below checks on 'code' are to work around an old | |
2423 | * assembly bug. | |
2424 | */ | |
2425 | code = ((trap_instr >> 6) & ((1 << 20) - 1)); | |
2426 | if (code >= (1 << 10)) { | |
2427 | code >>= 10; | |
2428 | } | |
54b2f42c MI |
2429 | } |
2430 | ||
2431 | if (do_break(env, &info, code) != 0) { | |
2432 | goto error; | |
2433 | } | |
2434 | } | |
2435 | break; | |
2436 | case EXCP_TRAP: | |
2437 | { | |
2438 | abi_ulong trap_instr; | |
2439 | unsigned int code = 0; | |
2440 | ||
a0333817 KCY |
2441 | if (env->hflags & MIPS_HFLAG_M16) { |
2442 | /* microMIPS mode */ | |
2443 | abi_ulong instr[2]; | |
2444 | ||
2445 | ret = get_user_u16(instr[0], env->active_tc.PC) || | |
2446 | get_user_u16(instr[1], env->active_tc.PC + 2); | |
2447 | ||
2448 | trap_instr = (instr[0] << 16) | instr[1]; | |
2449 | } else { | |
f01a361b | 2450 | ret = get_user_u32(trap_instr, env->active_tc.PC); |
a0333817 KCY |
2451 | } |
2452 | ||
54b2f42c MI |
2453 | if (ret != 0) { |
2454 | goto error; | |
2455 | } | |
2456 | ||
2457 | /* The immediate versions don't provide a code. */ | |
2458 | if (!(trap_instr & 0xFC000000)) { | |
a0333817 KCY |
2459 | if (env->hflags & MIPS_HFLAG_M16) { |
2460 | /* microMIPS mode */ | |
2461 | code = ((trap_instr >> 12) & ((1 << 4) - 1)); | |
2462 | } else { | |
2463 | code = ((trap_instr >> 6) & ((1 << 10) - 1)); | |
2464 | } | |
54b2f42c MI |
2465 | } |
2466 | ||
2467 | if (do_break(env, &info, code) != 0) { | |
2468 | goto error; | |
2469 | } | |
2470 | } | |
2471 | break; | |
fdbc2b57 RH |
2472 | case EXCP_ATOMIC: |
2473 | cpu_exec_step_atomic(cs); | |
2474 | break; | |
048f6b4d | 2475 | default: |
54b2f42c | 2476 | error: |
120a9848 | 2477 | EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr); |
048f6b4d FB |
2478 | abort(); |
2479 | } | |
2480 | process_pending_signals(env); | |
2481 | } | |
2482 | } | |
2483 | #endif | |
2484 | ||
a0a839b6 MV |
2485 | #ifdef TARGET_NIOS2 |
2486 | ||
2487 | void cpu_loop(CPUNios2State *env) | |
2488 | { | |
2489 | CPUState *cs = ENV_GET_CPU(env); | |
2490 | Nios2CPU *cpu = NIOS2_CPU(cs); | |
2491 | target_siginfo_t info; | |
2492 | int trapnr, gdbsig, ret; | |
2493 | ||
2494 | for (;;) { | |
2495 | cpu_exec_start(cs); | |
2496 | trapnr = cpu_exec(cs); | |
2497 | cpu_exec_end(cs); | |
2498 | gdbsig = 0; | |
2499 | ||
2500 | switch (trapnr) { | |
2501 | case EXCP_INTERRUPT: | |
2502 | /* just indicate that signals should be handled asap */ | |
2503 | break; | |
2504 | case EXCP_TRAP: | |
2505 | if (env->regs[R_AT] == 0) { | |
2506 | abi_long ret; | |
2507 | qemu_log_mask(CPU_LOG_INT, "\nSyscall\n"); | |
2508 | ||
2509 | ret = do_syscall(env, env->regs[2], | |
2510 | env->regs[4], env->regs[5], env->regs[6], | |
2511 | env->regs[7], env->regs[8], env->regs[9], | |
2512 | 0, 0); | |
2513 | ||
2514 | if (env->regs[2] == 0) { /* FIXME: syscall 0 workaround */ | |
2515 | ret = 0; | |
2516 | } | |
2517 | ||
2518 | env->regs[2] = abs(ret); | |
2519 | /* Return value is 0..4096 */ | |
2520 | env->regs[7] = (ret > 0xfffffffffffff000ULL); | |
2521 | env->regs[CR_ESTATUS] = env->regs[CR_STATUS]; | |
2522 | env->regs[CR_STATUS] &= ~0x3; | |
2523 | env->regs[R_EA] = env->regs[R_PC] + 4; | |
2524 | env->regs[R_PC] += 4; | |
2525 | break; | |
2526 | } else { | |
2527 | qemu_log_mask(CPU_LOG_INT, "\nTrap\n"); | |
2528 | ||
2529 | env->regs[CR_ESTATUS] = env->regs[CR_STATUS]; | |
2530 | env->regs[CR_STATUS] &= ~0x3; | |
2531 | env->regs[R_EA] = env->regs[R_PC] + 4; | |
2532 | env->regs[R_PC] = cpu->exception_addr; | |
2533 | ||
2534 | gdbsig = TARGET_SIGTRAP; | |
2535 | break; | |
2536 | } | |
2537 | case 0xaa: | |
2538 | switch (env->regs[R_PC]) { | |
2539 | /*case 0x1000:*/ /* TODO:__kuser_helper_version */ | |
2540 | case 0x1004: /* __kuser_cmpxchg */ | |
2541 | start_exclusive(); | |
2542 | if (env->regs[4] & 0x3) { | |
2543 | goto kuser_fail; | |
2544 | } | |
2545 | ret = get_user_u32(env->regs[2], env->regs[4]); | |
2546 | if (ret) { | |
2547 | end_exclusive(); | |
2548 | goto kuser_fail; | |
2549 | } | |
2550 | env->regs[2] -= env->regs[5]; | |
2551 | if (env->regs[2] == 0) { | |
2552 | put_user_u32(env->regs[6], env->regs[4]); | |
2553 | } | |
2554 | end_exclusive(); | |
2555 | env->regs[R_PC] = env->regs[R_RA]; | |
2556 | break; | |
2557 | /*case 0x1040:*/ /* TODO:__kuser_sigtramp */ | |
2558 | default: | |
2559 | ; | |
2560 | kuser_fail: | |
2561 | info.si_signo = TARGET_SIGSEGV; | |
2562 | info.si_errno = 0; | |
2563 | /* TODO: check env->error_code */ | |
2564 | info.si_code = TARGET_SEGV_MAPERR; | |
2565 | info._sifields._sigfault._addr = env->regs[R_PC]; | |
2566 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
2567 | } | |
2568 | break; | |
2569 | default: | |
2570 | EXCP_DUMP(env, "\nqemu: unhandled CPU exception %#x - aborting\n", | |
2571 | trapnr); | |
2572 | gdbsig = TARGET_SIGILL; | |
2573 | break; | |
2574 | } | |
2575 | if (gdbsig) { | |
2576 | gdb_handlesig(cs, gdbsig); | |
2577 | if (gdbsig != TARGET_SIGTRAP) { | |
2578 | exit(EXIT_FAILURE); | |
2579 | } | |
2580 | } | |
2581 | ||
2582 | process_pending_signals(env); | |
2583 | } | |
2584 | } | |
2585 | ||
2586 | #endif /* TARGET_NIOS2 */ | |
2587 | ||
d962783e JL |
2588 | #ifdef TARGET_OPENRISC |
2589 | ||
2590 | void cpu_loop(CPUOpenRISCState *env) | |
2591 | { | |
878096ee | 2592 | CPUState *cs = CPU(openrisc_env_get_cpu(env)); |
a0adc417 | 2593 | int trapnr; |
7fe7231a | 2594 | abi_long ret; |
a0adc417 | 2595 | target_siginfo_t info; |
d962783e JL |
2596 | |
2597 | for (;;) { | |
b040bc9c | 2598 | cpu_exec_start(cs); |
8642c1b8 | 2599 | trapnr = cpu_exec(cs); |
b040bc9c | 2600 | cpu_exec_end(cs); |
d148d90e | 2601 | process_queued_cpu_work(cs); |
d962783e JL |
2602 | |
2603 | switch (trapnr) { | |
d962783e JL |
2604 | case EXCP_SYSCALL: |
2605 | env->pc += 4; /* 0xc00; */ | |
7fe7231a | 2606 | ret = do_syscall(env, |
d89e71e8 SH |
2607 | cpu_get_gpr(env, 11), /* return value */ |
2608 | cpu_get_gpr(env, 3), /* r3 - r7 are params */ | |
2609 | cpu_get_gpr(env, 4), | |
2610 | cpu_get_gpr(env, 5), | |
2611 | cpu_get_gpr(env, 6), | |
2612 | cpu_get_gpr(env, 7), | |
2613 | cpu_get_gpr(env, 8), 0, 0); | |
7fe7231a TB |
2614 | if (ret == -TARGET_ERESTARTSYS) { |
2615 | env->pc -= 4; | |
2616 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
d89e71e8 | 2617 | cpu_set_gpr(env, 11, ret); |
7fe7231a | 2618 | } |
d962783e | 2619 | break; |
a0adc417 RH |
2620 | case EXCP_DPF: |
2621 | case EXCP_IPF: | |
2622 | case EXCP_RANGE: | |
2623 | info.si_signo = TARGET_SIGSEGV; | |
2624 | info.si_errno = 0; | |
2625 | info.si_code = TARGET_SEGV_MAPERR; | |
2626 | info._sifields._sigfault._addr = env->pc; | |
2627 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
2628 | break; | |
2629 | case EXCP_ALIGN: | |
2630 | info.si_signo = TARGET_SIGBUS; | |
2631 | info.si_errno = 0; | |
2632 | info.si_code = TARGET_BUS_ADRALN; | |
2633 | info._sifields._sigfault._addr = env->pc; | |
2634 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
2635 | break; | |
2636 | case EXCP_ILLEGAL: | |
2637 | info.si_signo = TARGET_SIGILL; | |
2638 | info.si_errno = 0; | |
2639 | info.si_code = TARGET_ILL_ILLOPC; | |
2640 | info._sifields._sigfault._addr = env->pc; | |
2641 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
2642 | break; | |
d962783e | 2643 | case EXCP_FPE: |
a0adc417 RH |
2644 | info.si_signo = TARGET_SIGFPE; |
2645 | info.si_errno = 0; | |
2646 | info.si_code = 0; | |
2647 | info._sifields._sigfault._addr = env->pc; | |
2648 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
d962783e | 2649 | break; |
a0adc417 RH |
2650 | case EXCP_INTERRUPT: |
2651 | /* We processed the pending cpu work above. */ | |
d962783e | 2652 | break; |
a0adc417 RH |
2653 | case EXCP_DEBUG: |
2654 | trapnr = gdb_handlesig(cs, TARGET_SIGTRAP); | |
2655 | if (trapnr) { | |
2656 | info.si_signo = trapnr; | |
2657 | info.si_errno = 0; | |
2658 | info.si_code = TARGET_TRAP_BRKPT; | |
2659 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
2660 | } | |
d962783e | 2661 | break; |
fdbc2b57 RH |
2662 | case EXCP_ATOMIC: |
2663 | cpu_exec_step_atomic(cs); | |
2664 | break; | |
d962783e | 2665 | default: |
a0adc417 | 2666 | g_assert_not_reached(); |
d962783e | 2667 | } |
d962783e JL |
2668 | process_pending_signals(env); |
2669 | } | |
2670 | } | |
2671 | ||
2672 | #endif /* TARGET_OPENRISC */ | |
2673 | ||
fdf9b3e8 | 2674 | #ifdef TARGET_SH4 |
05390248 | 2675 | void cpu_loop(CPUSH4State *env) |
fdf9b3e8 | 2676 | { |
878096ee | 2677 | CPUState *cs = CPU(sh_env_get_cpu(env)); |
fdf9b3e8 | 2678 | int trapnr, ret; |
c227f099 | 2679 | target_siginfo_t info; |
3b46e624 | 2680 | |
fdf9b3e8 | 2681 | while (1) { |
b040bc9c | 2682 | cpu_exec_start(cs); |
8642c1b8 | 2683 | trapnr = cpu_exec(cs); |
b040bc9c | 2684 | cpu_exec_end(cs); |
d148d90e | 2685 | process_queued_cpu_work(cs); |
3b46e624 | 2686 | |
fdf9b3e8 FB |
2687 | switch (trapnr) { |
2688 | case 0x160: | |
0b6d3ae0 | 2689 | env->pc += 2; |
5fafdf24 TS |
2690 | ret = do_syscall(env, |
2691 | env->gregs[3], | |
2692 | env->gregs[4], | |
2693 | env->gregs[5], | |
2694 | env->gregs[6], | |
2695 | env->gregs[7], | |
2696 | env->gregs[0], | |
5945cfcb PM |
2697 | env->gregs[1], |
2698 | 0, 0); | |
ba412496 TB |
2699 | if (ret == -TARGET_ERESTARTSYS) { |
2700 | env->pc -= 2; | |
2701 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
2702 | env->gregs[0] = ret; | |
2703 | } | |
fdf9b3e8 | 2704 | break; |
c3b5bc8a TS |
2705 | case EXCP_INTERRUPT: |
2706 | /* just indicate that signals should be handled asap */ | |
2707 | break; | |
355fb23d PB |
2708 | case EXCP_DEBUG: |
2709 | { | |
2710 | int sig; | |
2711 | ||
db6b81d4 | 2712 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
355fb23d PB |
2713 | if (sig) |
2714 | { | |
2715 | info.si_signo = sig; | |
2716 | info.si_errno = 0; | |
2717 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 2718 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
355fb23d PB |
2719 | } |
2720 | } | |
2721 | break; | |
c3b5bc8a TS |
2722 | case 0xa0: |
2723 | case 0xc0: | |
a86b3c64 | 2724 | info.si_signo = TARGET_SIGSEGV; |
c3b5bc8a TS |
2725 | info.si_errno = 0; |
2726 | info.si_code = TARGET_SEGV_MAPERR; | |
2727 | info._sifields._sigfault._addr = env->tea; | |
9d2803f7 | 2728 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
c3b5bc8a TS |
2729 | break; |
2730 | ||
fdbc2b57 RH |
2731 | case EXCP_ATOMIC: |
2732 | cpu_exec_step_atomic(cs); | |
2733 | break; | |
fdf9b3e8 FB |
2734 | default: |
2735 | printf ("Unhandled trap: 0x%x\n", trapnr); | |
878096ee | 2736 | cpu_dump_state(cs, stderr, fprintf, 0); |
4d1275c2 | 2737 | exit(EXIT_FAILURE); |
fdf9b3e8 FB |
2738 | } |
2739 | process_pending_signals (env); | |
2740 | } | |
2741 | } | |
2742 | #endif | |
2743 | ||
48733d19 | 2744 | #ifdef TARGET_CRIS |
05390248 | 2745 | void cpu_loop(CPUCRISState *env) |
48733d19 | 2746 | { |
878096ee | 2747 | CPUState *cs = CPU(cris_env_get_cpu(env)); |
48733d19 | 2748 | int trapnr, ret; |
c227f099 | 2749 | target_siginfo_t info; |
48733d19 TS |
2750 | |
2751 | while (1) { | |
b040bc9c | 2752 | cpu_exec_start(cs); |
8642c1b8 | 2753 | trapnr = cpu_exec(cs); |
b040bc9c | 2754 | cpu_exec_end(cs); |
d148d90e SF |
2755 | process_queued_cpu_work(cs); |
2756 | ||
48733d19 TS |
2757 | switch (trapnr) { |
2758 | case 0xaa: | |
2759 | { | |
a86b3c64 | 2760 | info.si_signo = TARGET_SIGSEGV; |
48733d19 TS |
2761 | info.si_errno = 0; |
2762 | /* XXX: check env->error_code */ | |
2763 | info.si_code = TARGET_SEGV_MAPERR; | |
e00c1e71 | 2764 | info._sifields._sigfault._addr = env->pregs[PR_EDA]; |
9d2803f7 | 2765 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
48733d19 TS |
2766 | } |
2767 | break; | |
b6d3abda EI |
2768 | case EXCP_INTERRUPT: |
2769 | /* just indicate that signals should be handled asap */ | |
2770 | break; | |
48733d19 TS |
2771 | case EXCP_BREAK: |
2772 | ret = do_syscall(env, | |
2773 | env->regs[9], | |
2774 | env->regs[10], | |
2775 | env->regs[11], | |
2776 | env->regs[12], | |
2777 | env->regs[13], | |
2778 | env->pregs[7], | |
5945cfcb PM |
2779 | env->pregs[11], |
2780 | 0, 0); | |
62050865 TB |
2781 | if (ret == -TARGET_ERESTARTSYS) { |
2782 | env->pc -= 2; | |
2783 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
2784 | env->regs[10] = ret; | |
2785 | } | |
48733d19 TS |
2786 | break; |
2787 | case EXCP_DEBUG: | |
2788 | { | |
2789 | int sig; | |
2790 | ||
db6b81d4 | 2791 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
48733d19 TS |
2792 | if (sig) |
2793 | { | |
2794 | info.si_signo = sig; | |
2795 | info.si_errno = 0; | |
2796 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 2797 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
48733d19 TS |
2798 | } |
2799 | } | |
2800 | break; | |
fdbc2b57 RH |
2801 | case EXCP_ATOMIC: |
2802 | cpu_exec_step_atomic(cs); | |
2803 | break; | |
48733d19 TS |
2804 | default: |
2805 | printf ("Unhandled trap: 0x%x\n", trapnr); | |
878096ee | 2806 | cpu_dump_state(cs, stderr, fprintf, 0); |
4d1275c2 | 2807 | exit(EXIT_FAILURE); |
48733d19 TS |
2808 | } |
2809 | process_pending_signals (env); | |
2810 | } | |
2811 | } | |
2812 | #endif | |
2813 | ||
b779e29e | 2814 | #ifdef TARGET_MICROBLAZE |
05390248 | 2815 | void cpu_loop(CPUMBState *env) |
b779e29e | 2816 | { |
878096ee | 2817 | CPUState *cs = CPU(mb_env_get_cpu(env)); |
b779e29e | 2818 | int trapnr, ret; |
c227f099 | 2819 | target_siginfo_t info; |
b779e29e EI |
2820 | |
2821 | while (1) { | |
b040bc9c | 2822 | cpu_exec_start(cs); |
8642c1b8 | 2823 | trapnr = cpu_exec(cs); |
b040bc9c | 2824 | cpu_exec_end(cs); |
d148d90e SF |
2825 | process_queued_cpu_work(cs); |
2826 | ||
b779e29e EI |
2827 | switch (trapnr) { |
2828 | case 0xaa: | |
2829 | { | |
a86b3c64 | 2830 | info.si_signo = TARGET_SIGSEGV; |
b779e29e EI |
2831 | info.si_errno = 0; |
2832 | /* XXX: check env->error_code */ | |
2833 | info.si_code = TARGET_SEGV_MAPERR; | |
2834 | info._sifields._sigfault._addr = 0; | |
9d2803f7 | 2835 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
b779e29e EI |
2836 | } |
2837 | break; | |
2838 | case EXCP_INTERRUPT: | |
2839 | /* just indicate that signals should be handled asap */ | |
2840 | break; | |
2841 | case EXCP_BREAK: | |
2842 | /* Return address is 4 bytes after the call. */ | |
2843 | env->regs[14] += 4; | |
d7dce494 | 2844 | env->sregs[SR_PC] = env->regs[14]; |
b779e29e EI |
2845 | ret = do_syscall(env, |
2846 | env->regs[12], | |
2847 | env->regs[5], | |
2848 | env->regs[6], | |
2849 | env->regs[7], | |
2850 | env->regs[8], | |
2851 | env->regs[9], | |
5945cfcb PM |
2852 | env->regs[10], |
2853 | 0, 0); | |
4134ecfe TB |
2854 | if (ret == -TARGET_ERESTARTSYS) { |
2855 | /* Wind back to before the syscall. */ | |
2856 | env->sregs[SR_PC] -= 4; | |
2857 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
2858 | env->regs[3] = ret; | |
2859 | } | |
d7749ab7 PM |
2860 | /* All syscall exits result in guest r14 being equal to the |
2861 | * PC we return to, because the kernel syscall exit "rtbd" does | |
2862 | * this. (This is true even for sigreturn(); note that r14 is | |
2863 | * not a userspace-usable register, as the kernel may clobber it | |
2864 | * at any point.) | |
2865 | */ | |
2866 | env->regs[14] = env->sregs[SR_PC]; | |
b779e29e | 2867 | break; |
b76da7e3 EI |
2868 | case EXCP_HW_EXCP: |
2869 | env->regs[17] = env->sregs[SR_PC] + 4; | |
2870 | if (env->iflags & D_FLAG) { | |
2871 | env->sregs[SR_ESR] |= 1 << 12; | |
2872 | env->sregs[SR_PC] -= 4; | |
b4916d7b | 2873 | /* FIXME: if branch was immed, replay the imm as well. */ |
b76da7e3 EI |
2874 | } |
2875 | ||
2876 | env->iflags &= ~(IMM_FLAG | D_FLAG); | |
2877 | ||
2878 | switch (env->sregs[SR_ESR] & 31) { | |
22a78d64 | 2879 | case ESR_EC_DIVZERO: |
a86b3c64 | 2880 | info.si_signo = TARGET_SIGFPE; |
22a78d64 EI |
2881 | info.si_errno = 0; |
2882 | info.si_code = TARGET_FPE_FLTDIV; | |
2883 | info._sifields._sigfault._addr = 0; | |
9d2803f7 | 2884 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
22a78d64 | 2885 | break; |
b76da7e3 | 2886 | case ESR_EC_FPU: |
a86b3c64 | 2887 | info.si_signo = TARGET_SIGFPE; |
b76da7e3 EI |
2888 | info.si_errno = 0; |
2889 | if (env->sregs[SR_FSR] & FSR_IO) { | |
2890 | info.si_code = TARGET_FPE_FLTINV; | |
2891 | } | |
2892 | if (env->sregs[SR_FSR] & FSR_DZ) { | |
2893 | info.si_code = TARGET_FPE_FLTDIV; | |
2894 | } | |
2895 | info._sifields._sigfault._addr = 0; | |
9d2803f7 | 2896 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
b76da7e3 EI |
2897 | break; |
2898 | default: | |
2899 | printf ("Unhandled hw-exception: 0x%x\n", | |
2e42d52d | 2900 | env->sregs[SR_ESR] & ESR_EC_MASK); |
878096ee | 2901 | cpu_dump_state(cs, stderr, fprintf, 0); |
4d1275c2 | 2902 | exit(EXIT_FAILURE); |
b76da7e3 EI |
2903 | break; |
2904 | } | |
2905 | break; | |
b779e29e EI |
2906 | case EXCP_DEBUG: |
2907 | { | |
2908 | int sig; | |
2909 | ||
db6b81d4 | 2910 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
b779e29e EI |
2911 | if (sig) |
2912 | { | |
2913 | info.si_signo = sig; | |
2914 | info.si_errno = 0; | |
2915 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 2916 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
b779e29e EI |
2917 | } |
2918 | } | |
2919 | break; | |
fdbc2b57 RH |
2920 | case EXCP_ATOMIC: |
2921 | cpu_exec_step_atomic(cs); | |
2922 | break; | |
b779e29e EI |
2923 | default: |
2924 | printf ("Unhandled trap: 0x%x\n", trapnr); | |
878096ee | 2925 | cpu_dump_state(cs, stderr, fprintf, 0); |
4d1275c2 | 2926 | exit(EXIT_FAILURE); |
b779e29e EI |
2927 | } |
2928 | process_pending_signals (env); | |
2929 | } | |
2930 | } | |
2931 | #endif | |
2932 | ||
e6e5906b PB |
2933 | #ifdef TARGET_M68K |
2934 | ||
2935 | void cpu_loop(CPUM68KState *env) | |
2936 | { | |
878096ee | 2937 | CPUState *cs = CPU(m68k_env_get_cpu(env)); |
e6e5906b PB |
2938 | int trapnr; |
2939 | unsigned int n; | |
c227f099 | 2940 | target_siginfo_t info; |
0429a971 | 2941 | TaskState *ts = cs->opaque; |
3b46e624 | 2942 | |
e6e5906b | 2943 | for(;;) { |
b040bc9c | 2944 | cpu_exec_start(cs); |
8642c1b8 | 2945 | trapnr = cpu_exec(cs); |
b040bc9c | 2946 | cpu_exec_end(cs); |
d148d90e SF |
2947 | process_queued_cpu_work(cs); |
2948 | ||
e6e5906b PB |
2949 | switch(trapnr) { |
2950 | case EXCP_ILLEGAL: | |
2951 | { | |
2952 | if (ts->sim_syscalls) { | |
2953 | uint16_t nr; | |
d8d5119c | 2954 | get_user_u16(nr, env->pc + 2); |
e6e5906b PB |
2955 | env->pc += 4; |
2956 | do_m68k_simcall(env, nr); | |
2957 | } else { | |
2958 | goto do_sigill; | |
2959 | } | |
2960 | } | |
2961 | break; | |
a87295e8 | 2962 | case EXCP_HALT_INSN: |
e6e5906b | 2963 | /* Semihosing syscall. */ |
a87295e8 | 2964 | env->pc += 4; |
e6e5906b PB |
2965 | do_m68k_semihosting(env, env->dregs[0]); |
2966 | break; | |
2967 | case EXCP_LINEA: | |
2968 | case EXCP_LINEF: | |
2969 | case EXCP_UNSUPPORTED: | |
2970 | do_sigill: | |
a86b3c64 | 2971 | info.si_signo = TARGET_SIGILL; |
e6e5906b PB |
2972 | info.si_errno = 0; |
2973 | info.si_code = TARGET_ILL_ILLOPN; | |
2974 | info._sifields._sigfault._addr = env->pc; | |
0ccb9c1d LV |
2975 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
2976 | break; | |
2977 | case EXCP_DIV0: | |
2978 | info.si_signo = TARGET_SIGFPE; | |
2979 | info.si_errno = 0; | |
2980 | info.si_code = TARGET_FPE_INTDIV; | |
2981 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 2982 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
e6e5906b PB |
2983 | break; |
2984 | case EXCP_TRAP0: | |
2985 | { | |
7ccb84a9 | 2986 | abi_long ret; |
e6e5906b PB |
2987 | ts->sim_syscalls = 0; |
2988 | n = env->dregs[0]; | |
2989 | env->pc += 2; | |
7ccb84a9 TB |
2990 | ret = do_syscall(env, |
2991 | n, | |
2992 | env->dregs[1], | |
2993 | env->dregs[2], | |
2994 | env->dregs[3], | |
2995 | env->dregs[4], | |
2996 | env->dregs[5], | |
2997 | env->aregs[0], | |
2998 | 0, 0); | |
2999 | if (ret == -TARGET_ERESTARTSYS) { | |
3000 | env->pc -= 2; | |
3001 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
3002 | env->dregs[0] = ret; | |
3003 | } | |
e6e5906b PB |
3004 | } |
3005 | break; | |
3006 | case EXCP_INTERRUPT: | |
3007 | /* just indicate that signals should be handled asap */ | |
3008 | break; | |
3009 | case EXCP_ACCESS: | |
3010 | { | |
a86b3c64 | 3011 | info.si_signo = TARGET_SIGSEGV; |
e6e5906b PB |
3012 | info.si_errno = 0; |
3013 | /* XXX: check env->error_code */ | |
3014 | info.si_code = TARGET_SEGV_MAPERR; | |
3015 | info._sifields._sigfault._addr = env->mmu.ar; | |
9d2803f7 | 3016 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
e6e5906b PB |
3017 | } |
3018 | break; | |
3019 | case EXCP_DEBUG: | |
3020 | { | |
3021 | int sig; | |
3022 | ||
db6b81d4 | 3023 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
e6e5906b PB |
3024 | if (sig) |
3025 | { | |
3026 | info.si_signo = sig; | |
3027 | info.si_errno = 0; | |
3028 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 3029 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
e6e5906b PB |
3030 | } |
3031 | } | |
3032 | break; | |
fdbc2b57 RH |
3033 | case EXCP_ATOMIC: |
3034 | cpu_exec_step_atomic(cs); | |
3035 | break; | |
e6e5906b | 3036 | default: |
120a9848 | 3037 | EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr); |
e6e5906b PB |
3038 | abort(); |
3039 | } | |
3040 | process_pending_signals(env); | |
3041 | } | |
3042 | } | |
3043 | #endif /* TARGET_M68K */ | |
3044 | ||
7a3148a9 | 3045 | #ifdef TARGET_ALPHA |
05390248 | 3046 | void cpu_loop(CPUAlphaState *env) |
7a3148a9 | 3047 | { |
878096ee | 3048 | CPUState *cs = CPU(alpha_env_get_cpu(env)); |
e96efcfc | 3049 | int trapnr; |
c227f099 | 3050 | target_siginfo_t info; |
6049f4f8 | 3051 | abi_long sysret; |
3b46e624 | 3052 | |
7a3148a9 | 3053 | while (1) { |
bcd2625d RH |
3054 | bool arch_interrupt = true; |
3055 | ||
b040bc9c | 3056 | cpu_exec_start(cs); |
8642c1b8 | 3057 | trapnr = cpu_exec(cs); |
b040bc9c | 3058 | cpu_exec_end(cs); |
d148d90e | 3059 | process_queued_cpu_work(cs); |
3b46e624 | 3060 | |
7a3148a9 JM |
3061 | switch (trapnr) { |
3062 | case EXCP_RESET: | |
3063 | fprintf(stderr, "Reset requested. Exit\n"); | |
4d1275c2 | 3064 | exit(EXIT_FAILURE); |
7a3148a9 JM |
3065 | break; |
3066 | case EXCP_MCHK: | |
3067 | fprintf(stderr, "Machine check exception. Exit\n"); | |
4d1275c2 | 3068 | exit(EXIT_FAILURE); |
7a3148a9 | 3069 | break; |
07b6c13b RH |
3070 | case EXCP_SMP_INTERRUPT: |
3071 | case EXCP_CLK_INTERRUPT: | |
3072 | case EXCP_DEV_INTERRUPT: | |
5fafdf24 | 3073 | fprintf(stderr, "External interrupt. Exit\n"); |
4d1275c2 | 3074 | exit(EXIT_FAILURE); |
7a3148a9 | 3075 | break; |
07b6c13b | 3076 | case EXCP_MMFAULT: |
6049f4f8 RH |
3077 | info.si_signo = TARGET_SIGSEGV; |
3078 | info.si_errno = 0; | |
129d8aa5 | 3079 | info.si_code = (page_get_flags(env->trap_arg0) & PAGE_VALID |
0be1d07c | 3080 | ? TARGET_SEGV_ACCERR : TARGET_SEGV_MAPERR); |
129d8aa5 | 3081 | info._sifields._sigfault._addr = env->trap_arg0; |
9d2803f7 | 3082 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
7a3148a9 | 3083 | break; |
7a3148a9 | 3084 | case EXCP_UNALIGN: |
6049f4f8 RH |
3085 | info.si_signo = TARGET_SIGBUS; |
3086 | info.si_errno = 0; | |
3087 | info.si_code = TARGET_BUS_ADRALN; | |
129d8aa5 | 3088 | info._sifields._sigfault._addr = env->trap_arg0; |
9d2803f7 | 3089 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
7a3148a9 JM |
3090 | break; |
3091 | case EXCP_OPCDEC: | |
6049f4f8 RH |
3092 | do_sigill: |
3093 | info.si_signo = TARGET_SIGILL; | |
3094 | info.si_errno = 0; | |
3095 | info.si_code = TARGET_ILL_ILLOPC; | |
3096 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 3097 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
7a3148a9 | 3098 | break; |
07b6c13b | 3099 | case EXCP_ARITH: |
07b6c13b RH |
3100 | info.si_signo = TARGET_SIGFPE; |
3101 | info.si_errno = 0; | |
3102 | info.si_code = TARGET_FPE_FLTINV; | |
3103 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 3104 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
07b6c13b | 3105 | break; |
7a3148a9 | 3106 | case EXCP_FEN: |
6049f4f8 | 3107 | /* No-op. Linux simply re-enables the FPU. */ |
7a3148a9 | 3108 | break; |
07b6c13b | 3109 | case EXCP_CALL_PAL: |
07b6c13b | 3110 | switch (env->error_code) { |
6049f4f8 RH |
3111 | case 0x80: |
3112 | /* BPT */ | |
3113 | info.si_signo = TARGET_SIGTRAP; | |
3114 | info.si_errno = 0; | |
3115 | info.si_code = TARGET_TRAP_BRKPT; | |
3116 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 3117 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
6049f4f8 RH |
3118 | break; |
3119 | case 0x81: | |
3120 | /* BUGCHK */ | |
3121 | info.si_signo = TARGET_SIGTRAP; | |
3122 | info.si_errno = 0; | |
3123 | info.si_code = 0; | |
3124 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 3125 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
6049f4f8 RH |
3126 | break; |
3127 | case 0x83: | |
3128 | /* CALLSYS */ | |
3129 | trapnr = env->ir[IR_V0]; | |
3130 | sysret = do_syscall(env, trapnr, | |
3131 | env->ir[IR_A0], env->ir[IR_A1], | |
3132 | env->ir[IR_A2], env->ir[IR_A3], | |
5945cfcb PM |
3133 | env->ir[IR_A4], env->ir[IR_A5], |
3134 | 0, 0); | |
338c858c TB |
3135 | if (sysret == -TARGET_ERESTARTSYS) { |
3136 | env->pc -= 4; | |
3137 | break; | |
3138 | } | |
3139 | if (sysret == -TARGET_QEMU_ESIGRETURN) { | |
a5b3b13b RH |
3140 | break; |
3141 | } | |
3142 | /* Syscall writes 0 to V0 to bypass error check, similar | |
0e141977 RH |
3143 | to how this is handled internal to Linux kernel. |
3144 | (Ab)use trapnr temporarily as boolean indicating error. */ | |
3145 | trapnr = (env->ir[IR_V0] != 0 && sysret < 0); | |
3146 | env->ir[IR_V0] = (trapnr ? -sysret : sysret); | |
3147 | env->ir[IR_A3] = trapnr; | |
6049f4f8 RH |
3148 | break; |
3149 | case 0x86: | |
3150 | /* IMB */ | |
3151 | /* ??? We can probably elide the code using page_unprotect | |
3152 | that is checking for self-modifying code. Instead we | |
3153 | could simply call tb_flush here. Until we work out the | |
3154 | changes required to turn off the extra write protection, | |
3155 | this can be a no-op. */ | |
3156 | break; | |
3157 | case 0x9E: | |
3158 | /* RDUNIQUE */ | |
3159 | /* Handled in the translator for usermode. */ | |
3160 | abort(); | |
3161 | case 0x9F: | |
3162 | /* WRUNIQUE */ | |
3163 | /* Handled in the translator for usermode. */ | |
3164 | abort(); | |
3165 | case 0xAA: | |
3166 | /* GENTRAP */ | |
3167 | info.si_signo = TARGET_SIGFPE; | |
3168 | switch (env->ir[IR_A0]) { | |
3169 | case TARGET_GEN_INTOVF: | |
3170 | info.si_code = TARGET_FPE_INTOVF; | |
3171 | break; | |
3172 | case TARGET_GEN_INTDIV: | |
3173 | info.si_code = TARGET_FPE_INTDIV; | |
3174 | break; | |
3175 | case TARGET_GEN_FLTOVF: | |
3176 | info.si_code = TARGET_FPE_FLTOVF; | |
3177 | break; | |
3178 | case TARGET_GEN_FLTUND: | |
3179 | info.si_code = TARGET_FPE_FLTUND; | |
3180 | break; | |
3181 | case TARGET_GEN_FLTINV: | |
3182 | info.si_code = TARGET_FPE_FLTINV; | |
3183 | break; | |
3184 | case TARGET_GEN_FLTINE: | |
3185 | info.si_code = TARGET_FPE_FLTRES; | |
3186 | break; | |
3187 | case TARGET_GEN_ROPRAND: | |
3188 | info.si_code = 0; | |
3189 | break; | |
3190 | default: | |
3191 | info.si_signo = TARGET_SIGTRAP; | |
3192 | info.si_code = 0; | |
3193 | break; | |
3194 | } | |
3195 | info.si_errno = 0; | |
3196 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 3197 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
6049f4f8 RH |
3198 | break; |
3199 | default: | |
3200 | goto do_sigill; | |
3201 | } | |
7a3148a9 | 3202 | break; |
7a3148a9 | 3203 | case EXCP_DEBUG: |
db6b81d4 | 3204 | info.si_signo = gdb_handlesig(cs, TARGET_SIGTRAP); |
6049f4f8 RH |
3205 | if (info.si_signo) { |
3206 | info.si_errno = 0; | |
3207 | info.si_code = TARGET_TRAP_BRKPT; | |
9d2803f7 | 3208 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
bcd2625d RH |
3209 | } else { |
3210 | arch_interrupt = false; | |
7a3148a9 JM |
3211 | } |
3212 | break; | |
d0f20495 RH |
3213 | case EXCP_INTERRUPT: |
3214 | /* Just indicate that signals should be handled asap. */ | |
3215 | break; | |
fdbc2b57 RH |
3216 | case EXCP_ATOMIC: |
3217 | cpu_exec_step_atomic(cs); | |
bcd2625d | 3218 | arch_interrupt = false; |
fdbc2b57 | 3219 | break; |
7a3148a9 JM |
3220 | default: |
3221 | printf ("Unhandled trap: 0x%x\n", trapnr); | |
878096ee | 3222 | cpu_dump_state(cs, stderr, fprintf, 0); |
4d1275c2 | 3223 | exit(EXIT_FAILURE); |
7a3148a9 JM |
3224 | } |
3225 | process_pending_signals (env); | |
bcd2625d RH |
3226 | |
3227 | /* Most of the traps imply a transition through PALcode, which | |
3228 | implies an REI instruction has been executed. Which means | |
3229 | that RX and LOCK_ADDR should be cleared. But there are a | |
3230 | few exceptions for traps internal to QEMU. */ | |
3231 | if (arch_interrupt) { | |
3232 | env->flags &= ~ENV_FLAG_RX_FLAG; | |
3233 | env->lock_addr = -1; | |
3234 | } | |
7a3148a9 JM |
3235 | } |
3236 | } | |
3237 | #endif /* TARGET_ALPHA */ | |
3238 | ||
a4c075f1 | 3239 | #ifdef TARGET_S390X |
f2d34df3 PM |
3240 | |
3241 | /* s390x masks the fault address it reports in si_addr for SIGSEGV and SIGBUS */ | |
3242 | #define S390X_FAIL_ADDR_MASK -4096LL | |
3243 | ||
a4c075f1 UH |
3244 | void cpu_loop(CPUS390XState *env) |
3245 | { | |
878096ee | 3246 | CPUState *cs = CPU(s390_env_get_cpu(env)); |
d5a103cd | 3247 | int trapnr, n, sig; |
a4c075f1 | 3248 | target_siginfo_t info; |
d5a103cd | 3249 | target_ulong addr; |
47405ab6 | 3250 | abi_long ret; |
a4c075f1 UH |
3251 | |
3252 | while (1) { | |
b040bc9c | 3253 | cpu_exec_start(cs); |
8642c1b8 | 3254 | trapnr = cpu_exec(cs); |
b040bc9c | 3255 | cpu_exec_end(cs); |
d148d90e SF |
3256 | process_queued_cpu_work(cs); |
3257 | ||
a4c075f1 UH |
3258 | switch (trapnr) { |
3259 | case EXCP_INTERRUPT: | |
d5a103cd | 3260 | /* Just indicate that signals should be handled asap. */ |
a4c075f1 | 3261 | break; |
a4c075f1 | 3262 | |
d5a103cd RH |
3263 | case EXCP_SVC: |
3264 | n = env->int_svc_code; | |
3265 | if (!n) { | |
3266 | /* syscalls > 255 */ | |
3267 | n = env->regs[1]; | |
a4c075f1 | 3268 | } |
d5a103cd | 3269 | env->psw.addr += env->int_svc_ilen; |
47405ab6 TB |
3270 | ret = do_syscall(env, n, env->regs[2], env->regs[3], |
3271 | env->regs[4], env->regs[5], | |
3272 | env->regs[6], env->regs[7], 0, 0); | |
3273 | if (ret == -TARGET_ERESTARTSYS) { | |
3274 | env->psw.addr -= env->int_svc_ilen; | |
3275 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
3276 | env->regs[2] = ret; | |
3277 | } | |
a4c075f1 | 3278 | break; |
d5a103cd RH |
3279 | |
3280 | case EXCP_DEBUG: | |
db6b81d4 | 3281 | sig = gdb_handlesig(cs, TARGET_SIGTRAP); |
d5a103cd RH |
3282 | if (sig) { |
3283 | n = TARGET_TRAP_BRKPT; | |
3284 | goto do_signal_pc; | |
a4c075f1 UH |
3285 | } |
3286 | break; | |
d5a103cd RH |
3287 | case EXCP_PGM: |
3288 | n = env->int_pgm_code; | |
3289 | switch (n) { | |
3290 | case PGM_OPERATION: | |
3291 | case PGM_PRIVILEGED: | |
a86b3c64 | 3292 | sig = TARGET_SIGILL; |
d5a103cd RH |
3293 | n = TARGET_ILL_ILLOPC; |
3294 | goto do_signal_pc; | |
3295 | case PGM_PROTECTION: | |
3296 | case PGM_ADDRESSING: | |
a86b3c64 | 3297 | sig = TARGET_SIGSEGV; |
a4c075f1 | 3298 | /* XXX: check env->error_code */ |
d5a103cd | 3299 | n = TARGET_SEGV_MAPERR; |
f2d34df3 | 3300 | addr = env->__excp_addr & S390X_FAIL_ADDR_MASK; |
d5a103cd RH |
3301 | goto do_signal; |
3302 | case PGM_EXECUTE: | |
3303 | case PGM_SPECIFICATION: | |
3304 | case PGM_SPECIAL_OP: | |
3305 | case PGM_OPERAND: | |
3306 | do_sigill_opn: | |
a86b3c64 | 3307 | sig = TARGET_SIGILL; |
d5a103cd RH |
3308 | n = TARGET_ILL_ILLOPN; |
3309 | goto do_signal_pc; | |
3310 | ||
3311 | case PGM_FIXPT_OVERFLOW: | |
a86b3c64 | 3312 | sig = TARGET_SIGFPE; |
d5a103cd RH |
3313 | n = TARGET_FPE_INTOVF; |
3314 | goto do_signal_pc; | |
3315 | case PGM_FIXPT_DIVIDE: | |
a86b3c64 | 3316 | sig = TARGET_SIGFPE; |
d5a103cd RH |
3317 | n = TARGET_FPE_INTDIV; |
3318 | goto do_signal_pc; | |
3319 | ||
3320 | case PGM_DATA: | |
3321 | n = (env->fpc >> 8) & 0xff; | |
3322 | if (n == 0xff) { | |
3323 | /* compare-and-trap */ | |
3324 | goto do_sigill_opn; | |
3325 | } else { | |
3326 | /* An IEEE exception, simulated or otherwise. */ | |
3327 | if (n & 0x80) { | |
3328 | n = TARGET_FPE_FLTINV; | |
3329 | } else if (n & 0x40) { | |
3330 | n = TARGET_FPE_FLTDIV; | |
3331 | } else if (n & 0x20) { | |
3332 | n = TARGET_FPE_FLTOVF; | |
3333 | } else if (n & 0x10) { | |
3334 | n = TARGET_FPE_FLTUND; | |
3335 | } else if (n & 0x08) { | |
3336 | n = TARGET_FPE_FLTRES; | |
3337 | } else { | |
3338 | /* ??? Quantum exception; BFP, DFP error. */ | |
3339 | goto do_sigill_opn; | |
3340 | } | |
a86b3c64 | 3341 | sig = TARGET_SIGFPE; |
d5a103cd RH |
3342 | goto do_signal_pc; |
3343 | } | |
3344 | ||
3345 | default: | |
3346 | fprintf(stderr, "Unhandled program exception: %#x\n", n); | |
878096ee | 3347 | cpu_dump_state(cs, stderr, fprintf, 0); |
4d1275c2 | 3348 | exit(EXIT_FAILURE); |
a4c075f1 UH |
3349 | } |
3350 | break; | |
d5a103cd RH |
3351 | |
3352 | do_signal_pc: | |
3353 | addr = env->psw.addr; | |
3354 | do_signal: | |
3355 | info.si_signo = sig; | |
3356 | info.si_errno = 0; | |
3357 | info.si_code = n; | |
3358 | info._sifields._sigfault._addr = addr; | |
9d2803f7 | 3359 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
a4c075f1 | 3360 | break; |
d5a103cd | 3361 | |
fdbc2b57 RH |
3362 | case EXCP_ATOMIC: |
3363 | cpu_exec_step_atomic(cs); | |
3364 | break; | |
a4c075f1 | 3365 | default: |
d5a103cd | 3366 | fprintf(stderr, "Unhandled trap: 0x%x\n", trapnr); |
878096ee | 3367 | cpu_dump_state(cs, stderr, fprintf, 0); |
4d1275c2 | 3368 | exit(EXIT_FAILURE); |
a4c075f1 UH |
3369 | } |
3370 | process_pending_signals (env); | |
3371 | } | |
3372 | } | |
3373 | ||
3374 | #endif /* TARGET_S390X */ | |
3375 | ||
b16189b2 CG |
3376 | #ifdef TARGET_TILEGX |
3377 | ||
b16189b2 CG |
3378 | static void gen_sigill_reg(CPUTLGState *env) |
3379 | { | |
3380 | target_siginfo_t info; | |
3381 | ||
3382 | info.si_signo = TARGET_SIGILL; | |
3383 | info.si_errno = 0; | |
3384 | info.si_code = TARGET_ILL_PRVREG; | |
3385 | info._sifields._sigfault._addr = env->pc; | |
9d2803f7 | 3386 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
b16189b2 CG |
3387 | } |
3388 | ||
a0577d2a | 3389 | static void do_signal(CPUTLGState *env, int signo, int sigcode) |
dd8070d8 CG |
3390 | { |
3391 | target_siginfo_t info; | |
3392 | ||
a0577d2a | 3393 | info.si_signo = signo; |
dd8070d8 | 3394 | info.si_errno = 0; |
dd8070d8 | 3395 | info._sifields._sigfault._addr = env->pc; |
a0577d2a RH |
3396 | |
3397 | if (signo == TARGET_SIGSEGV) { | |
3398 | /* The passed in sigcode is a dummy; check for a page mapping | |
3399 | and pass either MAPERR or ACCERR. */ | |
3400 | target_ulong addr = env->excaddr; | |
3401 | info._sifields._sigfault._addr = addr; | |
3402 | if (page_check_range(addr, 1, PAGE_VALID) < 0) { | |
3403 | sigcode = TARGET_SEGV_MAPERR; | |
3404 | } else { | |
3405 | sigcode = TARGET_SEGV_ACCERR; | |
3406 | } | |
3407 | } | |
3408 | info.si_code = sigcode; | |
3409 | ||
9d2803f7 | 3410 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); |
dd8070d8 CG |
3411 | } |
3412 | ||
a0577d2a RH |
3413 | static void gen_sigsegv_maperr(CPUTLGState *env, target_ulong addr) |
3414 | { | |
3415 | env->excaddr = addr; | |
3416 | do_signal(env, TARGET_SIGSEGV, 0); | |
3417 | } | |
3418 | ||
0583b233 RH |
3419 | static void set_regval(CPUTLGState *env, uint8_t reg, uint64_t val) |
3420 | { | |
3421 | if (unlikely(reg >= TILEGX_R_COUNT)) { | |
3422 | switch (reg) { | |
3423 | case TILEGX_R_SN: | |
3424 | case TILEGX_R_ZERO: | |
3425 | return; | |
3426 | case TILEGX_R_IDN0: | |
3427 | case TILEGX_R_IDN1: | |
3428 | case TILEGX_R_UDN0: | |
3429 | case TILEGX_R_UDN1: | |
3430 | case TILEGX_R_UDN2: | |
3431 | case TILEGX_R_UDN3: | |
3432 | gen_sigill_reg(env); | |
3433 | return; | |
3434 | default: | |
3435 | g_assert_not_reached(); | |
3436 | } | |
3437 | } | |
3438 | env->regs[reg] = val; | |
3439 | } | |
3440 | ||
3441 | /* | |
3442 | * Compare the 8-byte contents of the CmpValue SPR with the 8-byte value in | |
3443 | * memory at the address held in the first source register. If the values are | |
3444 | * not equal, then no memory operation is performed. If the values are equal, | |
3445 | * the 8-byte quantity from the second source register is written into memory | |
3446 | * at the address held in the first source register. In either case, the result | |
3447 | * of the instruction is the value read from memory. The compare and write to | |
3448 | * memory are atomic and thus can be used for synchronization purposes. This | |
3449 | * instruction only operates for addresses aligned to a 8-byte boundary. | |
3450 | * Unaligned memory access causes an Unaligned Data Reference interrupt. | |
3451 | * | |
3452 | * Functional Description (64-bit) | |
3453 | * uint64_t memVal = memoryReadDoubleWord (rf[SrcA]); | |
3454 | * rf[Dest] = memVal; | |
3455 | * if (memVal == SPR[CmpValueSPR]) | |
3456 | * memoryWriteDoubleWord (rf[SrcA], rf[SrcB]); | |
3457 | * | |
3458 | * Functional Description (32-bit) | |
3459 | * uint64_t memVal = signExtend32 (memoryReadWord (rf[SrcA])); | |
3460 | * rf[Dest] = memVal; | |
3461 | * if (memVal == signExtend32 (SPR[CmpValueSPR])) | |
3462 | * memoryWriteWord (rf[SrcA], rf[SrcB]); | |
3463 | * | |
3464 | * | |
3465 | * This function also processes exch and exch4 which need not process SPR. | |
3466 | */ | |
3467 | static void do_exch(CPUTLGState *env, bool quad, bool cmp) | |
3468 | { | |
3469 | target_ulong addr; | |
3470 | target_long val, sprval; | |
3471 | ||
3472 | start_exclusive(); | |
3473 | ||
3474 | addr = env->atomic_srca; | |
3475 | if (quad ? get_user_s64(val, addr) : get_user_s32(val, addr)) { | |
3476 | goto sigsegv_maperr; | |
3477 | } | |
3478 | ||
3479 | if (cmp) { | |
3480 | if (quad) { | |
3481 | sprval = env->spregs[TILEGX_SPR_CMPEXCH]; | |
3482 | } else { | |
3483 | sprval = sextract64(env->spregs[TILEGX_SPR_CMPEXCH], 0, 32); | |
3484 | } | |
3485 | } | |
3486 | ||
3487 | if (!cmp || val == sprval) { | |
3488 | target_long valb = env->atomic_srcb; | |
3489 | if (quad ? put_user_u64(valb, addr) : put_user_u32(valb, addr)) { | |
3490 | goto sigsegv_maperr; | |
3491 | } | |
3492 | } | |
3493 | ||
3494 | set_regval(env, env->atomic_dstr, val); | |
3495 | end_exclusive(); | |
3496 | return; | |
3497 | ||
3498 | sigsegv_maperr: | |
3499 | end_exclusive(); | |
3500 | gen_sigsegv_maperr(env, addr); | |
3501 | } | |
3502 | ||
3503 | static void do_fetch(CPUTLGState *env, int trapnr, bool quad) | |
3504 | { | |
3505 | int8_t write = 1; | |
3506 | target_ulong addr; | |
3507 | target_long val, valb; | |
3508 | ||
3509 | start_exclusive(); | |
3510 | ||
3511 | addr = env->atomic_srca; | |
3512 | valb = env->atomic_srcb; | |
3513 | if (quad ? get_user_s64(val, addr) : get_user_s32(val, addr)) { | |
3514 | goto sigsegv_maperr; | |
3515 | } | |
3516 | ||
3517 | switch (trapnr) { | |
3518 | case TILEGX_EXCP_OPCODE_FETCHADD: | |
3519 | case TILEGX_EXCP_OPCODE_FETCHADD4: | |
3520 | valb += val; | |
3521 | break; | |
3522 | case TILEGX_EXCP_OPCODE_FETCHADDGEZ: | |
3523 | valb += val; | |
3524 | if (valb < 0) { | |
3525 | write = 0; | |
3526 | } | |
3527 | break; | |
3528 | case TILEGX_EXCP_OPCODE_FETCHADDGEZ4: | |
3529 | valb += val; | |
3530 | if ((int32_t)valb < 0) { | |
3531 | write = 0; | |
3532 | } | |
3533 | break; | |
3534 | case TILEGX_EXCP_OPCODE_FETCHAND: | |
3535 | case TILEGX_EXCP_OPCODE_FETCHAND4: | |
3536 | valb &= val; | |
3537 | break; | |
3538 | case TILEGX_EXCP_OPCODE_FETCHOR: | |
3539 | case TILEGX_EXCP_OPCODE_FETCHOR4: | |
3540 | valb |= val; | |
3541 | break; | |
3542 | default: | |
3543 | g_assert_not_reached(); | |
3544 | } | |
3545 | ||
3546 | if (write) { | |
3547 | if (quad ? put_user_u64(valb, addr) : put_user_u32(valb, addr)) { | |
3548 | goto sigsegv_maperr; | |
3549 | } | |
3550 | } | |
3551 | ||
3552 | set_regval(env, env->atomic_dstr, val); | |
3553 | end_exclusive(); | |
3554 | return; | |
3555 | ||
3556 | sigsegv_maperr: | |
3557 | end_exclusive(); | |
3558 | gen_sigsegv_maperr(env, addr); | |
3559 | } | |
3560 | ||
b16189b2 CG |
3561 | void cpu_loop(CPUTLGState *env) |
3562 | { | |
3563 | CPUState *cs = CPU(tilegx_env_get_cpu(env)); | |
3564 | int trapnr; | |
3565 | ||
3566 | while (1) { | |
3567 | cpu_exec_start(cs); | |
8642c1b8 | 3568 | trapnr = cpu_exec(cs); |
b16189b2 | 3569 | cpu_exec_end(cs); |
d148d90e SF |
3570 | process_queued_cpu_work(cs); |
3571 | ||
b16189b2 CG |
3572 | switch (trapnr) { |
3573 | case TILEGX_EXCP_SYSCALL: | |
a9175169 PM |
3574 | { |
3575 | abi_ulong ret = do_syscall(env, env->regs[TILEGX_R_NR], | |
3576 | env->regs[0], env->regs[1], | |
3577 | env->regs[2], env->regs[3], | |
3578 | env->regs[4], env->regs[5], | |
3579 | env->regs[6], env->regs[7]); | |
3580 | if (ret == -TARGET_ERESTARTSYS) { | |
3581 | env->pc -= 8; | |
3582 | } else if (ret != -TARGET_QEMU_ESIGRETURN) { | |
3583 | env->regs[TILEGX_R_RE] = ret; | |
3584 | env->regs[TILEGX_R_ERR] = TILEGX_IS_ERRNO(ret) ? -ret : 0; | |
3585 | } | |
b16189b2 | 3586 | break; |
a9175169 | 3587 | } |
0583b233 RH |
3588 | case TILEGX_EXCP_OPCODE_EXCH: |
3589 | do_exch(env, true, false); | |
3590 | break; | |
3591 | case TILEGX_EXCP_OPCODE_EXCH4: | |
3592 | do_exch(env, false, false); | |
3593 | break; | |
3594 | case TILEGX_EXCP_OPCODE_CMPEXCH: | |
3595 | do_exch(env, true, true); | |
3596 | break; | |
3597 | case TILEGX_EXCP_OPCODE_CMPEXCH4: | |
3598 | do_exch(env, false, true); | |
3599 | break; | |
3600 | case TILEGX_EXCP_OPCODE_FETCHADD: | |
3601 | case TILEGX_EXCP_OPCODE_FETCHADDGEZ: | |
3602 | case TILEGX_EXCP_OPCODE_FETCHAND: | |
3603 | case TILEGX_EXCP_OPCODE_FETCHOR: | |
3604 | do_fetch(env, trapnr, true); | |
3605 | break; | |
3606 | case TILEGX_EXCP_OPCODE_FETCHADD4: | |
3607 | case TILEGX_EXCP_OPCODE_FETCHADDGEZ4: | |
3608 | case TILEGX_EXCP_OPCODE_FETCHAND4: | |
3609 | case TILEGX_EXCP_OPCODE_FETCHOR4: | |
3610 | do_fetch(env, trapnr, false); | |
3611 | break; | |
dd8070d8 | 3612 | case TILEGX_EXCP_SIGNAL: |
a0577d2a | 3613 | do_signal(env, env->signo, env->sigcode); |
dd8070d8 | 3614 | break; |
b16189b2 CG |
3615 | case TILEGX_EXCP_REG_IDN_ACCESS: |
3616 | case TILEGX_EXCP_REG_UDN_ACCESS: | |
3617 | gen_sigill_reg(env); | |
3618 | break; | |
fdbc2b57 RH |
3619 | case EXCP_ATOMIC: |
3620 | cpu_exec_step_atomic(cs); | |
3621 | break; | |
b16189b2 CG |
3622 | default: |
3623 | fprintf(stderr, "trapnr is %d[0x%x].\n", trapnr, trapnr); | |
3624 | g_assert_not_reached(); | |
3625 | } | |
3626 | process_pending_signals(env); | |
3627 | } | |
3628 | } | |
3629 | ||
3630 | #endif | |
3631 | ||
7c248bcd RH |
3632 | #ifdef TARGET_HPPA |
3633 | ||
3634 | static abi_ulong hppa_lws(CPUHPPAState *env) | |
3635 | { | |
3636 | uint32_t which = env->gr[20]; | |
3637 | abi_ulong addr = env->gr[26]; | |
3638 | abi_ulong old = env->gr[25]; | |
3639 | abi_ulong new = env->gr[24]; | |
3640 | abi_ulong size, ret; | |
3641 | ||
3642 | switch (which) { | |
3643 | default: | |
3644 | return -TARGET_ENOSYS; | |
3645 | ||
3646 | case 0: /* elf32 atomic 32bit cmpxchg */ | |
3647 | if ((addr & 3) || !access_ok(VERIFY_WRITE, addr, 4)) { | |
3648 | return -TARGET_EFAULT; | |
3649 | } | |
3650 | old = tswap32(old); | |
3651 | new = tswap32(new); | |
3652 | ret = atomic_cmpxchg((uint32_t *)g2h(addr), old, new); | |
3653 | ret = tswap32(ret); | |
3654 | break; | |
3655 | ||
3656 | case 2: /* elf32 atomic "new" cmpxchg */ | |
3657 | size = env->gr[23]; | |
3658 | if (size >= 4) { | |
3659 | return -TARGET_ENOSYS; | |
3660 | } | |
3661 | if (((addr | old | new) & ((1 << size) - 1)) | |
3662 | || !access_ok(VERIFY_WRITE, addr, 1 << size) | |
3663 | || !access_ok(VERIFY_READ, old, 1 << size) | |
3664 | || !access_ok(VERIFY_READ, new, 1 << size)) { | |
3665 | return -TARGET_EFAULT; | |
3666 | } | |
3667 | /* Note that below we use host-endian loads so that the cmpxchg | |
3668 | can be host-endian as well. */ | |
3669 | switch (size) { | |
3670 | case 0: | |
3671 | old = *(uint8_t *)g2h(old); | |
3672 | new = *(uint8_t *)g2h(new); | |
3673 | ret = atomic_cmpxchg((uint8_t *)g2h(addr), old, new); | |
3674 | ret = ret != old; | |
3675 | break; | |
3676 | case 1: | |
3677 | old = *(uint16_t *)g2h(old); | |
3678 | new = *(uint16_t *)g2h(new); | |
3679 | ret = atomic_cmpxchg((uint16_t *)g2h(addr), old, new); | |
3680 | ret = ret != old; | |
3681 | break; | |
3682 | case 2: | |
3683 | old = *(uint32_t *)g2h(old); | |
3684 | new = *(uint32_t *)g2h(new); | |
3685 | ret = atomic_cmpxchg((uint32_t *)g2h(addr), old, new); | |
3686 | ret = ret != old; | |
3687 | break; | |
3688 | case 3: | |
3689 | { | |
3690 | uint64_t o64, n64, r64; | |
3691 | o64 = *(uint64_t *)g2h(old); | |
3692 | n64 = *(uint64_t *)g2h(new); | |
3693 | #ifdef CONFIG_ATOMIC64 | |
3694 | r64 = atomic_cmpxchg__nocheck((uint64_t *)g2h(addr), o64, n64); | |
3695 | ret = r64 != o64; | |
3696 | #else | |
3697 | start_exclusive(); | |
3698 | r64 = *(uint64_t *)g2h(addr); | |
3699 | ret = 1; | |
3700 | if (r64 == o64) { | |
3701 | *(uint64_t *)g2h(addr) = n64; | |
3702 | ret = 0; | |
3703 | } | |
3704 | end_exclusive(); | |
3705 | #endif | |
3706 | } | |
3707 | break; | |
3708 | } | |
3709 | break; | |
3710 | } | |
3711 | ||
3712 | env->gr[28] = ret; | |
3713 | return 0; | |
3714 | } | |
3715 | ||
3716 | void cpu_loop(CPUHPPAState *env) | |
3717 | { | |
3718 | CPUState *cs = CPU(hppa_env_get_cpu(env)); | |
3719 | target_siginfo_t info; | |
3720 | abi_ulong ret; | |
3721 | int trapnr; | |
3722 | ||
3723 | while (1) { | |
3724 | cpu_exec_start(cs); | |
3725 | trapnr = cpu_exec(cs); | |
3726 | cpu_exec_end(cs); | |
3727 | process_queued_cpu_work(cs); | |
3728 | ||
3729 | switch (trapnr) { | |
3730 | case EXCP_SYSCALL: | |
3731 | ret = do_syscall(env, env->gr[20], | |
3732 | env->gr[26], env->gr[25], | |
3733 | env->gr[24], env->gr[23], | |
3734 | env->gr[22], env->gr[21], 0, 0); | |
3735 | switch (ret) { | |
3736 | default: | |
3737 | env->gr[28] = ret; | |
3738 | /* We arrived here by faking the gateway page. Return. */ | |
3739 | env->iaoq_f = env->gr[31]; | |
3740 | env->iaoq_b = env->gr[31] + 4; | |
3741 | break; | |
3742 | case -TARGET_ERESTARTSYS: | |
3743 | case -TARGET_QEMU_ESIGRETURN: | |
3744 | break; | |
3745 | } | |
3746 | break; | |
3747 | case EXCP_SYSCALL_LWS: | |
3748 | env->gr[21] = hppa_lws(env); | |
3749 | /* We arrived here by faking the gateway page. Return. */ | |
3750 | env->iaoq_f = env->gr[31]; | |
3751 | env->iaoq_b = env->gr[31] + 4; | |
3752 | break; | |
3753 | case EXCP_SIGSEGV: | |
3754 | info.si_signo = TARGET_SIGSEGV; | |
3755 | info.si_errno = 0; | |
3756 | info.si_code = TARGET_SEGV_ACCERR; | |
3757 | info._sifields._sigfault._addr = env->ior; | |
3758 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
3759 | break; | |
3760 | case EXCP_SIGILL: | |
3761 | info.si_signo = TARGET_SIGILL; | |
3762 | info.si_errno = 0; | |
3763 | info.si_code = TARGET_ILL_ILLOPN; | |
3764 | info._sifields._sigfault._addr = env->iaoq_f; | |
3765 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
3766 | break; | |
3767 | case EXCP_SIGFPE: | |
3768 | info.si_signo = TARGET_SIGFPE; | |
3769 | info.si_errno = 0; | |
3770 | info.si_code = 0; | |
3771 | info._sifields._sigfault._addr = env->iaoq_f; | |
3772 | queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info); | |
3773 | break; | |
3774 | case EXCP_DEBUG: | |
3775 | trapnr = gdb_handlesig(cs, TARGET_SIGTRAP); | |
3776 | if (trapnr) { | |
3777 | info.si_signo = trapnr; | |
3778 | info.si_errno = 0; | |
3779 | info.si_code = TARGET_TRAP_BRKPT; | |
3780 | queue_signal(env, trapnr, QEMU_SI_FAULT, &info); | |
3781 | } | |
3782 | break; | |
3783 | case EXCP_INTERRUPT: | |
3784 | /* just indicate that signals should be handled asap */ | |
3785 | break; | |
3786 | default: | |
3787 | g_assert_not_reached(); | |
3788 | } | |
3789 | process_pending_signals(env); | |
3790 | } | |
3791 | } | |
3792 | ||
3793 | #endif /* TARGET_HPPA */ | |
3794 | ||
a2247f8e | 3795 | THREAD CPUState *thread_cpu; |
59faf6d6 | 3796 | |
178f9429 SF |
3797 | bool qemu_cpu_is_self(CPUState *cpu) |
3798 | { | |
3799 | return thread_cpu == cpu; | |
3800 | } | |
3801 | ||
3802 | void qemu_cpu_kick(CPUState *cpu) | |
3803 | { | |
3804 | cpu_exit(cpu); | |
3805 | } | |
3806 | ||
edf8e2af MW |
3807 | void task_settid(TaskState *ts) |
3808 | { | |
3809 | if (ts->ts_tid == 0) { | |
edf8e2af | 3810 | ts->ts_tid = (pid_t)syscall(SYS_gettid); |
edf8e2af MW |
3811 | } |
3812 | } | |
3813 | ||
3814 | void stop_all_tasks(void) | |
3815 | { | |
3816 | /* | |
3817 | * We trust that when using NPTL, start_exclusive() | |
3818 | * handles thread stopping correctly. | |
3819 | */ | |
3820 | start_exclusive(); | |
3821 | } | |
3822 | ||
c3a92833 | 3823 | /* Assumes contents are already zeroed. */ |
624f7979 PB |
3824 | void init_task_state(TaskState *ts) |
3825 | { | |
624f7979 | 3826 | ts->used = 1; |
624f7979 | 3827 | } |
fc9c5412 | 3828 | |
30ba0ee5 AF |
3829 | CPUArchState *cpu_copy(CPUArchState *env) |
3830 | { | |
ff4700b0 | 3831 | CPUState *cpu = ENV_GET_CPU(env); |
2994fd96 | 3832 | CPUState *new_cpu = cpu_init(cpu_model); |
61c7480f | 3833 | CPUArchState *new_env = new_cpu->env_ptr; |
30ba0ee5 AF |
3834 | CPUBreakpoint *bp; |
3835 | CPUWatchpoint *wp; | |
30ba0ee5 AF |
3836 | |
3837 | /* Reset non arch specific state */ | |
75a34036 | 3838 | cpu_reset(new_cpu); |
30ba0ee5 AF |
3839 | |
3840 | memcpy(new_env, env, sizeof(CPUArchState)); | |
3841 | ||
3842 | /* Clone all break/watchpoints. | |
3843 | Note: Once we support ptrace with hw-debug register access, make sure | |
3844 | BP_CPU break/watchpoints are handled correctly on clone. */ | |
1d085f6c TB |
3845 | QTAILQ_INIT(&new_cpu->breakpoints); |
3846 | QTAILQ_INIT(&new_cpu->watchpoints); | |
f0c3c505 | 3847 | QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) { |
b3310ab3 | 3848 | cpu_breakpoint_insert(new_cpu, bp->pc, bp->flags, NULL); |
30ba0ee5 | 3849 | } |
ff4700b0 | 3850 | QTAILQ_FOREACH(wp, &cpu->watchpoints, entry) { |
05068c0d | 3851 | cpu_watchpoint_insert(new_cpu, wp->vaddr, wp->len, wp->flags, NULL); |
30ba0ee5 | 3852 | } |
30ba0ee5 AF |
3853 | |
3854 | return new_env; | |
3855 | } | |
3856 | ||
fc9c5412 JS |
3857 | static void handle_arg_help(const char *arg) |
3858 | { | |
4d1275c2 | 3859 | usage(EXIT_SUCCESS); |
fc9c5412 JS |
3860 | } |
3861 | ||
3862 | static void handle_arg_log(const char *arg) | |
3863 | { | |
3864 | int mask; | |
fc9c5412 | 3865 | |
4fde1eba | 3866 | mask = qemu_str_to_log_mask(arg); |
fc9c5412 | 3867 | if (!mask) { |
59a6fa6e | 3868 | qemu_print_log_usage(stdout); |
4d1275c2 | 3869 | exit(EXIT_FAILURE); |
fc9c5412 | 3870 | } |
f2937a33 | 3871 | qemu_log_needs_buffers(); |
24537a01 | 3872 | qemu_set_log(mask); |
fc9c5412 JS |
3873 | } |
3874 | ||
8423fa90 AB |
3875 | static void handle_arg_dfilter(const char *arg) |
3876 | { | |
3877 | qemu_set_dfilter_ranges(arg, NULL); | |
3878 | } | |
3879 | ||
50171d42 CWR |
3880 | static void handle_arg_log_filename(const char *arg) |
3881 | { | |
daa76aa4 | 3882 | qemu_set_log_filename(arg, &error_fatal); |
50171d42 CWR |
3883 | } |
3884 | ||
fc9c5412 JS |
3885 | static void handle_arg_set_env(const char *arg) |
3886 | { | |
3887 | char *r, *p, *token; | |
3888 | r = p = strdup(arg); | |
3889 | while ((token = strsep(&p, ",")) != NULL) { | |
3890 | if (envlist_setenv(envlist, token) != 0) { | |
4d1275c2 | 3891 | usage(EXIT_FAILURE); |
fc9c5412 JS |
3892 | } |
3893 | } | |
3894 | free(r); | |
3895 | } | |
3896 | ||
3897 | static void handle_arg_unset_env(const char *arg) | |
3898 | { | |
3899 | char *r, *p, *token; | |
3900 | r = p = strdup(arg); | |
3901 | while ((token = strsep(&p, ",")) != NULL) { | |
3902 | if (envlist_unsetenv(envlist, token) != 0) { | |
4d1275c2 | 3903 | usage(EXIT_FAILURE); |
fc9c5412 JS |
3904 | } |
3905 | } | |
3906 | free(r); | |
3907 | } | |
3908 | ||
3909 | static void handle_arg_argv0(const char *arg) | |
3910 | { | |
3911 | argv0 = strdup(arg); | |
3912 | } | |
3913 | ||
3914 | static void handle_arg_stack_size(const char *arg) | |
3915 | { | |
3916 | char *p; | |
3917 | guest_stack_size = strtoul(arg, &p, 0); | |
3918 | if (guest_stack_size == 0) { | |
4d1275c2 | 3919 | usage(EXIT_FAILURE); |
fc9c5412 JS |
3920 | } |
3921 | ||
3922 | if (*p == 'M') { | |
3923 | guest_stack_size *= 1024 * 1024; | |
3924 | } else if (*p == 'k' || *p == 'K') { | |
3925 | guest_stack_size *= 1024; | |
3926 | } | |
3927 | } | |
3928 | ||
3929 | static void handle_arg_ld_prefix(const char *arg) | |
3930 | { | |
3931 | interp_prefix = strdup(arg); | |
3932 | } | |
3933 | ||
3934 | static void handle_arg_pagesize(const char *arg) | |
3935 | { | |
3936 | qemu_host_page_size = atoi(arg); | |
3937 | if (qemu_host_page_size == 0 || | |
3938 | (qemu_host_page_size & (qemu_host_page_size - 1)) != 0) { | |
3939 | fprintf(stderr, "page size must be a power of two\n"); | |
4d1275c2 | 3940 | exit(EXIT_FAILURE); |
fc9c5412 JS |
3941 | } |
3942 | } | |
3943 | ||
c5e4a5a9 MR |
3944 | static void handle_arg_randseed(const char *arg) |
3945 | { | |
3946 | unsigned long long seed; | |
3947 | ||
3948 | if (parse_uint_full(arg, &seed, 0) != 0 || seed > UINT_MAX) { | |
3949 | fprintf(stderr, "Invalid seed number: %s\n", arg); | |
4d1275c2 | 3950 | exit(EXIT_FAILURE); |
c5e4a5a9 MR |
3951 | } |
3952 | srand(seed); | |
3953 | } | |
3954 | ||
fc9c5412 JS |
3955 | static void handle_arg_gdb(const char *arg) |
3956 | { | |
3957 | gdbstub_port = atoi(arg); | |
3958 | } | |
3959 | ||
3960 | static void handle_arg_uname(const char *arg) | |
3961 | { | |
3962 | qemu_uname_release = strdup(arg); | |
3963 | } | |
3964 | ||
3965 | static void handle_arg_cpu(const char *arg) | |
3966 | { | |
3967 | cpu_model = strdup(arg); | |
c8057f95 | 3968 | if (cpu_model == NULL || is_help_option(cpu_model)) { |
fc9c5412 | 3969 | /* XXX: implement xxx_cpu_list for targets that still miss it */ |
e916cbf8 PM |
3970 | #if defined(cpu_list) |
3971 | cpu_list(stdout, &fprintf); | |
fc9c5412 | 3972 | #endif |
4d1275c2 | 3973 | exit(EXIT_FAILURE); |
fc9c5412 JS |
3974 | } |
3975 | } | |
3976 | ||
fc9c5412 JS |
3977 | static void handle_arg_guest_base(const char *arg) |
3978 | { | |
3979 | guest_base = strtol(arg, NULL, 0); | |
3980 | have_guest_base = 1; | |
3981 | } | |
3982 | ||
3983 | static void handle_arg_reserved_va(const char *arg) | |
3984 | { | |
3985 | char *p; | |
3986 | int shift = 0; | |
3987 | reserved_va = strtoul(arg, &p, 0); | |
3988 | switch (*p) { | |
3989 | case 'k': | |
3990 | case 'K': | |
3991 | shift = 10; | |
3992 | break; | |
3993 | case 'M': | |
3994 | shift = 20; | |
3995 | break; | |
3996 | case 'G': | |
3997 | shift = 30; | |
3998 | break; | |
3999 | } | |
4000 | if (shift) { | |
4001 | unsigned long unshifted = reserved_va; | |
4002 | p++; | |
4003 | reserved_va <<= shift; | |
18e80c55 RH |
4004 | if (reserved_va >> shift != unshifted |
4005 | || (MAX_RESERVED_VA && reserved_va > MAX_RESERVED_VA)) { | |
fc9c5412 | 4006 | fprintf(stderr, "Reserved virtual address too big\n"); |
4d1275c2 | 4007 | exit(EXIT_FAILURE); |
fc9c5412 JS |
4008 | } |
4009 | } | |
4010 | if (*p) { | |
4011 | fprintf(stderr, "Unrecognised -R size suffix '%s'\n", p); | |
4d1275c2 | 4012 | exit(EXIT_FAILURE); |
fc9c5412 JS |
4013 | } |
4014 | } | |
fc9c5412 JS |
4015 | |
4016 | static void handle_arg_singlestep(const char *arg) | |
4017 | { | |
4018 | singlestep = 1; | |
4019 | } | |
4020 | ||
4021 | static void handle_arg_strace(const char *arg) | |
4022 | { | |
4023 | do_strace = 1; | |
4024 | } | |
4025 | ||
4026 | static void handle_arg_version(const char *arg) | |
4027 | { | |
2e59915d | 4028 | printf("qemu-" TARGET_NAME " version " QEMU_VERSION QEMU_PKGVERSION |
0781dd6e | 4029 | "\n" QEMU_COPYRIGHT "\n"); |
4d1275c2 | 4030 | exit(EXIT_SUCCESS); |
fc9c5412 JS |
4031 | } |
4032 | ||
6533dd6e LV |
4033 | static char *trace_file; |
4034 | static void handle_arg_trace(const char *arg) | |
4035 | { | |
4036 | g_free(trace_file); | |
4037 | trace_file = trace_opt_parse(arg); | |
4038 | } | |
4039 | ||
fc9c5412 JS |
4040 | struct qemu_argument { |
4041 | const char *argv; | |
4042 | const char *env; | |
4043 | bool has_arg; | |
4044 | void (*handle_opt)(const char *arg); | |
4045 | const char *example; | |
4046 | const char *help; | |
4047 | }; | |
4048 | ||
42644cee | 4049 | static const struct qemu_argument arg_table[] = { |
fc9c5412 JS |
4050 | {"h", "", false, handle_arg_help, |
4051 | "", "print this help"}, | |
daaf8c8e MI |
4052 | {"help", "", false, handle_arg_help, |
4053 | "", ""}, | |
fc9c5412 JS |
4054 | {"g", "QEMU_GDB", true, handle_arg_gdb, |
4055 | "port", "wait gdb connection to 'port'"}, | |
4056 | {"L", "QEMU_LD_PREFIX", true, handle_arg_ld_prefix, | |
4057 | "path", "set the elf interpreter prefix to 'path'"}, | |
4058 | {"s", "QEMU_STACK_SIZE", true, handle_arg_stack_size, | |
4059 | "size", "set the stack size to 'size' bytes"}, | |
4060 | {"cpu", "QEMU_CPU", true, handle_arg_cpu, | |
c8057f95 | 4061 | "model", "select CPU (-cpu help for list)"}, |
fc9c5412 JS |
4062 | {"E", "QEMU_SET_ENV", true, handle_arg_set_env, |
4063 | "var=value", "sets targets environment variable (see below)"}, | |
4064 | {"U", "QEMU_UNSET_ENV", true, handle_arg_unset_env, | |
4065 | "var", "unsets targets environment variable (see below)"}, | |
4066 | {"0", "QEMU_ARGV0", true, handle_arg_argv0, | |
4067 | "argv0", "forces target process argv[0] to be 'argv0'"}, | |
4068 | {"r", "QEMU_UNAME", true, handle_arg_uname, | |
4069 | "uname", "set qemu uname release string to 'uname'"}, | |
fc9c5412 JS |
4070 | {"B", "QEMU_GUEST_BASE", true, handle_arg_guest_base, |
4071 | "address", "set guest_base address to 'address'"}, | |
4072 | {"R", "QEMU_RESERVED_VA", true, handle_arg_reserved_va, | |
4073 | "size", "reserve 'size' bytes for guest virtual address space"}, | |
fc9c5412 | 4074 | {"d", "QEMU_LOG", true, handle_arg_log, |
989b697d PM |
4075 | "item[,...]", "enable logging of specified items " |
4076 | "(use '-d help' for a list of items)"}, | |
8423fa90 AB |
4077 | {"dfilter", "QEMU_DFILTER", true, handle_arg_dfilter, |
4078 | "range[,...]","filter logging based on address range"}, | |
50171d42 | 4079 | {"D", "QEMU_LOG_FILENAME", true, handle_arg_log_filename, |
989b697d | 4080 | "logfile", "write logs to 'logfile' (default stderr)"}, |
fc9c5412 JS |
4081 | {"p", "QEMU_PAGESIZE", true, handle_arg_pagesize, |
4082 | "pagesize", "set the host page size to 'pagesize'"}, | |
4083 | {"singlestep", "QEMU_SINGLESTEP", false, handle_arg_singlestep, | |
4084 | "", "run in singlestep mode"}, | |
4085 | {"strace", "QEMU_STRACE", false, handle_arg_strace, | |
4086 | "", "log system calls"}, | |
c5e4a5a9 MR |
4087 | {"seed", "QEMU_RAND_SEED", true, handle_arg_randseed, |
4088 | "", "Seed for pseudo-random number generator"}, | |
6533dd6e LV |
4089 | {"trace", "QEMU_TRACE", true, handle_arg_trace, |
4090 | "", "[[enable=]<pattern>][,events=<file>][,file=<file>]"}, | |
fc9c5412 | 4091 | {"version", "QEMU_VERSION", false, handle_arg_version, |
1386d4c0 | 4092 | "", "display version information and exit"}, |
fc9c5412 JS |
4093 | {NULL, NULL, false, NULL, NULL, NULL} |
4094 | }; | |
4095 | ||
d03f9c32 | 4096 | static void usage(int exitcode) |
fc9c5412 | 4097 | { |
42644cee | 4098 | const struct qemu_argument *arginfo; |
fc9c5412 JS |
4099 | int maxarglen; |
4100 | int maxenvlen; | |
4101 | ||
2e59915d PB |
4102 | printf("usage: qemu-" TARGET_NAME " [options] program [arguments...]\n" |
4103 | "Linux CPU emulator (compiled for " TARGET_NAME " emulation)\n" | |
fc9c5412 JS |
4104 | "\n" |
4105 | "Options and associated environment variables:\n" | |
4106 | "\n"); | |
4107 | ||
63ec54d7 PM |
4108 | /* Calculate column widths. We must always have at least enough space |
4109 | * for the column header. | |
4110 | */ | |
4111 | maxarglen = strlen("Argument"); | |
4112 | maxenvlen = strlen("Env-variable"); | |
fc9c5412 JS |
4113 | |
4114 | for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) { | |
63ec54d7 PM |
4115 | int arglen = strlen(arginfo->argv); |
4116 | if (arginfo->has_arg) { | |
4117 | arglen += strlen(arginfo->example) + 1; | |
4118 | } | |
fc9c5412 JS |
4119 | if (strlen(arginfo->env) > maxenvlen) { |
4120 | maxenvlen = strlen(arginfo->env); | |
4121 | } | |
63ec54d7 PM |
4122 | if (arglen > maxarglen) { |
4123 | maxarglen = arglen; | |
fc9c5412 JS |
4124 | } |
4125 | } | |
4126 | ||
63ec54d7 PM |
4127 | printf("%-*s %-*s Description\n", maxarglen+1, "Argument", |
4128 | maxenvlen, "Env-variable"); | |
fc9c5412 JS |
4129 | |
4130 | for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) { | |
4131 | if (arginfo->has_arg) { | |
4132 | printf("-%s %-*s %-*s %s\n", arginfo->argv, | |
63ec54d7 PM |
4133 | (int)(maxarglen - strlen(arginfo->argv) - 1), |
4134 | arginfo->example, maxenvlen, arginfo->env, arginfo->help); | |
fc9c5412 | 4135 | } else { |
63ec54d7 | 4136 | printf("-%-*s %-*s %s\n", maxarglen, arginfo->argv, |
fc9c5412 JS |
4137 | maxenvlen, arginfo->env, |
4138 | arginfo->help); | |
4139 | } | |
4140 | } | |
4141 | ||
4142 | printf("\n" | |
4143 | "Defaults:\n" | |
4144 | "QEMU_LD_PREFIX = %s\n" | |
989b697d | 4145 | "QEMU_STACK_SIZE = %ld byte\n", |
fc9c5412 | 4146 | interp_prefix, |
989b697d | 4147 | guest_stack_size); |
fc9c5412 JS |
4148 | |
4149 | printf("\n" | |
4150 | "You can use -E and -U options or the QEMU_SET_ENV and\n" | |
4151 | "QEMU_UNSET_ENV environment variables to set and unset\n" | |
4152 | "environment variables for the target process.\n" | |
4153 | "It is possible to provide several variables by separating them\n" | |
4154 | "by commas in getsubopt(3) style. Additionally it is possible to\n" | |
4155 | "provide the -E and -U options multiple times.\n" | |
4156 | "The following lines are equivalent:\n" | |
4157 | " -E var1=val2 -E var2=val2 -U LD_PRELOAD -U LD_DEBUG\n" | |
4158 | " -E var1=val2,var2=val2 -U LD_PRELOAD,LD_DEBUG\n" | |
4159 | " QEMU_SET_ENV=var1=val2,var2=val2 QEMU_UNSET_ENV=LD_PRELOAD,LD_DEBUG\n" | |
4160 | "Note that if you provide several changes to a single variable\n" | |
f5048cb7 EB |
4161 | "the last change will stay in effect.\n" |
4162 | "\n" | |
4163 | QEMU_HELP_BOTTOM "\n"); | |
fc9c5412 | 4164 | |
d03f9c32 | 4165 | exit(exitcode); |
fc9c5412 JS |
4166 | } |
4167 | ||
4168 | static int parse_args(int argc, char **argv) | |
4169 | { | |
4170 | const char *r; | |
4171 | int optind; | |
42644cee | 4172 | const struct qemu_argument *arginfo; |
fc9c5412 JS |
4173 | |
4174 | for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) { | |
4175 | if (arginfo->env == NULL) { | |
4176 | continue; | |
4177 | } | |
4178 | ||
4179 | r = getenv(arginfo->env); | |
4180 | if (r != NULL) { | |
4181 | arginfo->handle_opt(r); | |
4182 | } | |
4183 | } | |
4184 | ||
4185 | optind = 1; | |
4186 | for (;;) { | |
4187 | if (optind >= argc) { | |
4188 | break; | |
4189 | } | |
4190 | r = argv[optind]; | |
4191 | if (r[0] != '-') { | |
4192 | break; | |
4193 | } | |
4194 | optind++; | |
4195 | r++; | |
4196 | if (!strcmp(r, "-")) { | |
4197 | break; | |
4198 | } | |
ba02577c MI |
4199 | /* Treat --foo the same as -foo. */ |
4200 | if (r[0] == '-') { | |
4201 | r++; | |
4202 | } | |
fc9c5412 JS |
4203 | |
4204 | for (arginfo = arg_table; arginfo->handle_opt != NULL; arginfo++) { | |
4205 | if (!strcmp(r, arginfo->argv)) { | |
fc9c5412 | 4206 | if (arginfo->has_arg) { |
1386d4c0 | 4207 | if (optind >= argc) { |
138940bf MI |
4208 | (void) fprintf(stderr, |
4209 | "qemu: missing argument for option '%s'\n", r); | |
4d1275c2 | 4210 | exit(EXIT_FAILURE); |
1386d4c0 PM |
4211 | } |
4212 | arginfo->handle_opt(argv[optind]); | |
fc9c5412 | 4213 | optind++; |
1386d4c0 PM |
4214 | } else { |
4215 | arginfo->handle_opt(NULL); | |
fc9c5412 | 4216 | } |
fc9c5412 JS |
4217 | break; |
4218 | } | |
4219 | } | |
4220 | ||
4221 | /* no option matched the current argv */ | |
4222 | if (arginfo->handle_opt == NULL) { | |
138940bf | 4223 | (void) fprintf(stderr, "qemu: unknown option '%s'\n", r); |
4d1275c2 | 4224 | exit(EXIT_FAILURE); |
fc9c5412 JS |
4225 | } |
4226 | } | |
4227 | ||
4228 | if (optind >= argc) { | |
138940bf | 4229 | (void) fprintf(stderr, "qemu: no user program specified\n"); |
4d1275c2 | 4230 | exit(EXIT_FAILURE); |
fc9c5412 JS |
4231 | } |
4232 | ||
4233 | filename = argv[optind]; | |
4234 | exec_path = argv[optind]; | |
4235 | ||
4236 | return optind; | |
4237 | } | |
4238 | ||
902b3d5c | 4239 | int main(int argc, char **argv, char **envp) |
31e31b8a | 4240 | { |
01ffc75b | 4241 | struct target_pt_regs regs1, *regs = ®s1; |
31e31b8a | 4242 | struct image_info info1, *info = &info1; |
edf8e2af | 4243 | struct linux_binprm bprm; |
48e15fc2 | 4244 | TaskState *ts; |
9349b4f9 | 4245 | CPUArchState *env; |
db6b81d4 | 4246 | CPUState *cpu; |
586314f2 | 4247 | int optind; |
04a6dfeb | 4248 | char **target_environ, **wrk; |
7d8cec95 AJ |
4249 | char **target_argv; |
4250 | int target_argc; | |
7d8cec95 | 4251 | int i; |
fd4d81dd | 4252 | int ret; |
03cfd8fa | 4253 | int execfd; |
b12b6a18 | 4254 | |
fe4db84d | 4255 | module_call_init(MODULE_INIT_TRACE); |
267f685b | 4256 | qemu_init_cpu_list(); |
ce008c1f AF |
4257 | module_call_init(MODULE_INIT_QOM); |
4258 | ||
ec45bbe5 | 4259 | envlist = envlist_create(); |
04a6dfeb AJ |
4260 | |
4261 | /* add current environment into the list */ | |
4262 | for (wrk = environ; *wrk != NULL; wrk++) { | |
4263 | (void) envlist_setenv(envlist, *wrk); | |
4264 | } | |
4265 | ||
703e0e89 RH |
4266 | /* Read the stack limit from the kernel. If it's "unlimited", |
4267 | then we can do little else besides use the default. */ | |
4268 | { | |
4269 | struct rlimit lim; | |
4270 | if (getrlimit(RLIMIT_STACK, &lim) == 0 | |
81bbe906 TY |
4271 | && lim.rlim_cur != RLIM_INFINITY |
4272 | && lim.rlim_cur == (target_long)lim.rlim_cur) { | |
703e0e89 RH |
4273 | guest_stack_size = lim.rlim_cur; |
4274 | } | |
4275 | } | |
4276 | ||
b1f9be31 | 4277 | cpu_model = NULL; |
b5ec5ce0 | 4278 | |
c5e4a5a9 MR |
4279 | srand(time(NULL)); |
4280 | ||
6533dd6e LV |
4281 | qemu_add_opts(&qemu_trace_opts); |
4282 | ||
fc9c5412 | 4283 | optind = parse_args(argc, argv); |
586314f2 | 4284 | |
6533dd6e LV |
4285 | if (!trace_init_backends()) { |
4286 | exit(1); | |
4287 | } | |
4288 | trace_init_file(trace_file); | |
4289 | ||
31e31b8a | 4290 | /* Zero out regs */ |
01ffc75b | 4291 | memset(regs, 0, sizeof(struct target_pt_regs)); |
31e31b8a FB |
4292 | |
4293 | /* Zero out image_info */ | |
4294 | memset(info, 0, sizeof(struct image_info)); | |
4295 | ||
edf8e2af MW |
4296 | memset(&bprm, 0, sizeof (bprm)); |
4297 | ||
74cd30b8 FB |
4298 | /* Scan interp_prefix dir for replacement files. */ |
4299 | init_paths(interp_prefix); | |
4300 | ||
4a24a758 PM |
4301 | init_qemu_uname_release(); |
4302 | ||
46027c07 | 4303 | if (cpu_model == NULL) { |
aaed909a | 4304 | #if defined(TARGET_I386) |
46027c07 FB |
4305 | #ifdef TARGET_X86_64 |
4306 | cpu_model = "qemu64"; | |
4307 | #else | |
4308 | cpu_model = "qemu32"; | |
4309 | #endif | |
aaed909a | 4310 | #elif defined(TARGET_ARM) |
088ab16c | 4311 | cpu_model = "any"; |
d2fbca94 GX |
4312 | #elif defined(TARGET_UNICORE32) |
4313 | cpu_model = "any"; | |
aaed909a FB |
4314 | #elif defined(TARGET_M68K) |
4315 | cpu_model = "any"; | |
4316 | #elif defined(TARGET_SPARC) | |
4317 | #ifdef TARGET_SPARC64 | |
4318 | cpu_model = "TI UltraSparc II"; | |
4319 | #else | |
4320 | cpu_model = "Fujitsu MB86904"; | |
46027c07 | 4321 | #endif |
aaed909a FB |
4322 | #elif defined(TARGET_MIPS) |
4323 | #if defined(TARGET_ABI_MIPSN32) || defined(TARGET_ABI_MIPSN64) | |
74797f40 | 4324 | cpu_model = "5KEf"; |
aaed909a FB |
4325 | #else |
4326 | cpu_model = "24Kf"; | |
4327 | #endif | |
d962783e JL |
4328 | #elif defined TARGET_OPENRISC |
4329 | cpu_model = "or1200"; | |
aaed909a | 4330 | #elif defined(TARGET_PPC) |
a74029f6 | 4331 | # ifdef TARGET_PPC64 |
de3f1b98 | 4332 | cpu_model = "POWER8"; |
a74029f6 | 4333 | # else |
aaed909a | 4334 | cpu_model = "750"; |
a74029f6 | 4335 | # endif |
91c45a38 | 4336 | #elif defined TARGET_SH4 |
d5ebe625 | 4337 | cpu_model = "sh7785"; |
d8923bc7 DH |
4338 | #elif defined TARGET_S390X |
4339 | cpu_model = "qemu"; | |
aaed909a FB |
4340 | #else |
4341 | cpu_model = "any"; | |
4342 | #endif | |
4343 | } | |
d5ab9713 | 4344 | tcg_exec_init(0); |
83fb7adf FB |
4345 | /* NOTE: we need to init the CPU at this stage to get |
4346 | qemu_host_page_size */ | |
2994fd96 | 4347 | cpu = cpu_init(cpu_model); |
2994fd96 | 4348 | env = cpu->env_ptr; |
0ac46af3 | 4349 | cpu_reset(cpu); |
b55a37c9 | 4350 | |
db6b81d4 | 4351 | thread_cpu = cpu; |
3b46e624 | 4352 | |
b6741956 FB |
4353 | if (getenv("QEMU_STRACE")) { |
4354 | do_strace = 1; | |
b92c47c1 TS |
4355 | } |
4356 | ||
c5e4a5a9 MR |
4357 | if (getenv("QEMU_RAND_SEED")) { |
4358 | handle_arg_randseed(getenv("QEMU_RAND_SEED")); | |
4359 | } | |
4360 | ||
04a6dfeb AJ |
4361 | target_environ = envlist_to_environ(envlist, NULL); |
4362 | envlist_free(envlist); | |
b12b6a18 | 4363 | |
379f6698 PB |
4364 | /* |
4365 | * Now that page sizes are configured in cpu_init() we can do | |
4366 | * proper page alignment for guest_base. | |
4367 | */ | |
4368 | guest_base = HOST_PAGE_ALIGN(guest_base); | |
68a1c816 | 4369 | |
806d1021 MI |
4370 | if (reserved_va || have_guest_base) { |
4371 | guest_base = init_guest_space(guest_base, reserved_va, 0, | |
4372 | have_guest_base); | |
4373 | if (guest_base == (unsigned long)-1) { | |
097b8cb8 PM |
4374 | fprintf(stderr, "Unable to reserve 0x%lx bytes of virtual address " |
4375 | "space for use as guest address space (check your virtual " | |
4376 | "memory ulimit setting or reserve less using -R option)\n", | |
4377 | reserved_va); | |
4d1275c2 | 4378 | exit(EXIT_FAILURE); |
68a1c816 | 4379 | } |
97cc7560 | 4380 | |
806d1021 MI |
4381 | if (reserved_va) { |
4382 | mmap_next_start = reserved_va; | |
97cc7560 DDAG |
4383 | } |
4384 | } | |
379f6698 PB |
4385 | |
4386 | /* | |
4387 | * Read in mmap_min_addr kernel parameter. This value is used | |
4388 | * When loading the ELF image to determine whether guest_base | |
14f24e14 | 4389 | * is needed. It is also used in mmap_find_vma. |
379f6698 | 4390 | */ |
14f24e14 | 4391 | { |
379f6698 PB |
4392 | FILE *fp; |
4393 | ||
4394 | if ((fp = fopen("/proc/sys/vm/mmap_min_addr", "r")) != NULL) { | |
4395 | unsigned long tmp; | |
4396 | if (fscanf(fp, "%lu", &tmp) == 1) { | |
4397 | mmap_min_addr = tmp; | |
13829020 | 4398 | qemu_log_mask(CPU_LOG_PAGE, "host mmap_min_addr=0x%lx\n", mmap_min_addr); |
379f6698 PB |
4399 | } |
4400 | fclose(fp); | |
4401 | } | |
4402 | } | |
379f6698 | 4403 | |
7d8cec95 AJ |
4404 | /* |
4405 | * Prepare copy of argv vector for target. | |
4406 | */ | |
4407 | target_argc = argc - optind; | |
4408 | target_argv = calloc(target_argc + 1, sizeof (char *)); | |
4409 | if (target_argv == NULL) { | |
4410 | (void) fprintf(stderr, "Unable to allocate memory for target_argv\n"); | |
4d1275c2 | 4411 | exit(EXIT_FAILURE); |
7d8cec95 AJ |
4412 | } |
4413 | ||
4414 | /* | |
4415 | * If argv0 is specified (using '-0' switch) we replace | |
4416 | * argv[0] pointer with the given one. | |
4417 | */ | |
4418 | i = 0; | |
4419 | if (argv0 != NULL) { | |
4420 | target_argv[i++] = strdup(argv0); | |
4421 | } | |
4422 | for (; i < target_argc; i++) { | |
4423 | target_argv[i] = strdup(argv[optind + i]); | |
4424 | } | |
4425 | target_argv[target_argc] = NULL; | |
4426 | ||
c78d65e8 | 4427 | ts = g_new0(TaskState, 1); |
edf8e2af MW |
4428 | init_task_state(ts); |
4429 | /* build Task State */ | |
4430 | ts->info = info; | |
4431 | ts->bprm = &bprm; | |
0429a971 | 4432 | cpu->opaque = ts; |
edf8e2af MW |
4433 | task_settid(ts); |
4434 | ||
0b959cf5 RH |
4435 | execfd = qemu_getauxval(AT_EXECFD); |
4436 | if (execfd == 0) { | |
03cfd8fa | 4437 | execfd = open(filename, O_RDONLY); |
0b959cf5 RH |
4438 | if (execfd < 0) { |
4439 | printf("Error while loading %s: %s\n", filename, strerror(errno)); | |
4d1275c2 | 4440 | _exit(EXIT_FAILURE); |
0b959cf5 | 4441 | } |
03cfd8fa LV |
4442 | } |
4443 | ||
4444 | ret = loader_exec(execfd, filename, target_argv, target_environ, regs, | |
fd4d81dd AP |
4445 | info, &bprm); |
4446 | if (ret != 0) { | |
885c1d10 | 4447 | printf("Error while loading %s: %s\n", filename, strerror(-ret)); |
4d1275c2 | 4448 | _exit(EXIT_FAILURE); |
b12b6a18 TS |
4449 | } |
4450 | ||
4451 | for (wrk = target_environ; *wrk; wrk++) { | |
ec45bbe5 | 4452 | g_free(*wrk); |
31e31b8a | 4453 | } |
3b46e624 | 4454 | |
ec45bbe5 | 4455 | g_free(target_environ); |
b12b6a18 | 4456 | |
13829020 | 4457 | if (qemu_loglevel_mask(CPU_LOG_PAGE)) { |
379f6698 | 4458 | qemu_log("guest_base 0x%lx\n", guest_base); |
2e77eac6 BS |
4459 | log_page_dump(); |
4460 | ||
4461 | qemu_log("start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk); | |
4462 | qemu_log("end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code); | |
7c4ee5bc RH |
4463 | qemu_log("start_code 0x" TARGET_ABI_FMT_lx "\n", info->start_code); |
4464 | qemu_log("start_data 0x" TARGET_ABI_FMT_lx "\n", info->start_data); | |
2e77eac6 | 4465 | qemu_log("end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data); |
7c4ee5bc | 4466 | qemu_log("start_stack 0x" TARGET_ABI_FMT_lx "\n", info->start_stack); |
2e77eac6 BS |
4467 | qemu_log("brk 0x" TARGET_ABI_FMT_lx "\n", info->brk); |
4468 | qemu_log("entry 0x" TARGET_ABI_FMT_lx "\n", info->entry); | |
7c4ee5bc RH |
4469 | qemu_log("argv_start 0x" TARGET_ABI_FMT_lx "\n", info->arg_start); |
4470 | qemu_log("env_start 0x" TARGET_ABI_FMT_lx "\n", | |
4471 | info->arg_end + (abi_ulong)sizeof(abi_ulong)); | |
4472 | qemu_log("auxv_start 0x" TARGET_ABI_FMT_lx "\n", info->saved_auxv); | |
2e77eac6 | 4473 | } |
31e31b8a | 4474 | |
53a5960a | 4475 | target_set_brk(info->brk); |
31e31b8a | 4476 | syscall_init(); |
66fb9763 | 4477 | signal_init(); |
31e31b8a | 4478 | |
9002ec79 RH |
4479 | /* Now that we've loaded the binary, GUEST_BASE is fixed. Delay |
4480 | generating the prologue until now so that the prologue can take | |
4481 | the real value of GUEST_BASE into account. */ | |
b1311c4a | 4482 | tcg_prologue_init(tcg_ctx); |
e8feb96f | 4483 | tcg_region_init(); |
9002ec79 | 4484 | |
b346ff46 | 4485 | #if defined(TARGET_I386) |
3802ce26 | 4486 | env->cr[0] = CR0_PG_MASK | CR0_WP_MASK | CR0_PE_MASK; |
b98dbc90 | 4487 | env->hflags |= HF_PE_MASK | HF_CPL_MASK; |
0514ef2f | 4488 | if (env->features[FEAT_1_EDX] & CPUID_SSE) { |
1bde465e FB |
4489 | env->cr[4] |= CR4_OSFXSR_MASK; |
4490 | env->hflags |= HF_OSFXSR_MASK; | |
4491 | } | |
d2fd1af7 | 4492 | #ifndef TARGET_ABI32 |
4dbc422b | 4493 | /* enable 64 bit mode if possible */ |
0514ef2f | 4494 | if (!(env->features[FEAT_8000_0001_EDX] & CPUID_EXT2_LM)) { |
4dbc422b | 4495 | fprintf(stderr, "The selected x86 CPU does not support 64 bit mode\n"); |
4d1275c2 | 4496 | exit(EXIT_FAILURE); |
4dbc422b | 4497 | } |
d2fd1af7 | 4498 | env->cr[4] |= CR4_PAE_MASK; |
4dbc422b | 4499 | env->efer |= MSR_EFER_LMA | MSR_EFER_LME; |
d2fd1af7 FB |
4500 | env->hflags |= HF_LMA_MASK; |
4501 | #endif | |
1bde465e | 4502 | |
415e561f FB |
4503 | /* flags setup : we activate the IRQs by default as in user mode */ |
4504 | env->eflags |= IF_MASK; | |
3b46e624 | 4505 | |
6dbad63e | 4506 | /* linux register setup */ |
d2fd1af7 | 4507 | #ifndef TARGET_ABI32 |
84409ddb JM |
4508 | env->regs[R_EAX] = regs->rax; |
4509 | env->regs[R_EBX] = regs->rbx; | |
4510 | env->regs[R_ECX] = regs->rcx; | |
4511 | env->regs[R_EDX] = regs->rdx; | |
4512 | env->regs[R_ESI] = regs->rsi; | |
4513 | env->regs[R_EDI] = regs->rdi; | |
4514 | env->regs[R_EBP] = regs->rbp; | |
4515 | env->regs[R_ESP] = regs->rsp; | |
4516 | env->eip = regs->rip; | |
4517 | #else | |
0ecfa993 FB |
4518 | env->regs[R_EAX] = regs->eax; |
4519 | env->regs[R_EBX] = regs->ebx; | |
4520 | env->regs[R_ECX] = regs->ecx; | |
4521 | env->regs[R_EDX] = regs->edx; | |
4522 | env->regs[R_ESI] = regs->esi; | |
4523 | env->regs[R_EDI] = regs->edi; | |
4524 | env->regs[R_EBP] = regs->ebp; | |
4525 | env->regs[R_ESP] = regs->esp; | |
dab2ed99 | 4526 | env->eip = regs->eip; |
84409ddb | 4527 | #endif |
31e31b8a | 4528 | |
f4beb510 | 4529 | /* linux interrupt setup */ |
e441570f AZ |
4530 | #ifndef TARGET_ABI32 |
4531 | env->idt.limit = 511; | |
4532 | #else | |
4533 | env->idt.limit = 255; | |
4534 | #endif | |
4535 | env->idt.base = target_mmap(0, sizeof(uint64_t) * (env->idt.limit + 1), | |
4536 | PROT_READ|PROT_WRITE, | |
4537 | MAP_ANONYMOUS|MAP_PRIVATE, -1, 0); | |
4538 | idt_table = g2h(env->idt.base); | |
f4beb510 FB |
4539 | set_idt(0, 0); |
4540 | set_idt(1, 0); | |
4541 | set_idt(2, 0); | |
4542 | set_idt(3, 3); | |
4543 | set_idt(4, 3); | |
ec95da6c | 4544 | set_idt(5, 0); |
f4beb510 FB |
4545 | set_idt(6, 0); |
4546 | set_idt(7, 0); | |
4547 | set_idt(8, 0); | |
4548 | set_idt(9, 0); | |
4549 | set_idt(10, 0); | |
4550 | set_idt(11, 0); | |
4551 | set_idt(12, 0); | |
4552 | set_idt(13, 0); | |
4553 | set_idt(14, 0); | |
4554 | set_idt(15, 0); | |
4555 | set_idt(16, 0); | |
4556 | set_idt(17, 0); | |
4557 | set_idt(18, 0); | |
4558 | set_idt(19, 0); | |
4559 | set_idt(0x80, 3); | |
4560 | ||
6dbad63e | 4561 | /* linux segment setup */ |
8d18e893 FB |
4562 | { |
4563 | uint64_t *gdt_table; | |
e441570f AZ |
4564 | env->gdt.base = target_mmap(0, sizeof(uint64_t) * TARGET_GDT_ENTRIES, |
4565 | PROT_READ|PROT_WRITE, | |
4566 | MAP_ANONYMOUS|MAP_PRIVATE, -1, 0); | |
8d18e893 | 4567 | env->gdt.limit = sizeof(uint64_t) * TARGET_GDT_ENTRIES - 1; |
e441570f | 4568 | gdt_table = g2h(env->gdt.base); |
d2fd1af7 | 4569 | #ifdef TARGET_ABI32 |
8d18e893 FB |
4570 | write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff, |
4571 | DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | | |
4572 | (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT)); | |
d2fd1af7 FB |
4573 | #else |
4574 | /* 64 bit code segment */ | |
4575 | write_dt(&gdt_table[__USER_CS >> 3], 0, 0xfffff, | |
4576 | DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | | |
4577 | DESC_L_MASK | | |
4578 | (3 << DESC_DPL_SHIFT) | (0xa << DESC_TYPE_SHIFT)); | |
4579 | #endif | |
8d18e893 FB |
4580 | write_dt(&gdt_table[__USER_DS >> 3], 0, 0xfffff, |
4581 | DESC_G_MASK | DESC_B_MASK | DESC_P_MASK | DESC_S_MASK | | |
4582 | (3 << DESC_DPL_SHIFT) | (0x2 << DESC_TYPE_SHIFT)); | |
4583 | } | |
6dbad63e | 4584 | cpu_x86_load_seg(env, R_CS, __USER_CS); |
d2fd1af7 FB |
4585 | cpu_x86_load_seg(env, R_SS, __USER_DS); |
4586 | #ifdef TARGET_ABI32 | |
6dbad63e FB |
4587 | cpu_x86_load_seg(env, R_DS, __USER_DS); |
4588 | cpu_x86_load_seg(env, R_ES, __USER_DS); | |
6dbad63e FB |
4589 | cpu_x86_load_seg(env, R_FS, __USER_DS); |
4590 | cpu_x86_load_seg(env, R_GS, __USER_DS); | |
d6eb40f6 TS |
4591 | /* This hack makes Wine work... */ |
4592 | env->segs[R_FS].selector = 0; | |
d2fd1af7 FB |
4593 | #else |
4594 | cpu_x86_load_seg(env, R_DS, 0); | |
4595 | cpu_x86_load_seg(env, R_ES, 0); | |
4596 | cpu_x86_load_seg(env, R_FS, 0); | |
4597 | cpu_x86_load_seg(env, R_GS, 0); | |
4598 | #endif | |
99033cae AG |
4599 | #elif defined(TARGET_AARCH64) |
4600 | { | |
4601 | int i; | |
4602 | ||
4603 | if (!(arm_feature(env, ARM_FEATURE_AARCH64))) { | |
4604 | fprintf(stderr, | |
4605 | "The selected ARM CPU does not support 64 bit mode\n"); | |
4d1275c2 | 4606 | exit(EXIT_FAILURE); |
99033cae AG |
4607 | } |
4608 | ||
4609 | for (i = 0; i < 31; i++) { | |
4610 | env->xregs[i] = regs->regs[i]; | |
4611 | } | |
4612 | env->pc = regs->pc; | |
4613 | env->xregs[31] = regs->sp; | |
4614 | } | |
b346ff46 FB |
4615 | #elif defined(TARGET_ARM) |
4616 | { | |
4617 | int i; | |
ae087923 PM |
4618 | cpsr_write(env, regs->uregs[16], CPSR_USER | CPSR_EXEC, |
4619 | CPSRWriteByInstr); | |
b346ff46 FB |
4620 | for(i = 0; i < 16; i++) { |
4621 | env->regs[i] = regs->uregs[i]; | |
4622 | } | |
f9fd40eb | 4623 | #ifdef TARGET_WORDS_BIGENDIAN |
d8fd2954 PB |
4624 | /* Enable BE8. */ |
4625 | if (EF_ARM_EABI_VERSION(info->elf_flags) >= EF_ARM_EABI_VER4 | |
4626 | && (info->elf_flags & EF_ARM_BE8)) { | |
9c5a7460 PC |
4627 | env->uncached_cpsr |= CPSR_E; |
4628 | env->cp15.sctlr_el[1] |= SCTLR_E0E; | |
f9fd40eb PB |
4629 | } else { |
4630 | env->cp15.sctlr_el[1] |= SCTLR_B; | |
d8fd2954 | 4631 | } |
f9fd40eb | 4632 | #endif |
b346ff46 | 4633 | } |
d2fbca94 GX |
4634 | #elif defined(TARGET_UNICORE32) |
4635 | { | |
4636 | int i; | |
4637 | cpu_asr_write(env, regs->uregs[32], 0xffffffff); | |
4638 | for (i = 0; i < 32; i++) { | |
4639 | env->regs[i] = regs->uregs[i]; | |
4640 | } | |
4641 | } | |
93ac68bc | 4642 | #elif defined(TARGET_SPARC) |
060366c5 FB |
4643 | { |
4644 | int i; | |
4645 | env->pc = regs->pc; | |
4646 | env->npc = regs->npc; | |
4647 | env->y = regs->y; | |
4648 | for(i = 0; i < 8; i++) | |
4649 | env->gregs[i] = regs->u_regs[i]; | |
4650 | for(i = 0; i < 8; i++) | |
4651 | env->regwptr[i] = regs->u_regs[i + 8]; | |
4652 | } | |
67867308 FB |
4653 | #elif defined(TARGET_PPC) |
4654 | { | |
4655 | int i; | |
3fc6c082 | 4656 | |
0411a972 | 4657 | #if defined(TARGET_PPC64) |
c8361129 | 4658 | int flag = (env->insns_flags2 & PPC2_BOOKE206) ? MSR_CM : MSR_SF; |
0411a972 | 4659 | #if defined(TARGET_ABI32) |
c8361129 | 4660 | env->msr &= ~((target_ulong)1 << flag); |
e85e7c6e | 4661 | #else |
c8361129 | 4662 | env->msr |= (target_ulong)1 << flag; |
0411a972 | 4663 | #endif |
84409ddb | 4664 | #endif |
67867308 FB |
4665 | env->nip = regs->nip; |
4666 | for(i = 0; i < 32; i++) { | |
4667 | env->gpr[i] = regs->gpr[i]; | |
4668 | } | |
4669 | } | |
e6e5906b PB |
4670 | #elif defined(TARGET_M68K) |
4671 | { | |
e6e5906b PB |
4672 | env->pc = regs->pc; |
4673 | env->dregs[0] = regs->d0; | |
4674 | env->dregs[1] = regs->d1; | |
4675 | env->dregs[2] = regs->d2; | |
4676 | env->dregs[3] = regs->d3; | |
4677 | env->dregs[4] = regs->d4; | |
4678 | env->dregs[5] = regs->d5; | |
4679 | env->dregs[6] = regs->d6; | |
4680 | env->dregs[7] = regs->d7; | |
4681 | env->aregs[0] = regs->a0; | |
4682 | env->aregs[1] = regs->a1; | |
4683 | env->aregs[2] = regs->a2; | |
4684 | env->aregs[3] = regs->a3; | |
4685 | env->aregs[4] = regs->a4; | |
4686 | env->aregs[5] = regs->a5; | |
4687 | env->aregs[6] = regs->a6; | |
4688 | env->aregs[7] = regs->usp; | |
4689 | env->sr = regs->sr; | |
4690 | ts->sim_syscalls = 1; | |
4691 | } | |
b779e29e EI |
4692 | #elif defined(TARGET_MICROBLAZE) |
4693 | { | |
4694 | env->regs[0] = regs->r0; | |
4695 | env->regs[1] = regs->r1; | |
4696 | env->regs[2] = regs->r2; | |
4697 | env->regs[3] = regs->r3; | |
4698 | env->regs[4] = regs->r4; | |
4699 | env->regs[5] = regs->r5; | |
4700 | env->regs[6] = regs->r6; | |
4701 | env->regs[7] = regs->r7; | |
4702 | env->regs[8] = regs->r8; | |
4703 | env->regs[9] = regs->r9; | |
4704 | env->regs[10] = regs->r10; | |
4705 | env->regs[11] = regs->r11; | |
4706 | env->regs[12] = regs->r12; | |
4707 | env->regs[13] = regs->r13; | |
4708 | env->regs[14] = regs->r14; | |
4709 | env->regs[15] = regs->r15; | |
4710 | env->regs[16] = regs->r16; | |
4711 | env->regs[17] = regs->r17; | |
4712 | env->regs[18] = regs->r18; | |
4713 | env->regs[19] = regs->r19; | |
4714 | env->regs[20] = regs->r20; | |
4715 | env->regs[21] = regs->r21; | |
4716 | env->regs[22] = regs->r22; | |
4717 | env->regs[23] = regs->r23; | |
4718 | env->regs[24] = regs->r24; | |
4719 | env->regs[25] = regs->r25; | |
4720 | env->regs[26] = regs->r26; | |
4721 | env->regs[27] = regs->r27; | |
4722 | env->regs[28] = regs->r28; | |
4723 | env->regs[29] = regs->r29; | |
4724 | env->regs[30] = regs->r30; | |
4725 | env->regs[31] = regs->r31; | |
4726 | env->sregs[SR_PC] = regs->pc; | |
4727 | } | |
048f6b4d FB |
4728 | #elif defined(TARGET_MIPS) |
4729 | { | |
4730 | int i; | |
4731 | ||
4732 | for(i = 0; i < 32; i++) { | |
b5dc7732 | 4733 | env->active_tc.gpr[i] = regs->regs[i]; |
048f6b4d | 4734 | } |
0fddbbf2 NF |
4735 | env->active_tc.PC = regs->cp0_epc & ~(target_ulong)1; |
4736 | if (regs->cp0_epc & 1) { | |
4737 | env->hflags |= MIPS_HFLAG_M16; | |
4738 | } | |
599bc5e8 AM |
4739 | if (((info->elf_flags & EF_MIPS_NAN2008) != 0) != |
4740 | ((env->active_fpu.fcr31 & (1 << FCR31_NAN2008)) != 0)) { | |
4741 | if ((env->active_fpu.fcr31_rw_bitmask & | |
4742 | (1 << FCR31_NAN2008)) == 0) { | |
4743 | fprintf(stderr, "ELF binary's NaN mode not supported by CPU\n"); | |
4744 | exit(1); | |
4745 | } | |
4746 | if ((info->elf_flags & EF_MIPS_NAN2008) != 0) { | |
4747 | env->active_fpu.fcr31 |= (1 << FCR31_NAN2008); | |
4748 | } else { | |
4749 | env->active_fpu.fcr31 &= ~(1 << FCR31_NAN2008); | |
4750 | } | |
4751 | restore_snan_bit_mode(env); | |
4752 | } | |
048f6b4d | 4753 | } |
a0a839b6 MV |
4754 | #elif defined(TARGET_NIOS2) |
4755 | { | |
4756 | env->regs[0] = 0; | |
4757 | env->regs[1] = regs->r1; | |
4758 | env->regs[2] = regs->r2; | |
4759 | env->regs[3] = regs->r3; | |
4760 | env->regs[4] = regs->r4; | |
4761 | env->regs[5] = regs->r5; | |
4762 | env->regs[6] = regs->r6; | |
4763 | env->regs[7] = regs->r7; | |
4764 | env->regs[8] = regs->r8; | |
4765 | env->regs[9] = regs->r9; | |
4766 | env->regs[10] = regs->r10; | |
4767 | env->regs[11] = regs->r11; | |
4768 | env->regs[12] = regs->r12; | |
4769 | env->regs[13] = regs->r13; | |
4770 | env->regs[14] = regs->r14; | |
4771 | env->regs[15] = regs->r15; | |
4772 | /* TODO: unsigned long orig_r2; */ | |
4773 | env->regs[R_RA] = regs->ra; | |
4774 | env->regs[R_FP] = regs->fp; | |
4775 | env->regs[R_SP] = regs->sp; | |
4776 | env->regs[R_GP] = regs->gp; | |
4777 | env->regs[CR_ESTATUS] = regs->estatus; | |
4778 | env->regs[R_EA] = regs->ea; | |
4779 | /* TODO: unsigned long orig_r7; */ | |
4780 | ||
4781 | /* Emulate eret when starting thread. */ | |
4782 | env->regs[R_PC] = regs->ea; | |
4783 | } | |
d962783e JL |
4784 | #elif defined(TARGET_OPENRISC) |
4785 | { | |
4786 | int i; | |
4787 | ||
4788 | for (i = 0; i < 32; i++) { | |
d89e71e8 | 4789 | cpu_set_gpr(env, i, regs->gpr[i]); |
d962783e | 4790 | } |
d962783e | 4791 | env->pc = regs->pc; |
84775c43 | 4792 | cpu_set_sr(env, regs->sr); |
d962783e | 4793 | } |
fdf9b3e8 FB |
4794 | #elif defined(TARGET_SH4) |
4795 | { | |
4796 | int i; | |
4797 | ||
4798 | for(i = 0; i < 16; i++) { | |
4799 | env->gregs[i] = regs->regs[i]; | |
4800 | } | |
4801 | env->pc = regs->pc; | |
4802 | } | |
7a3148a9 JM |
4803 | #elif defined(TARGET_ALPHA) |
4804 | { | |
4805 | int i; | |
4806 | ||
4807 | for(i = 0; i < 28; i++) { | |
992f48a0 | 4808 | env->ir[i] = ((abi_ulong *)regs)[i]; |
7a3148a9 | 4809 | } |
dad081ee | 4810 | env->ir[IR_SP] = regs->usp; |
7a3148a9 | 4811 | env->pc = regs->pc; |
7a3148a9 | 4812 | } |
48733d19 TS |
4813 | #elif defined(TARGET_CRIS) |
4814 | { | |
4815 | env->regs[0] = regs->r0; | |
4816 | env->regs[1] = regs->r1; | |
4817 | env->regs[2] = regs->r2; | |
4818 | env->regs[3] = regs->r3; | |
4819 | env->regs[4] = regs->r4; | |
4820 | env->regs[5] = regs->r5; | |
4821 | env->regs[6] = regs->r6; | |
4822 | env->regs[7] = regs->r7; | |
4823 | env->regs[8] = regs->r8; | |
4824 | env->regs[9] = regs->r9; | |
4825 | env->regs[10] = regs->r10; | |
4826 | env->regs[11] = regs->r11; | |
4827 | env->regs[12] = regs->r12; | |
4828 | env->regs[13] = regs->r13; | |
4829 | env->regs[14] = info->start_stack; | |
4830 | env->regs[15] = regs->acr; | |
4831 | env->pc = regs->erp; | |
4832 | } | |
a4c075f1 UH |
4833 | #elif defined(TARGET_S390X) |
4834 | { | |
4835 | int i; | |
4836 | for (i = 0; i < 16; i++) { | |
4837 | env->regs[i] = regs->gprs[i]; | |
4838 | } | |
4839 | env->psw.mask = regs->psw.mask; | |
4840 | env->psw.addr = regs->psw.addr; | |
4841 | } | |
b16189b2 CG |
4842 | #elif defined(TARGET_TILEGX) |
4843 | { | |
4844 | int i; | |
4845 | for (i = 0; i < TILEGX_R_COUNT; i++) { | |
4846 | env->regs[i] = regs->regs[i]; | |
4847 | } | |
4848 | for (i = 0; i < TILEGX_SPR_COUNT; i++) { | |
4849 | env->spregs[i] = 0; | |
4850 | } | |
4851 | env->pc = regs->pc; | |
4852 | } | |
7c248bcd RH |
4853 | #elif defined(TARGET_HPPA) |
4854 | { | |
4855 | int i; | |
4856 | for (i = 1; i < 32; i++) { | |
4857 | env->gr[i] = regs->gr[i]; | |
4858 | } | |
4859 | env->iaoq_f = regs->iaoq[0]; | |
4860 | env->iaoq_b = regs->iaoq[1]; | |
4861 | } | |
b346ff46 FB |
4862 | #else |
4863 | #error unsupported target CPU | |
4864 | #endif | |
31e31b8a | 4865 | |
d2fbca94 | 4866 | #if defined(TARGET_ARM) || defined(TARGET_M68K) || defined(TARGET_UNICORE32) |
a87295e8 PB |
4867 | ts->stack_base = info->start_stack; |
4868 | ts->heap_base = info->brk; | |
4869 | /* This will be filled in on the first SYS_HEAPINFO call. */ | |
4870 | ts->heap_limit = 0; | |
4871 | #endif | |
4872 | ||
74c33bed | 4873 | if (gdbstub_port) { |
ff7a981a PM |
4874 | if (gdbserver_start(gdbstub_port) < 0) { |
4875 | fprintf(stderr, "qemu: could not open gdbserver on port %d\n", | |
4876 | gdbstub_port); | |
4d1275c2 | 4877 | exit(EXIT_FAILURE); |
ff7a981a | 4878 | } |
db6b81d4 | 4879 | gdb_handlesig(cpu, 0); |
1fddef4b | 4880 | } |
1b6b029e FB |
4881 | cpu_loop(env); |
4882 | /* never exits */ | |
31e31b8a FB |
4883 | return 0; |
4884 | } |