]> git.proxmox.com Git - mirror_qemu.git/blame - include/qom/cpu.h
target-cris/helper.c: Update Coding Style
[mirror_qemu.git] / include / qom / cpu.h
CommitLineData
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
fcd7d003 23#include <signal.h>
961f8395 24#include "hw/qdev-core.h"
1de7afc9 25#include "qemu/thread.h"
dd83b06a
AF
26
27/**
28 * SECTION:cpu
29 * @section_id: QEMU-cpu
30 * @title: CPU Class
31 * @short_description: Base class for all CPUs
32 */
33
34#define TYPE_CPU "cpu"
35
36#define CPU(obj) OBJECT_CHECK(CPUState, (obj), TYPE_CPU)
37#define CPU_CLASS(class) OBJECT_CLASS_CHECK(CPUClass, (class), TYPE_CPU)
38#define CPU_GET_CLASS(obj) OBJECT_GET_CLASS(CPUClass, (obj), TYPE_CPU)
39
40typedef struct CPUState CPUState;
41
42/**
43 * CPUClass:
2b8c2754
AF
44 * @class_by_name: Callback to map -cpu command line model name to an
45 * instantiatable CPU type.
f5df5baf 46 * @reset: Callback to reset the #CPUState to its initial state.
b170fce3 47 * @vmsd: State description for migration.
dd83b06a
AF
48 *
49 * Represents a CPU family or model.
50 */
51typedef struct CPUClass {
52 /*< private >*/
961f8395 53 DeviceClass parent_class;
dd83b06a
AF
54 /*< public >*/
55
2b8c2754
AF
56 ObjectClass *(*class_by_name)(const char *cpu_model);
57
dd83b06a 58 void (*reset)(CPUState *cpu);
b170fce3
AF
59
60 const struct VMStateDescription *vmsd;
dd83b06a
AF
61} CPUClass;
62
a60f24b5 63struct KVMState;
f7575c96 64struct kvm_run;
a60f24b5 65
dd83b06a
AF
66/**
67 * CPUState:
55e5c285 68 * @cpu_index: CPU index (informative).
ce3960eb
AF
69 * @nr_cores: Number of cores within this CPU package.
70 * @nr_threads: Number of threads within this CPU.
1b1ed8dc 71 * @numa_node: NUMA node this CPU is belonging to.
0d34282f 72 * @host_tid: Host thread ID.
0315c31c 73 * @running: #true if CPU is currently running (usermode).
61a46217 74 * @created: Indicates whether the CPU thread has been successfully created.
4fdeee7c 75 * @stop: Indicates a pending stop request.
f324e766 76 * @stopped: Indicates the CPU has been artificially stopped.
378df4b2
PM
77 * @tcg_exit_req: Set to force TCG to stop executing linked TBs for this
78 * CPU and return to its top level loop.
c05efcb1 79 * @env_ptr: Pointer to subclass-specific CPUArchState field.
d77953b9 80 * @current_tb: Currently executing TB.
8737c51c 81 * @kvm_fd: vCPU file descriptor for KVM.
dd83b06a
AF
82 *
83 * State of one CPU core or thread.
84 */
85struct CPUState {
86 /*< private >*/
961f8395 87 DeviceState parent_obj;
dd83b06a
AF
88 /*< public >*/
89
ce3960eb
AF
90 int nr_cores;
91 int nr_threads;
1b1ed8dc 92 int numa_node;
ce3960eb 93
814e612e 94 struct QemuThread *thread;
bcba2a72
AF
95#ifdef _WIN32
96 HANDLE hThread;
97#endif
9f09e18a 98 int thread_id;
0d34282f 99 uint32_t host_tid;
0315c31c 100 bool running;
f5c121b8 101 struct QemuCond *halt_cond;
c64ca814 102 struct qemu_work_item *queued_work_first, *queued_work_last;
216fc9a4 103 bool thread_kicked;
61a46217 104 bool created;
4fdeee7c 105 bool stop;
f324e766 106 bool stopped;
fcd7d003 107 volatile sig_atomic_t exit_request;
378df4b2 108 volatile sig_atomic_t tcg_exit_req;
bcba2a72 109
c05efcb1 110 void *env_ptr; /* CPUArchState */
d77953b9
AF
111 struct TranslationBlock *current_tb;
112
8737c51c 113 int kvm_fd;
20d695a9 114 bool kvm_vcpu_dirty;
a60f24b5 115 struct KVMState *kvm_state;
f7575c96 116 struct kvm_run *kvm_run;
8737c51c 117
f5df5baf 118 /* TODO Move common fields from CPUArchState here. */
55e5c285 119 int cpu_index; /* used by alpha TCG */
dd83b06a
AF
120};
121
122
123/**
124 * cpu_reset:
125 * @cpu: The CPU whose state is to be reset.
126 */
127void cpu_reset(CPUState *cpu);
128
2b8c2754
AF
129/**
130 * cpu_class_by_name:
131 * @typename: The CPU base type.
132 * @cpu_model: The model string without any parameters.
133 *
134 * Looks up a CPU #ObjectClass matching name @cpu_model.
135 *
136 * Returns: A #CPUClass or %NULL if not matching class is found.
137 */
138ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
139
ca91b15f
AF
140/**
141 * cpu_class_set_vmsd:
142 * @cc: CPU class
143 * @value: Value to set. Unused for %CONFIG_USER_ONLY.
144 *
145 * Sets #VMStateDescription for @cc.
146 *
147 * The @value argument is intentionally discarded for the non-softmmu targets
148 * to avoid linker errors or excessive preprocessor usage. If this behavior
149 * is undesired, you should assign #CPUState.vmsd directly instead.
150 */
151#ifndef CONFIG_USER_ONLY
152static inline void cpu_class_set_vmsd(CPUClass *cc,
153 const struct VMStateDescription *value)
154{
155 cc->vmsd = value;
156}
157#else
158#define cpu_class_set_vmsd(cc, value) ((cc)->vmsd = NULL)
159#endif
160
3993c6bd
AF
161/**
162 * qemu_cpu_has_work:
163 * @cpu: The vCPU to check.
164 *
165 * Checks whether the CPU has work to do.
166 *
167 * Returns: %true if the CPU has work, %false otherwise.
168 */
169bool qemu_cpu_has_work(CPUState *cpu);
170
60e82579
AF
171/**
172 * qemu_cpu_is_self:
173 * @cpu: The vCPU to check against.
174 *
175 * Checks whether the caller is executing on the vCPU thread.
176 *
177 * Returns: %true if called from @cpu's thread, %false otherwise.
178 */
179bool qemu_cpu_is_self(CPUState *cpu);
180
c08d7424
AF
181/**
182 * qemu_cpu_kick:
183 * @cpu: The vCPU to kick.
184 *
185 * Kicks @cpu's thread.
186 */
187void qemu_cpu_kick(CPUState *cpu);
188
2fa45344
AF
189/**
190 * cpu_is_stopped:
191 * @cpu: The CPU to check.
192 *
193 * Checks whether the CPU is stopped.
194 *
195 * Returns: %true if run state is not running or if artificially stopped;
196 * %false otherwise.
197 */
198bool cpu_is_stopped(CPUState *cpu);
199
f100f0b3
AF
200/**
201 * run_on_cpu:
202 * @cpu: The vCPU to run on.
203 * @func: The function to be executed.
204 * @data: Data to pass to the function.
205 *
206 * Schedules the function @func for execution on the vCPU @cpu.
207 */
208void run_on_cpu(CPUState *cpu, void (*func)(void *data), void *data);
209
38d8f5c8
AF
210/**
211 * qemu_get_cpu:
212 * @index: The CPUState@cpu_index value of the CPU to obtain.
213 *
214 * Gets a CPU matching @index.
215 *
216 * Returns: The CPU or %NULL if there is no matching CPU.
217 */
218CPUState *qemu_get_cpu(int index);
219
dd83b06a
AF
220
221#endif