tcg: Rework tb_invalidated_flag
[qemu/kevin.git] / include / qom / cpu.h
blobc1ae24d1fcbbb8f8606d9fe758fef3a65e1586b9
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/queue.h"
28 #include "qemu/thread.h"
30 typedef int (*WriteCoreDumpFunction)(const void *buf, size_t size,
31 void *opaque);
33 /**
34 * vaddr:
35 * Type wide enough to contain any #target_ulong virtual address.
37 typedef uint64_t vaddr;
38 #define VADDR_PRId PRId64
39 #define VADDR_PRIu PRIu64
40 #define VADDR_PRIo PRIo64
41 #define VADDR_PRIx PRIx64
42 #define VADDR_PRIX PRIX64
43 #define VADDR_MAX UINT64_MAX
45 /**
46 * SECTION:cpu
47 * @section_id: QEMU-cpu
48 * @title: CPU Class
49 * @short_description: Base class for all CPUs
52 #define TYPE_CPU "cpu"
54 /* Since this macro is used a lot in hot code paths and in conjunction with
55 * FooCPU *foo_env_get_cpu(), we deviate from usual QOM practice by using
56 * an unchecked cast.
58 #define CPU(obj) ((CPUState *)(obj))
60 #define CPU_CLASS(class) OBJECT_CLASS_CHECK(CPUClass, (class), TYPE_CPU)
61 #define CPU_GET_CLASS(obj) OBJECT_GET_CLASS(CPUClass, (obj), TYPE_CPU)
63 typedef struct CPUWatchpoint CPUWatchpoint;
65 typedef void (*CPUUnassignedAccess)(CPUState *cpu, hwaddr addr,
66 bool is_write, bool is_exec, int opaque,
67 unsigned size);
69 struct TranslationBlock;
71 /**
72 * CPUClass:
73 * @class_by_name: Callback to map -cpu command line model name to an
74 * instantiatable CPU type.
75 * @parse_features: Callback to parse command line arguments.
76 * @reset: Callback to reset the #CPUState to its initial state.
77 * @reset_dump_flags: #CPUDumpFlags to use for reset logging.
78 * @has_work: Callback for checking if there is work to do.
79 * @do_interrupt: Callback for interrupt handling.
80 * @do_unassigned_access: Callback for unassigned access handling.
81 * @do_unaligned_access: Callback for unaligned access handling, if
82 * the target defines #ALIGNED_ONLY.
83 * @virtio_is_big_endian: Callback to return %true if a CPU which supports
84 * runtime configurable endianness is currently big-endian. Non-configurable
85 * CPUs can use the default implementation of this method. This method should
86 * not be used by any callers other than the pre-1.0 virtio devices.
87 * @memory_rw_debug: Callback for GDB memory access.
88 * @dump_state: Callback for dumping state.
89 * @dump_statistics: Callback for dumping statistics.
90 * @get_arch_id: Callback for getting architecture-dependent CPU ID.
91 * @get_paging_enabled: Callback for inquiring whether paging is enabled.
92 * @get_memory_mapping: Callback for obtaining the memory mappings.
93 * @set_pc: Callback for setting the Program Counter register.
94 * @synchronize_from_tb: Callback for synchronizing state from a TCG
95 * #TranslationBlock.
96 * @handle_mmu_fault: Callback for handling an MMU fault.
97 * @get_phys_page_debug: Callback for obtaining a physical address.
98 * @get_phys_page_attrs_debug: Callback for obtaining a physical address and the
99 * associated memory transaction attributes to use for the access.
100 * CPUs which use memory transaction attributes should implement this
101 * instead of get_phys_page_debug.
102 * @asidx_from_attrs: Callback to return the CPU AddressSpace to use for
103 * a memory access with the specified memory transaction attributes.
104 * @gdb_read_register: Callback for letting GDB read a register.
105 * @gdb_write_register: Callback for letting GDB write a register.
106 * @debug_check_watchpoint: Callback: return true if the architectural
107 * watchpoint whose address has matched should really fire.
108 * @debug_excp_handler: Callback for handling debug exceptions.
109 * @write_elf64_note: Callback for writing a CPU-specific ELF note to a
110 * 64-bit VM coredump.
111 * @write_elf32_qemunote: Callback for writing a CPU- and QEMU-specific ELF
112 * note to a 32-bit VM coredump.
113 * @write_elf32_note: Callback for writing a CPU-specific ELF note to a
114 * 32-bit VM coredump.
115 * @write_elf32_qemunote: Callback for writing a CPU- and QEMU-specific ELF
116 * note to a 32-bit VM coredump.
117 * @vmsd: State description for migration.
118 * @gdb_num_core_regs: Number of core registers accessible to GDB.
119 * @gdb_core_xml_file: File name for core registers GDB XML description.
120 * @gdb_stop_before_watchpoint: Indicates whether GDB expects the CPU to stop
121 * before the insn which triggers a watchpoint rather than after it.
122 * @gdb_arch_name: Optional callback that returns the architecture name known
123 * to GDB. The caller must free the returned string with g_free.
124 * @cpu_exec_enter: Callback for cpu_exec preparation.
125 * @cpu_exec_exit: Callback for cpu_exec cleanup.
126 * @cpu_exec_interrupt: Callback for processing interrupts in cpu_exec.
127 * @disas_set_info: Setup architecture specific components of disassembly info
129 * Represents a CPU family or model.
131 typedef struct CPUClass {
132 /*< private >*/
133 DeviceClass parent_class;
134 /*< public >*/
136 ObjectClass *(*class_by_name)(const char *cpu_model);
137 void (*parse_features)(CPUState *cpu, char *str, Error **errp);
139 void (*reset)(CPUState *cpu);
140 int reset_dump_flags;
141 bool (*has_work)(CPUState *cpu);
142 void (*do_interrupt)(CPUState *cpu);
143 CPUUnassignedAccess do_unassigned_access;
144 void (*do_unaligned_access)(CPUState *cpu, vaddr addr,
145 int is_write, int is_user, uintptr_t retaddr);
146 bool (*virtio_is_big_endian)(CPUState *cpu);
147 int (*memory_rw_debug)(CPUState *cpu, vaddr addr,
148 uint8_t *buf, int len, bool is_write);
149 void (*dump_state)(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
150 int flags);
151 void (*dump_statistics)(CPUState *cpu, FILE *f,
152 fprintf_function cpu_fprintf, int flags);
153 int64_t (*get_arch_id)(CPUState *cpu);
154 bool (*get_paging_enabled)(const CPUState *cpu);
155 void (*get_memory_mapping)(CPUState *cpu, MemoryMappingList *list,
156 Error **errp);
157 void (*set_pc)(CPUState *cpu, vaddr value);
158 void (*synchronize_from_tb)(CPUState *cpu, struct TranslationBlock *tb);
159 int (*handle_mmu_fault)(CPUState *cpu, vaddr address, int rw,
160 int mmu_index);
161 hwaddr (*get_phys_page_debug)(CPUState *cpu, vaddr addr);
162 hwaddr (*get_phys_page_attrs_debug)(CPUState *cpu, vaddr addr,
163 MemTxAttrs *attrs);
164 int (*asidx_from_attrs)(CPUState *cpu, MemTxAttrs attrs);
165 int (*gdb_read_register)(CPUState *cpu, uint8_t *buf, int reg);
166 int (*gdb_write_register)(CPUState *cpu, uint8_t *buf, int reg);
167 bool (*debug_check_watchpoint)(CPUState *cpu, CPUWatchpoint *wp);
168 void (*debug_excp_handler)(CPUState *cpu);
170 int (*write_elf64_note)(WriteCoreDumpFunction f, CPUState *cpu,
171 int cpuid, void *opaque);
172 int (*write_elf64_qemunote)(WriteCoreDumpFunction f, CPUState *cpu,
173 void *opaque);
174 int (*write_elf32_note)(WriteCoreDumpFunction f, CPUState *cpu,
175 int cpuid, void *opaque);
176 int (*write_elf32_qemunote)(WriteCoreDumpFunction f, CPUState *cpu,
177 void *opaque);
179 const struct VMStateDescription *vmsd;
180 int gdb_num_core_regs;
181 const char *gdb_core_xml_file;
182 gchar * (*gdb_arch_name)(CPUState *cpu);
183 bool gdb_stop_before_watchpoint;
185 void (*cpu_exec_enter)(CPUState *cpu);
186 void (*cpu_exec_exit)(CPUState *cpu);
187 bool (*cpu_exec_interrupt)(CPUState *cpu, int interrupt_request);
189 void (*disas_set_info)(CPUState *cpu, disassemble_info *info);
190 } CPUClass;
192 #ifdef HOST_WORDS_BIGENDIAN
193 typedef struct icount_decr_u16 {
194 uint16_t high;
195 uint16_t low;
196 } icount_decr_u16;
197 #else
198 typedef struct icount_decr_u16 {
199 uint16_t low;
200 uint16_t high;
201 } icount_decr_u16;
202 #endif
204 typedef struct CPUBreakpoint {
205 vaddr pc;
206 int flags; /* BP_* */
207 QTAILQ_ENTRY(CPUBreakpoint) entry;
208 } CPUBreakpoint;
210 struct CPUWatchpoint {
211 vaddr vaddr;
212 vaddr len;
213 vaddr hitaddr;
214 MemTxAttrs hitattrs;
215 int flags; /* BP_* */
216 QTAILQ_ENTRY(CPUWatchpoint) entry;
219 struct KVMState;
220 struct kvm_run;
222 #define TB_JMP_CACHE_BITS 12
223 #define TB_JMP_CACHE_SIZE (1 << TB_JMP_CACHE_BITS)
226 * CPUState:
227 * @cpu_index: CPU index (informative).
228 * @nr_cores: Number of cores within this CPU package.
229 * @nr_threads: Number of threads within this CPU.
230 * @numa_node: NUMA node this CPU is belonging to.
231 * @host_tid: Host thread ID.
232 * @running: #true if CPU is currently running (usermode).
233 * @created: Indicates whether the CPU thread has been successfully created.
234 * @interrupt_request: Indicates a pending interrupt request.
235 * @halted: Nonzero if the CPU is in suspended state.
236 * @stop: Indicates a pending stop request.
237 * @stopped: Indicates the CPU has been artificially stopped.
238 * @crash_occurred: Indicates the OS reported a crash (panic) for this CPU
239 * @tcg_exit_req: Set to force TCG to stop executing linked TBs for this
240 * CPU and return to its top level loop.
241 * @tb_flushed: Indicates the translation buffer has been flushed.
242 * @singlestep_enabled: Flags for single-stepping.
243 * @icount_extra: Instructions until next timer event.
244 * @icount_decr: Number of cycles left, with interrupt flag in high bit.
245 * This allows a single read-compare-cbranch-write sequence to test
246 * for both decrementer underflow and exceptions.
247 * @can_do_io: Nonzero if memory-mapped IO is safe. Deterministic execution
248 * requires that IO only be performed on the last instruction of a TB
249 * so that interrupts take effect immediately.
250 * @cpu_ases: Pointer to array of CPUAddressSpaces (which define the
251 * AddressSpaces this CPU has)
252 * @num_ases: number of CPUAddressSpaces in @cpu_ases
253 * @as: Pointer to the first AddressSpace, for the convenience of targets which
254 * only have a single AddressSpace
255 * @env_ptr: Pointer to subclass-specific CPUArchState field.
256 * @current_tb: Currently executing TB.
257 * @gdb_regs: Additional GDB registers.
258 * @gdb_num_regs: Number of total registers accessible to GDB.
259 * @gdb_num_g_regs: Number of registers in GDB 'g' packets.
260 * @next_cpu: Next CPU sharing TB cache.
261 * @opaque: User data.
262 * @mem_io_pc: Host Program Counter at which the memory was accessed.
263 * @mem_io_vaddr: Target virtual address at which the memory was accessed.
264 * @kvm_fd: vCPU file descriptor for KVM.
265 * @work_mutex: Lock to prevent multiple access to queued_work_*.
266 * @queued_work_first: First asynchronous work pending.
268 * State of one CPU core or thread.
270 struct CPUState {
271 /*< private >*/
272 DeviceState parent_obj;
273 /*< public >*/
275 int nr_cores;
276 int nr_threads;
277 int numa_node;
279 struct QemuThread *thread;
280 #ifdef _WIN32
281 HANDLE hThread;
282 #endif
283 int thread_id;
284 uint32_t host_tid;
285 bool running;
286 struct QemuCond *halt_cond;
287 bool thread_kicked;
288 bool created;
289 bool stop;
290 bool stopped;
291 bool crash_occurred;
292 bool exit_request;
293 bool tb_flushed;
294 uint32_t interrupt_request;
295 int singlestep_enabled;
296 int64_t icount_extra;
297 sigjmp_buf jmp_env;
299 QemuMutex work_mutex;
300 struct qemu_work_item *queued_work_first, *queued_work_last;
302 CPUAddressSpace *cpu_ases;
303 int num_ases;
304 AddressSpace *as;
305 MemoryRegion *memory;
307 void *env_ptr; /* CPUArchState */
308 struct TranslationBlock *current_tb;
309 struct TranslationBlock *tb_jmp_cache[TB_JMP_CACHE_SIZE];
310 struct GDBRegisterState *gdb_regs;
311 int gdb_num_regs;
312 int gdb_num_g_regs;
313 QTAILQ_ENTRY(CPUState) node;
315 /* ice debug support */
316 QTAILQ_HEAD(breakpoints_head, CPUBreakpoint) breakpoints;
318 QTAILQ_HEAD(watchpoints_head, CPUWatchpoint) watchpoints;
319 CPUWatchpoint *watchpoint_hit;
321 void *opaque;
323 /* In order to avoid passing too many arguments to the MMIO helpers,
324 * we store some rarely used information in the CPU context.
326 uintptr_t mem_io_pc;
327 vaddr mem_io_vaddr;
329 int kvm_fd;
330 bool kvm_vcpu_dirty;
331 struct KVMState *kvm_state;
332 struct kvm_run *kvm_run;
334 /* TODO Move common fields from CPUArchState here. */
335 int cpu_index; /* used by alpha TCG */
336 uint32_t halted; /* used by alpha, cris, ppc TCG */
337 union {
338 uint32_t u32;
339 icount_decr_u16 u16;
340 } icount_decr;
341 uint32_t can_do_io;
342 int32_t exception_index; /* used by m68k TCG */
344 /* Used to keep track of an outstanding cpu throttle thread for migration
345 * autoconverge
347 bool throttle_thread_scheduled;
349 /* Note that this is accessed at the start of every TB via a negative
350 offset from AREG0. Leave this field at the end so as to make the
351 (absolute value) offset as small as possible. This reduces code
352 size, especially for hosts without large memory offsets. */
353 uint32_t tcg_exit_req;
356 QTAILQ_HEAD(CPUTailQ, CPUState);
357 extern struct CPUTailQ cpus;
358 #define CPU_NEXT(cpu) QTAILQ_NEXT(cpu, node)
359 #define CPU_FOREACH(cpu) QTAILQ_FOREACH(cpu, &cpus, node)
360 #define CPU_FOREACH_SAFE(cpu, next_cpu) \
361 QTAILQ_FOREACH_SAFE(cpu, &cpus, node, next_cpu)
362 #define CPU_FOREACH_REVERSE(cpu) \
363 QTAILQ_FOREACH_REVERSE(cpu, &cpus, CPUTailQ, node)
364 #define first_cpu QTAILQ_FIRST(&cpus)
366 extern __thread CPUState *current_cpu;
369 * cpu_paging_enabled:
370 * @cpu: The CPU whose state is to be inspected.
372 * Returns: %true if paging is enabled, %false otherwise.
374 bool cpu_paging_enabled(const CPUState *cpu);
377 * cpu_get_memory_mapping:
378 * @cpu: The CPU whose memory mappings are to be obtained.
379 * @list: Where to write the memory mappings to.
380 * @errp: Pointer for reporting an #Error.
382 void cpu_get_memory_mapping(CPUState *cpu, MemoryMappingList *list,
383 Error **errp);
386 * cpu_write_elf64_note:
387 * @f: pointer to a function that writes memory to a file
388 * @cpu: The CPU whose memory is to be dumped
389 * @cpuid: ID number of the CPU
390 * @opaque: pointer to the CPUState struct
392 int cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cpu,
393 int cpuid, void *opaque);
396 * cpu_write_elf64_qemunote:
397 * @f: pointer to a function that writes memory to a file
398 * @cpu: The CPU whose memory is to be dumped
399 * @cpuid: ID number of the CPU
400 * @opaque: pointer to the CPUState struct
402 int cpu_write_elf64_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
403 void *opaque);
406 * cpu_write_elf32_note:
407 * @f: pointer to a function that writes memory to a file
408 * @cpu: The CPU whose memory is to be dumped
409 * @cpuid: ID number of the CPU
410 * @opaque: pointer to the CPUState struct
412 int cpu_write_elf32_note(WriteCoreDumpFunction f, CPUState *cpu,
413 int cpuid, void *opaque);
416 * cpu_write_elf32_qemunote:
417 * @f: pointer to a function that writes memory to a file
418 * @cpu: The CPU whose memory is to be dumped
419 * @cpuid: ID number of the CPU
420 * @opaque: pointer to the CPUState struct
422 int cpu_write_elf32_qemunote(WriteCoreDumpFunction f, CPUState *cpu,
423 void *opaque);
426 * CPUDumpFlags:
427 * @CPU_DUMP_CODE:
428 * @CPU_DUMP_FPU: dump FPU register state, not just integer
429 * @CPU_DUMP_CCOP: dump info about TCG QEMU's condition code optimization state
431 enum CPUDumpFlags {
432 CPU_DUMP_CODE = 0x00010000,
433 CPU_DUMP_FPU = 0x00020000,
434 CPU_DUMP_CCOP = 0x00040000,
438 * cpu_dump_state:
439 * @cpu: The CPU whose state is to be dumped.
440 * @f: File to dump to.
441 * @cpu_fprintf: Function to dump with.
442 * @flags: Flags what to dump.
444 * Dumps CPU state.
446 void cpu_dump_state(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
447 int flags);
450 * cpu_dump_statistics:
451 * @cpu: The CPU whose state is to be dumped.
452 * @f: File to dump to.
453 * @cpu_fprintf: Function to dump with.
454 * @flags: Flags what to dump.
456 * Dumps CPU statistics.
458 void cpu_dump_statistics(CPUState *cpu, FILE *f, fprintf_function cpu_fprintf,
459 int flags);
461 #ifndef CONFIG_USER_ONLY
463 * cpu_get_phys_page_attrs_debug:
464 * @cpu: The CPU to obtain the physical page address for.
465 * @addr: The virtual address.
466 * @attrs: Updated on return with the memory transaction attributes to use
467 * for this access.
469 * Obtains the physical page corresponding to a virtual one, together
470 * with the corresponding memory transaction attributes to use for the access.
471 * Use it only for debugging because no protection checks are done.
473 * Returns: Corresponding physical page address or -1 if no page found.
475 static inline hwaddr cpu_get_phys_page_attrs_debug(CPUState *cpu, vaddr addr,
476 MemTxAttrs *attrs)
478 CPUClass *cc = CPU_GET_CLASS(cpu);
480 if (cc->get_phys_page_attrs_debug) {
481 return cc->get_phys_page_attrs_debug(cpu, addr, attrs);
483 /* Fallback for CPUs which don't implement the _attrs_ hook */
484 *attrs = MEMTXATTRS_UNSPECIFIED;
485 return cc->get_phys_page_debug(cpu, addr);
489 * cpu_get_phys_page_debug:
490 * @cpu: The CPU to obtain the physical page address for.
491 * @addr: The virtual address.
493 * Obtains the physical page corresponding to a virtual one.
494 * Use it only for debugging because no protection checks are done.
496 * Returns: Corresponding physical page address or -1 if no page found.
498 static inline hwaddr cpu_get_phys_page_debug(CPUState *cpu, vaddr addr)
500 MemTxAttrs attrs = {};
502 return cpu_get_phys_page_attrs_debug(cpu, addr, &attrs);
505 /** cpu_asidx_from_attrs:
506 * @cpu: CPU
507 * @attrs: memory transaction attributes
509 * Returns the address space index specifying the CPU AddressSpace
510 * to use for a memory access with the given transaction attributes.
512 static inline int cpu_asidx_from_attrs(CPUState *cpu, MemTxAttrs attrs)
514 CPUClass *cc = CPU_GET_CLASS(cpu);
516 if (cc->asidx_from_attrs) {
517 return cc->asidx_from_attrs(cpu, attrs);
519 return 0;
521 #endif
524 * cpu_reset:
525 * @cpu: The CPU whose state is to be reset.
527 void cpu_reset(CPUState *cpu);
530 * cpu_class_by_name:
531 * @typename: The CPU base type.
532 * @cpu_model: The model string without any parameters.
534 * Looks up a CPU #ObjectClass matching name @cpu_model.
536 * Returns: A #CPUClass or %NULL if not matching class is found.
538 ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
541 * cpu_generic_init:
542 * @typename: The CPU base type.
543 * @cpu_model: The model string including optional parameters.
545 * Instantiates a CPU, processes optional parameters and realizes the CPU.
547 * Returns: A #CPUState or %NULL if an error occurred.
549 CPUState *cpu_generic_init(const char *typename, const char *cpu_model);
552 * cpu_has_work:
553 * @cpu: The vCPU to check.
555 * Checks whether the CPU has work to do.
557 * Returns: %true if the CPU has work, %false otherwise.
559 static inline bool cpu_has_work(CPUState *cpu)
561 CPUClass *cc = CPU_GET_CLASS(cpu);
563 g_assert(cc->has_work);
564 return cc->has_work(cpu);
568 * qemu_cpu_is_self:
569 * @cpu: The vCPU to check against.
571 * Checks whether the caller is executing on the vCPU thread.
573 * Returns: %true if called from @cpu's thread, %false otherwise.
575 bool qemu_cpu_is_self(CPUState *cpu);
578 * qemu_cpu_kick:
579 * @cpu: The vCPU to kick.
581 * Kicks @cpu's thread.
583 void qemu_cpu_kick(CPUState *cpu);
586 * cpu_is_stopped:
587 * @cpu: The CPU to check.
589 * Checks whether the CPU is stopped.
591 * Returns: %true if run state is not running or if artificially stopped;
592 * %false otherwise.
594 bool cpu_is_stopped(CPUState *cpu);
597 * run_on_cpu:
598 * @cpu: The vCPU to run on.
599 * @func: The function to be executed.
600 * @data: Data to pass to the function.
602 * Schedules the function @func for execution on the vCPU @cpu.
604 void run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data);
607 * async_run_on_cpu:
608 * @cpu: The vCPU to run on.
609 * @func: The function to be executed.
610 * @data: Data to pass to the function.
612 * Schedules the function @func for execution on the vCPU @cpu asynchronously.
614 void async_run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data);
617 * qemu_get_cpu:
618 * @index: The CPUState@cpu_index value of the CPU to obtain.
620 * Gets a CPU matching @index.
622 * Returns: The CPU or %NULL if there is no matching CPU.
624 CPUState *qemu_get_cpu(int index);
627 * cpu_exists:
628 * @id: Guest-exposed CPU ID to lookup.
630 * Search for CPU with specified ID.
632 * Returns: %true - CPU is found, %false - CPU isn't found.
634 bool cpu_exists(int64_t id);
637 * cpu_throttle_set:
638 * @new_throttle_pct: Percent of sleep time. Valid range is 1 to 99.
640 * Throttles all vcpus by forcing them to sleep for the given percentage of
641 * time. A throttle_percentage of 25 corresponds to a 75% duty cycle roughly.
642 * (example: 10ms sleep for every 30ms awake).
644 * cpu_throttle_set can be called as needed to adjust new_throttle_pct.
645 * Once the throttling starts, it will remain in effect until cpu_throttle_stop
646 * is called.
648 void cpu_throttle_set(int new_throttle_pct);
651 * cpu_throttle_stop:
653 * Stops the vcpu throttling started by cpu_throttle_set.
655 void cpu_throttle_stop(void);
658 * cpu_throttle_active:
660 * Returns: %true if the vcpus are currently being throttled, %false otherwise.
662 bool cpu_throttle_active(void);
665 * cpu_throttle_get_percentage:
667 * Returns the vcpu throttle percentage. See cpu_throttle_set for details.
669 * Returns: The throttle percentage in range 1 to 99.
671 int cpu_throttle_get_percentage(void);
673 #ifndef CONFIG_USER_ONLY
675 typedef void (*CPUInterruptHandler)(CPUState *, int);
677 extern CPUInterruptHandler cpu_interrupt_handler;
680 * cpu_interrupt:
681 * @cpu: The CPU to set an interrupt on.
682 * @mask: The interupts to set.
684 * Invokes the interrupt handler.
686 static inline void cpu_interrupt(CPUState *cpu, int mask)
688 cpu_interrupt_handler(cpu, mask);
691 #else /* USER_ONLY */
693 void cpu_interrupt(CPUState *cpu, int mask);
695 #endif /* USER_ONLY */
697 #ifdef CONFIG_SOFTMMU
698 static inline void cpu_unassigned_access(CPUState *cpu, hwaddr addr,
699 bool is_write, bool is_exec,
700 int opaque, unsigned size)
702 CPUClass *cc = CPU_GET_CLASS(cpu);
704 if (cc->do_unassigned_access) {
705 cc->do_unassigned_access(cpu, addr, is_write, is_exec, opaque, size);
709 static inline void cpu_unaligned_access(CPUState *cpu, vaddr addr,
710 int is_write, int is_user,
711 uintptr_t retaddr)
713 CPUClass *cc = CPU_GET_CLASS(cpu);
715 cc->do_unaligned_access(cpu, addr, is_write, is_user, retaddr);
717 #endif
720 * cpu_set_pc:
721 * @cpu: The CPU to set the program counter for.
722 * @addr: Program counter value.
724 * Sets the program counter for a CPU.
726 static inline void cpu_set_pc(CPUState *cpu, vaddr addr)
728 CPUClass *cc = CPU_GET_CLASS(cpu);
730 cc->set_pc(cpu, addr);
734 * cpu_reset_interrupt:
735 * @cpu: The CPU to clear the interrupt on.
736 * @mask: The interrupt mask to clear.
738 * Resets interrupts on the vCPU @cpu.
740 void cpu_reset_interrupt(CPUState *cpu, int mask);
743 * cpu_exit:
744 * @cpu: The CPU to exit.
746 * Requests the CPU @cpu to exit execution.
748 void cpu_exit(CPUState *cpu);
751 * cpu_resume:
752 * @cpu: The CPU to resume.
754 * Resumes CPU, i.e. puts CPU into runnable state.
756 void cpu_resume(CPUState *cpu);
759 * qemu_init_vcpu:
760 * @cpu: The vCPU to initialize.
762 * Initializes a vCPU.
764 void qemu_init_vcpu(CPUState *cpu);
766 #define SSTEP_ENABLE 0x1 /* Enable simulated HW single stepping */
767 #define SSTEP_NOIRQ 0x2 /* Do not use IRQ while single stepping */
768 #define SSTEP_NOTIMER 0x4 /* Do not Timers while single stepping */
771 * cpu_single_step:
772 * @cpu: CPU to the flags for.
773 * @enabled: Flags to enable.
775 * Enables or disables single-stepping for @cpu.
777 void cpu_single_step(CPUState *cpu, int enabled);
779 /* Breakpoint/watchpoint flags */
780 #define BP_MEM_READ 0x01
781 #define BP_MEM_WRITE 0x02
782 #define BP_MEM_ACCESS (BP_MEM_READ | BP_MEM_WRITE)
783 #define BP_STOP_BEFORE_ACCESS 0x04
784 /* 0x08 currently unused */
785 #define BP_GDB 0x10
786 #define BP_CPU 0x20
787 #define BP_ANY (BP_GDB | BP_CPU)
788 #define BP_WATCHPOINT_HIT_READ 0x40
789 #define BP_WATCHPOINT_HIT_WRITE 0x80
790 #define BP_WATCHPOINT_HIT (BP_WATCHPOINT_HIT_READ | BP_WATCHPOINT_HIT_WRITE)
792 int cpu_breakpoint_insert(CPUState *cpu, vaddr pc, int flags,
793 CPUBreakpoint **breakpoint);
794 int cpu_breakpoint_remove(CPUState *cpu, vaddr pc, int flags);
795 void cpu_breakpoint_remove_by_ref(CPUState *cpu, CPUBreakpoint *breakpoint);
796 void cpu_breakpoint_remove_all(CPUState *cpu, int mask);
798 /* Return true if PC matches an installed breakpoint. */
799 static inline bool cpu_breakpoint_test(CPUState *cpu, vaddr pc, int mask)
801 CPUBreakpoint *bp;
803 if (unlikely(!QTAILQ_EMPTY(&cpu->breakpoints))) {
804 QTAILQ_FOREACH(bp, &cpu->breakpoints, entry) {
805 if (bp->pc == pc && (bp->flags & mask)) {
806 return true;
810 return false;
813 int cpu_watchpoint_insert(CPUState *cpu, vaddr addr, vaddr len,
814 int flags, CPUWatchpoint **watchpoint);
815 int cpu_watchpoint_remove(CPUState *cpu, vaddr addr,
816 vaddr len, int flags);
817 void cpu_watchpoint_remove_by_ref(CPUState *cpu, CPUWatchpoint *watchpoint);
818 void cpu_watchpoint_remove_all(CPUState *cpu, int mask);
820 void QEMU_NORETURN cpu_abort(CPUState *cpu, const char *fmt, ...)
821 GCC_FMT_ATTR(2, 3);
822 void cpu_exec_exit(CPUState *cpu);
824 #ifdef CONFIG_SOFTMMU
825 extern const struct VMStateDescription vmstate_cpu_common;
826 #else
827 #define vmstate_cpu_common vmstate_dummy
828 #endif
830 #define VMSTATE_CPU() { \
831 .name = "parent_obj", \
832 .size = sizeof(CPUState), \
833 .vmsd = &vmstate_cpu_common, \
834 .flags = VMS_STRUCT, \
835 .offset = 0, \
838 #endif