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"
22 #include "cpu_loop-common.h"
24 void cpu_loop(CPURISCVState
*env
)
26 CPUState
*cs
= CPU(riscv_env_get_cpu(env
));
27 int trapnr
, signum
, sigcode
;
33 trapnr
= cpu_exec(cs
);
35 process_queued_cpu_work(cs
);
43 /* just indicate that signals should be handled asap */
46 cpu_exec_step_atomic(cs
);
48 case RISCV_EXCP_U_ECALL
:
50 if (env
->gpr
[xA7
] == TARGET_NR_arch_specific_syscall
+ 15) {
51 /* riscv_flush_icache_syscall is a no-op in QEMU as
52 self-modifying code is automatically detected */
65 if (ret
== -TARGET_ERESTARTSYS
) {
67 } else if (ret
!= -TARGET_QEMU_ESIGRETURN
) {
70 if (cs
->singlestep_enabled
) {
74 case RISCV_EXCP_ILLEGAL_INST
:
75 signum
= TARGET_SIGILL
;
76 sigcode
= TARGET_ILL_ILLOPC
;
78 case RISCV_EXCP_BREAKPOINT
:
79 signum
= TARGET_SIGTRAP
;
80 sigcode
= TARGET_TRAP_BRKPT
;
83 case RISCV_EXCP_INST_PAGE_FAULT
:
84 case RISCV_EXCP_LOAD_PAGE_FAULT
:
85 case RISCV_EXCP_STORE_PAGE_FAULT
:
86 signum
= TARGET_SIGSEGV
;
87 sigcode
= TARGET_SEGV_MAPERR
;
91 signum
= TARGET_SIGTRAP
;
92 sigcode
= TARGET_TRAP_BRKPT
;
95 EXCP_DUMP(env
, "\nqemu: unhandled CPU exception %#x - aborting\n",
101 target_siginfo_t info
= {
105 ._sifields
._sigfault
._addr
= sigaddr
107 queue_signal(env
, info
.si_signo
, QEMU_SI_KILL
, &info
);
110 process_pending_signals(env
);
114 void target_cpu_copy_regs(CPUArchState
*env
, struct target_pt_regs
*regs
)
116 env
->pc
= regs
->sepc
;
117 env
->gpr
[xSP
] = regs
->sp
;