blob: 01e6ff16fc92430316938bd4f069c1f4a6600f72 [file] [log] [blame]
Laurent Viviercd71c082018-04-11 20:56:33 +02001/*
2 * qemu user cpu loop
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "qemu/osdep.h"
21#include "qemu.h"
Peter Maydell3b249d22021-09-08 16:44:03 +010022#include "user-internals.h"
Laurent Viviercd71c082018-04-11 20:56:33 +020023#include "cpu_loop-common.h"
Peter Maydell2113aed2021-09-08 16:43:59 +010024#include "signal-common.h"
Laurent Viviercd71c082018-04-11 20:56:33 +020025
Laurent Vivier8dd14a92018-04-11 20:56:43 +020026void cpu_loop(CPUCRISState *env)
27{
Richard Hendersondbefca22019-03-22 17:46:40 -070028 CPUState *cs = env_cpu(env);
Laurent Vivier8dd14a92018-04-11 20:56:43 +020029 int trapnr, ret;
Richard Henderson32e32182022-01-07 13:32:23 -080030
Laurent Vivier8dd14a92018-04-11 20:56:43 +020031 while (1) {
32 cpu_exec_start(cs);
33 trapnr = cpu_exec(cs);
34 cpu_exec_end(cs);
35 process_queued_cpu_work(cs);
36
37 switch (trapnr) {
Laurent Vivier8dd14a92018-04-11 20:56:43 +020038 case EXCP_INTERRUPT:
Richard Henderson32e32182022-01-07 13:32:23 -080039 /* just indicate that signals should be handled asap */
40 break;
Laurent Vivier8dd14a92018-04-11 20:56:43 +020041 case EXCP_BREAK:
42 ret = do_syscall(env,
43 env->regs[9],
44 env->regs[10],
45 env->regs[11],
46 env->regs[12],
47 env->regs[13],
48 env->pregs[7],
49 env->pregs[11],
50 0, 0);
Richard Hendersonaf254a22021-11-22 19:47:33 +010051 if (ret == -QEMU_ERESTARTSYS) {
Laurent Vivier8dd14a92018-04-11 20:56:43 +020052 env->pc -= 2;
Richard Henderson57a0c932021-11-17 05:14:52 -080053 } else if (ret != -QEMU_ESIGRETURN) {
Laurent Vivier8dd14a92018-04-11 20:56:43 +020054 env->regs[10] = ret;
55 }
56 break;
57 case EXCP_DEBUG:
Richard Henderson32e32182022-01-07 13:32:23 -080058 force_sig_fault(TARGET_SIGTRAP, TARGET_TRAP_BRKPT, env->pc);
Laurent Vivier8dd14a92018-04-11 20:56:43 +020059 break;
60 case EXCP_ATOMIC:
61 cpu_exec_step_atomic(cs);
62 break;
63 default:
Philippe Mathieu-Daudé84ca4fa2018-07-06 12:51:27 -030064 fprintf(stderr, "Unhandled trap: 0x%x\n", trapnr);
Markus Armbruster90c84c52019-04-17 21:18:02 +020065 cpu_dump_state(cs, stderr, 0);
Laurent Vivier8dd14a92018-04-11 20:56:43 +020066 exit(EXIT_FAILURE);
67 }
68 process_pending_signals (env);
69 }
70}
71
Laurent Viviercd71c082018-04-11 20:56:33 +020072void target_cpu_copy_regs(CPUArchState *env, struct target_pt_regs *regs)
73{
Richard Henderson29a0af62019-03-22 16:07:18 -070074 CPUState *cpu = env_cpu(env);
Laurent Vivier8dd14a92018-04-11 20:56:43 +020075 TaskState *ts = cpu->opaque;
76 struct image_info *info = ts->info;
77
78 env->regs[0] = regs->r0;
79 env->regs[1] = regs->r1;
80 env->regs[2] = regs->r2;
81 env->regs[3] = regs->r3;
82 env->regs[4] = regs->r4;
83 env->regs[5] = regs->r5;
84 env->regs[6] = regs->r6;
85 env->regs[7] = regs->r7;
86 env->regs[8] = regs->r8;
87 env->regs[9] = regs->r9;
88 env->regs[10] = regs->r10;
89 env->regs[11] = regs->r11;
90 env->regs[12] = regs->r12;
91 env->regs[13] = regs->r13;
92 env->regs[14] = info->start_stack;
93 env->regs[15] = regs->acr;
94 env->pc = regs->erp;
Laurent Viviercd71c082018-04-11 20:56:33 +020095}