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"
23 #include "cpu_loop-common.h"
24 #include "qemu/guest-random.h"
26 #define get_user_code_u32(x, gaddr, env) \
27 ({ abi_long __r = get_user_u32((x), (gaddr)); \
28 if (!__r && bswap_code(arm_sctlr_b(env))) { \
34 #define get_user_code_u16(x, gaddr, env) \
35 ({ abi_long __r = get_user_u16((x), (gaddr)); \
36 if (!__r && bswap_code(arm_sctlr_b(env))) { \
42 #define get_user_data_u32(x, gaddr, env) \
43 ({ abi_long __r = get_user_u32((x), (gaddr)); \
44 if (!__r && arm_cpu_bswap_data(env)) { \
50 #define get_user_data_u16(x, gaddr, env) \
51 ({ abi_long __r = get_user_u16((x), (gaddr)); \
52 if (!__r && arm_cpu_bswap_data(env)) { \
58 #define put_user_data_u32(x, gaddr, env) \
59 ({ typeof(x) __x = (x); \
60 if (arm_cpu_bswap_data(env)) { \
63 put_user_u32(__x, (gaddr)); \
66 #define put_user_data_u16(x, gaddr, env) \
67 ({ typeof(x) __x = (x); \
68 if (arm_cpu_bswap_data(env)) { \
71 put_user_u16(__x, (gaddr)); \
74 /* AArch64 main loop */
75 void cpu_loop(CPUARMState
*env
)
77 CPUState
*cs
= env_cpu(env
);
80 target_siginfo_t info
;
84 trapnr
= cpu_exec(cs
);
86 process_queued_cpu_work(cs
);
99 if (ret
== -TARGET_ERESTARTSYS
) {
101 } else if (ret
!= -TARGET_QEMU_ESIGRETURN
) {
106 /* just indicate that signals should be handled asap */
109 info
.si_signo
= TARGET_SIGILL
;
111 info
.si_code
= TARGET_ILL_ILLOPN
;
112 info
._sifields
._sigfault
._addr
= env
->pc
;
113 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
115 case EXCP_PREFETCH_ABORT
:
116 case EXCP_DATA_ABORT
:
117 info
.si_signo
= TARGET_SIGSEGV
;
119 /* XXX: check env->error_code */
120 info
.si_code
= TARGET_SEGV_MAPERR
;
121 info
._sifields
._sigfault
._addr
= env
->exception
.vaddress
;
122 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
126 info
.si_signo
= TARGET_SIGTRAP
;
128 info
.si_code
= TARGET_TRAP_BRKPT
;
129 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
132 env
->xregs
[0] = do_arm_semihosting(env
);
136 /* nothing to do here for user-mode, just resume guest code */
139 cpu_exec_step_atomic(cs
);
142 EXCP_DUMP(env
, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr
);
145 process_pending_signals(env
);
146 /* Exception return on AArch64 always clears the exclusive monitor,
147 * so any return to running guest code implies this.
149 env
->exclusive_addr
= -1;
153 void target_cpu_copy_regs(CPUArchState
*env
, struct target_pt_regs
*regs
)
155 ARMCPU
*cpu
= env_archcpu(env
);
156 CPUState
*cs
= env_cpu(env
);
157 TaskState
*ts
= cs
->opaque
;
158 struct image_info
*info
= ts
->info
;
161 if (!(arm_feature(env
, ARM_FEATURE_AARCH64
))) {
163 "The selected ARM CPU does not support 64 bit mode\n");
167 for (i
= 0; i
< 31; i
++) {
168 env
->xregs
[i
] = regs
->regs
[i
];
171 env
->xregs
[31] = regs
->sp
;
172 #ifdef TARGET_WORDS_BIGENDIAN
173 env
->cp15
.sctlr_el
[1] |= SCTLR_E0E
;
174 for (i
= 1; i
< 4; ++i
) {
175 env
->cp15
.sctlr_el
[i
] |= SCTLR_EE
;
177 arm_rebuild_hflags(env
);
180 if (cpu_isar_feature(aa64_pauth
, cpu
)) {
181 qemu_guest_getrandom_nofail(&env
->keys
, sizeof(env
->keys
));
184 ts
->stack_base
= info
->start_stack
;
185 ts
->heap_base
= info
->brk
;
186 /* This will be filled in on the first SYS_HEAPINFO call. */