mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
d3bb5d0d4f
There are duplicated code to setup the value of MSR_CORE_THREAD_COUNT. Extract a common function for it. Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Link: https://lore.kernel.org/r/20241219110125.1266461-2-xiaoyao.li@intel.com Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> |
2 weeks ago | |
---|---|---|
.. | ||
README.md | 1 year ago | |
hvf-cpu.c | 1 month ago | |
hvf-i386.h | 1 year ago | |
hvf.c | 1 month ago | |
meson.build | 2 years ago | |
panic.h | ||
vmcs.h | 3 years ago | |
vmx.h | 1 month ago | |
x86.c | 11 months ago | |
x86.h | 11 months ago | |
x86_cpuid.c | 1 month ago | |
x86_decode.c | 8 months ago | |
x86_decode.h | ||
x86_descr.c | 11 months ago | |
x86_descr.h | 11 months ago | |
x86_emu.c | 2 weeks ago | |
x86_emu.h | 11 months ago | |
x86_flags.c | ||
x86_flags.h | ||
x86_mmu.c | 2 months ago | |
x86_mmu.h | 11 months ago | |
x86_task.c | 1 month ago | |
x86_task.h | ||
x86hvf.c | 1 month ago | |
x86hvf.h | 2 years ago |
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:
- Adapt to our current QEMU's
CPUState
structure andaddress_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. - Removal of
apic_page
and hyperv-related functionality. - More relaxed use of
bql_lock
.