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-cpu.h"
14 #include "accel-internal.h"
39 * The first callback allows accel-cpu to run initializations in accel_init_cpu_int_aux()
42 * The second one allows the CPU to customize the accel-cpu in accel_init_cpu_int_aux()
57 /* initialize the arch-specific accel CpuClass interfaces */
93 AccelState *accel = current_accel(); in accel_cpu_common_realize() local
94 AccelClass *acc = ACCEL_GET_CLASS(accel); in accel_cpu_common_realize()
113 AccelState *accel = current_accel(); in accel_cpu_common_unrealize() local
114 AccelClass *acc = ACCEL_GET_CLASS(accel); in accel_cpu_common_unrealize()
124 AccelState *accel = current_accel(); in accel_supported_gdbstub_sstep_flags() local
125 AccelClass *acc = ACCEL_GET_CLASS(accel); in accel_supported_gdbstub_sstep_flags()
127 return acc->gdbstub_supported_sstep_flags(accel); in accel_supported_gdbstub_sstep_flags()