2 * Target-specific parts of the CPU object
4 * Copyright (c) 2003 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
21 #include "qemu-common.h"
22 #include "qapi/error.h"
24 #include "exec/target_page.h"
25 #include "hw/qdev-core.h"
26 #include "hw/qdev-properties.h"
27 #include "qemu/error-report.h"
28 #include "migration/vmstate.h"
29 #ifdef CONFIG_USER_ONLY
32 #include "exec/address-spaces.h"
34 #include "sysemu/tcg.h"
35 #include "sysemu/kvm.h"
36 #include "sysemu/replay.h"
37 #include "exec/translate-all.h"
39 #include "hw/core/accel-cpu.h"
41 uintptr_t qemu_host_page_size
;
42 intptr_t qemu_host_page_mask
;
44 #ifndef CONFIG_USER_ONLY
45 static int cpu_common_post_load(void *opaque
, int version_id
)
47 CPUState
*cpu
= opaque
;
49 /* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the
50 version_id is increased. */
51 cpu
->interrupt_request
&= ~0x01;
54 /* loadvm has just updated the content of RAM, bypassing the
55 * usual mechanisms that ensure we flush TBs for writes to
56 * memory we've translated code from. So we must flush all TBs,
57 * which will now be stale.
64 static int cpu_common_pre_load(void *opaque
)
66 CPUState
*cpu
= opaque
;
68 cpu
->exception_index
= -1;
73 static bool cpu_common_exception_index_needed(void *opaque
)
75 CPUState
*cpu
= opaque
;
77 return tcg_enabled() && cpu
->exception_index
!= -1;
80 static const VMStateDescription vmstate_cpu_common_exception_index
= {
81 .name
= "cpu_common/exception_index",
83 .minimum_version_id
= 1,
84 .needed
= cpu_common_exception_index_needed
,
85 .fields
= (VMStateField
[]) {
86 VMSTATE_INT32(exception_index
, CPUState
),
91 static bool cpu_common_crash_occurred_needed(void *opaque
)
93 CPUState
*cpu
= opaque
;
95 return cpu
->crash_occurred
;
98 static const VMStateDescription vmstate_cpu_common_crash_occurred
= {
99 .name
= "cpu_common/crash_occurred",
101 .minimum_version_id
= 1,
102 .needed
= cpu_common_crash_occurred_needed
,
103 .fields
= (VMStateField
[]) {
104 VMSTATE_BOOL(crash_occurred
, CPUState
),
105 VMSTATE_END_OF_LIST()
109 const VMStateDescription vmstate_cpu_common
= {
110 .name
= "cpu_common",
112 .minimum_version_id
= 1,
113 .pre_load
= cpu_common_pre_load
,
114 .post_load
= cpu_common_post_load
,
115 .fields
= (VMStateField
[]) {
116 VMSTATE_UINT32(halted
, CPUState
),
117 VMSTATE_UINT32(interrupt_request
, CPUState
),
118 VMSTATE_END_OF_LIST()
120 .subsections
= (const VMStateDescription
*[]) {
121 &vmstate_cpu_common_exception_index
,
122 &vmstate_cpu_common_crash_occurred
,
128 void cpu_exec_realizefn(CPUState
*cpu
, Error
**errp
)
130 CPUClass
*cc
= CPU_GET_CLASS(cpu
);
133 if (!accel_cpu_realizefn(cpu
, errp
)) {
137 /* NB: errp parameter is unused currently */
139 tcg_exec_realizefn(cpu
, errp
);
141 #endif /* CONFIG_TCG */
143 #ifdef CONFIG_USER_ONLY
144 assert(cc
->vmsd
== NULL
);
146 if (qdev_get_vmsd(DEVICE(cpu
)) == NULL
) {
147 vmstate_register(NULL
, cpu
->cpu_index
, &vmstate_cpu_common
, cpu
);
149 if (cc
->vmsd
!= NULL
) {
150 vmstate_register(NULL
, cpu
->cpu_index
, cc
->vmsd
, cpu
);
152 #endif /* CONFIG_USER_ONLY */
155 void cpu_exec_unrealizefn(CPUState
*cpu
)
157 CPUClass
*cc
= CPU_GET_CLASS(cpu
);
159 #ifdef CONFIG_USER_ONLY
160 assert(cc
->vmsd
== NULL
);
162 if (cc
->vmsd
!= NULL
) {
163 vmstate_unregister(NULL
, cc
->vmsd
, cpu
);
165 if (qdev_get_vmsd(DEVICE(cpu
)) == NULL
) {
166 vmstate_unregister(NULL
, &vmstate_cpu_common
, cpu
);
170 /* NB: errp parameter is unused currently */
172 tcg_exec_unrealizefn(cpu
);
174 #endif /* CONFIG_TCG */
176 cpu_list_remove(cpu
);
179 void cpu_exec_initfn(CPUState
*cpu
)
184 #ifndef CONFIG_USER_ONLY
185 cpu
->thread_id
= qemu_get_thread_id();
186 cpu
->memory
= get_system_memory();
187 object_ref(OBJECT(cpu
->memory
));
191 const char *parse_cpu_option(const char *cpu_option
)
195 gchar
**model_pieces
;
196 const char *cpu_type
;
198 model_pieces
= g_strsplit(cpu_option
, ",", 2);
199 if (!model_pieces
[0]) {
200 error_report("-cpu option cannot be empty");
204 oc
= cpu_class_by_name(CPU_RESOLVING_TYPE
, model_pieces
[0]);
206 error_report("unable to find CPU model '%s'", model_pieces
[0]);
207 g_strfreev(model_pieces
);
211 cpu_type
= object_class_get_name(oc
);
213 cc
->parse_features(cpu_type
, model_pieces
[1], &error_fatal
);
214 g_strfreev(model_pieces
);
218 #if defined(CONFIG_USER_ONLY)
219 void tb_invalidate_phys_addr(target_ulong addr
)
222 tb_invalidate_phys_page_range(addr
, addr
+ 1);
226 static void breakpoint_invalidate(CPUState
*cpu
, target_ulong pc
)
228 tb_invalidate_phys_addr(pc
);
231 void tb_invalidate_phys_addr(AddressSpace
*as
, hwaddr addr
, MemTxAttrs attrs
)
237 if (!tcg_enabled()) {
241 RCU_READ_LOCK_GUARD();
242 mr
= address_space_translate(as
, addr
, &addr
, &l
, false, attrs
);
243 if (!(memory_region_is_ram(mr
)
244 || memory_region_is_romd(mr
))) {
247 ram_addr
= memory_region_get_ram_addr(mr
) + addr
;
248 tb_invalidate_phys_page_range(ram_addr
, ram_addr
+ 1);
251 static void breakpoint_invalidate(CPUState
*cpu
, target_ulong pc
)
254 * There may not be a virtual to physical translation for the pc
255 * right now, but there may exist cached TB for this pc.
256 * Flush the whole TB cache to force re-translation of such TBs.
257 * This is heavyweight, but we're debugging anyway.
263 /* Add a breakpoint. */
264 int cpu_breakpoint_insert(CPUState
*cpu
, vaddr pc
, int flags
,
265 CPUBreakpoint
**breakpoint
)
269 bp
= g_malloc(sizeof(*bp
));
274 /* keep all GDB-injected breakpoints in front */
275 if (flags
& BP_GDB
) {
276 QTAILQ_INSERT_HEAD(&cpu
->breakpoints
, bp
, entry
);
278 QTAILQ_INSERT_TAIL(&cpu
->breakpoints
, bp
, entry
);
281 breakpoint_invalidate(cpu
, pc
);
289 /* Remove a specific breakpoint. */
290 int cpu_breakpoint_remove(CPUState
*cpu
, vaddr pc
, int flags
)
294 QTAILQ_FOREACH(bp
, &cpu
->breakpoints
, entry
) {
295 if (bp
->pc
== pc
&& bp
->flags
== flags
) {
296 cpu_breakpoint_remove_by_ref(cpu
, bp
);
303 /* Remove a specific breakpoint by reference. */
304 void cpu_breakpoint_remove_by_ref(CPUState
*cpu
, CPUBreakpoint
*breakpoint
)
306 QTAILQ_REMOVE(&cpu
->breakpoints
, breakpoint
, entry
);
308 breakpoint_invalidate(cpu
, breakpoint
->pc
);
313 /* Remove all matching breakpoints. */
314 void cpu_breakpoint_remove_all(CPUState
*cpu
, int mask
)
316 CPUBreakpoint
*bp
, *next
;
318 QTAILQ_FOREACH_SAFE(bp
, &cpu
->breakpoints
, entry
, next
) {
319 if (bp
->flags
& mask
) {
320 cpu_breakpoint_remove_by_ref(cpu
, bp
);
325 /* enable or disable single step mode. EXCP_DEBUG is returned by the
326 CPU loop after each instruction */
327 void cpu_single_step(CPUState
*cpu
, int enabled
)
329 if (cpu
->singlestep_enabled
!= enabled
) {
330 cpu
->singlestep_enabled
= enabled
;
332 kvm_update_guest_debug(cpu
, 0);
334 /* must flush all the translated code to avoid inconsistencies */
335 /* XXX: only flush what is necessary */
341 void cpu_abort(CPUState
*cpu
, const char *fmt
, ...)
348 fprintf(stderr
, "qemu: fatal: ");
349 vfprintf(stderr
, fmt
, ap
);
350 fprintf(stderr
, "\n");
351 cpu_dump_state(cpu
, stderr
, CPU_DUMP_FPU
| CPU_DUMP_CCOP
);
352 if (qemu_log_separate()) {
353 FILE *logfile
= qemu_log_lock();
354 qemu_log("qemu: fatal: ");
355 qemu_log_vprintf(fmt
, ap2
);
357 log_cpu_state(cpu
, CPU_DUMP_FPU
| CPU_DUMP_CCOP
);
359 qemu_log_unlock(logfile
);
365 #if defined(CONFIG_USER_ONLY)
367 struct sigaction act
;
368 sigfillset(&act
.sa_mask
);
369 act
.sa_handler
= SIG_DFL
;
371 sigaction(SIGABRT
, &act
, NULL
);
377 /* physical memory access (slow version, mainly for debug) */
378 #if defined(CONFIG_USER_ONLY)
379 int cpu_memory_rw_debug(CPUState
*cpu
, target_ulong addr
,
380 void *ptr
, target_ulong len
, bool is_write
)
383 target_ulong l
, page
;
388 page
= addr
& TARGET_PAGE_MASK
;
389 l
= (page
+ TARGET_PAGE_SIZE
) - addr
;
392 flags
= page_get_flags(page
);
393 if (!(flags
& PAGE_VALID
))
396 if (!(flags
& PAGE_WRITE
))
398 /* XXX: this code should not depend on lock_user */
399 if (!(p
= lock_user(VERIFY_WRITE
, addr
, l
, 0)))
402 unlock_user(p
, addr
, l
);
404 if (!(flags
& PAGE_READ
))
406 /* XXX: this code should not depend on lock_user */
407 if (!(p
= lock_user(VERIFY_READ
, addr
, l
, 1)))
410 unlock_user(p
, addr
, 0);
420 bool target_words_bigendian(void)
422 #if defined(TARGET_WORDS_BIGENDIAN)
429 void page_size_init(void)
431 /* NOTE: we can always suppose that qemu_host_page_size >=
433 if (qemu_host_page_size
== 0) {
434 qemu_host_page_size
= qemu_real_host_page_size
;
436 if (qemu_host_page_size
< TARGET_PAGE_SIZE
) {
437 qemu_host_page_size
= TARGET_PAGE_SIZE
;
439 qemu_host_page_mask
= -(intptr_t)qemu_host_page_size
;