4 * Copyright (c) 2003-2008 Fabrice Bellard
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.
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.
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/>.
20 #include "qemu/osdep.h"
21 #include "qemu-common.h"
22 #include "qemu/error-report.h"
24 #include "cpu_loop-common.h"
27 void cpu_loop(CPURISCVState *env)
29 CPUState *cs = env_cpu(env);
30 int trapnr, signum, sigcode;
36 trapnr = cpu_exec(cs);
38 process_queued_cpu_work(cs);
46 /* just indicate that signals should be handled asap */
49 cpu_exec_step_atomic(cs);
51 case RISCV_EXCP_U_ECALL:
53 if (env->gpr[xA7] == TARGET_NR_arch_specific_syscall + 15) {
54 /* riscv_flush_icache_syscall is a no-op in QEMU as
55 self-modifying code is automatically detected */
59 env->gpr[(env->elf_flags & EF_RISCV_RVE)
69 if (ret == -TARGET_ERESTARTSYS) {
71 } else if (ret != -TARGET_QEMU_ESIGRETURN) {
74 if (cs->singlestep_enabled) {
78 case RISCV_EXCP_ILLEGAL_INST:
79 signum = TARGET_SIGILL;
80 sigcode = TARGET_ILL_ILLOPC;
82 case RISCV_EXCP_BREAKPOINT:
83 signum = TARGET_SIGTRAP;
84 sigcode = TARGET_TRAP_BRKPT;
87 case RISCV_EXCP_INST_PAGE_FAULT:
88 case RISCV_EXCP_LOAD_PAGE_FAULT:
89 case RISCV_EXCP_STORE_PAGE_FAULT:
90 signum = TARGET_SIGSEGV;
91 sigcode = TARGET_SEGV_MAPERR;
92 sigaddr = env->badaddr;
96 signum = TARGET_SIGTRAP;
97 sigcode = TARGET_TRAP_BRKPT;
100 EXCP_DUMP(env, "\nqemu: unhandled CPU exception %#x - aborting\n",
106 target_siginfo_t info = {
110 ._sifields._sigfault._addr = sigaddr
112 queue_signal(env, info.si_signo, QEMU_SI_FAULT, &info);
115 process_pending_signals(env);
119 void target_cpu_copy_regs(CPUArchState *env, struct target_pt_regs *regs)
121 CPUState *cpu = env_cpu(env);
122 TaskState *ts = cpu->opaque;
123 struct image_info *info = ts->info;
125 env->pc = regs->sepc;
126 env->gpr[xSP] = regs->sp;
127 env->elf_flags = info->elf_flags;
129 if ((env->misa & RVE) && !(env->elf_flags & EF_RISCV_RVE)) {
130 error_report("Incompatible ELF: RVE cpu requires RVE ABI binary");