Lines Matching full:accel
2 * QEMU accel class, components common to system emulation and user mode
11 #include "qemu/accel.h"
13 #include "accel/accel-ops.h"
14 #include "accel/accel-cpu.h"
15 #include "accel/accel-cpu-ops.h"
16 #include "accel-internal.h"
41 * The first callback allows accel-cpu to run initializations in accel_init_cpu_int_aux()
44 * The second one allows the CPU to customize the accel-cpu in accel_init_cpu_int_aux()
59 /* initialize the arch-specific accel CpuClass interfaces */
95 AccelState *accel = current_accel(); in accel_cpu_common_realize() local
96 AccelClass *acc = ACCEL_GET_CLASS(accel); in accel_cpu_common_realize()
115 AccelState *accel = current_accel(); in accel_cpu_common_unrealize() local
116 AccelClass *acc = ACCEL_GET_CLASS(accel); in accel_cpu_common_unrealize()
126 AccelState *accel = current_accel(); in accel_supported_gdbstub_sstep_flags() local
127 AccelClass *acc = ACCEL_GET_CLASS(accel); in accel_supported_gdbstub_sstep_flags()
129 return acc->gdbstub_supported_sstep_flags(accel); in accel_supported_gdbstub_sstep_flags()