xref: /qemu/include/system/hvf_int.h (revision 358e7505b2795d3df505661da7be9dc81eaa91d9)
1 /*
2  * QEMU Hypervisor.framework (HVF) support
3  *
4  * This work is licensed under the terms of the GNU GPL, version 2 or later.
5  * See the COPYING file in the top-level directory.
6  *
7  */
8 
9 /* header to be included in HVF-specific code */
10 
11 #ifndef HVF_INT_H
12 #define HVF_INT_H
13 
14 #include <Hypervisor/hv.h>
15 
16 void hvf_set_phys_mem(MemoryRegionSection *, bool);
17 void assert_hvf_ok(hv_return_t ret);
18 hvf_slot *hvf_find_overlap_slot(uint64_t, uint64_t);
19 int hvf_put_registers(CPUState *);
20 int hvf_get_registers(CPUState *);
21 
22 #endif
23