hw_accel.h 604 B

12345678910111213141516171819202122232425
  1. /*
  2. * QEMU Hardware accelerators support
  3. *
  4. * Copyright 2016 Google, Inc.
  5. *
  6. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  7. * See the COPYING file in the top-level directory.
  8. *
  9. */
  10. #ifndef QEMU_HW_ACCEL_H
  11. #define QEMU_HW_ACCEL_H
  12. #include "hw/core/cpu.h"
  13. #include "system/kvm.h"
  14. #include "system/hvf.h"
  15. #include "system/whpx.h"
  16. #include "system/nvmm.h"
  17. void cpu_synchronize_state(CPUState *cpu);
  18. void cpu_synchronize_post_reset(CPUState *cpu);
  19. void cpu_synchronize_post_init(CPUState *cpu);
  20. void cpu_synchronize_pre_loadvm(CPUState *cpu);
  21. #endif /* QEMU_HW_ACCEL_H */