target/arm: Implement DBGVCR32_EL2 system register
[qemu/ar7.git] / include / qom / cpu.h
blob3f79a8e955c2ad28ceb7aa69ca2a578e509f5edd
1 /*
2 * QEMU CPU model
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>
20 #ifndef QEMU_CPU_H
21 #define QEMU_CPU_H
23 #include "hw/qdev-core.h"
24 #include "disas/bfd.h"
25 #include "exec/hwaddr.h"
26 #include "exec/memattrs.h"
27 #include "qemu/bitmap.h"
28 #include "qemu/queue.h"
29 #include "qemu/thread.h"
31 typedef int (*WriteCoreDumpFunction)(const void *buf, size_t size,
32 void *opaque);
34 /**
35 * vaddr:
36 * Type wide enough to contain any #target_ulong virtual address.
38 typedef uint64_t vaddr;
39 #define VADDR_PRId PRId64
40 #define VADDR_PRIu PRIu64
41 #define VADDR_PRIo PRIo64
42 #define VADDR_PRIx PRIx64
43 #define VADDR_PRIX PRIX64
44 #define VADDR_MAX UINT64_MAX
46 /**
47 * SECTION:cpu
48 * @section_id: QEMU-cpu
49 * @title: CPU Class
50 * @short_description: Base class for all CPUs
53 #define TYPE_CPU "cpu"
55 /* Since this macro is used a lot in hot code paths and in conjunction with
56 * FooCPU *foo_env_get_cpu(), we deviate from usual QOM practice by using
57 * an unchecked cast.
59 #define CPU(obj) ((CPUState *)(obj))
61 #define CPU_CLASS(class) OBJECT_CLASS_CHECK(CPUClass, (class), TYPE_CPU)
62 #define CPU_GET_CLASS(obj) OBJECT_GET_CLASS(CPUClass, (obj), TYPE_CPU)
64 typedef enum MMUAccessType {
65 MMU_DATA_LOAD = 0,
66 MMU_DATA_STORE = 1,
67 MMU_INST_FETCH = 2
68 } MMUAccessType;
70 typedef struct CPUWatchpoint CPUWatchpoint;
72 typedef void (*CPUUnassignedAccess)(CPUState *cpu, hwaddr addr,
73 bool is_write, bool is_exec, int opaque,
74 unsigned size);
76 struct TranslationBlock;
78 /**
79 * CPUClass:
80 * @class_by_name: Callback to map -cpu command line model name to an
81 * instantiatable CPU type.
82 * @parse_features: Callback to parse command line arguments.
83 * @reset: Callback to reset the #CPUState to its initial state.
84 * @reset_dump_flags: #CPUDumpFlags to use for reset logging.
85 * @has_work: Callback for checking if there is work to do.
86 * @do_interrupt: Callback for interrupt handling.
87 * @do_unassigned_access: Callback for unassigned access handling.
88 * @do_unaligned_access: Callback for unaligned access handling, if
89 * the target defines #ALIGNED_ONLY.
90 * @virtio_is_big_endian: Callback to return %true if a CPU which supports
91 * runtime configurable endianness is currently big-endian. Non-configurable
92 * CPUs can use the default implementation of this method. This method should
93 * not be used by any callers other than the pre-1.0 virtio devices.
94 * @memory_rw_debug: Callback for GDB memory access.
95 * @dump_state: Callback for dumping state.
96 * @dump_statistics: Callback for dumping statistics.
97 * @get_arch_id: Callback for getting architecture-dependent CPU ID.
98 * @get_paging_enabled: Callback for inquiring whether paging is enabled.
99 * @get_memory_mapping: Callback for obtaining the memory mappings.
100 * @set_pc: Callback for setting the Program Counter register.
101 * @synchronize_from_tb: Callback for synchronizing state from a TCG
102 * #TranslationBlock.
103 * @handle_mmu_fault: Callback for handling an MMU fault.
104 * @get_phys_page_debug: Callback for obtaining a physical address.
105 * @get_phys_page_attrs_debug: Callback for obtaining a physical address and the
106 * associated memory transaction attributes to use for the access.
107 * CPUs which use memory transaction attributes should implement this
108 * instead of get_phys_page_debug.
109 * @asidx_from_attrs: Callback to return the CPU AddressSpace to use for
110 * a memory access with the specified memory transaction attributes.
111 * @gdb_read_register: Callback for letting GDB read a register.
112 * @gdb_write_register: Callback for letting GDB write a register.
113 * @debug_check_watchpoint: Callback: return true if the architectural
114 * watchpoint whose address has matched should really fire.
115 * @debug_excp_handler: Callback for handling debug exceptions.
116 * @write_elf64_note: Callback for writing a CPU-specific ELF note to a
117 * 64-bit VM coredump.
118 * @write_elf32_qemunote: Callback for writing a CPU- and QEMU-specific ELF
119 * note to a 32-bit VM coredump.
120 * @write_elf32_note: Callback for writing a CPU-specific ELF note to a
121 * 32-bit VM coredump.
122 * @write_elf32_qemunote: Callback for writing a CPU- and QEMU-specific ELF
123 * note to a 32-bit VM coredump.
124 * @vmsd: State description for migration.
125 * @gdb_num_core_regs: Number of core registers accessible to GDB.
126 * @gdb_core_xml_file: File name for core registers GDB XML description.
127 * @gdb_stop_before_watchpoint: Indicates whether GDB expects the CPU to stop
128 * before the insn which triggers a watchpoint rather than after it.
129 * @gdb_arch_name: Optional callback that returns the architecture name known
130 * to GDB. The caller must free the returned string with g_free.
131 * @cpu_exec_enter: Callback for cpu_exec preparation.
132 * @cpu_exec_exit: Callback for cpu_exec cleanup.
133 * @cpu_exec_interrupt: Callback for processing interrupts in cpu_exec.
134 * @disas_set_info: Setup architecture specific components of disassembly info
136 * Represents a CPU family or model.
138 typedef struct CPUClass {
139 /*< private >*/
140 DeviceClass parent_class;
141 /*< public >*/
143 ObjectClass *(*class_by_name)(const char *cpu_model);
144 void (*parse_features)(const char *typename, char *str, Error **errp);
146 void (*reset)(CPUState *cpu);
147 int reset_dump_flags;
148 bool (*has_work)(CPUState *cpu);
149 void (*do_interrupt)(CPUState *cpu);
150 CPUUnassignedAccess do_unassigned_access;
151 void (*do_unaligned_access)(CPUState *cpu, vaddr addr,
152 MMUAccessType access_type,
153 int mmu_idx, uintptr_t retaddr);
154 bool (*virtio_is_big_endian)(CPUState *cpu);
155 int (*memory_rw_debug)(CPUState *cpu, vaddr addr,
156 uint8_t *buf, int len, bool is_write);
157 void (*dump_state)(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
158 int flags);
159 void (*dump_statistics)(CPUState *cpu, FILE *f,
160 fprintf_function cpu_fprintf, int flags);
161 int64_t (*get_arch_id)(CPUState *cpu);
162 bool (*get_paging_enabled)(const CPUState *cpu);
163 void (*get_memory_mapping)(CPUState *cpu, MemoryMappingList *list,
164 Error **errp);
165 void (*set_pc)(CPUState *cpu, vaddr value);
166 void (*synchronize_from_tb)(CPUState *cpu, struct TranslationBlock *tb);
167 int (*handle_mmu_fault)(CPUState *cpu, vaddr address, int rw,
168 int mmu_index);
169 hwaddr (*get_phys_page_debug)(CPUState *cpu, vaddr addr);
170 hwaddr (*get_phys_page_attrs_debug)(CPUState *cpu, vaddr addr,
171 MemTxAttrs *attrs);
172 int (*asidx_from_attrs)(CPUState *cpu, MemTxAttrs attrs);
173 int (*gdb_read_register)(CPUState *cpu, uint8_t *buf, int reg);
174 int (*gdb_write_register)(CPUState *cpu, uint8_t *buf, int reg);
175 bool (*debug_check_watchpoint)(CPUState *cpu, CPUWatchpoint *wp);
176 void (*debug_excp_handler)(CPUState *cpu);
178 int (*write_elf64_note)(WriteCoreDumpFunction f, CPUState *cpu,
179 int cpuid, void *opaque);
180 int (*write_elf64_qemunote)(WriteCoreDumpFunction f, CPUState *cpu,
181 void *opaque);
182 int (*write_elf32_note)(WriteCoreDumpFunction f, CPUState *cpu,
183 int cpuid, void *opaque);
184 int (*write_elf32_qemunote)(WriteCoreDumpFunction f, CPUState *cpu,
185 void *opaque);
187 const struct VMStateDescription *vmsd;
188 int gdb_num_core_regs;
189 const char *gdb_core_xml_file;
190 gchar * (*gdb_arch_name)(CPUState *cpu);
191 bool gdb_stop_before_watchpoint;
193 void (*cpu_exec_enter)(CPUState *cpu);
194 void (*cpu_exec_exit)(CPUState *cpu);
195 bool (*cpu_exec_interrupt)(CPUState *cpu, int interrupt_request);
197 void (*disas_set_info)(CPUState *cpu, disassemble_info *info);
198 } CPUClass;
200 #ifdef HOST_WORDS_BIGENDIAN
201 typedef struct icount_decr_u16 {
202 uint16_t high;
203 uint16_t low;
204 } icount_decr_u16;
205 #else
206 typedef struct icount_decr_u16 {
207 uint16_t low;
208 uint16_t high;
209 } icount_decr_u16;
210 #endif
212 typedef struct CPUBreakpoint {
213 vaddr pc;
214 int flags; /* BP_* */
215 QTAILQ_ENTRY(CPUBreakpoint) entry;
216 } CPUBreakpoint;
218 struct CPUWatchpoint {
219 vaddr vaddr;
220 vaddr len;
221 vaddr hitaddr;
222 MemTxAttrs hitattrs;
223 int flags; /* BP_* */
224 QTAILQ_ENTRY(CPUWatchpoint) entry;
227 struct KVMState;
228 struct kvm_run;
230 #define TB_JMP_CACHE_BITS 12
231 #define TB_JMP_CACHE_SIZE (1 << TB_JMP_CACHE_BITS)
233 /* work queue */
235 /* The union type allows passing of 64 bit target pointers on 32 bit
236 * hosts in a single parameter
238 typedef union {
239 int host_int;
240 unsigned long host_ulong;
241 void *host_ptr;
242 vaddr target_ptr;
243 } run_on_cpu_data;
245 #define RUN_ON_CPU_HOST_PTR(p) ((run_on_cpu_data){.host_ptr = (p)})
246 #define RUN_ON_CPU_HOST_INT(i) ((run_on_cpu_data){.host_int = (i)})
247 #define RUN_ON_CPU_HOST_ULONG(ul) ((run_on_cpu_data){.host_ulong = (ul)})
248 #define RUN_ON_CPU_TARGET_PTR(v) ((run_on_cpu_data){.target_ptr = (v)})
249 #define RUN_ON_CPU_NULL RUN_ON_CPU_HOST_PTR(NULL)
251 typedef void (*run_on_cpu_func)(CPUState *cpu, run_on_cpu_data data);
253 struct qemu_work_item;
256 * CPUState:
257 * @cpu_index: CPU index (informative).
258 * @nr_cores: Number of cores within this CPU package.
259 * @nr_threads: Number of threads within this CPU.
260 * @numa_node: NUMA node this CPU is belonging to.
261 * @host_tid: Host thread ID.
262 * @running: #true if CPU is currently running (lockless).
263 * @has_waiter: #true if a CPU is currently waiting for the cpu_exec_end;
264 * valid under cpu_list_lock.
265 * @created: Indicates whether the CPU thread has been successfully created.
266 * @interrupt_request: Indicates a pending interrupt request.
267 * @halted: Nonzero if the CPU is in suspended state.
268 * @stop: Indicates a pending stop request.
269 * @stopped: Indicates the CPU has been artificially stopped.
270 * @unplug: Indicates a pending CPU unplug request.
271 * @crash_occurred: Indicates the OS reported a crash (panic) for this CPU
272 * @tcg_exit_req: Set to force TCG to stop executing linked TBs for this
273 * CPU and return to its top level loop.
274 * @singlestep_enabled: Flags for single-stepping.
275 * @icount_extra: Instructions until next timer event.
276 * @icount_decr: Number of cycles left, with interrupt flag in high bit.
277 * This allows a single read-compare-cbranch-write sequence to test
278 * for both decrementer underflow and exceptions.
279 * @can_do_io: Nonzero if memory-mapped IO is safe. Deterministic execution
280 * requires that IO only be performed on the last instruction of a TB
281 * so that interrupts take effect immediately.
282 * @cpu_ases: Pointer to array of CPUAddressSpaces (which define the
283 * AddressSpaces this CPU has)
284 * @num_ases: number of CPUAddressSpaces in @cpu_ases
285 * @as: Pointer to the first AddressSpace, for the convenience of targets which
286 * only have a single AddressSpace
287 * @env_ptr: Pointer to subclass-specific CPUArchState field.
288 * @gdb_regs: Additional GDB registers.
289 * @gdb_num_regs: Number of total registers accessible to GDB.
290 * @gdb_num_g_regs: Number of registers in GDB 'g' packets.
291 * @next_cpu: Next CPU sharing TB cache.
292 * @opaque: User data.
293 * @mem_io_pc: Host Program Counter at which the memory was accessed.
294 * @mem_io_vaddr: Target virtual address at which the memory was accessed.
295 * @kvm_fd: vCPU file descriptor for KVM.
296 * @work_mutex: Lock to prevent multiple access to queued_work_*.
297 * @queued_work_first: First asynchronous work pending.
298 * @trace_dstate: Dynamic tracing state of events for this vCPU (bitmask).
300 * State of one CPU core or thread.
302 struct CPUState {
303 /*< private >*/
304 DeviceState parent_obj;
305 /*< public >*/
307 int nr_cores;
308 int nr_threads;
309 int numa_node;
311 struct QemuThread *thread;
312 #ifdef _WIN32
313 HANDLE hThread;
314 #endif
315 int thread_id;
316 uint32_t host_tid;
317 bool running, has_waiter;
318 struct QemuCond *halt_cond;
319 bool thread_kicked;
320 bool created;
321 bool stop;
322 bool stopped;
323 bool unplug;
324 bool crash_occurred;
325 bool exit_request;
326 uint32_t interrupt_request;
327 int singlestep_enabled;
328 int64_t icount_extra;
329 sigjmp_buf jmp_env;
331 QemuMutex work_mutex;
332 struct qemu_work_item *queued_work_first, *queued_work_last;
334 CPUAddressSpace *cpu_ases;
335 int num_ases;
336 AddressSpace *as;
337 MemoryRegion *memory;
339 void *env_ptr; /* CPUArchState */
341 /* Writes protected by tb_lock, reads not thread-safe */
342 struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE];
344 struct GDBRegisterState *gdb_regs;
345 int gdb_num_regs;
346 int gdb_num_g_regs;
347 QTAILQ_ENTRY(CPUState) node;
349 /* ice debug support */
350 QTAILQ_HEAD(breakpoints_head, CPUBreakpoint) breakpoints;
352 QTAILQ_HEAD(watchpoints_head, CPUWatchpoint) watchpoints;
353 CPUWatchpoint *watchpoint_hit;
355 void *opaque;
357 /* In order to avoid passing too many arguments to the MMIO helpers,
358 * we store some rarely used information in the CPU context.
360 uintptr_t mem_io_pc;
361 vaddr mem_io_vaddr;
363 int kvm_fd;
364 bool kvm_vcpu_dirty;
365 struct KVMState *kvm_state;
366 struct kvm_run *kvm_run;
369 * Used for events with 'vcpu' and *without* the 'disabled' properties.
370 * Dynamically allocated based on bitmap requried to hold up to
371 * trace_get_vcpu_event_count() entries.
373 unsigned long *trace_dstate;
375 /* TODO Move common fields from CPUArchState here. */
376 int cpu_index; /* used by alpha TCG */
377 uint32_t halted; /* used by alpha, cris, ppc TCG */
378 union {
379 uint32_t u32;
380 icount_decr_u16 u16;
381 } icount_decr;
382 uint32_t can_do_io;
383 int32_t exception_index; /* used by m68k TCG */
385 /* Used to keep track of an outstanding cpu throttle thread for migration
386 * autoconverge
388 bool throttle_thread_scheduled;
390 /* Note that this is accessed at the start of every TB via a negative
391 offset from AREG0. Leave this field at the end so as to make the
392 (absolute value) offset as small as possible. This reduces code
393 size, especially for hosts without large memory offsets. */
394 uint32_t tcg_exit_req;
397 QTAILQ_HEAD(CPUTailQ, CPUState);
398 extern struct CPUTailQ cpus;
399 #define CPU_NEXT(cpu) QTAILQ_NEXT(cpu, node)
400 #define CPU_FOREACH(cpu) QTAILQ_FOREACH(cpu, &cpus, node)
401 #define CPU_FOREACH_SAFE(cpu, next_cpu) \
402 QTAILQ_FOREACH_SAFE(cpu, &cpus, node, next_cpu)
403 #define CPU_FOREACH_REVERSE(cpu) \
404 QTAILQ_FOREACH_REVERSE(cpu, &cpus, CPUTailQ, node)
405 #define first_cpu QTAILQ_FIRST(&cpus)
407 extern __thread CPUState *current_cpu;
410 * cpu_paging_enabled:
411 * @cpu: The CPU whose state is to be inspected.
413 * Returns: %true if paging is enabled, %false otherwise.
415 bool cpu_paging_enabled(const CPUState *cpu);
418 * cpu_get_memory_mapping:
419 * @cpu: The CPU whose memory mappings are to be obtained.
420 * @list: Where to write the memory mappings to.
421 * @errp: Pointer for reporting an #Error.
423 void cpu_get_memory_mapping(CPUState *cpu, MemoryMappingList *list,
424 Error **errp);
427 * cpu_write_elf64_note:
428 * @f: pointer to a function that writes memory to a file
429 * @cpu: The CPU whose memory is to be dumped
430 * @cpuid: ID number of the CPU
431 * @opaque: pointer to the CPUState struct
433 int cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cpu,
434 int cpuid, void *opaque);
437 * cpu_write_elf64_qemunote:
438 * @f: pointer to a function that writes memory to a file
439 * @cpu: The CPU whose memory is to be dumped
440 * @cpuid: ID number of the CPU
441 * @opaque: pointer to the CPUState struct
443 int cpu_write_elf64_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
444 void *opaque);
447 * cpu_write_elf32_note:
448 * @f: pointer to a function that writes memory to a file
449 * @cpu: The CPU whose memory is to be dumped
450 * @cpuid: ID number of the CPU
451 * @opaque: pointer to the CPUState struct
453 int cpu_write_elf32_note(WriteCoreDumpFunction f, CPUState *cpu,
454 int cpuid, void *opaque);
457 * cpu_write_elf32_qemunote:
458 * @f: pointer to a function that writes memory to a file
459 * @cpu: The CPU whose memory is to be dumped
460 * @cpuid: ID number of the CPU
461 * @opaque: pointer to the CPUState struct
463 int cpu_write_elf32_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
464 void *opaque);
467 * CPUDumpFlags:
468 * @CPU_DUMP_CODE:
469 * @CPU_DUMP_FPU: dump FPU register state, not just integer
470 * @CPU_DUMP_CCOP: dump info about TCG QEMU's condition code optimization state
472 enum CPUDumpFlags {
473 CPU_DUMP_CODE = 0x00010000,
474 CPU_DUMP_FPU = 0x00020000,
475 CPU_DUMP_CCOP = 0x00040000,
479 * cpu_dump_state:
480 * @cpu: The CPU whose state is to be dumped.
481 * @f: File to dump to.
482 * @cpu_fprintf: Function to dump with.
483 * @flags: Flags what to dump.
485 * Dumps CPU state.
487 void cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
488 int flags);
491 * cpu_dump_statistics:
492 * @cpu: The CPU whose state is to be dumped.
493 * @f: File to dump to.
494 * @cpu_fprintf: Function to dump with.
495 * @flags: Flags what to dump.
497 * Dumps CPU statistics.
499 void cpu_dump_statistics(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
500 int flags);
502 #ifndef CONFIG_USER_ONLY
504 * cpu_get_phys_page_attrs_debug:
505 * @cpu: The CPU to obtain the physical page address for.
506 * @addr: The virtual address.
507 * @attrs: Updated on return with the memory transaction attributes to use
508 * for this access.
510 * Obtains the physical page corresponding to a virtual one, together
511 * with the corresponding memory transaction attributes to use for the access.
512 * Use it only for debugging because no protection checks are done.
514 * Returns: Corresponding physical page address or -1 if no page found.
516 static inline hwaddr cpu_get_phys_page_attrs_debug(CPUState *cpu, vaddr addr,
517 MemTxAttrs *attrs)
519 CPUClass *cc = CPU_GET_CLASS(cpu);
521 if (cc->get_phys_page_attrs_debug) {
522 return cc->get_phys_page_attrs_debug(cpu, addr, attrs);
524 /* Fallback for CPUs which don't implement the _attrs_ hook */
525 *attrs = MEMTXATTRS_UNSPECIFIED;
526 return cc->get_phys_page_debug(cpu, addr);
530 * cpu_get_phys_page_debug:
531 * @cpu: The CPU to obtain the physical page address for.
532 * @addr: The virtual address.
534 * Obtains the physical page corresponding to a virtual one.
535 * Use it only for debugging because no protection checks are done.
537 * Returns: Corresponding physical page address or -1 if no page found.
539 static inline hwaddr cpu_get_phys_page_debug(CPUState *cpu, vaddr addr)
541 MemTxAttrs attrs = {};
543 return cpu_get_phys_page_attrs_debug(cpu, addr, &attrs);
546 /** cpu_asidx_from_attrs:
547 * @cpu: CPU
548 * @attrs: memory transaction attributes
550 * Returns the address space index specifying the CPU AddressSpace
551 * to use for a memory access with the given transaction attributes.
553 static inline int cpu_asidx_from_attrs(CPUState *cpu, MemTxAttrs attrs)
555 CPUClass *cc = CPU_GET_CLASS(cpu);
557 if (cc->asidx_from_attrs) {
558 return cc->asidx_from_attrs(cpu, attrs);
560 return 0;
562 #endif
565 * cpu_list_add:
566 * @cpu: The CPU to be added to the list of CPUs.
568 void cpu_list_add(CPUState *cpu);
571 * cpu_list_remove:
572 * @cpu: The CPU to be removed from the list of CPUs.
574 void cpu_list_remove(CPUState *cpu);
577 * cpu_reset:
578 * @cpu: The CPU whose state is to be reset.
580 void cpu_reset(CPUState *cpu);
583 * cpu_class_by_name:
584 * @typename: The CPU base type.
585 * @cpu_model: The model string without any parameters.
587 * Looks up a CPU #ObjectClass matching name @cpu_model.
589 * Returns: A #CPUClass or %NULL if not matching class is found.
591 ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
594 * cpu_generic_init:
595 * @typename: The CPU base type.
596 * @cpu_model: The model string including optional parameters.
598 * Instantiates a CPU, processes optional parameters and realizes the CPU.
600 * Returns: A #CPUState or %NULL if an error occurred.
602 CPUState *cpu_generic_init(const char *typename, const char *cpu_model);
605 * cpu_has_work:
606 * @cpu: The vCPU to check.
608 * Checks whether the CPU has work to do.
610 * Returns: %true if the CPU has work, %false otherwise.
612 static inline bool cpu_has_work(CPUState *cpu)
614 CPUClass *cc = CPU_GET_CLASS(cpu);
616 g_assert(cc->has_work);
617 return cc->has_work(cpu);
621 * qemu_cpu_is_self:
622 * @cpu: The vCPU to check against.
624 * Checks whether the caller is executing on the vCPU thread.
626 * Returns: %true if called from @cpu's thread, %false otherwise.
628 bool qemu_cpu_is_self(CPUState *cpu);
631 * qemu_cpu_kick:
632 * @cpu: The vCPU to kick.
634 * Kicks @cpu's thread.
636 void qemu_cpu_kick(CPUState *cpu);
639 * cpu_is_stopped:
640 * @cpu: The CPU to check.
642 * Checks whether the CPU is stopped.
644 * Returns: %true if run state is not running or if artificially stopped;
645 * %false otherwise.
647 bool cpu_is_stopped(CPUState *cpu);
650 * do_run_on_cpu:
651 * @cpu: The vCPU to run on.
652 * @func: The function to be executed.
653 * @data: Data to pass to the function.
654 * @mutex: Mutex to release while waiting for @func to run.
656 * Used internally in the implementation of run_on_cpu.
658 void do_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data,
659 QemuMutex *mutex);
662 * run_on_cpu:
663 * @cpu: The vCPU to run on.
664 * @func: The function to be executed.
665 * @data: Data to pass to the function.
667 * Schedules the function @func for execution on the vCPU @cpu.
669 void run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data);
672 * async_run_on_cpu:
673 * @cpu: The vCPU to run on.
674 * @func: The function to be executed.
675 * @data: Data to pass to the function.
677 * Schedules the function @func for execution on the vCPU @cpu asynchronously.
679 void async_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data);
682 * async_safe_run_on_cpu:
683 * @cpu: The vCPU to run on.
684 * @func: The function to be executed.
685 * @data: Data to pass to the function.
687 * Schedules the function @func for execution on the vCPU @cpu asynchronously,
688 * while all other vCPUs are sleeping.
690 * Unlike run_on_cpu and async_run_on_cpu, the function is run outside the
691 * BQL.
693 void async_safe_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data);
696 * qemu_get_cpu:
697 * @index: The CPUState@cpu_index value of the CPU to obtain.
699 * Gets a CPU matching @index.
701 * Returns: The CPU or %NULL if there is no matching CPU.
703 CPUState *qemu_get_cpu(int index);
706 * cpu_exists:
707 * @id: Guest-exposed CPU ID to lookup.
709 * Search for CPU with specified ID.
711 * Returns: %true - CPU is found, %false - CPU isn't found.
713 bool cpu_exists(int64_t id);
716 * cpu_throttle_set:
717 * @new_throttle_pct: Percent of sleep time. Valid range is 1 to 99.
719 * Throttles all vcpus by forcing them to sleep for the given percentage of
720 * time. A throttle_percentage of 25 corresponds to a 75% duty cycle roughly.
721 * (example: 10ms sleep for every 30ms awake).
723 * cpu_throttle_set can be called as needed to adjust new_throttle_pct.
724 * Once the throttling starts, it will remain in effect until cpu_throttle_stop
725 * is called.
727 void cpu_throttle_set(int new_throttle_pct);
730 * cpu_throttle_stop:
732 * Stops the vcpu throttling started by cpu_throttle_set.
734 void cpu_throttle_stop(void);
737 * cpu_throttle_active:
739 * Returns: %true if the vcpus are currently being throttled, %false otherwise.
741 bool cpu_throttle_active(void);
744 * cpu_throttle_get_percentage:
746 * Returns the vcpu throttle percentage. See cpu_throttle_set for details.
748 * Returns: The throttle percentage in range 1 to 99.
750 int cpu_throttle_get_percentage(void);
752 #ifndef CONFIG_USER_ONLY
754 typedef void (*CPUInterruptHandler)(CPUState *, int);
756 extern CPUInterruptHandler cpu_interrupt_handler;
759 * cpu_interrupt:
760 * @cpu: The CPU to set an interrupt on.
761 * @mask: The interupts to set.
763 * Invokes the interrupt handler.
765 static inline void cpu_interrupt(CPUState *cpu, int mask)
767 cpu_interrupt_handler(cpu, mask);
770 #else /* USER_ONLY */
772 void cpu_interrupt(CPUState *cpu, int mask);
774 #endif /* USER_ONLY */
776 #ifdef CONFIG_SOFTMMU
777 static inline void cpu_unassigned_access(CPUState *cpu, hwaddr addr,
778 bool is_write, bool is_exec,
779 int opaque, unsigned size)
781 CPUClass *cc = CPU_GET_CLASS(cpu);
783 if (cc->do_unassigned_access) {
784 cc->do_unassigned_access(cpu, addr, is_write, is_exec, opaque, size);
788 static inline void cpu_unaligned_access(CPUState *cpu, vaddr addr,
789 MMUAccessType access_type,
790 int mmu_idx, uintptr_t retaddr)
792 CPUClass *cc = CPU_GET_CLASS(cpu);
794 cc->do_unaligned_access(cpu, addr, access_type, mmu_idx, retaddr);
796 #endif
799 * cpu_set_pc:
800 * @cpu: The CPU to set the program counter for.
801 * @addr: Program counter value.
803 * Sets the program counter for a CPU.
805 static inline void cpu_set_pc(CPUState *cpu, vaddr addr)
807 CPUClass *cc = CPU_GET_CLASS(cpu);
809 cc->set_pc(cpu, addr);
813 * cpu_reset_interrupt:
814 * @cpu: The CPU to clear the interrupt on.
815 * @mask: The interrupt mask to clear.
817 * Resets interrupts on the vCPU @cpu.
819 void cpu_reset_interrupt(CPUState *cpu, int mask);
822 * cpu_exit:
823 * @cpu: The CPU to exit.
825 * Requests the CPU @cpu to exit execution.
827 void cpu_exit(CPUState *cpu);
830 * cpu_resume:
831 * @cpu: The CPU to resume.
833 * Resumes CPU, i.e. puts CPU into runnable state.
835 void cpu_resume(CPUState *cpu);
838 * cpu_remove:
839 * @cpu: The CPU to remove.
841 * Requests the CPU to be removed.
843 void cpu_remove(CPUState *cpu);
846 * cpu_remove_sync:
847 * @cpu: The CPU to remove.
849 * Requests the CPU to be removed and waits till it is removed.
851 void cpu_remove_sync(CPUState *cpu);
854 * process_queued_cpu_work() - process all items on CPU work queue
855 * @cpu: The CPU which work queue to process.
857 void process_queued_cpu_work(CPUState *cpu);
860 * cpu_exec_start:
861 * @cpu: The CPU for the current thread.
863 * Record that a CPU has started execution and can be interrupted with
864 * cpu_exit.
866 void cpu_exec_start(CPUState *cpu);
869 * cpu_exec_end:
870 * @cpu: The CPU for the current thread.
872 * Record that a CPU has stopped execution and exclusive sections
873 * can be executed without interrupting it.
875 void cpu_exec_end(CPUState *cpu);
878 * start_exclusive:
880 * Wait for a concurrent exclusive section to end, and then start
881 * a section of work that is run while other CPUs are not running
882 * between cpu_exec_start and cpu_exec_end. CPUs that are running
883 * cpu_exec are exited immediately. CPUs that call cpu_exec_start
884 * during the exclusive section go to sleep until this CPU calls
885 * end_exclusive.
887 void start_exclusive(void);
890 * end_exclusive:
892 * Concludes an exclusive execution section started by start_exclusive.
894 void end_exclusive(void);
897 * qemu_init_vcpu:
898 * @cpu: The vCPU to initialize.
900 * Initializes a vCPU.
902 void qemu_init_vcpu(CPUState *cpu);
904 #define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */
905 #define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */
906 #define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */
909 * cpu_single_step:
910 * @cpu: CPU to the flags for.
911 * @enabled: Flags to enable.
913 * Enables or disables single-stepping for @cpu.
915 void cpu_single_step(CPUState *cpu, int enabled);
917 /* Breakpoint/watchpoint flags */
918 #define BP_MEM_READ 0x01
919 #define BP_MEM_WRITE 0x02
920 #define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE)
921 #define BP_STOP_BEFORE_ACCESS 0x04
922 /* 0x08 currently unused */
923 #define BP_GDB 0x10
924 #define BP_CPU 0x20
925 #define BP_ANY (BP_GDB | BP_CPU)
926 #define BP_WATCHPOINT_HIT_READ 0x40
927 #define BP_WATCHPOINT_HIT_WRITE 0x80
928 #define BP_WATCHPOINT_HIT (BP_WATCHPOINT_HIT_READ | BP_WATCHPOINT_HIT_WRITE)
930 int cpu_breakpoint_insert(CPUState *cpu, vaddr pc, int flags,
931 CPUBreakpoint **breakpoint);
932 int cpu_breakpoint_remove(CPUState *cpu, vaddr pc, int flags);
933 void cpu_breakpoint_remove_by_ref(CPUState *cpu, CPUBreakpoint *breakpoint);
934 void cpu_breakpoint_remove_all(CPUState *cpu, int mask);
936 /* Return true if PC matches an installed breakpoint. */
937 static inline bool cpu_breakpoint_test(CPUState *cpu, vaddr pc, int mask)
939 CPUBreakpoint *bp;
941 if (unlikely(!QTAILQ_EMPTY(&cpu->breakpoints))) {
942 QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) {
943 if (bp->pc == pc && (bp->flags & mask)) {
944 return true;
948 return false;
951 int cpu_watchpoint_insert(CPUState *cpu, vaddr addr, vaddr len,
952 int flags, CPUWatchpoint **watchpoint);
953 int cpu_watchpoint_remove(CPUState *cpu, vaddr addr,
954 vaddr len, int flags);
955 void cpu_watchpoint_remove_by_ref(CPUState *cpu, CPUWatchpoint *watchpoint);
956 void cpu_watchpoint_remove_all(CPUState *cpu, int mask);
959 * cpu_get_address_space:
960 * @cpu: CPU to get address space from
961 * @asidx: index identifying which address space to get
963 * Return the requested address space of this CPU. @asidx
964 * specifies which address space to read.
966 AddressSpace *cpu_get_address_space(CPUState *cpu, int asidx);
968 void QEMU_NORETURN cpu_abort(CPUState *cpu, const char *fmt, ...)
969 GCC_FMT_ATTR(2, 3);
970 void cpu_exec_initfn(CPUState *cpu);
971 void cpu_exec_realizefn(CPUState *cpu, Error **errp);
972 void cpu_exec_unrealizefn(CPUState *cpu);
974 #ifdef CONFIG_SOFTMMU
975 extern const struct VMStateDescription vmstate_cpu_common;
976 #else
977 #define vmstate_cpu_common vmstate_dummy
978 #endif
980 #define VMSTATE_CPU() { \
981 .name = "parent_obj", \
982 .size = sizeof(CPUState), \
983 .vmsd = &vmstate_cpu_common, \
984 .flags = VMS_STRUCT, \
985 .offset = 0, \
988 #define UNASSIGNED_CPU_INDEX -1
990 #endif