fpu/softfloat: check for Inf / x or 0 / x before /0
[qemu/ar7.git] / accel / stubs / whpx-stub.c
blob5fb049c28172088d23ec3ce93a1f5b4311f10c6b
1 /*
2 * QEMU Windows Hypervisor Platform accelerator (WHPX) stub
4 * Copyright Microsoft Corp. 2017
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
9 */
11 #include "qemu/osdep.h"
12 #include "qemu-common.h"
13 #include "cpu.h"
14 #include "sysemu/whpx.h"
16 int whpx_init_vcpu(CPUState *cpu)
18 return -1;
21 int whpx_vcpu_exec(CPUState *cpu)
23 return -1;
26 void whpx_destroy_vcpu(CPUState *cpu)
30 void whpx_vcpu_kick(CPUState *cpu)
34 void whpx_cpu_synchronize_state(CPUState *cpu)
38 void whpx_cpu_synchronize_post_reset(CPUState *cpu)
42 void whpx_cpu_synchronize_post_init(CPUState *cpu)
46 void whpx_cpu_synchronize_pre_loadvm(CPUState *cpu)