| * QEMU Hardware accelertors support |
| * 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. |
| static inline void cpu_synchronize_state(CPUState *cpu) |
| kvm_cpu_synchronize_state(cpu); |
| hax_cpu_synchronize_state(cpu); |
| whpx_cpu_synchronize_state(cpu); |
| static inline void cpu_synchronize_post_reset(CPUState *cpu) |
| kvm_cpu_synchronize_post_reset(cpu); |
| hax_cpu_synchronize_post_reset(cpu); |
| whpx_cpu_synchronize_post_reset(cpu); |
| static inline void cpu_synchronize_post_init(CPUState *cpu) |
| kvm_cpu_synchronize_post_init(cpu); |
| hax_cpu_synchronize_post_init(cpu); |
| whpx_cpu_synchronize_post_init(cpu); |
| static inline void cpu_synchronize_pre_loadvm(CPUState *cpu) |
| kvm_cpu_synchronize_pre_loadvm(cpu); |
| hax_cpu_synchronize_pre_loadvm(cpu); |
| whpx_cpu_synchronize_pre_loadvm(cpu); |
| #endif /* QEMU_HW_ACCEL_H */ |