tree: f47a0b56f60403cb5e80902c7057d9bd7d66eb80 [path history] [tgz]
  1. hvf-accel-ops.c
  2. hvf-accel-ops.h
  3. hvf-i386.h
  4. hvf.c
  5. meson.build
  6. panic.h
  7. README.md
  8. vmcs.h
  9. vmx.h
  10. x86.c
  11. x86.h
  12. x86_cpuid.c
  13. x86_decode.c
  14. x86_decode.h
  15. x86_descr.c
  16. x86_descr.h
  17. x86_emu.c
  18. x86_emu.h
  19. x86_flags.c
  20. x86_flags.h
  21. x86_mmu.c
  22. x86_mmu.h
  23. x86_task.c
  24. x86_task.h
  25. x86hvf.c
  26. x86hvf.h
target/i386/hvf/README.md

OS X Hypervisor.framework support in QEMU

These sources (and ../hvf-all.c) are adapted from Veertu Inc's vdhh (Veertu Desktop Hosted Hypervisor) (last known location: https://github.com/veertuinc/vdhh) with some minor changes, the most significant of which were:

  1. Adapt to our current QEMU's CPUState structure and address_space_rw API; many struct members have been moved around (emulated x86 state, xsave_buf) due to historical differences + QEMU needing to handle more emulation targets.
  2. Removal of apic_page and hyperv-related functionality.
  3. More relaxed use of qemu_mutex_lock_iothread.