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(CPUAlphaState
*env
)
26 CPUState
*cs
= CPU(alpha_env_get_cpu(env
));
28 target_siginfo_t info
;
32 bool arch_interrupt
= true;
35 trapnr
= cpu_exec(cs
);
37 process_queued_cpu_work(cs
);
41 fprintf(stderr
, "Reset requested. Exit\n");
45 fprintf(stderr
, "Machine check exception. Exit\n");
48 case EXCP_SMP_INTERRUPT
:
49 case EXCP_CLK_INTERRUPT
:
50 case EXCP_DEV_INTERRUPT
:
51 fprintf(stderr
, "External interrupt. Exit\n");
55 info
.si_signo
= TARGET_SIGSEGV
;
57 info
.si_code
= (page_get_flags(env
->trap_arg0
) & PAGE_VALID
58 ? TARGET_SEGV_ACCERR
: TARGET_SEGV_MAPERR
);
59 info
._sifields
._sigfault
._addr
= env
->trap_arg0
;
60 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
63 info
.si_signo
= TARGET_SIGBUS
;
65 info
.si_code
= TARGET_BUS_ADRALN
;
66 info
._sifields
._sigfault
._addr
= env
->trap_arg0
;
67 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
71 info
.si_signo
= TARGET_SIGILL
;
73 info
.si_code
= TARGET_ILL_ILLOPC
;
74 info
._sifields
._sigfault
._addr
= env
->pc
;
75 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
78 info
.si_signo
= TARGET_SIGFPE
;
80 info
.si_code
= TARGET_FPE_FLTINV
;
81 info
._sifields
._sigfault
._addr
= env
->pc
;
82 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
85 /* No-op. Linux simply re-enables the FPU. */
88 switch (env
->error_code
) {
91 info
.si_signo
= TARGET_SIGTRAP
;
93 info
.si_code
= TARGET_TRAP_BRKPT
;
94 info
._sifields
._sigfault
._addr
= env
->pc
;
95 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
99 info
.si_signo
= TARGET_SIGTRAP
;
102 info
._sifields
._sigfault
._addr
= env
->pc
;
103 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
107 trapnr
= env
->ir
[IR_V0
];
108 sysret
= do_syscall(env
, trapnr
,
109 env
->ir
[IR_A0
], env
->ir
[IR_A1
],
110 env
->ir
[IR_A2
], env
->ir
[IR_A3
],
111 env
->ir
[IR_A4
], env
->ir
[IR_A5
],
113 if (sysret
== -TARGET_ERESTARTSYS
) {
117 if (sysret
== -TARGET_QEMU_ESIGRETURN
) {
120 /* Syscall writes 0 to V0 to bypass error check, similar
121 to how this is handled internal to Linux kernel.
122 (Ab)use trapnr temporarily as boolean indicating error. */
123 trapnr
= (env
->ir
[IR_V0
] != 0 && sysret
< 0);
124 env
->ir
[IR_V0
] = (trapnr
? -sysret
: sysret
);
125 env
->ir
[IR_A3
] = trapnr
;
129 /* ??? We can probably elide the code using page_unprotect
130 that is checking for self-modifying code. Instead we
131 could simply call tb_flush here. Until we work out the
132 changes required to turn off the extra write protection,
133 this can be a no-op. */
137 /* Handled in the translator for usermode. */
141 /* Handled in the translator for usermode. */
145 info
.si_signo
= TARGET_SIGFPE
;
146 switch (env
->ir
[IR_A0
]) {
147 case TARGET_GEN_INTOVF
:
148 info
.si_code
= TARGET_FPE_INTOVF
;
150 case TARGET_GEN_INTDIV
:
151 info
.si_code
= TARGET_FPE_INTDIV
;
153 case TARGET_GEN_FLTOVF
:
154 info
.si_code
= TARGET_FPE_FLTOVF
;
156 case TARGET_GEN_FLTUND
:
157 info
.si_code
= TARGET_FPE_FLTUND
;
159 case TARGET_GEN_FLTINV
:
160 info
.si_code
= TARGET_FPE_FLTINV
;
162 case TARGET_GEN_FLTINE
:
163 info
.si_code
= TARGET_FPE_FLTRES
;
165 case TARGET_GEN_ROPRAND
:
169 info
.si_signo
= TARGET_SIGTRAP
;
174 info
._sifields
._sigfault
._addr
= env
->pc
;
175 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
182 info
.si_signo
= gdb_handlesig(cs
, TARGET_SIGTRAP
);
185 info
.si_code
= TARGET_TRAP_BRKPT
;
186 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
188 arch_interrupt
= false;
192 /* Just indicate that signals should be handled asap. */
195 cpu_exec_step_atomic(cs
);
196 arch_interrupt
= false;
199 printf ("Unhandled trap: 0x%x\n", trapnr
);
200 cpu_dump_state(cs
, stderr
, fprintf
, 0);
203 process_pending_signals (env
);
205 /* Most of the traps imply a transition through PALcode, which
206 implies an REI instruction has been executed. Which means
207 that RX and LOCK_ADDR should be cleared. But there are a
208 few exceptions for traps internal to QEMU. */
209 if (arch_interrupt
) {
210 env
->flags
&= ~ENV_FLAG_RX_FLAG
;
216 void target_cpu_copy_regs(CPUArchState
*env
, struct target_pt_regs
*regs
)
220 for(i
= 0; i
< 28; i
++) {
221 env
->ir
[i
] = ((abi_ulong
*)regs
)[i
];
223 env
->ir
[IR_SP
] = regs
->usp
;