2017-01-10 13:59:55 +03:00
|
|
|
/*
|
2020-07-31 13:23:42 +03:00
|
|
|
* QEMU Hardware accelerators support
|
2017-01-10 13:59:55 +03:00
|
|
|
*
|
|
|
|
* Copyright 2016 Google, Inc.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QEMU_HW_ACCEL_H
|
|
|
|
#define QEMU_HW_ACCEL_H
|
|
|
|
|
2019-07-09 18:20:52 +03:00
|
|
|
#include "hw/core/cpu.h"
|
2017-01-10 13:59:55 +03:00
|
|
|
#include "sysemu/kvm.h"
|
2020-06-30 13:28:17 +03:00
|
|
|
#include "sysemu/hvf.h"
|
2018-01-23 00:07:49 +03:00
|
|
|
#include "sysemu/whpx.h"
|
2021-04-02 23:25:34 +03:00
|
|
|
#include "sysemu/nvmm.h"
|
2017-01-10 13:59:55 +03:00
|
|
|
|
2020-07-31 13:23:42 +03:00
|
|
|
void cpu_synchronize_state(CPUState *cpu);
|
|
|
|
void cpu_synchronize_post_reset(CPUState *cpu);
|
|
|
|
void cpu_synchronize_post_init(CPUState *cpu);
|
|
|
|
void cpu_synchronize_pre_loadvm(CPUState *cpu);
|
2017-05-26 07:46:28 +03:00
|
|
|
|
2017-01-10 13:59:55 +03:00
|
|
|
#endif /* QEMU_HW_ACCEL_H */
|