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