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 "user-internals.h"
23 #include "cpu_loop-common.h"
24 #include "signal-common.h"
26 void cpu_loop(CPUSH4State
*env
)
28 CPUState
*cs
= env_cpu(env
);
32 bool arch_interrupt
= true;
35 trapnr
= cpu_exec(cs
);
37 process_queued_cpu_work(cs
);
51 if (ret
== -QEMU_ERESTARTSYS
) {
53 } else if (ret
!= -QEMU_ESIGRETURN
) {
58 /* just indicate that signals should be handled asap */
61 force_sig_fault(TARGET_SIGTRAP
, TARGET_TRAP_BRKPT
, env
->pc
);
64 cpu_exec_step_atomic(cs
);
65 arch_interrupt
= false;
68 fprintf(stderr
, "Unhandled trap: 0x%x\n", trapnr
);
69 cpu_dump_state(cs
, stderr
, 0);
72 process_pending_signals (env
);
74 /* Most of the traps imply an exception or interrupt, which
75 implies an REI instruction has been executed. Which means
76 that LDST (aka LOK_ADDR) should be cleared. But there are
77 a few exceptions for traps internal to QEMU. */
84 void target_cpu_copy_regs(CPUArchState
*env
, struct target_pt_regs
*regs
)
88 for(i
= 0; i
< 16; i
++) {
89 env
->gregs
[i
] = regs
->regs
[i
];