diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-01-17 15:28:37 -0800 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-01-17 15:28:38 -0800 |
commit | 0d407bca26ffc4978083240c518cd0d0a627a584 (patch) | |
tree | 523581dd6c18ddd42bb3980483778a3dd5d6154d /hax.h | |
parent | e7e8b324a626a4ba112c3ad47d54eb9cfd3025ba (diff) | |
parent | a381ef07088ce479610129e37bfef42538f397da (diff) | |
download | external_qemu-0d407bca26ffc4978083240c518cd0d0a627a584.zip external_qemu-0d407bca26ffc4978083240c518cd0d0a627a584.tar.gz external_qemu-0d407bca26ffc4978083240c518cd0d0a627a584.tar.bz2 |
Merge "Changes to existing files to add HAX support"
Diffstat (limited to 'hax.h')
-rw-r--r-- | hax.h | 38 |
1 files changed, 38 insertions, 0 deletions
@@ -0,0 +1,38 @@ +/* header to be included in non-HAX-specific code */ +#ifndef _HAX_H +#define _HAX_H + +#include "config.h" +#include "qemu-common.h" +#include "cpu.h" + +extern int hax_disabled; +struct hax_vcpu_state; + +#ifdef CONFIG_HAX +int hax_enabled(void); +int hax_init(int smp_cpus); +int hax_init_vcpu(CPUState *env); +/* Execute vcpu in non-root mode */ +int hax_vcpu_exec(CPUState *env); +/* Sync vcpu state with HAX driver */ +int hax_sync_vcpus(void); +void hax_vcpu_sync_state(CPUState *env, int modified); +int hax_populate_ram(uint64_t va, uint32_t size); +int hax_set_phys_mem(target_phys_addr_t start_addr, + ram_addr_t size, ram_addr_t phys_offset); +/* Check if QEMU need emulate guest execution */ +int hax_vcpu_emulation_mode(CPUState *env); +int hax_stop_emulation(CPUState *env); +int hax_stop_translate(CPUState *env); +int hax_arch_get_registers(CPUState *env); +void hax_raise_event(CPUState *env); +void hax_reset_vcpu_state(void *opaque); + +#include "target-i386/hax-interface.h" + +#else +#define hax_enabled() (0) +#endif + +#endif |