Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/target/i386/hvf
2023-03-06 14:48:14 +01:00
..
hvf-cpu.c projet 2023-03-06 14:48:14 +01:00
hvf-i386.h projet 2023-03-06 14:48:14 +01:00
hvf.c projet 2023-03-06 14:48:14 +01:00
meson.build projet 2023-03-06 14:48:14 +01:00
panic.h projet 2023-03-06 14:48:14 +01:00
README.md projet 2023-03-06 14:48:14 +01:00
vmcs.h projet 2023-03-06 14:48:14 +01:00
vmx.h projet 2023-03-06 14:48:14 +01:00
x86.c projet 2023-03-06 14:48:14 +01:00
x86.h projet 2023-03-06 14:48:14 +01:00
x86_cpuid.c projet 2023-03-06 14:48:14 +01:00
x86_decode.c projet 2023-03-06 14:48:14 +01:00
x86_decode.h projet 2023-03-06 14:48:14 +01:00
x86_descr.c projet 2023-03-06 14:48:14 +01:00
x86_descr.h projet 2023-03-06 14:48:14 +01:00
x86_emu.c projet 2023-03-06 14:48:14 +01:00
x86_emu.h projet 2023-03-06 14:48:14 +01:00
x86_flags.c projet 2023-03-06 14:48:14 +01:00
x86_flags.h projet 2023-03-06 14:48:14 +01:00
x86_mmu.c projet 2023-03-06 14:48:14 +01:00
x86_mmu.h projet 2023-03-06 14:48:14 +01:00
x86_task.c projet 2023-03-06 14:48:14 +01:00
x86_task.h projet 2023-03-06 14:48:14 +01:00
x86hvf.c projet 2023-03-06 14:48:14 +01:00
x86hvf.h projet 2023-03-06 14:48:14 +01:00

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.