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