4 * Copyright (c) 2012 SUSE LINUX Products GmbH
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (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
18 * <http://www.gnu.org/licenses/gpl-2.0.html>
25 #include "hw/qdev-core.h"
26 #include "exec/hwaddr.h"
27 #include "qemu/queue.h"
28 #include "qemu/thread.h"
30 #include "qemu/typedefs.h"
32 typedef int (*WriteCoreDumpFunction
)(const void *buf
, size_t size
,
37 * Type wide enough to contain any #target_ulong virtual address.
39 typedef uint64_t vaddr
;
40 #define VADDR_PRId PRId64
41 #define VADDR_PRIu PRIu64
42 #define VADDR_PRIo PRIo64
43 #define VADDR_PRIx PRIx64
44 #define VADDR_PRIX PRIX64
45 #define VADDR_MAX UINT64_MAX
49 * @section_id: QEMU-cpu
51 * @short_description: Base class for all CPUs
54 #define TYPE_CPU "cpu"
56 #define CPU(obj) OBJECT_CHECK(CPUState, (obj), TYPE_CPU)
57 #define CPU_CLASS(class) OBJECT_CLASS_CHECK(CPUClass, (class), TYPE_CPU)
58 #define CPU_GET_CLASS(obj) OBJECT_GET_CLASS(CPUClass, (obj), TYPE_CPU)
60 typedef struct CPUState CPUState
;
62 typedef void (*CPUUnassignedAccess
)(CPUState
*cpu
, hwaddr addr
,
63 bool is_write
, bool is_exec
, int opaque
,
66 struct TranslationBlock
;
70 * @class_by_name: Callback to map -cpu command line model name to an
71 * instantiatable CPU type.
72 * @parse_features: Callback to parse command line arguments.
73 * @reset: Callback to reset the #CPUState to its initial state.
74 * @reset_dump_flags: #CPUDumpFlags to use for reset logging.
75 * @has_work: Callback for checking if there is work to do.
76 * @do_interrupt: Callback for interrupt handling.
77 * @do_unassigned_access: Callback for unassigned access handling.
78 * @memory_rw_debug: Callback for GDB memory access.
79 * @dump_state: Callback for dumping state.
80 * @dump_statistics: Callback for dumping statistics.
81 * @get_arch_id: Callback for getting architecture-dependent CPU ID.
82 * @get_paging_enabled: Callback for inquiring whether paging is enabled.
83 * @get_memory_mapping: Callback for obtaining the memory mappings.
84 * @set_pc: Callback for setting the Program Counter register.
85 * @synchronize_from_tb: Callback for synchronizing state from a TCG
87 * @handle_mmu_fault: Callback for handling an MMU fault.
88 * @get_phys_page_debug: Callback for obtaining a physical address.
89 * @gdb_read_register: Callback for letting GDB read a register.
90 * @gdb_write_register: Callback for letting GDB write a register.
91 * @vmsd: State description for migration.
92 * @gdb_num_core_regs: Number of core registers accessible to GDB.
93 * @gdb_core_xml_file: File name for core registers GDB XML description.
95 * Represents a CPU family or model.
97 typedef struct CPUClass
{
99 DeviceClass parent_class
;
102 ObjectClass
*(*class_by_name
)(const char *cpu_model
);
103 void (*parse_features
)(CPUState
*cpu
, char *str
, Error
**errp
);
105 void (*reset
)(CPUState
*cpu
);
106 int reset_dump_flags
;
107 bool (*has_work
)(CPUState
*cpu
);
108 void (*do_interrupt
)(CPUState
*cpu
);
109 CPUUnassignedAccess do_unassigned_access
;
110 int (*memory_rw_debug
)(CPUState
*cpu
, vaddr addr
,
111 uint8_t *buf
, int len
, bool is_write
);
112 void (*dump_state
)(CPUState
*cpu
, FILE *f
, fprintf_function cpu_fprintf
,
114 void (*dump_statistics
)(CPUState
*cpu
, FILE *f
,
115 fprintf_function cpu_fprintf
, int flags
);
116 int64_t (*get_arch_id
)(CPUState
*cpu
);
117 bool (*get_paging_enabled
)(const CPUState
*cpu
);
118 void (*get_memory_mapping
)(CPUState
*cpu
, MemoryMappingList
*list
,
120 void (*set_pc
)(CPUState
*cpu
, vaddr value
);
121 void (*synchronize_from_tb
)(CPUState
*cpu
, struct TranslationBlock
*tb
);
122 int (*handle_mmu_fault
)(CPUState
*cpu
, vaddr address
, int rw
,
124 hwaddr (*get_phys_page_debug
)(CPUState
*cpu
, vaddr addr
);
125 int (*gdb_read_register
)(CPUState
*cpu
, uint8_t *buf
, int reg
);
126 int (*gdb_write_register
)(CPUState
*cpu
, uint8_t *buf
, int reg
);
128 int (*write_elf64_note
)(WriteCoreDumpFunction f
, CPUState
*cpu
,
129 int cpuid
, void *opaque
);
130 int (*write_elf64_qemunote
)(WriteCoreDumpFunction f
, CPUState
*cpu
,
132 int (*write_elf32_note
)(WriteCoreDumpFunction f
, CPUState
*cpu
,
133 int cpuid
, void *opaque
);
134 int (*write_elf32_qemunote
)(WriteCoreDumpFunction f
, CPUState
*cpu
,
137 const struct VMStateDescription
*vmsd
;
138 int gdb_num_core_regs
;
139 const char *gdb_core_xml_file
;
142 #ifdef HOST_WORDS_BIGENDIAN
143 typedef struct icount_decr_u16
{
148 typedef struct icount_decr_u16
{
154 typedef struct CPUWatchpoint
{
157 int flags
; /* BP_* */
158 QTAILQ_ENTRY(CPUWatchpoint
) entry
;
164 #define TB_JMP_CACHE_BITS 12
165 #define TB_JMP_CACHE_SIZE (1 << TB_JMP_CACHE_BITS)
169 * @cpu_index: CPU index (informative).
170 * @nr_cores: Number of cores within this CPU package.
171 * @nr_threads: Number of threads within this CPU.
172 * @numa_node: NUMA node this CPU is belonging to.
173 * @host_tid: Host thread ID.
174 * @running: #true if CPU is currently running (usermode).
175 * @created: Indicates whether the CPU thread has been successfully created.
176 * @interrupt_request: Indicates a pending interrupt request.
177 * @halted: Nonzero if the CPU is in suspended state.
178 * @stop: Indicates a pending stop request.
179 * @stopped: Indicates the CPU has been artificially stopped.
180 * @tcg_exit_req: Set to force TCG to stop executing linked TBs for this
181 * CPU and return to its top level loop.
182 * @singlestep_enabled: Flags for single-stepping.
183 * @icount_extra: Instructions until next timer event.
184 * @icount_decr: Number of cycles left, with interrupt flag in high bit.
185 * This allows a single read-compare-cbranch-write sequence to test
186 * for both decrementer underflow and exceptions.
187 * @can_do_io: Nonzero if memory-mapped IO is safe.
188 * @env_ptr: Pointer to subclass-specific CPUArchState field.
189 * @current_tb: Currently executing TB.
190 * @gdb_regs: Additional GDB registers.
191 * @gdb_num_regs: Number of total registers accessible to GDB.
192 * @gdb_num_g_regs: Number of registers in GDB 'g' packets.
193 * @next_cpu: Next CPU sharing TB cache.
194 * @opaque: User data.
195 * @mem_io_pc: Host Program Counter at which the memory was accessed.
196 * @mem_io_vaddr: Target virtual address at which the memory was accessed.
197 * @kvm_fd: vCPU file descriptor for KVM.
199 * State of one CPU core or thread.
203 DeviceState parent_obj
;
210 struct QemuThread
*thread
;
217 struct QemuCond
*halt_cond
;
218 struct qemu_work_item
*queued_work_first
, *queued_work_last
;
223 volatile sig_atomic_t exit_request
;
224 volatile sig_atomic_t tcg_exit_req
;
225 uint32_t interrupt_request
;
226 int singlestep_enabled
;
227 int64_t icount_extra
;
231 MemoryListener
*tcg_as_listener
;
233 void *env_ptr
; /* CPUArchState */
234 struct TranslationBlock
*current_tb
;
235 struct TranslationBlock
*tb_jmp_cache
[TB_JMP_CACHE_SIZE
];
236 struct GDBRegisterState
*gdb_regs
;
239 QTAILQ_ENTRY(CPUState
) node
;
241 QTAILQ_HEAD(watchpoints_head
, CPUWatchpoint
) watchpoints
;
242 CPUWatchpoint
*watchpoint_hit
;
246 /* In order to avoid passing too many arguments to the MMIO helpers,
247 * we store some rarely used information in the CPU context.
254 struct KVMState
*kvm_state
;
255 struct kvm_run
*kvm_run
;
257 /* TODO Move common fields from CPUArchState here. */
258 int cpu_index
; /* used by alpha TCG */
259 uint32_t halted
; /* used by alpha, cris, ppc TCG */
265 int32_t exception_index
; /* used by m68k TCG */
268 QTAILQ_HEAD(CPUTailQ
, CPUState
);
269 extern struct CPUTailQ cpus
;
270 #define CPU_NEXT(cpu) QTAILQ_NEXT(cpu, node)
271 #define CPU_FOREACH(cpu) QTAILQ_FOREACH(cpu, &cpus, node)
272 #define CPU_FOREACH_SAFE(cpu, next_cpu) \
273 QTAILQ_FOREACH_SAFE(cpu, &cpus, node, next_cpu)
274 #define first_cpu QTAILQ_FIRST(&cpus)
276 DECLARE_TLS(CPUState
*, current_cpu
);
277 #define current_cpu tls_var(current_cpu)
280 * cpu_paging_enabled:
281 * @cpu: The CPU whose state is to be inspected.
283 * Returns: %true if paging is enabled, %false otherwise.
285 bool cpu_paging_enabled(const CPUState
*cpu
);
288 * cpu_get_memory_mapping:
289 * @cpu: The CPU whose memory mappings are to be obtained.
290 * @list: Where to write the memory mappings to.
291 * @errp: Pointer for reporting an #Error.
293 void cpu_get_memory_mapping(CPUState
*cpu
, MemoryMappingList
*list
,
297 * cpu_write_elf64_note:
298 * @f: pointer to a function that writes memory to a file
299 * @cpu: The CPU whose memory is to be dumped
300 * @cpuid: ID number of the CPU
301 * @opaque: pointer to the CPUState struct
303 int cpu_write_elf64_note(WriteCoreDumpFunction f
, CPUState
*cpu
,
304 int cpuid
, void *opaque
);
307 * cpu_write_elf64_qemunote:
308 * @f: pointer to a function that writes memory to a file
309 * @cpu: The CPU whose memory is to be dumped
310 * @cpuid: ID number of the CPU
311 * @opaque: pointer to the CPUState struct
313 int cpu_write_elf64_qemunote(WriteCoreDumpFunction f
, CPUState
*cpu
,
317 * cpu_write_elf32_note:
318 * @f: pointer to a function that writes memory to a file
319 * @cpu: The CPU whose memory is to be dumped
320 * @cpuid: ID number of the CPU
321 * @opaque: pointer to the CPUState struct
323 int cpu_write_elf32_note(WriteCoreDumpFunction f
, CPUState
*cpu
,
324 int cpuid
, void *opaque
);
327 * cpu_write_elf32_qemunote:
328 * @f: pointer to a function that writes memory to a file
329 * @cpu: The CPU whose memory is to be dumped
330 * @cpuid: ID number of the CPU
331 * @opaque: pointer to the CPUState struct
333 int cpu_write_elf32_qemunote(WriteCoreDumpFunction f
, CPUState
*cpu
,
339 * @CPU_DUMP_FPU: dump FPU register state, not just integer
340 * @CPU_DUMP_CCOP: dump info about TCG QEMU's condition code optimization state
343 CPU_DUMP_CODE
= 0x00010000,
344 CPU_DUMP_FPU
= 0x00020000,
345 CPU_DUMP_CCOP
= 0x00040000,
350 * @cpu: The CPU whose state is to be dumped.
351 * @f: File to dump to.
352 * @cpu_fprintf: Function to dump with.
353 * @flags: Flags what to dump.
357 void cpu_dump_state(CPUState
*cpu
, FILE *f
, fprintf_function cpu_fprintf
,
361 * cpu_dump_statistics:
362 * @cpu: The CPU whose state is to be dumped.
363 * @f: File to dump to.
364 * @cpu_fprintf: Function to dump with.
365 * @flags: Flags what to dump.
367 * Dumps CPU statistics.
369 void cpu_dump_statistics(CPUState
*cpu
, FILE *f
, fprintf_function cpu_fprintf
,
372 #ifndef CONFIG_USER_ONLY
374 * cpu_get_phys_page_debug:
375 * @cpu: The CPU to obtain the physical page address for.
376 * @addr: The virtual address.
378 * Obtains the physical page corresponding to a virtual one.
379 * Use it only for debugging because no protection checks are done.
381 * Returns: Corresponding physical page address or -1 if no page found.
383 static inline hwaddr
cpu_get_phys_page_debug(CPUState
*cpu
, vaddr addr
)
385 CPUClass
*cc
= CPU_GET_CLASS(cpu
);
387 return cc
->get_phys_page_debug(cpu
, addr
);
393 * @cpu: The CPU whose state is to be reset.
395 void cpu_reset(CPUState
*cpu
);
399 * @typename: The CPU base type.
400 * @cpu_model: The model string without any parameters.
402 * Looks up a CPU #ObjectClass matching name @cpu_model.
404 * Returns: A #CPUClass or %NULL if not matching class is found.
406 ObjectClass
*cpu_class_by_name(const char *typename
, const char *cpu_model
);
410 * @typename: The CPU base type.
411 * @cpu_model: The model string including optional parameters.
413 * Instantiates a CPU, processes optional parameters and realizes the CPU.
415 * Returns: A #CPUState or %NULL if an error occurred.
417 CPUState
*cpu_generic_init(const char *typename
, const char *cpu_model
);
421 * @cpu: The vCPU to check.
423 * Checks whether the CPU has work to do.
425 * Returns: %true if the CPU has work, %false otherwise.
427 static inline bool cpu_has_work(CPUState
*cpu
)
429 CPUClass
*cc
= CPU_GET_CLASS(cpu
);
431 g_assert(cc
->has_work
);
432 return cc
->has_work(cpu
);
437 * @cpu: The vCPU to check against.
439 * Checks whether the caller is executing on the vCPU thread.
441 * Returns: %true if called from @cpu's thread, %false otherwise.
443 bool qemu_cpu_is_self(CPUState
*cpu
);
447 * @cpu: The vCPU to kick.
449 * Kicks @cpu's thread.
451 void qemu_cpu_kick(CPUState
*cpu
);
455 * @cpu: The CPU to check.
457 * Checks whether the CPU is stopped.
459 * Returns: %true if run state is not running or if artificially stopped;
462 bool cpu_is_stopped(CPUState
*cpu
);
466 * @cpu: The vCPU to run on.
467 * @func: The function to be executed.
468 * @data: Data to pass to the function.
470 * Schedules the function @func for execution on the vCPU @cpu.
472 void run_on_cpu(CPUState
*cpu
, void (*func
)(void *data
), void *data
);
476 * @cpu: The vCPU to run on.
477 * @func: The function to be executed.
478 * @data: Data to pass to the function.
480 * Schedules the function @func for execution on the vCPU @cpu asynchronously.
482 void async_run_on_cpu(CPUState
*cpu
, void (*func
)(void *data
), void *data
);
486 * @index: The CPUState@cpu_index value of the CPU to obtain.
488 * Gets a CPU matching @index.
490 * Returns: The CPU or %NULL if there is no matching CPU.
492 CPUState
*qemu_get_cpu(int index
);
496 * @id: Guest-exposed CPU ID to lookup.
498 * Search for CPU with specified ID.
500 * Returns: %true - CPU is found, %false - CPU isn't found.
502 bool cpu_exists(int64_t id
);
504 #ifndef CONFIG_USER_ONLY
506 typedef void (*CPUInterruptHandler
)(CPUState
*, int);
508 extern CPUInterruptHandler cpu_interrupt_handler
;
512 * @cpu: The CPU to set an interrupt on.
513 * @mask: The interupts to set.
515 * Invokes the interrupt handler.
517 static inline void cpu_interrupt(CPUState
*cpu
, int mask
)
519 cpu_interrupt_handler(cpu
, mask
);
522 #else /* USER_ONLY */
524 void cpu_interrupt(CPUState
*cpu
, int mask
);
526 #endif /* USER_ONLY */
528 #ifndef CONFIG_USER_ONLY
530 static inline void cpu_unassigned_access(CPUState
*cpu
, hwaddr addr
,
531 bool is_write
, bool is_exec
,
532 int opaque
, unsigned size
)
534 CPUClass
*cc
= CPU_GET_CLASS(cpu
);
536 if (cc
->do_unassigned_access
) {
537 cc
->do_unassigned_access(cpu
, addr
, is_write
, is_exec
, opaque
, size
);
544 * cpu_reset_interrupt:
545 * @cpu: The CPU to clear the interrupt on.
546 * @mask: The interrupt mask to clear.
548 * Resets interrupts on the vCPU @cpu.
550 void cpu_reset_interrupt(CPUState
*cpu
, int mask
);
554 * @cpu: The CPU to exit.
556 * Requests the CPU @cpu to exit execution.
558 void cpu_exit(CPUState
*cpu
);
562 * @cpu: The CPU to resume.
564 * Resumes CPU, i.e. puts CPU into runnable state.
566 void cpu_resume(CPUState
*cpu
);
570 * @cpu: The vCPU to initialize.
572 * Initializes a vCPU.
574 void qemu_init_vcpu(CPUState
*cpu
);
576 #define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */
577 #define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */
578 #define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */
582 * @cpu: CPU to the flags for.
583 * @enabled: Flags to enable.
585 * Enables or disables single-stepping for @cpu.
587 void cpu_single_step(CPUState
*cpu
, int enabled
);
589 #ifdef CONFIG_SOFTMMU
590 extern const struct VMStateDescription vmstate_cpu_common
;
592 #define vmstate_cpu_common vmstate_dummy
595 #define VMSTATE_CPU() { \
596 .name = "parent_obj", \
597 .size = sizeof(CPUState), \
598 .vmsd = &vmstate_cpu_common, \
599 .flags = VMS_STRUCT, \