2 * Accelerator interface, specializes CPUClass
3 * This header is used only by target-specific code.
5 * Copyright 2021 SUSE LLC
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
15 * This header is used to define new accelerator-specific target-specific
16 * accelerator cpu subclasses.
17 * It uses CPU_RESOLVING_TYPE, so this is clearly target-specific.
19 * Do not try to use for any other purpose than the implementation of new
20 * subclasses in target/, or the accel implementation itself in accel/
23 #define TYPE_ACCEL_CPU "accel-" CPU_RESOLVING_TYPE
24 #define ACCEL_CPU_NAME(name) (name "-" TYPE_ACCEL_CPU)
25 typedef struct AccelCPUClass AccelCPUClass
;
26 DECLARE_CLASS_CHECKERS(AccelCPUClass
, ACCEL_CPU
, TYPE_ACCEL_CPU
)
28 typedef struct AccelCPUClass
{
30 ObjectClass parent_class
;
33 void (*cpu_class_init
)(CPUClass
*cc
);
34 void (*cpu_instance_init
)(CPUState
*cpu
);
35 bool (*cpu_realizefn
)(CPUState
*cpu
, Error
**errp
);
38 #endif /* ACCEL_CPU_H */