mirror of https://github.com/xqemu/xqemu.git
cpu: Add model resolution support to CPUClass
Introduce CPUClass::class_by_name and add a default implementation. Hook up the alpha and ppc implementations. Introduce a wrapper function cpu_class_by_name(). Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
2c728dfef5
commit
2b8c275499
|
@ -40,6 +40,8 @@ typedef struct CPUState CPUState;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CPUClass:
|
* CPUClass:
|
||||||
|
* @class_by_name: Callback to map -cpu command line model name to an
|
||||||
|
* instantiatable CPU type.
|
||||||
* @reset: Callback to reset the #CPUState to its initial state.
|
* @reset: Callback to reset the #CPUState to its initial state.
|
||||||
*
|
*
|
||||||
* Represents a CPU family or model.
|
* Represents a CPU family or model.
|
||||||
|
@ -49,6 +51,8 @@ typedef struct CPUClass {
|
||||||
DeviceClass parent_class;
|
DeviceClass parent_class;
|
||||||
/*< public >*/
|
/*< public >*/
|
||||||
|
|
||||||
|
ObjectClass *(*class_by_name)(const char *cpu_model);
|
||||||
|
|
||||||
void (*reset)(CPUState *cpu);
|
void (*reset)(CPUState *cpu);
|
||||||
} CPUClass;
|
} CPUClass;
|
||||||
|
|
||||||
|
@ -107,6 +111,17 @@ struct CPUState {
|
||||||
*/
|
*/
|
||||||
void cpu_reset(CPUState *cpu);
|
void cpu_reset(CPUState *cpu);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* cpu_class_by_name:
|
||||||
|
* @typename: The CPU base type.
|
||||||
|
* @cpu_model: The model string without any parameters.
|
||||||
|
*
|
||||||
|
* Looks up a CPU #ObjectClass matching name @cpu_model.
|
||||||
|
*
|
||||||
|
* Returns: A #CPUClass or %NULL if not matching class is found.
|
||||||
|
*/
|
||||||
|
ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* qemu_cpu_has_work:
|
* qemu_cpu_has_work:
|
||||||
* @cpu: The vCPU to check.
|
* @cpu: The vCPU to check.
|
||||||
|
|
13
qom/cpu.c
13
qom/cpu.c
|
@ -34,11 +34,24 @@ static void cpu_common_reset(CPUState *cpu)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ObjectClass *cpu_class_by_name(const char *typename, const char *cpu_model)
|
||||||
|
{
|
||||||
|
CPUClass *cc = CPU_CLASS(object_class_by_name(typename));
|
||||||
|
|
||||||
|
return cc->class_by_name(cpu_model);
|
||||||
|
}
|
||||||
|
|
||||||
|
static ObjectClass *cpu_common_class_by_name(const char *cpu_model)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
static void cpu_class_init(ObjectClass *klass, void *data)
|
static void cpu_class_init(ObjectClass *klass, void *data)
|
||||||
{
|
{
|
||||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||||
CPUClass *k = CPU_CLASS(klass);
|
CPUClass *k = CPU_CLASS(klass);
|
||||||
|
|
||||||
|
k->class_by_name = cpu_common_class_by_name;
|
||||||
k->reset = cpu_common_reset;
|
k->reset = cpu_common_reset;
|
||||||
dc->no_user = 1;
|
dc->no_user = 1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -244,6 +244,13 @@ static void alpha_cpu_initfn(Object *obj)
|
||||||
env->fen = 1;
|
env->fen = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void alpha_cpu_class_init(ObjectClass *oc, void *data)
|
||||||
|
{
|
||||||
|
CPUClass *cc = CPU_CLASS(oc);
|
||||||
|
|
||||||
|
cc->class_by_name = alpha_cpu_class_by_name;
|
||||||
|
}
|
||||||
|
|
||||||
static const TypeInfo alpha_cpu_type_info = {
|
static const TypeInfo alpha_cpu_type_info = {
|
||||||
.name = TYPE_ALPHA_CPU,
|
.name = TYPE_ALPHA_CPU,
|
||||||
.parent = TYPE_CPU,
|
.parent = TYPE_CPU,
|
||||||
|
@ -251,6 +258,7 @@ static const TypeInfo alpha_cpu_type_info = {
|
||||||
.instance_init = alpha_cpu_initfn,
|
.instance_init = alpha_cpu_initfn,
|
||||||
.abstract = true,
|
.abstract = true,
|
||||||
.class_size = sizeof(AlphaCPUClass),
|
.class_size = sizeof(AlphaCPUClass),
|
||||||
|
.class_init = alpha_cpu_class_init,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void alpha_cpu_register_types(void)
|
static void alpha_cpu_register_types(void)
|
||||||
|
|
|
@ -10578,6 +10578,8 @@ static void ppc_cpu_class_init(ObjectClass *oc, void *data)
|
||||||
|
|
||||||
pcc->parent_reset = cc->reset;
|
pcc->parent_reset = cc->reset;
|
||||||
cc->reset = ppc_cpu_reset;
|
cc->reset = ppc_cpu_reset;
|
||||||
|
|
||||||
|
cc->class_by_name = ppc_cpu_class_by_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const TypeInfo ppc_cpu_type_info = {
|
static const TypeInfo ppc_cpu_type_info = {
|
||||||
|
|
Loading…
Reference in New Issue