mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
i386: hvf: Move synchronize functions to sysemu
Cc: Cameron Esfahani <dirty@apple.com> Signed-off-by: Roman Bolshakov <r.bolshakov@yadro.com> Message-Id: <20200630102824.77604-3-r.bolshakov@yadro.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
b8d864f643
commit
4bb19f98d3
2 changed files with 10 additions and 12 deletions
12
cpus.c
12
cpus.c
|
@ -1017,10 +1017,6 @@ void cpu_synchronize_all_states(void)
|
||||||
|
|
||||||
CPU_FOREACH(cpu) {
|
CPU_FOREACH(cpu) {
|
||||||
cpu_synchronize_state(cpu);
|
cpu_synchronize_state(cpu);
|
||||||
/* TODO: move to cpu_synchronize_state() */
|
|
||||||
if (hvf_enabled()) {
|
|
||||||
hvf_cpu_synchronize_state(cpu);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1030,10 +1026,6 @@ void cpu_synchronize_all_post_reset(void)
|
||||||
|
|
||||||
CPU_FOREACH(cpu) {
|
CPU_FOREACH(cpu) {
|
||||||
cpu_synchronize_post_reset(cpu);
|
cpu_synchronize_post_reset(cpu);
|
||||||
/* TODO: move to cpu_synchronize_post_reset() */
|
|
||||||
if (hvf_enabled()) {
|
|
||||||
hvf_cpu_synchronize_post_reset(cpu);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1043,10 +1035,6 @@ void cpu_synchronize_all_post_init(void)
|
||||||
|
|
||||||
CPU_FOREACH(cpu) {
|
CPU_FOREACH(cpu) {
|
||||||
cpu_synchronize_post_init(cpu);
|
cpu_synchronize_post_init(cpu);
|
||||||
/* TODO: move to cpu_synchronize_post_init() */
|
|
||||||
if (hvf_enabled()) {
|
|
||||||
hvf_cpu_synchronize_post_init(cpu);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
#include "hw/core/cpu.h"
|
#include "hw/core/cpu.h"
|
||||||
#include "sysemu/hax.h"
|
#include "sysemu/hax.h"
|
||||||
#include "sysemu/kvm.h"
|
#include "sysemu/kvm.h"
|
||||||
|
#include "sysemu/hvf.h"
|
||||||
#include "sysemu/whpx.h"
|
#include "sysemu/whpx.h"
|
||||||
|
|
||||||
static inline void cpu_synchronize_state(CPUState *cpu)
|
static inline void cpu_synchronize_state(CPUState *cpu)
|
||||||
|
@ -24,6 +25,9 @@ static inline void cpu_synchronize_state(CPUState *cpu)
|
||||||
if (hax_enabled()) {
|
if (hax_enabled()) {
|
||||||
hax_cpu_synchronize_state(cpu);
|
hax_cpu_synchronize_state(cpu);
|
||||||
}
|
}
|
||||||
|
if (hvf_enabled()) {
|
||||||
|
hvf_cpu_synchronize_state(cpu);
|
||||||
|
}
|
||||||
if (whpx_enabled()) {
|
if (whpx_enabled()) {
|
||||||
whpx_cpu_synchronize_state(cpu);
|
whpx_cpu_synchronize_state(cpu);
|
||||||
}
|
}
|
||||||
|
@ -37,6 +41,9 @@ static inline void cpu_synchronize_post_reset(CPUState *cpu)
|
||||||
if (hax_enabled()) {
|
if (hax_enabled()) {
|
||||||
hax_cpu_synchronize_post_reset(cpu);
|
hax_cpu_synchronize_post_reset(cpu);
|
||||||
}
|
}
|
||||||
|
if (hvf_enabled()) {
|
||||||
|
hvf_cpu_synchronize_post_reset(cpu);
|
||||||
|
}
|
||||||
if (whpx_enabled()) {
|
if (whpx_enabled()) {
|
||||||
whpx_cpu_synchronize_post_reset(cpu);
|
whpx_cpu_synchronize_post_reset(cpu);
|
||||||
}
|
}
|
||||||
|
@ -50,6 +57,9 @@ static inline void cpu_synchronize_post_init(CPUState *cpu)
|
||||||
if (hax_enabled()) {
|
if (hax_enabled()) {
|
||||||
hax_cpu_synchronize_post_init(cpu);
|
hax_cpu_synchronize_post_init(cpu);
|
||||||
}
|
}
|
||||||
|
if (hvf_enabled()) {
|
||||||
|
hvf_cpu_synchronize_post_init(cpu);
|
||||||
|
}
|
||||||
if (whpx_enabled()) {
|
if (whpx_enabled()) {
|
||||||
whpx_cpu_synchronize_post_init(cpu);
|
whpx_cpu_synchronize_post_init(cpu);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue