]> git.proxmox.com Git - mirror_qemu.git/blob - cpu.c
Merge branch 'xenfv-kvm-15' of git://git.infradead.org/users/dwmw2/qemu into HEAD
[mirror_qemu.git] / cpu.c
1 /*
2 * Target-specific parts of the CPU object
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
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.
10 *
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.
15 *
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/>.
18 */
19
20 #include "qemu/osdep.h"
21 #include "qapi/error.h"
22
23 #include "exec/target_page.h"
24 #include "hw/qdev-core.h"
25 #include "hw/qdev-properties.h"
26 #include "qemu/error-report.h"
27 #include "migration/vmstate.h"
28 #ifdef CONFIG_USER_ONLY
29 #include "qemu.h"
30 #else
31 #include "hw/core/sysemu-cpu-ops.h"
32 #include "exec/address-spaces.h"
33 #endif
34 #include "sysemu/tcg.h"
35 #include "sysemu/kvm.h"
36 #include "exec/replay-core.h"
37 #include "exec/cpu-common.h"
38 #include "exec/exec-all.h"
39 #include "exec/translate-all.h"
40 #include "exec/log.h"
41 #include "hw/core/accel-cpu.h"
42 #include "trace/trace-root.h"
43 #include "qemu/accel.h"
44
45 uintptr_t qemu_host_page_size;
46 intptr_t qemu_host_page_mask;
47
48 #ifndef CONFIG_USER_ONLY
49 static int cpu_common_post_load(void *opaque, int version_id)
50 {
51 CPUState *cpu = opaque;
52
53 /* 0x01 was CPU_INTERRUPT_EXIT. This line can be removed when the
54 version_id is increased. */
55 cpu->interrupt_request &= ~0x01;
56 tlb_flush(cpu);
57
58 /* loadvm has just updated the content of RAM, bypassing the
59 * usual mechanisms that ensure we flush TBs for writes to
60 * memory we've translated code from. So we must flush all TBs,
61 * which will now be stale.
62 */
63 tb_flush(cpu);
64
65 return 0;
66 }
67
68 static int cpu_common_pre_load(void *opaque)
69 {
70 CPUState *cpu = opaque;
71
72 cpu->exception_index = -1;
73
74 return 0;
75 }
76
77 static bool cpu_common_exception_index_needed(void *opaque)
78 {
79 CPUState *cpu = opaque;
80
81 return tcg_enabled() && cpu->exception_index != -1;
82 }
83
84 static const VMStateDescription vmstate_cpu_common_exception_index = {
85 .name = "cpu_common/exception_index",
86 .version_id = 1,
87 .minimum_version_id = 1,
88 .needed = cpu_common_exception_index_needed,
89 .fields = (VMStateField[]) {
90 VMSTATE_INT32(exception_index, CPUState),
91 VMSTATE_END_OF_LIST()
92 }
93 };
94
95 static bool cpu_common_crash_occurred_needed(void *opaque)
96 {
97 CPUState *cpu = opaque;
98
99 return cpu->crash_occurred;
100 }
101
102 static const VMStateDescription vmstate_cpu_common_crash_occurred = {
103 .name = "cpu_common/crash_occurred",
104 .version_id = 1,
105 .minimum_version_id = 1,
106 .needed = cpu_common_crash_occurred_needed,
107 .fields = (VMStateField[]) {
108 VMSTATE_BOOL(crash_occurred, CPUState),
109 VMSTATE_END_OF_LIST()
110 }
111 };
112
113 const VMStateDescription vmstate_cpu_common = {
114 .name = "cpu_common",
115 .version_id = 1,
116 .minimum_version_id = 1,
117 .pre_load = cpu_common_pre_load,
118 .post_load = cpu_common_post_load,
119 .fields = (VMStateField[]) {
120 VMSTATE_UINT32(halted, CPUState),
121 VMSTATE_UINT32(interrupt_request, CPUState),
122 VMSTATE_END_OF_LIST()
123 },
124 .subsections = (const VMStateDescription*[]) {
125 &vmstate_cpu_common_exception_index,
126 &vmstate_cpu_common_crash_occurred,
127 NULL
128 }
129 };
130 #endif
131
132 void cpu_exec_realizefn(CPUState *cpu, Error **errp)
133 {
134 /* cache the cpu class for the hotpath */
135 cpu->cc = CPU_GET_CLASS(cpu);
136
137 if (!accel_cpu_realizefn(cpu, errp)) {
138 return;
139 }
140
141 /* NB: errp parameter is unused currently */
142 if (tcg_enabled()) {
143 tcg_exec_realizefn(cpu, errp);
144 }
145
146 /* Wait until cpu initialization complete before exposing cpu. */
147 cpu_list_add(cpu);
148
149 /* Plugin initialization must wait until cpu_index assigned. */
150 if (tcg_enabled()) {
151 qemu_plugin_vcpu_init_hook(cpu);
152 }
153
154 #ifdef CONFIG_USER_ONLY
155 assert(qdev_get_vmsd(DEVICE(cpu)) == NULL ||
156 qdev_get_vmsd(DEVICE(cpu))->unmigratable);
157 #else
158 if (qdev_get_vmsd(DEVICE(cpu)) == NULL) {
159 vmstate_register(NULL, cpu->cpu_index, &vmstate_cpu_common, cpu);
160 }
161 if (cpu->cc->sysemu_ops->legacy_vmsd != NULL) {
162 vmstate_register(NULL, cpu->cpu_index, cpu->cc->sysemu_ops->legacy_vmsd, cpu);
163 }
164 #endif /* CONFIG_USER_ONLY */
165 }
166
167 void cpu_exec_unrealizefn(CPUState *cpu)
168 {
169 #ifndef CONFIG_USER_ONLY
170 CPUClass *cc = CPU_GET_CLASS(cpu);
171
172 if (cc->sysemu_ops->legacy_vmsd != NULL) {
173 vmstate_unregister(NULL, cc->sysemu_ops->legacy_vmsd, cpu);
174 }
175 if (qdev_get_vmsd(DEVICE(cpu)) == NULL) {
176 vmstate_unregister(NULL, &vmstate_cpu_common, cpu);
177 }
178 #endif
179
180 /* Call the plugin hook before clearing cpu->cpu_index in cpu_list_remove */
181 if (tcg_enabled()) {
182 qemu_plugin_vcpu_exit_hook(cpu);
183 }
184
185 cpu_list_remove(cpu);
186 /*
187 * Now that the vCPU has been removed from the RCU list, we can call
188 * tcg_exec_unrealizefn, which may free fields using call_rcu.
189 */
190 if (tcg_enabled()) {
191 tcg_exec_unrealizefn(cpu);
192 }
193 }
194
195 /*
196 * This can't go in hw/core/cpu.c because that file is compiled only
197 * once for both user-mode and system builds.
198 */
199 static Property cpu_common_props[] = {
200 #ifdef CONFIG_USER_ONLY
201 /*
202 * Create a property for the user-only object, so users can
203 * adjust prctl(PR_SET_UNALIGN) from the command-line.
204 * Has no effect if the target does not support the feature.
205 */
206 DEFINE_PROP_BOOL("prctl-unalign-sigbus", CPUState,
207 prctl_unalign_sigbus, false),
208 #else
209 /*
210 * Create a memory property for softmmu CPU object, so users can
211 * wire up its memory. The default if no link is set up is to use
212 * the system address space.
213 */
214 DEFINE_PROP_LINK("memory", CPUState, memory, TYPE_MEMORY_REGION,
215 MemoryRegion *),
216 #endif
217 DEFINE_PROP_END_OF_LIST(),
218 };
219
220 static bool cpu_get_start_powered_off(Object *obj, Error **errp)
221 {
222 CPUState *cpu = CPU(obj);
223 return cpu->start_powered_off;
224 }
225
226 static void cpu_set_start_powered_off(Object *obj, bool value, Error **errp)
227 {
228 CPUState *cpu = CPU(obj);
229 cpu->start_powered_off = value;
230 }
231
232 void cpu_class_init_props(DeviceClass *dc)
233 {
234 ObjectClass *oc = OBJECT_CLASS(dc);
235
236 device_class_set_props(dc, cpu_common_props);
237 /*
238 * We can't use DEFINE_PROP_BOOL in the Property array for this
239 * property, because we want this to be settable after realize.
240 */
241 object_class_property_add_bool(oc, "start-powered-off",
242 cpu_get_start_powered_off,
243 cpu_set_start_powered_off);
244 }
245
246 void cpu_exec_initfn(CPUState *cpu)
247 {
248 cpu->as = NULL;
249 cpu->num_ases = 0;
250
251 #ifndef CONFIG_USER_ONLY
252 cpu->thread_id = qemu_get_thread_id();
253 cpu->memory = get_system_memory();
254 object_ref(OBJECT(cpu->memory));
255 #endif
256 }
257
258 const char *parse_cpu_option(const char *cpu_option)
259 {
260 ObjectClass *oc;
261 CPUClass *cc;
262 gchar **model_pieces;
263 const char *cpu_type;
264
265 model_pieces = g_strsplit(cpu_option, ",", 2);
266 if (!model_pieces[0]) {
267 error_report("-cpu option cannot be empty");
268 exit(1);
269 }
270
271 oc = cpu_class_by_name(CPU_RESOLVING_TYPE, model_pieces[0]);
272 if (oc == NULL) {
273 error_report("unable to find CPU model '%s'", model_pieces[0]);
274 g_strfreev(model_pieces);
275 exit(EXIT_FAILURE);
276 }
277
278 cpu_type = object_class_get_name(oc);
279 cc = CPU_CLASS(oc);
280 cc->parse_features(cpu_type, model_pieces[1], &error_fatal);
281 g_strfreev(model_pieces);
282 return cpu_type;
283 }
284
285 void list_cpus(const char *optarg)
286 {
287 /* XXX: implement xxx_cpu_list for targets that still miss it */
288 #if defined(cpu_list)
289 cpu_list();
290 #endif
291 }
292
293 #if defined(CONFIG_USER_ONLY)
294 void tb_invalidate_phys_addr(target_ulong addr)
295 {
296 mmap_lock();
297 tb_invalidate_phys_page(addr);
298 mmap_unlock();
299 }
300 #else
301 void tb_invalidate_phys_addr(AddressSpace *as, hwaddr addr, MemTxAttrs attrs)
302 {
303 ram_addr_t ram_addr;
304 MemoryRegion *mr;
305 hwaddr l = 1;
306
307 if (!tcg_enabled()) {
308 return;
309 }
310
311 RCU_READ_LOCK_GUARD();
312 mr = address_space_translate(as, addr, &addr, &l, false, attrs);
313 if (!(memory_region_is_ram(mr)
314 || memory_region_is_romd(mr))) {
315 return;
316 }
317 ram_addr = memory_region_get_ram_addr(mr) + addr;
318 tb_invalidate_phys_page(ram_addr);
319 }
320 #endif
321
322 /* enable or disable single step mode. EXCP_DEBUG is returned by the
323 CPU loop after each instruction */
324 void cpu_single_step(CPUState *cpu, int enabled)
325 {
326 if (cpu->singlestep_enabled != enabled) {
327 cpu->singlestep_enabled = enabled;
328 if (kvm_enabled()) {
329 kvm_update_guest_debug(cpu, 0);
330 }
331 trace_breakpoint_singlestep(cpu->cpu_index, enabled);
332 }
333 }
334
335 void cpu_abort(CPUState *cpu, const char *fmt, ...)
336 {
337 va_list ap;
338 va_list ap2;
339
340 va_start(ap, fmt);
341 va_copy(ap2, ap);
342 fprintf(stderr, "qemu: fatal: ");
343 vfprintf(stderr, fmt, ap);
344 fprintf(stderr, "\n");
345 cpu_dump_state(cpu, stderr, CPU_DUMP_FPU | CPU_DUMP_CCOP);
346 if (qemu_log_separate()) {
347 FILE *logfile = qemu_log_trylock();
348 if (logfile) {
349 fprintf(logfile, "qemu: fatal: ");
350 vfprintf(logfile, fmt, ap2);
351 fprintf(logfile, "\n");
352 cpu_dump_state(cpu, logfile, CPU_DUMP_FPU | CPU_DUMP_CCOP);
353 qemu_log_unlock(logfile);
354 }
355 }
356 va_end(ap2);
357 va_end(ap);
358 replay_finish();
359 #if defined(CONFIG_USER_ONLY)
360 {
361 struct sigaction act;
362 sigfillset(&act.sa_mask);
363 act.sa_handler = SIG_DFL;
364 act.sa_flags = 0;
365 sigaction(SIGABRT, &act, NULL);
366 }
367 #endif
368 abort();
369 }
370
371 /* physical memory access (slow version, mainly for debug) */
372 #if defined(CONFIG_USER_ONLY)
373 int cpu_memory_rw_debug(CPUState *cpu, vaddr addr,
374 void *ptr, size_t len, bool is_write)
375 {
376 int flags;
377 vaddr l, page;
378 void * p;
379 uint8_t *buf = ptr;
380
381 while (len > 0) {
382 page = addr & TARGET_PAGE_MASK;
383 l = (page + TARGET_PAGE_SIZE) - addr;
384 if (l > len)
385 l = len;
386 flags = page_get_flags(page);
387 if (!(flags & PAGE_VALID))
388 return -1;
389 if (is_write) {
390 if (!(flags & PAGE_WRITE))
391 return -1;
392 /* XXX: this code should not depend on lock_user */
393 if (!(p = lock_user(VERIFY_WRITE, addr, l, 0)))
394 return -1;
395 memcpy(p, buf, l);
396 unlock_user(p, addr, l);
397 } else {
398 if (!(flags & PAGE_READ))
399 return -1;
400 /* XXX: this code should not depend on lock_user */
401 if (!(p = lock_user(VERIFY_READ, addr, l, 1)))
402 return -1;
403 memcpy(buf, p, l);
404 unlock_user(p, addr, 0);
405 }
406 len -= l;
407 buf += l;
408 addr += l;
409 }
410 return 0;
411 }
412 #endif
413
414 bool target_words_bigendian(void)
415 {
416 #if TARGET_BIG_ENDIAN
417 return true;
418 #else
419 return false;
420 #endif
421 }
422
423 void page_size_init(void)
424 {
425 /* NOTE: we can always suppose that qemu_host_page_size >=
426 TARGET_PAGE_SIZE */
427 if (qemu_host_page_size == 0) {
428 qemu_host_page_size = qemu_real_host_page_size();
429 }
430 if (qemu_host_page_size < TARGET_PAGE_SIZE) {
431 qemu_host_page_size = TARGET_PAGE_SIZE;
432 }
433 qemu_host_page_mask = -(intptr_t)qemu_host_page_size;
434 }