Lines Matching full:accel
57 #include "accel/accel-cpu-ops.h"
124 int r = hv_vcpu_get_exec_time(cpu->accel->fd, arg.host_ptr); in do_hvf_get_vcpu_exec_time()
130 hv_return_t ret = hv_vcpu_destroy(cpu->accel->fd); in hvf_vcpu_destroy()
134 g_free(cpu->accel); in hvf_vcpu_destroy()
135 cpu->accel = NULL; in hvf_vcpu_destroy()
142 cpu->accel = g_new0(AccelCPUState, 1); in hvf_init_vcpu()
151 pthread_sigmask(SIG_BLOCK, NULL, &cpu->accel->unblock_ipi_mask); in hvf_init_vcpu()
152 sigdelset(&cpu->accel->unblock_ipi_mask, SIG_IPI); in hvf_init_vcpu()
155 r = hv_vcpu_create(&cpu->accel->fd, in hvf_init_vcpu()
156 (hv_vcpu_exit_t **)&cpu->accel->exit, NULL); in hvf_init_vcpu()
158 r = hv_vcpu_create(&cpu->accel->fd, HV_VCPU_DEFAULT); in hvf_init_vcpu()
163 cpu->accel->guest_debug_enabled = false; in hvf_init_vcpu()