i386: hvf: add code base from Google's QEMU repository
commitc97d6d2cdf97edb4aebe832fdba65d701ad7bcb6
authorSergio Andres Gomez Del Real <sergio.g.delreal@gmail.com>
Wed, 13 Sep 2017 09:05:09 +0000 (13 04:05 -0500)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 22 Dec 2017 14:01:20 +0000 (22 15:01 +0100)
tree33a8d848cfd07af35982a61dbde8b0982d1d3d02
parent2cb9f06e3d2c8649166a95e01b05433fa9d14384
i386: hvf: add code base from Google's QEMU repository

This file begins tracking the files that will be the code base for HVF
support in QEMU. This code base is part of Google's QEMU version of
their Android emulator, and can be found at
https://android.googlesource.com/platform/external/qemu/+/emu-master-dev

This code is based on Veertu Inc's vdhh (Veertu Desktop Hosted
Hypervisor), found at https://github.com/veertuinc/vdhh. Everything is
appropriately licensed under GPL v2-or-later, except for the code inside
x86_task.c and x86_task.h, which, deriving from KVM (the Linux kernel),
is licensed GPL v2-only.

This code base already implements a very great deal of functionality,
although Google's version removed from Vertuu's the support for APIC
page and hyperv-related stuff. According to the Android Emulator Release
Notes, Revision 26.1.3 (August 2017), "Hypervisor.framework is now
enabled by default on macOS for 32-bit x86 images to improve performance
and macOS compatibility", although we better use with caution for, as the
same Revision warns us, "If you experience issues with it specifically,
please file a bug report...". The code hasn't seen much update in the
last 5 months, so I think that we can further develop the code with
occasional visiting Google's repository to see if there has been any
update.

On top of Google's code, the following changes were made:

- add code to the configure script to support the --enable-hvf argument.
If the OS is Darwin, it checks for presence of HVF in the system. The
patch also adds strings related to HVF in the file qemu-options.hx.
QEMU will only support the modern syntax style '-M accel=hvf' no enable
hvf; the legacy '-enable-hvf' will not be supported.

- fix styling issues

- add glue code to cpus.c

- move HVFX86EmulatorState field to CPUX86State, changing the
the emulation functions to have a parameter with signature 'CPUX86State *'
instead of 'CPUState *' so we don't have to get the 'env'.

Signed-off-by: Sergio Andres Gomez Del Real <Sergio.G.DelReal@gmail.com>
Message-Id: <20170913090522.4022-2-Sergio.G.DelReal@gmail.com>
Message-Id: <20170913090522.4022-3-Sergio.G.DelReal@gmail.com>
Message-Id: <20170913090522.4022-5-Sergio.G.DelReal@gmail.com>
Message-Id: <20170913090522.4022-6-Sergio.G.DelReal@gmail.com>
Message-Id: <20170905035457.3753-7-Sergio.G.DelReal@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
31 files changed:
accel/stubs/Makefile.objs
accel/stubs/hvf-stub.c [new file with mode: 0644]
configure
cpus.c
include/qemu/typedefs.h
include/qom/cpu.h
include/sysemu/hvf.h [new file with mode: 0644]
qemu-options.hx
target/i386/Makefile.objs
target/i386/cpu.h
target/i386/hvf-all.c [new file with mode: 0644]
target/i386/hvf-i386.h [new file with mode: 0644]
target/i386/hvf-utils/Makefile.objs [new file with mode: 0644]
target/i386/hvf-utils/README.md [new file with mode: 0644]
target/i386/hvf-utils/vmcs.h [new file with mode: 0644]
target/i386/hvf-utils/vmx.h [new file with mode: 0644]
target/i386/hvf-utils/x86.c [new file with mode: 0644]
target/i386/hvf-utils/x86.h [new file with mode: 0644]
target/i386/hvf-utils/x86_decode.c [new file with mode: 0644]
target/i386/hvf-utils/x86_decode.h [new file with mode: 0644]
target/i386/hvf-utils/x86_descr.c [new file with mode: 0644]
target/i386/hvf-utils/x86_descr.h [new file with mode: 0644]
target/i386/hvf-utils/x86_emu.c [new file with mode: 0644]
target/i386/hvf-utils/x86_emu.h [new file with mode: 0644]
target/i386/hvf-utils/x86_flags.c [new file with mode: 0644]
target/i386/hvf-utils/x86_flags.h [new file with mode: 0644]
target/i386/hvf-utils/x86_gen.h [new file with mode: 0644]
target/i386/hvf-utils/x86_mmu.c [new file with mode: 0644]
target/i386/hvf-utils/x86_mmu.h [new file with mode: 0644]
target/i386/hvf-utils/x86hvf.c [new file with mode: 0644]
target/i386/hvf-utils/x86hvf.h [new file with mode: 0644]