4 * Copyright (c) 2003-2008 Fabrice Bellard
5 * Copyright(c) 2019-2021 Qualcomm Innovation Center, Inc. All Rights Reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
23 #include "user-internals.h"
24 #include "cpu_loop-common.h"
25 #include "signal-common.h"
28 void cpu_loop(CPUHexagonState
*env
)
30 CPUState
*cs
= env_cpu(env
);
32 target_ulong syscallnum
;
37 trapnr
= cpu_exec(cs
);
39 process_queued_cpu_work(cs
);
43 /* just indicate that signals should be handled asap */
46 syscallnum
= env
->gpr
[6];
47 env
->gpr
[HEX_REG_PC
] += 4;
57 if (ret
== -QEMU_ERESTARTSYS
) {
58 env
->gpr
[HEX_REG_PC
] -= 4;
59 } else if (ret
!= -QEMU_ESIGRETURN
) {
64 cpu_exec_step_atomic(cs
);
67 force_sig_fault(TARGET_SIGTRAP
, TARGET_TRAP_BRKPT
, 0);
70 EXCP_DUMP(env
, "\nqemu: unhandled CPU exception %#x - aborting\n",
74 process_pending_signals(env
);
78 void target_cpu_copy_regs(CPUArchState
*env
, struct target_pt_regs
*regs
)
80 env
->gpr
[HEX_REG_PC
] = regs
->sepc
;
81 env
->gpr
[HEX_REG_SP
] = regs
->sp
;
82 env
->gpr
[HEX_REG_USR
] = 0x56000;