]>
Commit | Line | Data |
---|---|---|
dd83b06a AF |
1 | /* |
2 | * QEMU CPU model | |
3 | * | |
4 | * Copyright (c) 2012 SUSE LINUX Products GmbH | |
5 | * | |
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. | |
10 | * | |
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. | |
15 | * | |
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> | |
19 | */ | |
20 | #ifndef QEMU_CPU_H | |
21 | #define QEMU_CPU_H | |
22 | ||
961f8395 | 23 | #include "hw/qdev-core.h" |
37b9de46 | 24 | #include "disas/bfd.h" |
c658b94f | 25 | #include "exec/hwaddr.h" |
66b9b43c | 26 | #include "exec/memattrs.h" |
48151859 | 27 | #include "qemu/bitmap.h" |
bdc44640 | 28 | #include "qemu/queue.h" |
1de7afc9 | 29 | #include "qemu/thread.h" |
dd83b06a | 30 | |
b5ba1cc6 QN |
31 | typedef int (*WriteCoreDumpFunction)(const void *buf, size_t size, |
32 | void *opaque); | |
c72bf468 | 33 | |
577f42c0 AF |
34 | /** |
35 | * vaddr: | |
36 | * Type wide enough to contain any #target_ulong virtual address. | |
37 | */ | |
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 | |
45 | ||
dd83b06a AF |
46 | /** |
47 | * SECTION:cpu | |
48 | * @section_id: QEMU-cpu | |
49 | * @title: CPU Class | |
50 | * @short_description: Base class for all CPUs | |
51 | */ | |
52 | ||
53 | #define TYPE_CPU "cpu" | |
54 | ||
0d6d1ab4 AF |
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. | |
58 | */ | |
59 | #define CPU(obj) ((CPUState *)(obj)) | |
60 | ||
dd83b06a AF |
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) | |
63 | ||
b35399bb SS |
64 | typedef enum MMUAccessType { |
65 | MMU_DATA_LOAD = 0, | |
66 | MMU_DATA_STORE = 1, | |
67 | MMU_INST_FETCH = 2 | |
68 | } MMUAccessType; | |
69 | ||
568496c0 | 70 | typedef struct CPUWatchpoint CPUWatchpoint; |
dd83b06a | 71 | |
c658b94f AF |
72 | typedef void (*CPUUnassignedAccess)(CPUState *cpu, hwaddr addr, |
73 | bool is_write, bool is_exec, int opaque, | |
74 | unsigned size); | |
75 | ||
bdf7ae5b AF |
76 | struct TranslationBlock; |
77 | ||
dd83b06a AF |
78 | /** |
79 | * CPUClass: | |
2b8c2754 AF |
80 | * @class_by_name: Callback to map -cpu command line model name to an |
81 | * instantiatable CPU type. | |
94a444b2 | 82 | * @parse_features: Callback to parse command line arguments. |
f5df5baf | 83 | * @reset: Callback to reset the #CPUState to its initial state. |
91b1df8c | 84 | * @reset_dump_flags: #CPUDumpFlags to use for reset logging. |
8c2e1b00 | 85 | * @has_work: Callback for checking if there is work to do. |
97a8ea5a | 86 | * @do_interrupt: Callback for interrupt handling. |
c658b94f | 87 | * @do_unassigned_access: Callback for unassigned access handling. |
93e22326 PB |
88 | * @do_unaligned_access: Callback for unaligned access handling, if |
89 | * the target defines #ALIGNED_ONLY. | |
c08295d4 PM |
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. | |
f3659eee | 94 | * @memory_rw_debug: Callback for GDB memory access. |
878096ee AF |
95 | * @dump_state: Callback for dumping state. |
96 | * @dump_statistics: Callback for dumping statistics. | |
997395d3 | 97 | * @get_arch_id: Callback for getting architecture-dependent CPU ID. |
444d5590 | 98 | * @get_paging_enabled: Callback for inquiring whether paging is enabled. |
a23bbfda | 99 | * @get_memory_mapping: Callback for obtaining the memory mappings. |
f45748f1 | 100 | * @set_pc: Callback for setting the Program Counter register. |
bdf7ae5b AF |
101 | * @synchronize_from_tb: Callback for synchronizing state from a TCG |
102 | * #TranslationBlock. | |
7510454e | 103 | * @handle_mmu_fault: Callback for handling an MMU fault. |
00b941e5 | 104 | * @get_phys_page_debug: Callback for obtaining a physical address. |
1dc6fb1f PM |
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. | |
d7f25a9e PM |
109 | * @asidx_from_attrs: Callback to return the CPU AddressSpace to use for |
110 | * a memory access with the specified memory transaction attributes. | |
5b50e790 AF |
111 | * @gdb_read_register: Callback for letting GDB read a register. |
112 | * @gdb_write_register: Callback for letting GDB write a register. | |
568496c0 SF |
113 | * @debug_check_watchpoint: Callback: return true if the architectural |
114 | * watchpoint whose address has matched should really fire. | |
86025ee4 | 115 | * @debug_excp_handler: Callback for handling debug exceptions. |
c08295d4 PM |
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. | |
b170fce3 | 124 | * @vmsd: State description for migration. |
a0e372f0 | 125 | * @gdb_num_core_regs: Number of core registers accessible to GDB. |
5b24c641 | 126 | * @gdb_core_xml_file: File name for core registers GDB XML description. |
2472b6c0 PM |
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. | |
b3820e6c DH |
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. | |
cffe7b32 RH |
131 | * @cpu_exec_enter: Callback for cpu_exec preparation. |
132 | * @cpu_exec_exit: Callback for cpu_exec cleanup. | |
9585db68 | 133 | * @cpu_exec_interrupt: Callback for processing interrupts in cpu_exec. |
37b9de46 | 134 | * @disas_set_info: Setup architecture specific components of disassembly info |
40612000 JB |
135 | * @adjust_watchpoint_address: Perform a target-specific adjustment to an |
136 | * address before attempting to match it against watchpoints. | |
dd83b06a AF |
137 | * |
138 | * Represents a CPU family or model. | |
139 | */ | |
140 | typedef struct CPUClass { | |
141 | /*< private >*/ | |
961f8395 | 142 | DeviceClass parent_class; |
dd83b06a AF |
143 | /*< public >*/ |
144 | ||
2b8c2754 | 145 | ObjectClass *(*class_by_name)(const char *cpu_model); |
62a48a2a | 146 | void (*parse_features)(const char *typename, char *str, Error **errp); |
2b8c2754 | 147 | |
dd83b06a | 148 | void (*reset)(CPUState *cpu); |
91b1df8c | 149 | int reset_dump_flags; |
8c2e1b00 | 150 | bool (*has_work)(CPUState *cpu); |
97a8ea5a | 151 | void (*do_interrupt)(CPUState *cpu); |
c658b94f | 152 | CPUUnassignedAccess do_unassigned_access; |
93e22326 | 153 | void (*do_unaligned_access)(CPUState *cpu, vaddr addr, |
b35399bb SS |
154 | MMUAccessType access_type, |
155 | int mmu_idx, uintptr_t retaddr); | |
bf7663c4 | 156 | bool (*virtio_is_big_endian)(CPUState *cpu); |
f3659eee AF |
157 | int (*memory_rw_debug)(CPUState *cpu, vaddr addr, |
158 | uint8_t *buf, int len, bool is_write); | |
878096ee AF |
159 | void (*dump_state)(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf, |
160 | int flags); | |
c86f106b | 161 | GuestPanicInformation* (*get_crash_info)(CPUState *cpu); |
878096ee AF |
162 | void (*dump_statistics)(CPUState *cpu, FILE *f, |
163 | fprintf_function cpu_fprintf, int flags); | |
997395d3 | 164 | int64_t (*get_arch_id)(CPUState *cpu); |
444d5590 | 165 | bool (*get_paging_enabled)(const CPUState *cpu); |
a23bbfda AF |
166 | void (*get_memory_mapping)(CPUState *cpu, MemoryMappingList *list, |
167 | Error **errp); | |
f45748f1 | 168 | void (*set_pc)(CPUState *cpu, vaddr value); |
bdf7ae5b | 169 | void (*synchronize_from_tb)(CPUState *cpu, struct TranslationBlock *tb); |
7510454e AF |
170 | int (*handle_mmu_fault)(CPUState *cpu, vaddr address, int rw, |
171 | int mmu_index); | |
00b941e5 | 172 | hwaddr (*get_phys_page_debug)(CPUState *cpu, vaddr addr); |
1dc6fb1f PM |
173 | hwaddr (*get_phys_page_attrs_debug)(CPUState *cpu, vaddr addr, |
174 | MemTxAttrs *attrs); | |
d7f25a9e | 175 | int (*asidx_from_attrs)(CPUState *cpu, MemTxAttrs attrs); |
5b50e790 AF |
176 | int (*gdb_read_register)(CPUState *cpu, uint8_t *buf, int reg); |
177 | int (*gdb_write_register)(CPUState *cpu, uint8_t *buf, int reg); | |
568496c0 | 178 | bool (*debug_check_watchpoint)(CPUState *cpu, CPUWatchpoint *wp); |
86025ee4 | 179 | void (*debug_excp_handler)(CPUState *cpu); |
b170fce3 | 180 | |
c72bf468 JF |
181 | int (*write_elf64_note)(WriteCoreDumpFunction f, CPUState *cpu, |
182 | int cpuid, void *opaque); | |
183 | int (*write_elf64_qemunote)(WriteCoreDumpFunction f, CPUState *cpu, | |
184 | void *opaque); | |
185 | int (*write_elf32_note)(WriteCoreDumpFunction f, CPUState *cpu, | |
186 | int cpuid, void *opaque); | |
187 | int (*write_elf32_qemunote)(WriteCoreDumpFunction f, CPUState *cpu, | |
188 | void *opaque); | |
a0e372f0 AF |
189 | |
190 | const struct VMStateDescription *vmsd; | |
191 | int gdb_num_core_regs; | |
5b24c641 | 192 | const char *gdb_core_xml_file; |
b3820e6c | 193 | gchar * (*gdb_arch_name)(CPUState *cpu); |
2472b6c0 | 194 | bool gdb_stop_before_watchpoint; |
cffe7b32 RH |
195 | |
196 | void (*cpu_exec_enter)(CPUState *cpu); | |
197 | void (*cpu_exec_exit)(CPUState *cpu); | |
9585db68 | 198 | bool (*cpu_exec_interrupt)(CPUState *cpu, int interrupt_request); |
37b9de46 PC |
199 | |
200 | void (*disas_set_info)(CPUState *cpu, disassemble_info *info); | |
40612000 | 201 | vaddr (*adjust_watchpoint_address)(CPUState *cpu, vaddr addr, int len); |
dd83b06a AF |
202 | } CPUClass; |
203 | ||
28ecfd7a AF |
204 | #ifdef HOST_WORDS_BIGENDIAN |
205 | typedef struct icount_decr_u16 { | |
206 | uint16_t high; | |
207 | uint16_t low; | |
208 | } icount_decr_u16; | |
209 | #else | |
210 | typedef struct icount_decr_u16 { | |
211 | uint16_t low; | |
212 | uint16_t high; | |
213 | } icount_decr_u16; | |
214 | #endif | |
215 | ||
f0c3c505 AF |
216 | typedef struct CPUBreakpoint { |
217 | vaddr pc; | |
218 | int flags; /* BP_* */ | |
219 | QTAILQ_ENTRY(CPUBreakpoint) entry; | |
220 | } CPUBreakpoint; | |
221 | ||
568496c0 | 222 | struct CPUWatchpoint { |
ff4700b0 | 223 | vaddr vaddr; |
05068c0d | 224 | vaddr len; |
08225676 | 225 | vaddr hitaddr; |
66b9b43c | 226 | MemTxAttrs hitattrs; |
ff4700b0 AF |
227 | int flags; /* BP_* */ |
228 | QTAILQ_ENTRY(CPUWatchpoint) entry; | |
568496c0 | 229 | }; |
ff4700b0 | 230 | |
a60f24b5 | 231 | struct KVMState; |
f7575c96 | 232 | struct kvm_run; |
a60f24b5 | 233 | |
b0cb0a66 VP |
234 | struct hax_vcpu_state; |
235 | ||
8cd70437 AF |
236 | #define TB_JMP_CACHE_BITS 12 |
237 | #define TB_JMP_CACHE_SIZE (1 << TB_JMP_CACHE_BITS) | |
238 | ||
4b4629d9 | 239 | /* work queue */ |
14e6fe12 PB |
240 | |
241 | /* The union type allows passing of 64 bit target pointers on 32 bit | |
242 | * hosts in a single parameter | |
243 | */ | |
244 | typedef union { | |
245 | int host_int; | |
246 | unsigned long host_ulong; | |
247 | void *host_ptr; | |
248 | vaddr target_ptr; | |
249 | } run_on_cpu_data; | |
250 | ||
251 | #define RUN_ON_CPU_HOST_PTR(p) ((run_on_cpu_data){.host_ptr = (p)}) | |
252 | #define RUN_ON_CPU_HOST_INT(i) ((run_on_cpu_data){.host_int = (i)}) | |
253 | #define RUN_ON_CPU_HOST_ULONG(ul) ((run_on_cpu_data){.host_ulong = (ul)}) | |
254 | #define RUN_ON_CPU_TARGET_PTR(v) ((run_on_cpu_data){.target_ptr = (v)}) | |
255 | #define RUN_ON_CPU_NULL RUN_ON_CPU_HOST_PTR(NULL) | |
256 | ||
257 | typedef void (*run_on_cpu_func)(CPUState *cpu, run_on_cpu_data data); | |
258 | ||
d148d90e | 259 | struct qemu_work_item; |
4b4629d9 | 260 | |
0b8497f0 IM |
261 | #define CPU_UNSET_NUMA_NODE_ID -1 |
262 | ||
dd83b06a AF |
263 | /** |
264 | * CPUState: | |
55e5c285 | 265 | * @cpu_index: CPU index (informative). |
ce3960eb AF |
266 | * @nr_cores: Number of cores within this CPU package. |
267 | * @nr_threads: Number of threads within this CPU. | |
0d34282f | 268 | * @host_tid: Host thread ID. |
c265e976 PB |
269 | * @running: #true if CPU is currently running (lockless). |
270 | * @has_waiter: #true if a CPU is currently waiting for the cpu_exec_end; | |
ab129972 | 271 | * valid under cpu_list_lock. |
61a46217 | 272 | * @created: Indicates whether the CPU thread has been successfully created. |
259186a7 AF |
273 | * @interrupt_request: Indicates a pending interrupt request. |
274 | * @halted: Nonzero if the CPU is in suspended state. | |
4fdeee7c | 275 | * @stop: Indicates a pending stop request. |
f324e766 | 276 | * @stopped: Indicates the CPU has been artificially stopped. |
4c055ab5 | 277 | * @unplug: Indicates a pending CPU unplug request. |
bac05aa9 | 278 | * @crash_occurred: Indicates the OS reported a crash (panic) for this CPU |
ed2803da | 279 | * @singlestep_enabled: Flags for single-stepping. |
efee7340 | 280 | * @icount_extra: Instructions until next timer event. |
1aab16c2 PB |
281 | * @icount_decr: Low 16 bits: number of cycles left, only used in icount mode. |
282 | * High 16 bits: Set to -1 to force TCG to stop executing linked TBs for this | |
283 | * CPU and return to its top level loop (even in non-icount mode). | |
28ecfd7a AF |
284 | * This allows a single read-compare-cbranch-write sequence to test |
285 | * for both decrementer underflow and exceptions. | |
414b15c9 PB |
286 | * @can_do_io: Nonzero if memory-mapped IO is safe. Deterministic execution |
287 | * requires that IO only be performed on the last instruction of a TB | |
288 | * so that interrupts take effect immediately. | |
32857f4d PM |
289 | * @cpu_ases: Pointer to array of CPUAddressSpaces (which define the |
290 | * AddressSpaces this CPU has) | |
12ebc9a7 | 291 | * @num_ases: number of CPUAddressSpaces in @cpu_ases |
32857f4d PM |
292 | * @as: Pointer to the first AddressSpace, for the convenience of targets which |
293 | * only have a single AddressSpace | |
c05efcb1 | 294 | * @env_ptr: Pointer to subclass-specific CPUArchState field. |
eac8b355 | 295 | * @gdb_regs: Additional GDB registers. |
a0e372f0 | 296 | * @gdb_num_regs: Number of total registers accessible to GDB. |
35143f01 | 297 | * @gdb_num_g_regs: Number of registers in GDB 'g' packets. |
182735ef | 298 | * @next_cpu: Next CPU sharing TB cache. |
0429a971 | 299 | * @opaque: User data. |
93afeade AF |
300 | * @mem_io_pc: Host Program Counter at which the memory was accessed. |
301 | * @mem_io_vaddr: Target virtual address at which the memory was accessed. | |
8737c51c | 302 | * @kvm_fd: vCPU file descriptor for KVM. |
376692b9 PB |
303 | * @work_mutex: Lock to prevent multiple access to queued_work_*. |
304 | * @queued_work_first: First asynchronous work pending. | |
48151859 | 305 | * @trace_dstate: Dynamic tracing state of events for this vCPU (bitmask). |
dd83b06a AF |
306 | * |
307 | * State of one CPU core or thread. | |
308 | */ | |
309 | struct CPUState { | |
310 | /*< private >*/ | |
961f8395 | 311 | DeviceState parent_obj; |
dd83b06a AF |
312 | /*< public >*/ |
313 | ||
ce3960eb AF |
314 | int nr_cores; |
315 | int nr_threads; | |
316 | ||
814e612e | 317 | struct QemuThread *thread; |
bcba2a72 AF |
318 | #ifdef _WIN32 |
319 | HANDLE hThread; | |
320 | #endif | |
9f09e18a | 321 | int thread_id; |
0d34282f | 322 | uint32_t host_tid; |
c265e976 | 323 | bool running, has_waiter; |
f5c121b8 | 324 | struct QemuCond *halt_cond; |
216fc9a4 | 325 | bool thread_kicked; |
61a46217 | 326 | bool created; |
4fdeee7c | 327 | bool stop; |
f324e766 | 328 | bool stopped; |
4c055ab5 | 329 | bool unplug; |
bac05aa9 | 330 | bool crash_occurred; |
e0c38211 | 331 | bool exit_request; |
8d04fb55 | 332 | /* updates protected by BQL */ |
259186a7 | 333 | uint32_t interrupt_request; |
ed2803da | 334 | int singlestep_enabled; |
e4cd9657 | 335 | int64_t icount_budget; |
efee7340 | 336 | int64_t icount_extra; |
6f03bef0 | 337 | sigjmp_buf jmp_env; |
bcba2a72 | 338 | |
376692b9 PB |
339 | QemuMutex work_mutex; |
340 | struct qemu_work_item *queued_work_first, *queued_work_last; | |
341 | ||
32857f4d | 342 | CPUAddressSpace *cpu_ases; |
12ebc9a7 | 343 | int num_ases; |
09daed84 | 344 | AddressSpace *as; |
6731d864 | 345 | MemoryRegion *memory; |
09daed84 | 346 | |
c05efcb1 | 347 | void *env_ptr; /* CPUArchState */ |
7d7500d9 | 348 | |
f3ced3c5 | 349 | /* Accessed in parallel; all accesses must be atomic */ |
8cd70437 | 350 | struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE]; |
7d7500d9 | 351 | |
eac8b355 | 352 | struct GDBRegisterState *gdb_regs; |
a0e372f0 | 353 | int gdb_num_regs; |
35143f01 | 354 | int gdb_num_g_regs; |
bdc44640 | 355 | QTAILQ_ENTRY(CPUState) node; |
d77953b9 | 356 | |
f0c3c505 AF |
357 | /* ice debug support */ |
358 | QTAILQ_HEAD(breakpoints_head, CPUBreakpoint) breakpoints; | |
359 | ||
ff4700b0 AF |
360 | QTAILQ_HEAD(watchpoints_head, CPUWatchpoint) watchpoints; |
361 | CPUWatchpoint *watchpoint_hit; | |
362 | ||
0429a971 AF |
363 | void *opaque; |
364 | ||
93afeade AF |
365 | /* In order to avoid passing too many arguments to the MMIO helpers, |
366 | * we store some rarely used information in the CPU context. | |
367 | */ | |
368 | uintptr_t mem_io_pc; | |
369 | vaddr mem_io_vaddr; | |
370 | ||
8737c51c | 371 | int kvm_fd; |
20d695a9 | 372 | bool kvm_vcpu_dirty; |
a60f24b5 | 373 | struct KVMState *kvm_state; |
f7575c96 | 374 | struct kvm_run *kvm_run; |
8737c51c | 375 | |
b7d48952 DB |
376 | /* |
377 | * Used for events with 'vcpu' and *without* the 'disabled' properties. | |
378 | * Dynamically allocated based on bitmap requried to hold up to | |
379 | * trace_get_vcpu_event_count() entries. | |
380 | */ | |
381 | unsigned long *trace_dstate; | |
48151859 | 382 | |
f5df5baf | 383 | /* TODO Move common fields from CPUArchState here. */ |
55e5c285 | 384 | int cpu_index; /* used by alpha TCG */ |
259186a7 | 385 | uint32_t halted; /* used by alpha, cris, ppc TCG */ |
99df7dce | 386 | uint32_t can_do_io; |
27103424 | 387 | int32_t exception_index; /* used by m68k TCG */ |
7e4fb26d | 388 | |
2adcc85d JH |
389 | /* Used to keep track of an outstanding cpu throttle thread for migration |
390 | * autoconverge | |
391 | */ | |
392 | bool throttle_thread_scheduled; | |
393 | ||
7e4fb26d RH |
394 | /* Note that this is accessed at the start of every TB via a negative |
395 | offset from AREG0. Leave this field at the end so as to make the | |
396 | (absolute value) offset as small as possible. This reduces code | |
397 | size, especially for hosts without large memory offsets. */ | |
1aab16c2 PB |
398 | union { |
399 | uint32_t u32; | |
400 | icount_decr_u16 u16; | |
401 | } icount_decr; | |
b0cb0a66 VP |
402 | |
403 | bool hax_vcpu_dirty; | |
404 | struct hax_vcpu_state *hax_vcpu; | |
e3b9ca81 FK |
405 | |
406 | /* The pending_tlb_flush flag is set and cleared atomically to | |
407 | * avoid potential races. The aim of the flag is to avoid | |
408 | * unnecessary flushes. | |
409 | */ | |
e7218445 | 410 | uint16_t pending_tlb_flush; |
dd83b06a AF |
411 | }; |
412 | ||
bdc44640 AF |
413 | QTAILQ_HEAD(CPUTailQ, CPUState); |
414 | extern struct CPUTailQ cpus; | |
415 | #define CPU_NEXT(cpu) QTAILQ_NEXT(cpu, node) | |
416 | #define CPU_FOREACH(cpu) QTAILQ_FOREACH(cpu, &cpus, node) | |
417 | #define CPU_FOREACH_SAFE(cpu, next_cpu) \ | |
418 | QTAILQ_FOREACH_SAFE(cpu, &cpus, node, next_cpu) | |
8487d123 BR |
419 | #define CPU_FOREACH_REVERSE(cpu) \ |
420 | QTAILQ_FOREACH_REVERSE(cpu, &cpus, CPUTailQ, node) | |
bdc44640 | 421 | #define first_cpu QTAILQ_FIRST(&cpus) |
182735ef | 422 | |
f240eb6f | 423 | extern __thread CPUState *current_cpu; |
4917cf44 | 424 | |
f3ced3c5 EC |
425 | static inline void cpu_tb_jmp_cache_clear(CPUState *cpu) |
426 | { | |
427 | unsigned int i; | |
428 | ||
429 | for (i = 0; i < TB_JMP_CACHE_SIZE; i++) { | |
430 | atomic_set(&cpu->tb_jmp_cache[i], NULL); | |
431 | } | |
432 | } | |
433 | ||
8d4e9146 FK |
434 | /** |
435 | * qemu_tcg_mttcg_enabled: | |
436 | * Check whether we are running MultiThread TCG or not. | |
437 | * | |
438 | * Returns: %true if we are in MTTCG mode %false otherwise. | |
439 | */ | |
440 | extern bool mttcg_enabled; | |
441 | #define qemu_tcg_mttcg_enabled() (mttcg_enabled) | |
442 | ||
444d5590 AF |
443 | /** |
444 | * cpu_paging_enabled: | |
445 | * @cpu: The CPU whose state is to be inspected. | |
446 | * | |
447 | * Returns: %true if paging is enabled, %false otherwise. | |
448 | */ | |
449 | bool cpu_paging_enabled(const CPUState *cpu); | |
450 | ||
a23bbfda AF |
451 | /** |
452 | * cpu_get_memory_mapping: | |
453 | * @cpu: The CPU whose memory mappings are to be obtained. | |
454 | * @list: Where to write the memory mappings to. | |
455 | * @errp: Pointer for reporting an #Error. | |
456 | */ | |
457 | void cpu_get_memory_mapping(CPUState *cpu, MemoryMappingList *list, | |
458 | Error **errp); | |
459 | ||
c72bf468 JF |
460 | /** |
461 | * cpu_write_elf64_note: | |
462 | * @f: pointer to a function that writes memory to a file | |
463 | * @cpu: The CPU whose memory is to be dumped | |
464 | * @cpuid: ID number of the CPU | |
465 | * @opaque: pointer to the CPUState struct | |
466 | */ | |
467 | int cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cpu, | |
468 | int cpuid, void *opaque); | |
469 | ||
470 | /** | |
471 | * cpu_write_elf64_qemunote: | |
472 | * @f: pointer to a function that writes memory to a file | |
473 | * @cpu: The CPU whose memory is to be dumped | |
474 | * @cpuid: ID number of the CPU | |
475 | * @opaque: pointer to the CPUState struct | |
476 | */ | |
477 | int cpu_write_elf64_qemunote(WriteCoreDumpFunction f, CPUState *cpu, | |
478 | void *opaque); | |
479 | ||
480 | /** | |
481 | * cpu_write_elf32_note: | |
482 | * @f: pointer to a function that writes memory to a file | |
483 | * @cpu: The CPU whose memory is to be dumped | |
484 | * @cpuid: ID number of the CPU | |
485 | * @opaque: pointer to the CPUState struct | |
486 | */ | |
487 | int cpu_write_elf32_note(WriteCoreDumpFunction f, CPUState *cpu, | |
488 | int cpuid, void *opaque); | |
489 | ||
490 | /** | |
491 | * cpu_write_elf32_qemunote: | |
492 | * @f: pointer to a function that writes memory to a file | |
493 | * @cpu: The CPU whose memory is to be dumped | |
494 | * @cpuid: ID number of the CPU | |
495 | * @opaque: pointer to the CPUState struct | |
496 | */ | |
497 | int cpu_write_elf32_qemunote(WriteCoreDumpFunction f, CPUState *cpu, | |
498 | void *opaque); | |
dd83b06a | 499 | |
c86f106b AN |
500 | /** |
501 | * cpu_get_crash_info: | |
502 | * @cpu: The CPU to get crash information for | |
503 | * | |
504 | * Gets the previously saved crash information. | |
505 | * Caller is responsible for freeing the data. | |
506 | */ | |
507 | GuestPanicInformation *cpu_get_crash_info(CPUState *cpu); | |
508 | ||
878096ee AF |
509 | /** |
510 | * CPUDumpFlags: | |
511 | * @CPU_DUMP_CODE: | |
512 | * @CPU_DUMP_FPU: dump FPU register state, not just integer | |
513 | * @CPU_DUMP_CCOP: dump info about TCG QEMU's condition code optimization state | |
514 | */ | |
515 | enum CPUDumpFlags { | |
516 | CPU_DUMP_CODE = 0x00010000, | |
517 | CPU_DUMP_FPU = 0x00020000, | |
518 | CPU_DUMP_CCOP = 0x00040000, | |
519 | }; | |
520 | ||
521 | /** | |
522 | * cpu_dump_state: | |
523 | * @cpu: The CPU whose state is to be dumped. | |
524 | * @f: File to dump to. | |
525 | * @cpu_fprintf: Function to dump with. | |
526 | * @flags: Flags what to dump. | |
527 | * | |
528 | * Dumps CPU state. | |
529 | */ | |
530 | void cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf, | |
531 | int flags); | |
532 | ||
533 | /** | |
534 | * cpu_dump_statistics: | |
535 | * @cpu: The CPU whose state is to be dumped. | |
536 | * @f: File to dump to. | |
537 | * @cpu_fprintf: Function to dump with. | |
538 | * @flags: Flags what to dump. | |
539 | * | |
540 | * Dumps CPU statistics. | |
541 | */ | |
542 | void cpu_dump_statistics(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf, | |
543 | int flags); | |
544 | ||
00b941e5 | 545 | #ifndef CONFIG_USER_ONLY |
1dc6fb1f PM |
546 | /** |
547 | * cpu_get_phys_page_attrs_debug: | |
548 | * @cpu: The CPU to obtain the physical page address for. | |
549 | * @addr: The virtual address. | |
550 | * @attrs: Updated on return with the memory transaction attributes to use | |
551 | * for this access. | |
552 | * | |
553 | * Obtains the physical page corresponding to a virtual one, together | |
554 | * with the corresponding memory transaction attributes to use for the access. | |
555 | * Use it only for debugging because no protection checks are done. | |
556 | * | |
557 | * Returns: Corresponding physical page address or -1 if no page found. | |
558 | */ | |
559 | static inline hwaddr cpu_get_phys_page_attrs_debug(CPUState *cpu, vaddr addr, | |
560 | MemTxAttrs *attrs) | |
561 | { | |
562 | CPUClass *cc = CPU_GET_CLASS(cpu); | |
563 | ||
564 | if (cc->get_phys_page_attrs_debug) { | |
565 | return cc->get_phys_page_attrs_debug(cpu, addr, attrs); | |
566 | } | |
567 | /* Fallback for CPUs which don't implement the _attrs_ hook */ | |
568 | *attrs = MEMTXATTRS_UNSPECIFIED; | |
569 | return cc->get_phys_page_debug(cpu, addr); | |
570 | } | |
571 | ||
00b941e5 AF |
572 | /** |
573 | * cpu_get_phys_page_debug: | |
574 | * @cpu: The CPU to obtain the physical page address for. | |
575 | * @addr: The virtual address. | |
576 | * | |
577 | * Obtains the physical page corresponding to a virtual one. | |
578 | * Use it only for debugging because no protection checks are done. | |
579 | * | |
580 | * Returns: Corresponding physical page address or -1 if no page found. | |
581 | */ | |
582 | static inline hwaddr cpu_get_phys_page_debug(CPUState *cpu, vaddr addr) | |
583 | { | |
1dc6fb1f | 584 | MemTxAttrs attrs = {}; |
00b941e5 | 585 | |
1dc6fb1f | 586 | return cpu_get_phys_page_attrs_debug(cpu, addr, &attrs); |
00b941e5 | 587 | } |
d7f25a9e PM |
588 | |
589 | /** cpu_asidx_from_attrs: | |
590 | * @cpu: CPU | |
591 | * @attrs: memory transaction attributes | |
592 | * | |
593 | * Returns the address space index specifying the CPU AddressSpace | |
594 | * to use for a memory access with the given transaction attributes. | |
595 | */ | |
596 | static inline int cpu_asidx_from_attrs(CPUState *cpu, MemTxAttrs attrs) | |
597 | { | |
598 | CPUClass *cc = CPU_GET_CLASS(cpu); | |
599 | ||
600 | if (cc->asidx_from_attrs) { | |
601 | return cc->asidx_from_attrs(cpu, attrs); | |
602 | } | |
603 | return 0; | |
604 | } | |
00b941e5 AF |
605 | #endif |
606 | ||
267f685b PB |
607 | /** |
608 | * cpu_list_add: | |
609 | * @cpu: The CPU to be added to the list of CPUs. | |
610 | */ | |
611 | void cpu_list_add(CPUState *cpu); | |
612 | ||
613 | /** | |
614 | * cpu_list_remove: | |
615 | * @cpu: The CPU to be removed from the list of CPUs. | |
616 | */ | |
617 | void cpu_list_remove(CPUState *cpu); | |
618 | ||
dd83b06a AF |
619 | /** |
620 | * cpu_reset: | |
621 | * @cpu: The CPU whose state is to be reset. | |
622 | */ | |
623 | void cpu_reset(CPUState *cpu); | |
624 | ||
2b8c2754 AF |
625 | /** |
626 | * cpu_class_by_name: | |
627 | * @typename: The CPU base type. | |
628 | * @cpu_model: The model string without any parameters. | |
629 | * | |
630 | * Looks up a CPU #ObjectClass matching name @cpu_model. | |
631 | * | |
632 | * Returns: A #CPUClass or %NULL if not matching class is found. | |
633 | */ | |
634 | ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model); | |
635 | ||
9262685b AF |
636 | /** |
637 | * cpu_generic_init: | |
638 | * @typename: The CPU base type. | |
639 | * @cpu_model: The model string including optional parameters. | |
640 | * | |
641 | * Instantiates a CPU, processes optional parameters and realizes the CPU. | |
642 | * | |
643 | * Returns: A #CPUState or %NULL if an error occurred. | |
644 | */ | |
645 | CPUState *cpu_generic_init(const char *typename, const char *cpu_model); | |
646 | ||
3993c6bd | 647 | /** |
8c2e1b00 | 648 | * cpu_has_work: |
3993c6bd AF |
649 | * @cpu: The vCPU to check. |
650 | * | |
651 | * Checks whether the CPU has work to do. | |
652 | * | |
653 | * Returns: %true if the CPU has work, %false otherwise. | |
654 | */ | |
8c2e1b00 AF |
655 | static inline bool cpu_has_work(CPUState *cpu) |
656 | { | |
657 | CPUClass *cc = CPU_GET_CLASS(cpu); | |
658 | ||
659 | g_assert(cc->has_work); | |
660 | return cc->has_work(cpu); | |
661 | } | |
3993c6bd | 662 | |
60e82579 AF |
663 | /** |
664 | * qemu_cpu_is_self: | |
665 | * @cpu: The vCPU to check against. | |
666 | * | |
667 | * Checks whether the caller is executing on the vCPU thread. | |
668 | * | |
669 | * Returns: %true if called from @cpu's thread, %false otherwise. | |
670 | */ | |
671 | bool qemu_cpu_is_self(CPUState *cpu); | |
672 | ||
c08d7424 AF |
673 | /** |
674 | * qemu_cpu_kick: | |
675 | * @cpu: The vCPU to kick. | |
676 | * | |
677 | * Kicks @cpu's thread. | |
678 | */ | |
679 | void qemu_cpu_kick(CPUState *cpu); | |
680 | ||
2fa45344 AF |
681 | /** |
682 | * cpu_is_stopped: | |
683 | * @cpu: The CPU to check. | |
684 | * | |
685 | * Checks whether the CPU is stopped. | |
686 | * | |
687 | * Returns: %true if run state is not running or if artificially stopped; | |
688 | * %false otherwise. | |
689 | */ | |
690 | bool cpu_is_stopped(CPUState *cpu); | |
691 | ||
d148d90e SF |
692 | /** |
693 | * do_run_on_cpu: | |
694 | * @cpu: The vCPU to run on. | |
695 | * @func: The function to be executed. | |
696 | * @data: Data to pass to the function. | |
697 | * @mutex: Mutex to release while waiting for @func to run. | |
698 | * | |
699 | * Used internally in the implementation of run_on_cpu. | |
700 | */ | |
14e6fe12 | 701 | void do_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data, |
d148d90e SF |
702 | QemuMutex *mutex); |
703 | ||
f100f0b3 AF |
704 | /** |
705 | * run_on_cpu: | |
706 | * @cpu: The vCPU to run on. | |
707 | * @func: The function to be executed. | |
708 | * @data: Data to pass to the function. | |
709 | * | |
710 | * Schedules the function @func for execution on the vCPU @cpu. | |
711 | */ | |
14e6fe12 | 712 | void run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data); |
f100f0b3 | 713 | |
3c02270d CV |
714 | /** |
715 | * async_run_on_cpu: | |
716 | * @cpu: The vCPU to run on. | |
717 | * @func: The function to be executed. | |
718 | * @data: Data to pass to the function. | |
719 | * | |
720 | * Schedules the function @func for execution on the vCPU @cpu asynchronously. | |
721 | */ | |
14e6fe12 | 722 | void async_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data); |
3c02270d | 723 | |
53f5ed95 PB |
724 | /** |
725 | * async_safe_run_on_cpu: | |
726 | * @cpu: The vCPU to run on. | |
727 | * @func: The function to be executed. | |
728 | * @data: Data to pass to the function. | |
729 | * | |
730 | * Schedules the function @func for execution on the vCPU @cpu asynchronously, | |
731 | * while all other vCPUs are sleeping. | |
732 | * | |
733 | * Unlike run_on_cpu and async_run_on_cpu, the function is run outside the | |
734 | * BQL. | |
735 | */ | |
14e6fe12 | 736 | void async_safe_run_on_cpu(CPUState *cpu, run_on_cpu_func func, run_on_cpu_data data); |
53f5ed95 | 737 | |
38d8f5c8 AF |
738 | /** |
739 | * qemu_get_cpu: | |
740 | * @index: The CPUState@cpu_index value of the CPU to obtain. | |
741 | * | |
742 | * Gets a CPU matching @index. | |
743 | * | |
744 | * Returns: The CPU or %NULL if there is no matching CPU. | |
745 | */ | |
746 | CPUState *qemu_get_cpu(int index); | |
747 | ||
69e5ff06 IM |
748 | /** |
749 | * cpu_exists: | |
750 | * @id: Guest-exposed CPU ID to lookup. | |
751 | * | |
752 | * Search for CPU with specified ID. | |
753 | * | |
754 | * Returns: %true - CPU is found, %false - CPU isn't found. | |
755 | */ | |
756 | bool cpu_exists(int64_t id); | |
757 | ||
2adcc85d JH |
758 | /** |
759 | * cpu_throttle_set: | |
760 | * @new_throttle_pct: Percent of sleep time. Valid range is 1 to 99. | |
761 | * | |
762 | * Throttles all vcpus by forcing them to sleep for the given percentage of | |
763 | * time. A throttle_percentage of 25 corresponds to a 75% duty cycle roughly. | |
764 | * (example: 10ms sleep for every 30ms awake). | |
765 | * | |
766 | * cpu_throttle_set can be called as needed to adjust new_throttle_pct. | |
767 | * Once the throttling starts, it will remain in effect until cpu_throttle_stop | |
768 | * is called. | |
769 | */ | |
770 | void cpu_throttle_set(int new_throttle_pct); | |
771 | ||
772 | /** | |
773 | * cpu_throttle_stop: | |
774 | * | |
775 | * Stops the vcpu throttling started by cpu_throttle_set. | |
776 | */ | |
777 | void cpu_throttle_stop(void); | |
778 | ||
779 | /** | |
780 | * cpu_throttle_active: | |
781 | * | |
782 | * Returns: %true if the vcpus are currently being throttled, %false otherwise. | |
783 | */ | |
784 | bool cpu_throttle_active(void); | |
785 | ||
786 | /** | |
787 | * cpu_throttle_get_percentage: | |
788 | * | |
789 | * Returns the vcpu throttle percentage. See cpu_throttle_set for details. | |
790 | * | |
791 | * Returns: The throttle percentage in range 1 to 99. | |
792 | */ | |
793 | int cpu_throttle_get_percentage(void); | |
794 | ||
c3affe56 AF |
795 | #ifndef CONFIG_USER_ONLY |
796 | ||
797 | typedef void (*CPUInterruptHandler)(CPUState *, int); | |
798 | ||
799 | extern CPUInterruptHandler cpu_interrupt_handler; | |
800 | ||
801 | /** | |
802 | * cpu_interrupt: | |
803 | * @cpu: The CPU to set an interrupt on. | |
804 | * @mask: The interupts to set. | |
805 | * | |
806 | * Invokes the interrupt handler. | |
807 | */ | |
808 | static inline void cpu_interrupt(CPUState *cpu, int mask) | |
809 | { | |
810 | cpu_interrupt_handler(cpu, mask); | |
811 | } | |
812 | ||
813 | #else /* USER_ONLY */ | |
814 | ||
815 | void cpu_interrupt(CPUState *cpu, int mask); | |
816 | ||
817 | #endif /* USER_ONLY */ | |
818 | ||
93e22326 | 819 | #ifdef CONFIG_SOFTMMU |
c658b94f AF |
820 | static inline void cpu_unassigned_access(CPUState *cpu, hwaddr addr, |
821 | bool is_write, bool is_exec, | |
822 | int opaque, unsigned size) | |
823 | { | |
824 | CPUClass *cc = CPU_GET_CLASS(cpu); | |
825 | ||
826 | if (cc->do_unassigned_access) { | |
827 | cc->do_unassigned_access(cpu, addr, is_write, is_exec, opaque, size); | |
828 | } | |
829 | } | |
830 | ||
93e22326 | 831 | static inline void cpu_unaligned_access(CPUState *cpu, vaddr addr, |
b35399bb SS |
832 | MMUAccessType access_type, |
833 | int mmu_idx, uintptr_t retaddr) | |
93e22326 PB |
834 | { |
835 | CPUClass *cc = CPU_GET_CLASS(cpu); | |
836 | ||
b35399bb | 837 | cc->do_unaligned_access(cpu, addr, access_type, mmu_idx, retaddr); |
93e22326 | 838 | } |
c658b94f AF |
839 | #endif |
840 | ||
2991b890 PC |
841 | /** |
842 | * cpu_set_pc: | |
843 | * @cpu: The CPU to set the program counter for. | |
844 | * @addr: Program counter value. | |
845 | * | |
846 | * Sets the program counter for a CPU. | |
847 | */ | |
848 | static inline void cpu_set_pc(CPUState *cpu, vaddr addr) | |
849 | { | |
850 | CPUClass *cc = CPU_GET_CLASS(cpu); | |
851 | ||
852 | cc->set_pc(cpu, addr); | |
853 | } | |
854 | ||
d8ed887b AF |
855 | /** |
856 | * cpu_reset_interrupt: | |
857 | * @cpu: The CPU to clear the interrupt on. | |
858 | * @mask: The interrupt mask to clear. | |
859 | * | |
860 | * Resets interrupts on the vCPU @cpu. | |
861 | */ | |
862 | void cpu_reset_interrupt(CPUState *cpu, int mask); | |
863 | ||
60a3e17a AF |
864 | /** |
865 | * cpu_exit: | |
866 | * @cpu: The CPU to exit. | |
867 | * | |
868 | * Requests the CPU @cpu to exit execution. | |
869 | */ | |
870 | void cpu_exit(CPUState *cpu); | |
871 | ||
2993683b IM |
872 | /** |
873 | * cpu_resume: | |
874 | * @cpu: The CPU to resume. | |
875 | * | |
876 | * Resumes CPU, i.e. puts CPU into runnable state. | |
877 | */ | |
878 | void cpu_resume(CPUState *cpu); | |
dd83b06a | 879 | |
4c055ab5 GZ |
880 | /** |
881 | * cpu_remove: | |
882 | * @cpu: The CPU to remove. | |
883 | * | |
884 | * Requests the CPU to be removed. | |
885 | */ | |
886 | void cpu_remove(CPUState *cpu); | |
887 | ||
2c579042 BR |
888 | /** |
889 | * cpu_remove_sync: | |
890 | * @cpu: The CPU to remove. | |
891 | * | |
892 | * Requests the CPU to be removed and waits till it is removed. | |
893 | */ | |
894 | void cpu_remove_sync(CPUState *cpu); | |
895 | ||
d148d90e SF |
896 | /** |
897 | * process_queued_cpu_work() - process all items on CPU work queue | |
898 | * @cpu: The CPU which work queue to process. | |
899 | */ | |
900 | void process_queued_cpu_work(CPUState *cpu); | |
901 | ||
ab129972 PB |
902 | /** |
903 | * cpu_exec_start: | |
904 | * @cpu: The CPU for the current thread. | |
905 | * | |
906 | * Record that a CPU has started execution and can be interrupted with | |
907 | * cpu_exit. | |
908 | */ | |
909 | void cpu_exec_start(CPUState *cpu); | |
910 | ||
911 | /** | |
912 | * cpu_exec_end: | |
913 | * @cpu: The CPU for the current thread. | |
914 | * | |
915 | * Record that a CPU has stopped execution and exclusive sections | |
916 | * can be executed without interrupting it. | |
917 | */ | |
918 | void cpu_exec_end(CPUState *cpu); | |
919 | ||
920 | /** | |
921 | * start_exclusive: | |
922 | * | |
923 | * Wait for a concurrent exclusive section to end, and then start | |
924 | * a section of work that is run while other CPUs are not running | |
925 | * between cpu_exec_start and cpu_exec_end. CPUs that are running | |
926 | * cpu_exec are exited immediately. CPUs that call cpu_exec_start | |
927 | * during the exclusive section go to sleep until this CPU calls | |
928 | * end_exclusive. | |
ab129972 PB |
929 | */ |
930 | void start_exclusive(void); | |
931 | ||
932 | /** | |
933 | * end_exclusive: | |
934 | * | |
935 | * Concludes an exclusive execution section started by start_exclusive. | |
ab129972 PB |
936 | */ |
937 | void end_exclusive(void); | |
938 | ||
c643bed9 AF |
939 | /** |
940 | * qemu_init_vcpu: | |
941 | * @cpu: The vCPU to initialize. | |
942 | * | |
943 | * Initializes a vCPU. | |
944 | */ | |
945 | void qemu_init_vcpu(CPUState *cpu); | |
946 | ||
3825b28f AF |
947 | #define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */ |
948 | #define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */ | |
949 | #define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */ | |
950 | ||
951 | /** | |
952 | * cpu_single_step: | |
953 | * @cpu: CPU to the flags for. | |
954 | * @enabled: Flags to enable. | |
955 | * | |
956 | * Enables or disables single-stepping for @cpu. | |
957 | */ | |
958 | void cpu_single_step(CPUState *cpu, int enabled); | |
959 | ||
b3310ab3 AF |
960 | /* Breakpoint/watchpoint flags */ |
961 | #define BP_MEM_READ 0x01 | |
962 | #define BP_MEM_WRITE 0x02 | |
963 | #define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE) | |
964 | #define BP_STOP_BEFORE_ACCESS 0x04 | |
08225676 | 965 | /* 0x08 currently unused */ |
b3310ab3 AF |
966 | #define BP_GDB 0x10 |
967 | #define BP_CPU 0x20 | |
b933066a | 968 | #define BP_ANY (BP_GDB | BP_CPU) |
08225676 PM |
969 | #define BP_WATCHPOINT_HIT_READ 0x40 |
970 | #define BP_WATCHPOINT_HIT_WRITE 0x80 | |
971 | #define BP_WATCHPOINT_HIT (BP_WATCHPOINT_HIT_READ | BP_WATCHPOINT_HIT_WRITE) | |
b3310ab3 AF |
972 | |
973 | int cpu_breakpoint_insert(CPUState *cpu, vaddr pc, int flags, | |
974 | CPUBreakpoint **breakpoint); | |
975 | int cpu_breakpoint_remove(CPUState *cpu, vaddr pc, int flags); | |
976 | void cpu_breakpoint_remove_by_ref(CPUState *cpu, CPUBreakpoint *breakpoint); | |
977 | void cpu_breakpoint_remove_all(CPUState *cpu, int mask); | |
978 | ||
b933066a RH |
979 | /* Return true if PC matches an installed breakpoint. */ |
980 | static inline bool cpu_breakpoint_test(CPUState *cpu, vaddr pc, int mask) | |
981 | { | |
982 | CPUBreakpoint *bp; | |
983 | ||
984 | if (unlikely(!QTAILQ_EMPTY(&cpu->breakpoints))) { | |
985 | QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) { | |
986 | if (bp->pc == pc && (bp->flags & mask)) { | |
987 | return true; | |
988 | } | |
989 | } | |
990 | } | |
991 | return false; | |
992 | } | |
993 | ||
75a34036 AF |
994 | int cpu_watchpoint_insert(CPUState *cpu, vaddr addr, vaddr len, |
995 | int flags, CPUWatchpoint **watchpoint); | |
996 | int cpu_watchpoint_remove(CPUState *cpu, vaddr addr, | |
997 | vaddr len, int flags); | |
998 | void cpu_watchpoint_remove_by_ref(CPUState *cpu, CPUWatchpoint *watchpoint); | |
999 | void cpu_watchpoint_remove_all(CPUState *cpu, int mask); | |
1000 | ||
63c91552 PB |
1001 | /** |
1002 | * cpu_get_address_space: | |
1003 | * @cpu: CPU to get address space from | |
1004 | * @asidx: index identifying which address space to get | |
1005 | * | |
1006 | * Return the requested address space of this CPU. @asidx | |
1007 | * specifies which address space to read. | |
1008 | */ | |
1009 | AddressSpace *cpu_get_address_space(CPUState *cpu, int asidx); | |
1010 | ||
a47dddd7 AF |
1011 | void QEMU_NORETURN cpu_abort(CPUState *cpu, const char *fmt, ...) |
1012 | GCC_FMT_ATTR(2, 3); | |
39e329e3 | 1013 | void cpu_exec_initfn(CPUState *cpu); |
ce5b1bbf | 1014 | void cpu_exec_realizefn(CPUState *cpu, Error **errp); |
7bbc124e | 1015 | void cpu_exec_unrealizefn(CPUState *cpu); |
a47dddd7 | 1016 | |
1a1562f5 AF |
1017 | #ifdef CONFIG_SOFTMMU |
1018 | extern const struct VMStateDescription vmstate_cpu_common; | |
1019 | #else | |
1020 | #define vmstate_cpu_common vmstate_dummy | |
1021 | #endif | |
1022 | ||
1023 | #define VMSTATE_CPU() { \ | |
1024 | .name = "parent_obj", \ | |
1025 | .size = sizeof(CPUState), \ | |
1026 | .vmsd = &vmstate_cpu_common, \ | |
1027 | .flags = VMS_STRUCT, \ | |
1028 | .offset = 0, \ | |
1029 | } | |
1030 | ||
a07f953e IM |
1031 | #define UNASSIGNED_CPU_INDEX -1 |
1032 | ||
dd83b06a | 1033 | #endif |