tree: 3eb23b4d058c1dd52d8f6fbc2db2d246f9d6bde3 [path history] [tgz]
  1. hvf-i386.h
  2. hvf.c
  3. Makefile.objs
  4. panic.h
  5. README.md
  6. vmcs.h
  7. vmx.h
  8. x86.c
  9. x86.h
  10. x86_cpuid.c
  11. x86_decode.c
  12. x86_decode.h
  13. x86_descr.c
  14. x86_descr.h
  15. x86_emu.c
  16. x86_emu.h
  17. x86_flags.c
  18. x86_flags.h
  19. x86_mmu.c
  20. x86_mmu.h
  21. x86_task.c
  22. x86_task.h
  23. x86hvf.c
  24. 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.