2020-07-06 17:39:45 +00:00
|
|
|
/*
|
2020-10-15 14:32:15 +00:00
|
|
|
* QEMU TCG vCPU common functionality
|
|
|
|
*
|
|
|
|
* Functionality common to all TCG vcpu variants: mttcg, rr and icount.
|
2020-07-06 17:39:45 +00:00
|
|
|
*
|
|
|
|
* Copyright 2020 SUSE LLC
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2022-05-06 13:49:08 +00:00
|
|
|
#ifndef TCG_ACCEL_OPS_H
|
|
|
|
#define TCG_ACCEL_OPS_H
|
2020-07-06 17:39:45 +00:00
|
|
|
|
|
|
|
#include "sysemu/cpus.h"
|
|
|
|
|
2024-01-24 10:16:32 +00:00
|
|
|
void tcg_cpu_destroy(CPUState *cpu);
|
2024-01-24 10:16:33 +00:00
|
|
|
int tcg_cpu_exec(CPUState *cpu);
|
2021-02-04 16:39:25 +00:00
|
|
|
void tcg_handle_interrupt(CPUState *cpu, int mask);
|
2021-03-02 03:21:08 +00:00
|
|
|
void tcg_cpu_init_cflags(CPUState *cpu, bool parallel);
|
2020-07-06 17:39:45 +00:00
|
|
|
|
2022-05-06 13:49:08 +00:00
|
|
|
#endif /* TCG_ACCEL_OPS_H */
|