Merge remote-tracking branch 'qemu/master'
[qemu/ar7.git] / include / qom / cpu.h
blob0671630ae3302a62270bc987d1e35ab97f269691
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 "qapi/qapi-types-run-state.h"
28 #include "qemu/bitmap.h"
29 #include "qemu/rcu_queue.h"
30 #include "qemu/queue.h"
31 #include "qemu/thread.h"
33 typedef int (*WriteCoreDumpFunction)(const void *buf, size_t size,
34 void *opaque);
36 /**
37 * vaddr:
38 * Type wide enough to contain any #target_ulong virtual address.
40 typedef uint64_t vaddr;
41 #define VADDR_PRId PRId64
42 #define VADDR_PRIu PRIu64
43 #define VADDR_PRIo PRIo64
44 #define VADDR_PRIx PRIx64
45 #define VADDR_PRIX PRIX64
46 #define VADDR_MAX UINT64_MAX
48 /**
49 * SECTION:cpu
50 * @section_id: QEMU-cpu
51 * @title: CPU Class
52 * @short_description: Base class for all CPUs
55 #define TYPE_CPU "cpu"
57 /* Since this macro is used a lot in hot code paths and in conjunction with
58 * FooCPU *foo_env_get_cpu(), we deviate from usual QOM practice by using
59 * an unchecked cast.
61 #define CPU(obj) ((CPUState *)(obj))
63 #define CPU_CLASS(class) OBJECT_CLASS_CHECK(CPUClass, (class), TYPE_CPU)
64 #define CPU_GET_CLASS(obj) OBJECT_GET_CLASS(CPUClass, (obj), TYPE_CPU)
66 typedef enum MMUAccessType {
67 MMU_DATA_LOAD = 0,
68 MMU_DATA_STORE = 1,
69 MMU_INST_FETCH = 2
70 } MMUAccessType;
72 typedef struct CPUWatchpoint CPUWatchpoint;
74 typedef void (*CPUUnassignedAccess)(CPUState *cpu, hwaddr addr,
75 bool is_write, bool is_exec, int opaque,
76 unsigned size);
78 struct TranslationBlock;
80 /**
81 * CPUClass:
82 * @class_by_name: Callback to map -cpu command line model name to an
83 * instantiatable CPU type.
84 * @parse_features: Callback to parse command line arguments.
85 * @reset: Callback to reset the #CPUState to its initial state.
86 * @reset_dump_flags: #CPUDumpFlags to use for reset logging.
87 * @has_work: Callback for checking if there is work to do.
88 * @do_interrupt: Callback for interrupt handling.
89 * @do_unassigned_access: Callback for unassigned access handling.
90 * (this is deprecated: new targets should use do_transaction_failed instead)
91 * @do_unaligned_access: Callback for unaligned access handling, if
92 * the target defines #ALIGNED_ONLY.
93 * @do_transaction_failed: Callback for handling failed memory transactions
94 * (ie bus faults or external aborts; not MMU faults)
95 * @virtio_is_big_endian: Callback to return %true if a CPU which supports
96 * runtime configurable endianness is currently big-endian. Non-configurable
97 * CPUs can use the default implementation of this method. This method should
98 * not be used by any callers other than the pre-1.0 virtio devices.
99 * @memory_rw_debug: Callback for GDB memory access.
100 * @dump_state: Callback for dumping state.
101 * @dump_statistics: Callback for dumping statistics.
102 * @get_arch_id: Callback for getting architecture-dependent CPU ID.
103 * @get_paging_enabled: Callback for inquiring whether paging is enabled.
104 * @get_memory_mapping: Callback for obtaining the memory mappings.
105 * @set_pc: Callback for setting the Program Counter register.
106 * @synchronize_from_tb: Callback for synchronizing state from a TCG
107 * #TranslationBlock.
108 * @handle_mmu_fault: Callback for handling an MMU fault.
109 * @get_phys_page_debug: Callback for obtaining a physical address.
110 * @get_phys_page_attrs_debug: Callback for obtaining a physical address and the
111 * associated memory transaction attributes to use for the access.
112 * CPUs which use memory transaction attributes should implement this
113 * instead of get_phys_page_debug.
114 * @asidx_from_attrs: Callback to return the CPU AddressSpace to use for
115 * a memory access with the specified memory transaction attributes.
116 * @gdb_read_register: Callback for letting GDB read a register.
117 * @gdb_write_register: Callback for letting GDB write a register.
118 * @debug_check_watchpoint: Callback: return true if the architectural
119 * watchpoint whose address has matched should really fire.
120 * @debug_excp_handler: Callback for handling debug exceptions.
121 * @write_elf64_note: Callback for writing a CPU-specific ELF note to a
122 * 64-bit VM coredump.
123 * @write_elf32_qemunote: Callback for writing a CPU- and QEMU-specific ELF
124 * note to a 32-bit VM coredump.
125 * @write_elf32_note: Callback for writing a CPU-specific ELF note to a
126 * 32-bit VM coredump.
127 * @write_elf32_qemunote: Callback for writing a CPU- and QEMU-specific ELF
128 * note to a 32-bit VM coredump.
129 * @vmsd: State description for migration.
130 * @gdb_num_core_regs: Number of core registers accessible to GDB.
131 * @gdb_core_xml_file: File name for core registers GDB XML description.
132 * @gdb_stop_before_watchpoint: Indicates whether GDB expects the CPU to stop
133 * before the insn which triggers a watchpoint rather than after it.
134 * @gdb_arch_name: Optional callback that returns the architecture name known
135 * to GDB. The caller must free the returned string with g_free.
136 * @gdb_get_dynamic_xml: Callback to return dynamically generated XML for the
137 * gdb stub. Returns a pointer to the XML contents for the specified XML file
138 * or NULL if the CPU doesn't have a dynamically generated content for it.
139 * @cpu_exec_enter: Callback for cpu_exec preparation.
140 * @cpu_exec_exit: Callback for cpu_exec cleanup.
141 * @cpu_exec_interrupt: Callback for processing interrupts in cpu_exec.
142 * @disas_set_info: Setup architecture specific components of disassembly info
143 * @adjust_watchpoint_address: Perform a target-specific adjustment to an
144 * address before attempting to match it against watchpoints.
146 * Represents a CPU family or model.
148 typedef struct CPUClass {
149 /*< private >*/
150 DeviceClass parent_class;
151 /*< public >*/
153 ObjectClass *(*class_by_name)(const char *cpu_model);
154 void (*parse_features)(const char *typename, char *str, Error **errp);
156 void (*reset)(CPUState *cpu);
157 int reset_dump_flags;
158 bool (*has_work)(CPUState *cpu);
159 void (*do_interrupt)(CPUState *cpu);
160 CPUUnassignedAccess do_unassigned_access;
161 void (*do_unaligned_access)(CPUState *cpu, vaddr addr,
162 MMUAccessType access_type,
163 int mmu_idx, uintptr_t retaddr);
164 void (*do_transaction_failed)(CPUState *cpu, hwaddr physaddr, vaddr addr,
165 unsigned size, MMUAccessType access_type,
166 int mmu_idx, MemTxAttrs attrs,
167 MemTxResult response, uintptr_t retaddr);
168 bool (*virtio_is_big_endian)(CPUState *cpu);
169 int (*memory_rw_debug)(CPUState *cpu, vaddr addr,
170 uint8_t *buf, int len, bool is_write);
171 void (*dump_state)(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
172 int flags);
173 GuestPanicInformation* (*get_crash_info)(CPUState *cpu);
174 void (*dump_statistics)(CPUState *cpu, FILE *f,
175 fprintf_function cpu_fprintf, int flags);
176 int64_t (*get_arch_id)(CPUState *cpu);
177 bool (*get_paging_enabled)(const CPUState *cpu);
178 void (*get_memory_mapping)(CPUState *cpu, MemoryMappingList *list,
179 Error **errp);
180 void (*set_pc)(CPUState *cpu, vaddr value);
181 void (*synchronize_from_tb)(CPUState *cpu, struct TranslationBlock *tb);
182 int (*handle_mmu_fault)(CPUState *cpu, vaddr address, int size, int rw,
183 int mmu_index);
184 hwaddr (*get_phys_page_debug)(CPUState *cpu, vaddr addr);
185 hwaddr (*get_phys_page_attrs_debug)(CPUState *cpu, vaddr addr,
186 MemTxAttrs *attrs);
187 int (*asidx_from_attrs)(CPUState *cpu, MemTxAttrs attrs);
188 int (*gdb_read_register)(CPUState *cpu, uint8_t *buf, int reg);
189 int (*gdb_write_register)(CPUState *cpu, uint8_t *buf, int reg);
190 bool (*debug_check_watchpoint)(CPUState *cpu, CPUWatchpoint *wp);
191 void (*debug_excp_handler)(CPUState *cpu);
193 int (*write_elf64_note)(WriteCoreDumpFunction f, CPUState *cpu,
194 int cpuid, void *opaque);
195 int (*write_elf64_qemunote)(WriteCoreDumpFunction f, CPUState *cpu,
196 void *opaque);
197 int (*write_elf32_note)(WriteCoreDumpFunction f, CPUState *cpu,
198 int cpuid, void *opaque);
199 int (*write_elf32_qemunote)(WriteCoreDumpFunction f, CPUState *cpu,
200 void *opaque);
202 const struct VMStateDescription *vmsd;
203 const char *gdb_core_xml_file;
204 gchar * (*gdb_arch_name)(CPUState *cpu);
205 const char * (*gdb_get_dynamic_xml)(CPUState *cpu, const char *xmlname);
206 void (*cpu_exec_enter)(CPUState *cpu);
207 void (*cpu_exec_exit)(CPUState *cpu);
208 bool (*cpu_exec_interrupt)(CPUState *cpu, int interrupt_request);
210 void (*disas_set_info)(CPUState *cpu, disassemble_info *info);
211 vaddr (*adjust_watchpoint_address)(CPUState *cpu, vaddr addr, int len);
212 void (*tcg_initialize)(void);
214 /* Keep non-pointer data at the end to minimize holes. */
215 int gdb_num_core_regs;
216 bool gdb_stop_before_watchpoint;
217 } CPUClass;
219 #ifdef HOST_WORDS_BIGENDIAN
220 typedef struct icount_decr_u16 {
221 uint16_t high;
222 uint16_t low;
223 } icount_decr_u16;
224 #else
225 typedef struct icount_decr_u16 {
226 uint16_t low;
227 uint16_t high;
228 } icount_decr_u16;
229 #endif
231 typedef struct CPUBreakpoint {
232 vaddr pc;
233 int flags; /* BP_* */
234 QTAILQ_ENTRY(CPUBreakpoint) entry;
235 } CPUBreakpoint;
237 struct CPUWatchpoint {
238 vaddr vaddr;
239 vaddr len;
240 vaddr hitaddr;
241 MemTxAttrs hitattrs;
242 int flags; /* BP_* */
243 QTAILQ_ENTRY(CPUWatchpoint) entry;
246 struct KVMState;
247 struct kvm_run;
249 struct hax_vcpu_state;
251 #define TB_JMP_CACHE_BITS 12
252 #define TB_JMP_CACHE_SIZE (1 << TB_JMP_CACHE_BITS)
254 /* work queue */
256 /* The union type allows passing of 64 bit target pointers on 32 bit
257 * hosts in a single parameter
259 typedef union {
260 int host_int;
261 unsigned long host_ulong;
262 void *host_ptr;
263 vaddr target_ptr;
264 } run_on_cpu_data;
266 #define RUN_ON_CPU_HOST_PTR(p) ((run_on_cpu_data){.host_ptr = (p)})
267 #define RUN_ON_CPU_HOST_INT(i) ((run_on_cpu_data){.host_int = (i)})
268 #define RUN_ON_CPU_HOST_ULONG(ul) ((run_on_cpu_data){.host_ulong = (ul)})
269 #define RUN_ON_CPU_TARGET_PTR(v) ((run_on_cpu_data){.target_ptr = (v)})
270 #define RUN_ON_CPU_NULL RUN_ON_CPU_HOST_PTR(NULL)
272 typedef void (*run_on_cpu_func)(CPUState *cpu, run_on_cpu_data data);
274 struct qemu_work_item;
276 #define CPU_UNSET_NUMA_NODE_ID -1
277 #define CPU_TRACE_DSTATE_MAX_EVENTS 32
280 * CPUState:
281 * @cpu_index: CPU index (informative).
282 * @nr_cores: Number of cores within this CPU package.
283 * @nr_threads: Number of threads within this CPU.
284 * @running: #true if CPU is currently running (lockless).
285 * @has_waiter: #true if a CPU is currently waiting for the cpu_exec_end;
286 * valid under cpu_list_lock.
287 * @created: Indicates whether the CPU thread has been successfully created.
288 * @interrupt_request: Indicates a pending interrupt request.
289 * @halted: Nonzero if the CPU is in suspended state.
290 * @stop: Indicates a pending stop request.
291 * @stopped: Indicates the CPU has been artificially stopped.
292 * @unplug: Indicates a pending CPU unplug request.
293 * @crash_occurred: Indicates the OS reported a crash (panic) for this CPU
294 * @singlestep_enabled: Flags for single-stepping.
295 * @icount_extra: Instructions until next timer event.
296 * @icount_decr: Low 16 bits: number of cycles left, only used in icount mode.
297 * High 16 bits: Set to -1 to force TCG to stop executing linked TBs for this
298 * CPU and return to its top level loop (even in non-icount mode).
299 * This allows a single read-compare-cbranch-write sequence to test
300 * for both decrementer underflow and exceptions.
301 * @can_do_io: Nonzero if memory-mapped IO is safe. Deterministic execution
302 * requires that IO only be performed on the last instruction of a TB
303 * so that interrupts take effect immediately.
304 * @cpu_ases: Pointer to array of CPUAddressSpaces (which define the
305 * AddressSpaces this CPU has)
306 * @num_ases: number of CPUAddressSpaces in @cpu_ases
307 * @as: Pointer to the first AddressSpace, for the convenience of targets which
308 * only have a single AddressSpace
309 * @env_ptr: Pointer to subclass-specific CPUArchState field.
310 * @gdb_regs: Additional GDB registers.
311 * @gdb_num_regs: Number of total registers accessible to GDB.
312 * @gdb_num_g_regs: Number of registers in GDB 'g' packets.
313 * @next_cpu: Next CPU sharing TB cache.
314 * @opaque: User data.
315 * @mem_io_pc: Host Program Counter at which the memory was accessed.
316 * @mem_io_vaddr: Target virtual address at which the memory was accessed.
317 * @kvm_fd: vCPU file descriptor for KVM.
318 * @work_mutex: Lock to prevent multiple access to queued_work_*.
319 * @queued_work_first: First asynchronous work pending.
320 * @trace_dstate_delayed: Delayed changes to trace_dstate (includes all changes
321 * to @trace_dstate).
322 * @trace_dstate: Dynamic tracing state of events for this vCPU (bitmask).
323 * @ignore_memory_transaction_failures: Cached copy of the MachineState
324 * flag of the same name: allows the board to suppress calling of the
325 * CPU do_transaction_failed hook function.
327 * State of one CPU core or thread.
329 struct CPUState {
330 /*< private >*/
331 DeviceState parent_obj;
332 /*< public >*/
334 int nr_cores;
335 int nr_threads;
337 struct QemuThread *thread;
338 #ifdef _WIN32
339 HANDLE hThread;
340 #endif
341 int thread_id;
342 bool running, has_waiter;
343 struct QemuCond *halt_cond;
344 bool thread_kicked;
345 bool created;
346 bool stop;
347 bool stopped;
348 /* Endianness, false = little endian, true = big endian. */
349 bool bigendian;
350 bool unplug;
351 bool crash_occurred;
352 bool exit_request;
353 uint32_t cflags_next_tb;
354 /* updates protected by BQL */
355 uint32_t interrupt_request;
356 int singlestep_enabled;
357 int64_t icount_budget;
358 int64_t icount_extra;
359 sigjmp_buf jmp_env;
361 QemuMutex work_mutex;
362 struct qemu_work_item *queued_work_first, *queued_work_last;
364 CPUAddressSpace *cpu_ases;
365 int num_ases;
366 AddressSpace *as;
367 MemoryRegion *memory;
369 void *env_ptr; /* CPUArchState */
371 /* Accessed in parallel; all accesses must be atomic */
372 struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE];
374 struct GDBRegisterState *gdb_regs;
375 int gdb_num_regs;
376 int gdb_num_g_regs;
377 QTAILQ_ENTRY(CPUState) node;
379 /* ice debug support */
380 QTAILQ_HEAD(breakpoints_head, CPUBreakpoint) breakpoints;
382 QTAILQ_HEAD(watchpoints_head, CPUWatchpoint) watchpoints;
383 CPUWatchpoint *watchpoint_hit;
385 void *opaque;
387 /* In order to avoid passing too many arguments to the MMIO helpers,
388 * we store some rarely used information in the CPU context.
390 uintptr_t mem_io_pc;
391 vaddr mem_io_vaddr;
393 * This is only needed for the legacy cpu_unassigned_access() hook;
394 * when all targets using it have been converted to use
395 * cpu_transaction_failed() instead it can be removed.
397 MMUAccessType mem_io_access_type;
399 int kvm_fd;
400 struct KVMState *kvm_state;
401 struct kvm_run *kvm_run;
403 /* Used for events with 'vcpu' and *without* the 'disabled' properties */
404 DECLARE_BITMAP(trace_dstate_delayed, CPU_TRACE_DSTATE_MAX_EVENTS);
405 DECLARE_BITMAP(trace_dstate, CPU_TRACE_DSTATE_MAX_EVENTS);
407 /* TODO Move common fields from CPUArchState here. */
408 int cpu_index;
409 uint32_t halted;
410 uint32_t can_do_io;
411 int32_t exception_index;
413 /* shared by kvm, hax and hvf */
414 bool vcpu_dirty;
416 /* Used to keep track of an outstanding cpu throttle thread for migration
417 * autoconverge
419 bool throttle_thread_scheduled;
421 bool ignore_memory_transaction_failures;
423 /* Note that this is accessed at the start of every TB via a negative
424 offset from AREG0. Leave this field at the end so as to make the
425 (absolute value) offset as small as possible. This reduces code
426 size, especially for hosts without large memory offsets. */
427 union {
428 uint32_t u32;
429 icount_decr_u16 u16;
430 } icount_decr;
432 struct hax_vcpu_state *hax_vcpu;
434 int hvf_fd;
436 /* track IOMMUs whose translations we've cached in the TCG TLB */
437 GArray *iommu_notifiers;
440 QTAILQ_HEAD(CPUTailQ, CPUState);
441 extern struct CPUTailQ cpus;
442 #define first_cpu QTAILQ_FIRST_RCU(&cpus)
443 #define CPU_NEXT(cpu) QTAILQ_NEXT_RCU(cpu, node)
444 #define CPU_FOREACH(cpu) QTAILQ_FOREACH_RCU(cpu, &cpus, node)
445 #define CPU_FOREACH_SAFE(cpu, next_cpu) \
446 QTAILQ_FOREACH_SAFE_RCU(cpu, &cpus, node, next_cpu)
448 extern __thread CPUState *current_cpu;
450 static inline void cpu_tb_jmp_cache_clear(CPUState *cpu)
452 unsigned int i;
454 for (i = 0; i < TB_JMP_CACHE_SIZE; i++) {
455 atomic_set(&cpu->tb_jmp_cache[i], NULL);
460 * qemu_tcg_mttcg_enabled:
461 * Check whether we are running MultiThread TCG or not.
463 * Returns: %true if we are in MTTCG mode %false otherwise.
465 extern bool mttcg_enabled;
466 #define qemu_tcg_mttcg_enabled() (mttcg_enabled)
469 * cpu_paging_enabled:
470 * @cpu: The CPU whose state is to be inspected.
472 * Returns: %true if paging is enabled, %false otherwise.
474 bool cpu_paging_enabled(const CPUState *cpu);
477 * cpu_get_memory_mapping:
478 * @cpu: The CPU whose memory mappings are to be obtained.
479 * @list: Where to write the memory mappings to.
480 * @errp: Pointer for reporting an #Error.
482 void cpu_get_memory_mapping(CPUState *cpu, MemoryMappingList *list,
483 Error **errp);
486 * cpu_write_elf64_note:
487 * @f: pointer to a function that writes memory to a file
488 * @cpu: The CPU whose memory is to be dumped
489 * @cpuid: ID number of the CPU
490 * @opaque: pointer to the CPUState struct
492 int cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cpu,
493 int cpuid, void *opaque);
496 * cpu_write_elf64_qemunote:
497 * @f: pointer to a function that writes memory to a file
498 * @cpu: The CPU whose memory is to be dumped
499 * @cpuid: ID number of the CPU
500 * @opaque: pointer to the CPUState struct
502 int cpu_write_elf64_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
503 void *opaque);
506 * cpu_write_elf32_note:
507 * @f: pointer to a function that writes memory to a file
508 * @cpu: The CPU whose memory is to be dumped
509 * @cpuid: ID number of the CPU
510 * @opaque: pointer to the CPUState struct
512 int cpu_write_elf32_note(WriteCoreDumpFunction f, CPUState *cpu,
513 int cpuid, void *opaque);
516 * cpu_write_elf32_qemunote:
517 * @f: pointer to a function that writes memory to a file
518 * @cpu: The CPU whose memory is to be dumped
519 * @cpuid: ID number of the CPU
520 * @opaque: pointer to the CPUState struct
522 int cpu_write_elf32_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
523 void *opaque);
526 * cpu_get_crash_info:
527 * @cpu: The CPU to get crash information for
529 * Gets the previously saved crash information.
530 * Caller is responsible for freeing the data.
532 GuestPanicInformation *cpu_get_crash_info(CPUState *cpu);
535 * CPUDumpFlags:
536 * @CPU_DUMP_CODE:
537 * @CPU_DUMP_FPU: dump FPU register state, not just integer
538 * @CPU_DUMP_CCOP: dump info about TCG QEMU's condition code optimization state
540 enum CPUDumpFlags {
541 CPU_DUMP_CODE = 0x00010000,
542 CPU_DUMP_FPU = 0x00020000,
543 CPU_DUMP_CCOP = 0x00040000,
547 * cpu_dump_state:
548 * @cpu: The CPU whose state is to be dumped.
549 * @f: File to dump to.
550 * @cpu_fprintf: Function to dump with.
551 * @flags: Flags what to dump.
553 * Dumps CPU state.
555 void cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
556 int flags);
559 * cpu_dump_statistics:
560 * @cpu: The CPU whose state is to be dumped.
561 * @f: File to dump to.
562 * @cpu_fprintf: Function to dump with.
563 * @flags: Flags what to dump.
565 * Dumps CPU statistics.
567 void cpu_dump_statistics(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
568 int flags);
570 #ifndef CONFIG_USER_ONLY
572 * cpu_get_phys_page_attrs_debug:
573 * @cpu: The CPU to obtain the physical page address for.
574 * @addr: The virtual address.
575 * @attrs: Updated on return with the memory transaction attributes to use
576 * for this access.
578 * Obtains the physical page corresponding to a virtual one, together
579 * with the corresponding memory transaction attributes to use for the access.
580 * Use it only for debugging because no protection checks are done.
582 * Returns: Corresponding physical page address or -1 if no page found.
584 static inline hwaddr cpu_get_phys_page_attrs_debug(CPUState *cpu, vaddr addr,
585 MemTxAttrs *attrs)
587 CPUClass *cc = CPU_GET_CLASS(cpu);
589 if (cc->get_phys_page_attrs_debug) {
590 return cc->get_phys_page_attrs_debug(cpu, addr, attrs);
592 /* Fallback for CPUs which don't implement the _attrs_ hook */
593 *attrs = MEMTXATTRS_UNSPECIFIED;
594 return cc->get_phys_page_debug(cpu, addr);
598 * cpu_get_phys_page_debug:
599 * @cpu: The CPU to obtain the physical page address for.
600 * @addr: The virtual address.
602 * Obtains the physical page corresponding to a virtual one.
603 * Use it only for debugging because no protection checks are done.
605 * Returns: Corresponding physical page address or -1 if no page found.
607 static inline hwaddr cpu_get_phys_page_debug(CPUState *cpu, vaddr addr)
609 MemTxAttrs attrs = {};
611 return cpu_get_phys_page_attrs_debug(cpu, addr, &attrs);
614 /** cpu_asidx_from_attrs:
615 * @cpu: CPU
616 * @attrs: memory transaction attributes
618 * Returns the address space index specifying the CPU AddressSpace
619 * to use for a memory access with the given transaction attributes.
621 static inline int cpu_asidx_from_attrs(CPUState *cpu, MemTxAttrs attrs)
623 CPUClass *cc = CPU_GET_CLASS(cpu);
624 int ret = 0;
626 if (cc->asidx_from_attrs) {
627 ret = cc->asidx_from_attrs(cpu, attrs);
628 assert(ret < cpu->num_ases && ret >= 0);
630 return ret;
632 #endif
635 * cpu_list_add:
636 * @cpu: The CPU to be added to the list of CPUs.
638 void cpu_list_add(CPUState *cpu);
641 * cpu_list_remove:
642 * @cpu: The CPU to be removed from the list of CPUs.
644 void cpu_list_remove(CPUState *cpu);
647 * cpu_reset:
648 * @cpu: The CPU whose state is to be reset.
650 void cpu_reset(CPUState *cpu);
653 * cpu_class_by_name:
654 * @typename: The CPU base type.
655 * @cpu_model: The model string without any parameters.
657 * Looks up a CPU #ObjectClass matching name @cpu_model.
659 * Returns: A #CPUClass or %NULL if not matching class is found.
661 ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
664 * cpu_create:
665 * @typename: The CPU type.
667 * Instantiates a CPU and realizes the CPU.
669 * Returns: A #CPUState or %NULL if an error occurred.
671 CPUState *cpu_create(const char *typename);
674 * parse_cpu_model:
675 * @cpu_model: The model string including optional parameters.
677 * processes optional parameters and registers them as global properties
679 * Returns: type of CPU to create or prints error and terminates process
680 * if an error occurred.
682 const char *parse_cpu_model(const char *cpu_model);
685 * cpu_has_work:
686 * @cpu: The vCPU to check.
688 * Checks whether the CPU has work to do.
690 * Returns: %true if the CPU has work, %false otherwise.
692 static inline bool cpu_has_work(CPUState *cpu)
694 CPUClass *cc = CPU_GET_CLASS(cpu);
696 g_assert(cc->has_work);
697 return cc->has_work(cpu);
701 * qemu_cpu_is_self:
702 * @cpu: The vCPU to check against.
704 * Checks whether the caller is executing on the vCPU thread.
706 * Returns: %true if called from @cpu's thread, %false otherwise.
708 bool qemu_cpu_is_self(CPUState *cpu);
711 * qemu_cpu_kick:
712 * @cpu: The vCPU to kick.
714 * Kicks @cpu's thread.
716 void qemu_cpu_kick(CPUState *cpu);
719 * cpu_is_stopped:
720 * @cpu: The CPU to check.
722 * Checks whether the CPU is stopped.
724 * Returns: %true if run state is not running or if artificially stopped;
725 * %false otherwise.
727 bool cpu_is_stopped(CPUState *cpu);
730 * do_run_on_cpu:
731 * @cpu: The vCPU to run on.
732 * @func: The function to be executed.
733 * @data: Data to pass to the function.
734 * @mutex: Mutex to release while waiting for @func to run.
736 * Used internally in the implementation of run_on_cpu.
738 void do_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data,
739 QemuMutex *mutex);
742 * run_on_cpu:
743 * @cpu: The vCPU to run on.
744 * @func: The function to be executed.
745 * @data: Data to pass to the function.
747 * Schedules the function @func for execution on the vCPU @cpu.
749 void run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data);
752 * async_run_on_cpu:
753 * @cpu: The vCPU to run on.
754 * @func: The function to be executed.
755 * @data: Data to pass to the function.
757 * Schedules the function @func for execution on the vCPU @cpu asynchronously.
759 void async_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data);
762 * async_safe_run_on_cpu:
763 * @cpu: The vCPU to run on.
764 * @func: The function to be executed.
765 * @data: Data to pass to the function.
767 * Schedules the function @func for execution on the vCPU @cpu asynchronously,
768 * while all other vCPUs are sleeping.
770 * Unlike run_on_cpu and async_run_on_cpu, the function is run outside the
771 * BQL.
773 void async_safe_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data);
776 * qemu_get_cpu:
777 * @index: The CPUState@cpu_index value of the CPU to obtain.
779 * Gets a CPU matching @index.
781 * Returns: The CPU or %NULL if there is no matching CPU.
783 CPUState *qemu_get_cpu(int index);
786 * cpu_exists:
787 * @id: Guest-exposed CPU ID to lookup.
789 * Search for CPU with specified ID.
791 * Returns: %true - CPU is found, %false - CPU isn't found.
793 bool cpu_exists(int64_t id);
796 * cpu_by_arch_id:
797 * @id: Guest-exposed CPU ID of the CPU to obtain.
799 * Get a CPU with matching @id.
801 * Returns: The CPU or %NULL if there is no matching CPU.
803 CPUState *cpu_by_arch_id(int64_t id);
806 * cpu_throttle_set:
807 * @new_throttle_pct: Percent of sleep time. Valid range is 1 to 99.
809 * Throttles all vcpus by forcing them to sleep for the given percentage of
810 * time. A throttle_percentage of 25 corresponds to a 75% duty cycle roughly.
811 * (example: 10ms sleep for every 30ms awake).
813 * cpu_throttle_set can be called as needed to adjust new_throttle_pct.
814 * Once the throttling starts, it will remain in effect until cpu_throttle_stop
815 * is called.
817 void cpu_throttle_set(int new_throttle_pct);
820 * cpu_throttle_stop:
822 * Stops the vcpu throttling started by cpu_throttle_set.
824 void cpu_throttle_stop(void);
827 * cpu_throttle_active:
829 * Returns: %true if the vcpus are currently being throttled, %false otherwise.
831 bool cpu_throttle_active(void);
834 * cpu_throttle_get_percentage:
836 * Returns the vcpu throttle percentage. See cpu_throttle_set for details.
838 * Returns: The throttle percentage in range 1 to 99.
840 int cpu_throttle_get_percentage(void);
842 #ifndef CONFIG_USER_ONLY
844 typedef void (*CPUInterruptHandler)(CPUState *, int);
846 extern CPUInterruptHandler cpu_interrupt_handler;
849 * cpu_interrupt:
850 * @cpu: The CPU to set an interrupt on.
851 * @mask: The interrupts to set.
853 * Invokes the interrupt handler.
855 static inline void cpu_interrupt(CPUState *cpu, int mask)
857 cpu_interrupt_handler(cpu, mask);
860 #else /* USER_ONLY */
862 void cpu_interrupt(CPUState *cpu, int mask);
864 #endif /* USER_ONLY */
866 #ifdef NEED_CPU_H
868 #ifdef CONFIG_SOFTMMU
869 static inline void cpu_unassigned_access(CPUState *cpu, hwaddr addr,
870 bool is_write, bool is_exec,
871 int opaque, unsigned size)
873 CPUClass *cc = CPU_GET_CLASS(cpu);
875 if (cc->do_unassigned_access) {
876 cc->do_unassigned_access(cpu, addr, is_write, is_exec, opaque, size);
880 static inline void cpu_unaligned_access(CPUState *cpu, vaddr addr,
881 MMUAccessType access_type,
882 int mmu_idx, uintptr_t retaddr)
884 CPUClass *cc = CPU_GET_CLASS(cpu);
886 cc->do_unaligned_access(cpu, addr, access_type, mmu_idx, retaddr);
889 static inline void cpu_transaction_failed(CPUState *cpu, hwaddr physaddr,
890 vaddr addr, unsigned size,
891 MMUAccessType access_type,
892 int mmu_idx, MemTxAttrs attrs,
893 MemTxResult response,
894 uintptr_t retaddr)
896 CPUClass *cc = CPU_GET_CLASS(cpu);
898 if (!cpu->ignore_memory_transaction_failures && cc->do_transaction_failed) {
899 cc->do_transaction_failed(cpu, physaddr, addr, size, access_type,
900 mmu_idx, attrs, response, retaddr);
903 #endif
905 #endif /* NEED_CPU_H */
908 * cpu_set_pc:
909 * @cpu: The CPU to set the program counter for.
910 * @addr: Program counter value.
912 * Sets the program counter for a CPU.
914 static inline void cpu_set_pc(CPUState *cpu, vaddr addr)
916 CPUClass *cc = CPU_GET_CLASS(cpu);
918 cc->set_pc(cpu, addr);
922 * cpu_reset_interrupt:
923 * @cpu: The CPU to clear the interrupt on.
924 * @mask: The interrupt mask to clear.
926 * Resets interrupts on the vCPU @cpu.
928 void cpu_reset_interrupt(CPUState *cpu, int mask);
931 * cpu_exit:
932 * @cpu: The CPU to exit.
934 * Requests the CPU @cpu to exit execution.
936 void cpu_exit(CPUState *cpu);
939 * cpu_resume:
940 * @cpu: The CPU to resume.
942 * Resumes CPU, i.e. puts CPU into runnable state.
944 void cpu_resume(CPUState *cpu);
947 * cpu_remove:
948 * @cpu: The CPU to remove.
950 * Requests the CPU to be removed.
952 void cpu_remove(CPUState *cpu);
955 * cpu_remove_sync:
956 * @cpu: The CPU to remove.
958 * Requests the CPU to be removed and waits till it is removed.
960 void cpu_remove_sync(CPUState *cpu);
963 * process_queued_cpu_work() - process all items on CPU work queue
964 * @cpu: The CPU which work queue to process.
966 void process_queued_cpu_work(CPUState *cpu);
969 * cpu_exec_start:
970 * @cpu: The CPU for the current thread.
972 * Record that a CPU has started execution and can be interrupted with
973 * cpu_exit.
975 void cpu_exec_start(CPUState *cpu);
978 * cpu_exec_end:
979 * @cpu: The CPU for the current thread.
981 * Record that a CPU has stopped execution and exclusive sections
982 * can be executed without interrupting it.
984 void cpu_exec_end(CPUState *cpu);
987 * start_exclusive:
989 * Wait for a concurrent exclusive section to end, and then start
990 * a section of work that is run while other CPUs are not running
991 * between cpu_exec_start and cpu_exec_end. CPUs that are running
992 * cpu_exec are exited immediately. CPUs that call cpu_exec_start
993 * during the exclusive section go to sleep until this CPU calls
994 * end_exclusive.
996 void start_exclusive(void);
999 * end_exclusive:
1001 * Concludes an exclusive execution section started by start_exclusive.
1003 void end_exclusive(void);
1006 * qemu_init_vcpu:
1007 * @cpu: The vCPU to initialize.
1009 * Initializes a vCPU.
1011 void qemu_init_vcpu(CPUState *cpu);
1013 #define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */
1014 #define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */
1015 #define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */
1018 * cpu_single_step:
1019 * @cpu: CPU to the flags for.
1020 * @enabled: Flags to enable.
1022 * Enables or disables single-stepping for @cpu.
1024 void cpu_single_step(CPUState *cpu, int enabled);
1026 /* Breakpoint/watchpoint flags */
1027 #define BP_MEM_READ 0x01
1028 #define BP_MEM_WRITE 0x02
1029 #define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE)
1030 #define BP_STOP_BEFORE_ACCESS 0x04
1031 /* 0x08 currently unused */
1032 #define BP_GDB 0x10
1033 #define BP_CPU 0x20
1034 #define BP_ANY (BP_GDB | BP_CPU)
1035 #define BP_WATCHPOINT_HIT_READ 0x40
1036 #define BP_WATCHPOINT_HIT_WRITE 0x80
1037 #define BP_WATCHPOINT_HIT (BP_WATCHPOINT_HIT_READ | BP_WATCHPOINT_HIT_WRITE)
1039 int cpu_breakpoint_insert(CPUState *cpu, vaddr pc, int flags,
1040 CPUBreakpoint **breakpoint);
1041 int cpu_breakpoint_remove(CPUState *cpu, vaddr pc, int flags);
1042 void cpu_breakpoint_remove_by_ref(CPUState *cpu, CPUBreakpoint *breakpoint);
1043 void cpu_breakpoint_remove_all(CPUState *cpu, int mask);
1045 /* Return true if PC matches an installed breakpoint. */
1046 static inline bool cpu_breakpoint_test(CPUState *cpu, vaddr pc, int mask)
1048 CPUBreakpoint *bp;
1050 if (unlikely(!QTAILQ_EMPTY(&cpu->breakpoints))) {
1051 QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) {
1052 if (bp->pc == pc && (bp->flags & mask)) {
1053 return true;
1057 return false;
1060 int cpu_watchpoint_insert(CPUState *cpu, vaddr addr, vaddr len,
1061 int flags, CPUWatchpoint **watchpoint);
1062 int cpu_watchpoint_remove(CPUState *cpu, vaddr addr,
1063 vaddr len, int flags);
1064 void cpu_watchpoint_remove_by_ref(CPUState *cpu, CPUWatchpoint *watchpoint);
1065 void cpu_watchpoint_remove_all(CPUState *cpu, int mask);
1068 * cpu_get_address_space:
1069 * @cpu: CPU to get address space from
1070 * @asidx: index identifying which address space to get
1072 * Return the requested address space of this CPU. @asidx
1073 * specifies which address space to read.
1075 AddressSpace *cpu_get_address_space(CPUState *cpu, int asidx);
1077 void QEMU_NORETURN cpu_abort(CPUState *cpu, const char *fmt, ...)
1078 GCC_FMT_ATTR(2, 3);
1079 extern Property cpu_common_props[];
1080 void cpu_exec_initfn(CPUState *cpu);
1081 void cpu_exec_realizefn(CPUState *cpu, Error **errp);
1082 void cpu_exec_unrealizefn(CPUState *cpu);
1085 * target_words_bigendian:
1086 * Returns true if the (default) endianness of the target is big endian,
1087 * false otherwise. Note that in target-specific code, you can use
1088 * TARGET_WORDS_BIGENDIAN directly instead. On the other hand, common
1089 * code should normally never need to know about the endianness of the
1090 * target, so please do *not* use this function unless you know very well
1091 * what you are doing!
1093 bool target_words_bigendian(void);
1095 #ifdef NEED_CPU_H
1097 #ifdef CONFIG_SOFTMMU
1098 extern const struct VMStateDescription vmstate_cpu_common;
1099 #else
1100 #define vmstate_cpu_common vmstate_dummy
1101 #endif
1103 #define VMSTATE_CPU() { \
1104 .name = "parent_obj", \
1105 .size = sizeof(CPUState), \
1106 .vmsd = &vmstate_cpu_common, \
1107 .flags = VMS_STRUCT, \
1108 .offset = 0, \
1111 #endif /* NEED_CPU_H */
1113 #define UNASSIGNED_CPU_INDEX -1
1115 #endif