mirror of https://github.com/xqemu/xqemu.git
target-i386: Move cpu_x86_init()
Consolidate CPU functions in cpu.c. Allows to make cpu_x86_register() static. No functional changes. Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
0203f86f52
commit
5c3c6a682d
|
@ -1516,7 +1516,7 @@ static void filter_features_for_kvm(X86CPU *cpu)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int cpu_x86_register(X86CPU *cpu, const char *cpu_model)
|
static int cpu_x86_register(X86CPU *cpu, const char *cpu_model)
|
||||||
{
|
{
|
||||||
CPUX86State *env = &cpu->env;
|
CPUX86State *env = &cpu->env;
|
||||||
x86_def_t def1, *def = &def1;
|
x86_def_t def1, *def = &def1;
|
||||||
|
@ -1576,6 +1576,30 @@ out:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
X86CPU *cpu_x86_init(const char *cpu_model)
|
||||||
|
{
|
||||||
|
X86CPU *cpu;
|
||||||
|
CPUX86State *env;
|
||||||
|
Error *error = NULL;
|
||||||
|
|
||||||
|
cpu = X86_CPU(object_new(TYPE_X86_CPU));
|
||||||
|
env = &cpu->env;
|
||||||
|
env->cpu_model_str = cpu_model;
|
||||||
|
|
||||||
|
if (cpu_x86_register(cpu, cpu_model) < 0) {
|
||||||
|
object_unref(OBJECT(cpu));
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
object_property_set_bool(OBJECT(cpu), true, "realized", &error);
|
||||||
|
if (error) {
|
||||||
|
error_free(error);
|
||||||
|
object_unref(OBJECT(cpu));
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
return cpu;
|
||||||
|
}
|
||||||
|
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
|
|
||||||
void cpu_clear_apic_feature(CPUX86State *env)
|
void cpu_clear_apic_feature(CPUX86State *env)
|
||||||
|
|
|
@ -1002,7 +1002,6 @@ int cpu_x86_signal_handler(int host_signum, void *pinfo,
|
||||||
void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count,
|
void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count,
|
||||||
uint32_t *eax, uint32_t *ebx,
|
uint32_t *eax, uint32_t *ebx,
|
||||||
uint32_t *ecx, uint32_t *edx);
|
uint32_t *ecx, uint32_t *edx);
|
||||||
int cpu_x86_register(X86CPU *cpu, const char *cpu_model);
|
|
||||||
void cpu_clear_apic_feature(CPUX86State *env);
|
void cpu_clear_apic_feature(CPUX86State *env);
|
||||||
void host_cpuid(uint32_t function, uint32_t count,
|
void host_cpuid(uint32_t function, uint32_t count,
|
||||||
uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx);
|
uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx);
|
||||||
|
|
|
@ -1267,30 +1267,6 @@ int cpu_x86_get_descr_debug(CPUX86State *env, unsigned int selector,
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
X86CPU *cpu_x86_init(const char *cpu_model)
|
|
||||||
{
|
|
||||||
X86CPU *cpu;
|
|
||||||
CPUX86State *env;
|
|
||||||
Error *error = NULL;
|
|
||||||
|
|
||||||
cpu = X86_CPU(object_new(TYPE_X86_CPU));
|
|
||||||
env = &cpu->env;
|
|
||||||
env->cpu_model_str = cpu_model;
|
|
||||||
|
|
||||||
if (cpu_x86_register(cpu, cpu_model) < 0) {
|
|
||||||
object_unref(OBJECT(cpu));
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
object_property_set_bool(OBJECT(cpu), true, "realized", &error);
|
|
||||||
if (error) {
|
|
||||||
error_free(error);
|
|
||||||
object_unref(OBJECT(cpu));
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
return cpu;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
void do_cpu_init(X86CPU *cpu)
|
void do_cpu_init(X86CPU *cpu)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue