exec: move cpu_exec_init() calls to realize functions
Modify all CPUs to call it from XXX_cpu_realizefn() function. Remove all the cannot_destroy_with_object_finalize_yet as unsafe references have been moved to cpu_exec_realizefn(). (tested with QOM command provided by commit 4c315c27) for arm: Setting of cpu->mp_affinity is moved from arm_cpu_initfn() to arm_cpu_realizefn() as setting of cpu_index is now done in cpu_exec_realizefn(). To avoid to overwrite an user defined value, we set it to an invalid value by default, and update it in realize function only if the value is still invalid. Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Andrew Jones <drjones@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
		
							parent
							
								
									39e329e341
								
							
						
					
					
						commit
						ce5b1bbf62
					
				
							
								
								
									
										2
									
								
								exec.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								exec.c
									
									
									
									
									
								
							@ -634,7 +634,7 @@ void cpu_exec_initfn(CPUState *cpu)
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void cpu_exec_init(CPUState *cpu, Error **errp)
 | 
					void cpu_exec_realizefn(CPUState *cpu, Error **errp)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    CPUClass *cc ATTRIBUTE_UNUSED = CPU_GET_CLASS(cpu);
 | 
					    CPUClass *cc ATTRIBUTE_UNUSED = CPU_GET_CLASS(cpu);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -57,7 +57,6 @@ TranslationBlock *tb_gen_code(CPUState *cpu,
 | 
				
			|||||||
                              uint32_t flags,
 | 
					                              uint32_t flags,
 | 
				
			||||||
                              int cflags);
 | 
					                              int cflags);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void cpu_exec_init(CPUState *cpu, Error **errp);
 | 
					 | 
				
			||||||
void QEMU_NORETURN cpu_loop_exit(CPUState *cpu);
 | 
					void QEMU_NORETURN cpu_loop_exit(CPUState *cpu);
 | 
				
			||||||
void QEMU_NORETURN cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc);
 | 
					void QEMU_NORETURN cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -947,6 +947,7 @@ AddressSpace *cpu_get_address_space(CPUState *cpu, int asidx);
 | 
				
			|||||||
void QEMU_NORETURN cpu_abort(CPUState *cpu, const char *fmt, ...)
 | 
					void QEMU_NORETURN cpu_abort(CPUState *cpu, const char *fmt, ...)
 | 
				
			||||||
    GCC_FMT_ATTR(2, 3);
 | 
					    GCC_FMT_ATTR(2, 3);
 | 
				
			||||||
void cpu_exec_initfn(CPUState *cpu);
 | 
					void cpu_exec_initfn(CPUState *cpu);
 | 
				
			||||||
 | 
					void cpu_exec_realizefn(CPUState *cpu, Error **errp);
 | 
				
			||||||
void cpu_exec_exit(CPUState *cpu);
 | 
					void cpu_exec_exit(CPUState *cpu);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef CONFIG_SOFTMMU
 | 
					#ifdef CONFIG_SOFTMMU
 | 
				
			||||||
 | 
				
			|||||||
@ -59,6 +59,13 @@ static void alpha_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    AlphaCPUClass *acc = ALPHA_CPU_GET_CLASS(dev);
 | 
					    AlphaCPUClass *acc = ALPHA_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qemu_init_vcpu(cs);
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -266,7 +273,6 @@ static void alpha_cpu_initfn(Object *obj)
 | 
				
			|||||||
    CPUAlphaState *env = &cpu->env;
 | 
					    CPUAlphaState *env = &cpu->env;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
    tlb_flush(cs, 1);
 | 
					    tlb_flush(cs, 1);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    alpha_translate_init();
 | 
					    alpha_translate_init();
 | 
				
			||||||
@ -309,13 +315,6 @@ static void alpha_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->disas_set_info = alpha_cpu_disas_set_info;
 | 
					    cc->disas_set_info = alpha_cpu_disas_set_info;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cc->gdb_num_core_regs = 67;
 | 
					    cc->gdb_num_core_regs = 67;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: alpha_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const TypeInfo alpha_cpu_type_info = {
 | 
					static const TypeInfo alpha_cpu_type_info = {
 | 
				
			||||||
 | 
				
			|||||||
@ -80,9 +80,11 @@ void arm_gt_stimer_cb(void *opaque);
 | 
				
			|||||||
#define ARM_AFF2_MASK  (0xFFULL << ARM_AFF2_SHIFT)
 | 
					#define ARM_AFF2_MASK  (0xFFULL << ARM_AFF2_SHIFT)
 | 
				
			||||||
#define ARM_AFF3_SHIFT 32
 | 
					#define ARM_AFF3_SHIFT 32
 | 
				
			||||||
#define ARM_AFF3_MASK  (0xFFULL << ARM_AFF3_SHIFT)
 | 
					#define ARM_AFF3_MASK  (0xFFULL << ARM_AFF3_SHIFT)
 | 
				
			||||||
 | 
					#define ARM_DEFAULT_CPUS_PER_CLUSTER 8
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ARM32_AFFINITY_MASK (ARM_AFF0_MASK|ARM_AFF1_MASK|ARM_AFF2_MASK)
 | 
					#define ARM32_AFFINITY_MASK (ARM_AFF0_MASK|ARM_AFF1_MASK|ARM_AFF2_MASK)
 | 
				
			||||||
#define ARM64_AFFINITY_MASK \
 | 
					#define ARM64_AFFINITY_MASK \
 | 
				
			||||||
    (ARM_AFF0_MASK|ARM_AFF1_MASK|ARM_AFF2_MASK|ARM_AFF3_MASK)
 | 
					    (ARM_AFF0_MASK|ARM_AFF1_MASK|ARM_AFF2_MASK|ARM_AFF3_MASK)
 | 
				
			||||||
 | 
					#define ARM64_AFFINITY_INVALID (~ARM64_AFFINITY_MASK)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
				
			|||||||
@ -434,29 +434,16 @@ static void arm_disas_set_info(CPUState *cpu, disassemble_info *info)
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define ARM_CPUS_PER_CLUSTER 8
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
static void arm_cpu_initfn(Object *obj)
 | 
					static void arm_cpu_initfn(Object *obj)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(obj);
 | 
					    CPUState *cs = CPU(obj);
 | 
				
			||||||
    ARMCPU *cpu = ARM_CPU(obj);
 | 
					    ARMCPU *cpu = ARM_CPU(obj);
 | 
				
			||||||
    static bool inited;
 | 
					    static bool inited;
 | 
				
			||||||
    uint32_t Aff1, Aff0;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = &cpu->env;
 | 
					    cs->env_ptr = &cpu->env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
    cpu->cp_regs = g_hash_table_new_full(g_int_hash, g_int_equal,
 | 
					    cpu->cp_regs = g_hash_table_new_full(g_int_hash, g_int_equal,
 | 
				
			||||||
                                         g_free, g_free);
 | 
					                                         g_free, g_free);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /* This cpu-id-to-MPIDR affinity is used only for TCG; KVM will override it.
 | 
					 | 
				
			||||||
     * We don't support setting cluster ID ([16..23]) (known as Aff2
 | 
					 | 
				
			||||||
     * in later ARM ARM versions), or any of the higher affinity level fields,
 | 
					 | 
				
			||||||
     * so these bits always RAZ.
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    Aff1 = cs->cpu_index / ARM_CPUS_PER_CLUSTER;
 | 
					 | 
				
			||||||
    Aff0 = cs->cpu_index % ARM_CPUS_PER_CLUSTER;
 | 
					 | 
				
			||||||
    cpu->mp_affinity = (Aff1 << ARM_AFF1_SHIFT) | Aff0;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifndef CONFIG_USER_ONLY
 | 
					#ifndef CONFIG_USER_ONLY
 | 
				
			||||||
    /* Our inbound IRQ and FIQ lines */
 | 
					    /* Our inbound IRQ and FIQ lines */
 | 
				
			||||||
    if (kvm_enabled()) {
 | 
					    if (kvm_enabled()) {
 | 
				
			||||||
@ -576,6 +563,13 @@ static void arm_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
    ARMCPU *cpu = ARM_CPU(dev);
 | 
					    ARMCPU *cpu = ARM_CPU(dev);
 | 
				
			||||||
    ARMCPUClass *acc = ARM_CPU_GET_CLASS(dev);
 | 
					    ARMCPUClass *acc = ARM_CPU_GET_CLASS(dev);
 | 
				
			||||||
    CPUARMState *env = &cpu->env;
 | 
					    CPUARMState *env = &cpu->env;
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /* Some features automatically imply others: */
 | 
					    /* Some features automatically imply others: */
 | 
				
			||||||
    if (arm_feature(env, ARM_FEATURE_V8)) {
 | 
					    if (arm_feature(env, ARM_FEATURE_V8)) {
 | 
				
			||||||
@ -631,6 +625,17 @@ static void arm_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
        set_feature(env, ARM_FEATURE_THUMB_DSP);
 | 
					        set_feature(env, ARM_FEATURE_THUMB_DSP);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    /* This cpu-id-to-MPIDR affinity is used only for TCG; KVM will override it.
 | 
				
			||||||
 | 
					     * We don't support setting cluster ID ([16..23]) (known as Aff2
 | 
				
			||||||
 | 
					     * in later ARM ARM versions), or any of the higher affinity level fields,
 | 
				
			||||||
 | 
					     * so these bits always RAZ.
 | 
				
			||||||
 | 
					     */
 | 
				
			||||||
 | 
					    if (cpu->mp_affinity == ARM64_AFFINITY_INVALID) {
 | 
				
			||||||
 | 
					        uint32_t Aff1 = cs->cpu_index / ARM_DEFAULT_CPUS_PER_CLUSTER;
 | 
				
			||||||
 | 
					        uint32_t Aff0 = cs->cpu_index % ARM_DEFAULT_CPUS_PER_CLUSTER;
 | 
				
			||||||
 | 
					        cpu->mp_affinity = (Aff1 << ARM_AFF1_SHIFT) | Aff0;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (cpu->reset_hivecs) {
 | 
					    if (cpu->reset_hivecs) {
 | 
				
			||||||
            cpu->reset_sctlr |= (1 << 13);
 | 
					            cpu->reset_sctlr |= (1 << 13);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@ -1461,7 +1466,8 @@ static Property arm_cpu_properties[] = {
 | 
				
			|||||||
    DEFINE_PROP_BOOL("start-powered-off", ARMCPU, start_powered_off, false),
 | 
					    DEFINE_PROP_BOOL("start-powered-off", ARMCPU, start_powered_off, false),
 | 
				
			||||||
    DEFINE_PROP_UINT32("psci-conduit", ARMCPU, psci_conduit, 0),
 | 
					    DEFINE_PROP_UINT32("psci-conduit", ARMCPU, psci_conduit, 0),
 | 
				
			||||||
    DEFINE_PROP_UINT32("midr", ARMCPU, midr, 0),
 | 
					    DEFINE_PROP_UINT32("midr", ARMCPU, midr, 0),
 | 
				
			||||||
    DEFINE_PROP_UINT64("mp-affinity", ARMCPU, mp_affinity, 0),
 | 
					    DEFINE_PROP_UINT64("mp-affinity", ARMCPU,
 | 
				
			||||||
 | 
					                        mp_affinity, ARM64_AFFINITY_INVALID),
 | 
				
			||||||
    DEFINE_PROP_END_OF_LIST()
 | 
					    DEFINE_PROP_END_OF_LIST()
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1533,17 +1539,6 @@ static void arm_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->debug_check_watchpoint = arm_debug_check_watchpoint;
 | 
					    cc->debug_check_watchpoint = arm_debug_check_watchpoint;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cc->disas_set_info = arm_disas_set_info;
 | 
					    cc->disas_set_info = arm_disas_set_info;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: arm_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     *
 | 
					 | 
				
			||||||
     * Once this is fixed, the devices that create ARM CPUs should be
 | 
					 | 
				
			||||||
     * updated not to set cannot_destroy_with_object_finalize_yet,
 | 
					 | 
				
			||||||
     * unless they still screw up something else.
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void cpu_register(const ARMCPUInfo *info)
 | 
					static void cpu_register(const ARMCPUInfo *info)
 | 
				
			||||||
 | 
				
			|||||||
@ -142,6 +142,13 @@ static void cris_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(dev);
 | 
					    CRISCPUClass *ccc = CRIS_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cpu_reset(cs);
 | 
					    cpu_reset(cs);
 | 
				
			||||||
    qemu_init_vcpu(cs);
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
@ -187,7 +194,6 @@ static void cris_cpu_initfn(Object *obj)
 | 
				
			|||||||
    static bool tcg_initialized;
 | 
					    static bool tcg_initialized;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    env->pregs[PR_VR] = ccc->vr;
 | 
					    env->pregs[PR_VR] = ccc->vr;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -326,13 +332,6 @@ static void cris_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->gdb_stop_before_watchpoint = true;
 | 
					    cc->gdb_stop_before_watchpoint = true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cc->disas_set_info = cris_disas_set_info;
 | 
					    cc->disas_set_info = cris_disas_set_info;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: cris_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const TypeInfo cris_cpu_type_info = {
 | 
					static const TypeInfo cris_cpu_type_info = {
 | 
				
			||||||
 | 
				
			|||||||
@ -3271,7 +3271,11 @@ static void x86_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
            cpu->phys_bits = 32;
 | 
					            cpu->phys_bits = 32;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (tcg_enabled()) {
 | 
					    if (tcg_enabled()) {
 | 
				
			||||||
        tcg_x86_init();
 | 
					        tcg_x86_init();
 | 
				
			||||||
 | 
				
			|||||||
@ -144,6 +144,13 @@ static void lm32_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    LM32CPUClass *lcc = LM32_CPU_GET_CLASS(dev);
 | 
					    LM32CPUClass *lcc = LM32_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cpu_reset(cs);
 | 
					    cpu_reset(cs);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -160,7 +167,6 @@ static void lm32_cpu_initfn(Object *obj)
 | 
				
			|||||||
    static bool tcg_initialized;
 | 
					    static bool tcg_initialized;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    env->flags = 0;
 | 
					    env->flags = 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -285,13 +291,6 @@ static void lm32_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->gdb_stop_before_watchpoint = true;
 | 
					    cc->gdb_stop_before_watchpoint = true;
 | 
				
			||||||
    cc->debug_excp_handler = lm32_debug_excp_handler;
 | 
					    cc->debug_excp_handler = lm32_debug_excp_handler;
 | 
				
			||||||
    cc->disas_set_info = lm32_cpu_disas_set_info;
 | 
					    cc->disas_set_info = lm32_cpu_disas_set_info;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: lm32_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void lm32_register_cpu_type(const LM32CPUInfo *info)
 | 
					static void lm32_register_cpu_type(const LM32CPUInfo *info)
 | 
				
			||||||
 | 
				
			|||||||
@ -159,6 +159,13 @@ static void m68k_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    M68kCPU *cpu = M68K_CPU(dev);
 | 
					    M68kCPU *cpu = M68K_CPU(dev);
 | 
				
			||||||
    M68kCPUClass *mcc = M68K_CPU_GET_CLASS(dev);
 | 
					    M68kCPUClass *mcc = M68K_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    m68k_cpu_init_gdb(cpu);
 | 
					    m68k_cpu_init_gdb(cpu);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -176,7 +183,6 @@ static void m68k_cpu_initfn(Object *obj)
 | 
				
			|||||||
    static bool inited;
 | 
					    static bool inited;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (tcg_enabled() && !inited) {
 | 
					    if (tcg_enabled() && !inited) {
 | 
				
			||||||
        inited = true;
 | 
					        inited = true;
 | 
				
			||||||
@ -222,13 +228,6 @@ static void m68k_cpu_class_init(ObjectClass *c, void *data)
 | 
				
			|||||||
    cc->gdb_core_xml_file = "cf-core.xml";
 | 
					    cc->gdb_core_xml_file = "cf-core.xml";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    dc->vmsd = &vmstate_m68k_cpu;
 | 
					    dc->vmsd = &vmstate_m68k_cpu;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: m68k_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void register_cpu_type(const M68kCPUInfo *info)
 | 
					static void register_cpu_type(const M68kCPUInfo *info)
 | 
				
			||||||
 | 
				
			|||||||
@ -138,6 +138,13 @@ static void mb_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
    CPUMBState *env = &cpu->env;
 | 
					    CPUMBState *env = &cpu->env;
 | 
				
			||||||
    uint8_t version_code = 0;
 | 
					    uint8_t version_code = 0;
 | 
				
			||||||
    int i = 0;
 | 
					    int i = 0;
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qemu_init_vcpu(cs);
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -199,7 +206,6 @@ static void mb_cpu_initfn(Object *obj)
 | 
				
			|||||||
    static bool tcg_initialized;
 | 
					    static bool tcg_initialized;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    set_float_rounding_mode(float_round_nearest_even, &env->fp_status);
 | 
					    set_float_rounding_mode(float_round_nearest_even, &env->fp_status);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -267,12 +273,6 @@ static void mb_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->gdb_num_core_regs = 32 + 5;
 | 
					    cc->gdb_num_core_regs = 32 + 5;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cc->disas_set_info = mb_disas_set_info;
 | 
					    cc->disas_set_info = mb_disas_set_info;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: mb_cpu_initfn() calls cpu_exec_init(), which saves the
 | 
					 | 
				
			||||||
     * object in cpus -> dangling pointer after final object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const TypeInfo mb_cpu_type_info = {
 | 
					static const TypeInfo mb_cpu_type_info = {
 | 
				
			||||||
 | 
				
			|||||||
@ -124,6 +124,13 @@ static void mips_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    MIPSCPUClass *mcc = MIPS_CPU_GET_CLASS(dev);
 | 
					    MIPSCPUClass *mcc = MIPS_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cpu_reset(cs);
 | 
					    cpu_reset(cs);
 | 
				
			||||||
    qemu_init_vcpu(cs);
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
@ -138,7 +145,6 @@ static void mips_cpu_initfn(Object *obj)
 | 
				
			|||||||
    CPUMIPSState *env = &cpu->env;
 | 
					    CPUMIPSState *env = &cpu->env;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (tcg_enabled()) {
 | 
					    if (tcg_enabled()) {
 | 
				
			||||||
        mips_tcg_init();
 | 
					        mips_tcg_init();
 | 
				
			||||||
@ -177,13 +183,6 @@ static void mips_cpu_class_init(ObjectClass *c, void *data)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    cc->gdb_num_core_regs = 73;
 | 
					    cc->gdb_num_core_regs = 73;
 | 
				
			||||||
    cc->gdb_stop_before_watchpoint = true;
 | 
					    cc->gdb_stop_before_watchpoint = true;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: mips_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const TypeInfo mips_cpu_type_info = {
 | 
					static const TypeInfo mips_cpu_type_info = {
 | 
				
			||||||
 | 
				
			|||||||
@ -61,6 +61,13 @@ static void moxie_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    MoxieCPUClass *mcc = MOXIE_CPU_GET_CLASS(dev);
 | 
					    MoxieCPUClass *mcc = MOXIE_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qemu_init_vcpu(cs);
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
    cpu_reset(cs);
 | 
					    cpu_reset(cs);
 | 
				
			||||||
@ -75,7 +82,6 @@ static void moxie_cpu_initfn(Object *obj)
 | 
				
			|||||||
    static int inited;
 | 
					    static int inited;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = &cpu->env;
 | 
					    cs->env_ptr = &cpu->env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (tcg_enabled() && !inited) {
 | 
					    if (tcg_enabled() && !inited) {
 | 
				
			||||||
        inited = 1;
 | 
					        inited = 1;
 | 
				
			||||||
@ -124,13 +130,6 @@ static void moxie_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->vmsd = &vmstate_moxie_cpu;
 | 
					    cc->vmsd = &vmstate_moxie_cpu;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
    cc->disas_set_info = moxie_cpu_disas_set_info;
 | 
					    cc->disas_set_info = moxie_cpu_disas_set_info;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: moxie_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void moxielite_initfn(Object *obj)
 | 
					static void moxielite_initfn(Object *obj)
 | 
				
			||||||
 | 
				
			|||||||
@ -81,6 +81,13 @@ static void openrisc_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    OpenRISCCPUClass *occ = OPENRISC_CPU_GET_CLASS(dev);
 | 
					    OpenRISCCPUClass *occ = OPENRISC_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qemu_init_vcpu(cs);
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
    cpu_reset(cs);
 | 
					    cpu_reset(cs);
 | 
				
			||||||
@ -95,7 +102,6 @@ static void openrisc_cpu_initfn(Object *obj)
 | 
				
			|||||||
    static int inited;
 | 
					    static int inited;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = &cpu->env;
 | 
					    cs->env_ptr = &cpu->env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef CONFIG_USER_ONLY
 | 
					#ifndef CONFIG_USER_ONLY
 | 
				
			||||||
    cpu_openrisc_mmu_init(cpu);
 | 
					    cpu_openrisc_mmu_init(cpu);
 | 
				
			||||||
@ -180,13 +186,6 @@ static void openrisc_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    dc->vmsd = &vmstate_openrisc_cpu;
 | 
					    dc->vmsd = &vmstate_openrisc_cpu;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
    cc->gdb_num_core_regs = 32 + 3;
 | 
					    cc->gdb_num_core_regs = 32 + 3;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: openrisc_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void cpu_register(const OpenRISCCPUInfo *info)
 | 
					static void cpu_register(const OpenRISCCPUInfo *info)
 | 
				
			||||||
 | 
				
			|||||||
@ -9678,7 +9678,7 @@ static void ppc_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cpu_exec_init(cs, &local_err);
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
    if (local_err != NULL) {
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
        error_propagate(errp, local_err);
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
        return;
 | 
					        return;
 | 
				
			||||||
 | 
				
			|||||||
@ -207,7 +207,7 @@ static void s390_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
        goto out;
 | 
					        goto out;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cpu_exec_init(cs, &err);
 | 
					    cpu_exec_realizefn(cs, &err);
 | 
				
			||||||
    if (err != NULL) {
 | 
					    if (err != NULL) {
 | 
				
			||||||
        goto out;
 | 
					        goto out;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@ -440,12 +440,6 @@ static void s390_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->gdb_core_xml_file = "s390x-core64.xml";
 | 
					    cc->gdb_core_xml_file = "s390x-core64.xml";
 | 
				
			||||||
    cc->gdb_arch_name = s390_gdb_arch_name;
 | 
					    cc->gdb_arch_name = s390_gdb_arch_name;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: s390_cpu_realizefn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
    s390_cpu_model_class_register_props(oc);
 | 
					    s390_cpu_model_class_register_props(oc);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -244,6 +244,13 @@ static void superh_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(dev);
 | 
					    SuperHCPUClass *scc = SUPERH_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cpu_reset(cs);
 | 
					    cpu_reset(cs);
 | 
				
			||||||
    qemu_init_vcpu(cs);
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
@ -258,7 +265,6 @@ static void superh_cpu_initfn(Object *obj)
 | 
				
			|||||||
    CPUSH4State *env = &cpu->env;
 | 
					    CPUSH4State *env = &cpu->env;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    env->movcal_backup_tail = &(env->movcal_backup);
 | 
					    env->movcal_backup_tail = &(env->movcal_backup);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -303,13 +309,6 @@ static void superh_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->gdb_num_core_regs = 59;
 | 
					    cc->gdb_num_core_regs = 59;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    dc->vmsd = &vmstate_sh_cpu;
 | 
					    dc->vmsd = &vmstate_sh_cpu;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: superh_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const TypeInfo superh_cpu_type_info = {
 | 
					static const TypeInfo superh_cpu_type_info = {
 | 
				
			||||||
 | 
				
			|||||||
@ -792,7 +792,9 @@ static bool sparc_cpu_has_work(CPUState *cs)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
static void sparc_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
					static void sparc_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    SPARCCPUClass *scc = SPARC_CPU_GET_CLASS(dev);
 | 
					    SPARCCPUClass *scc = SPARC_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
#if defined(CONFIG_USER_ONLY)
 | 
					#if defined(CONFIG_USER_ONLY)
 | 
				
			||||||
    SPARCCPU *cpu = SPARC_CPU(dev);
 | 
					    SPARCCPU *cpu = SPARC_CPU(dev);
 | 
				
			||||||
    CPUSPARCState *env = &cpu->env;
 | 
					    CPUSPARCState *env = &cpu->env;
 | 
				
			||||||
@ -802,7 +804,13 @@ static void sparc_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qemu_init_vcpu(CPU(dev));
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    scc->parent_realize(dev, errp);
 | 
					    scc->parent_realize(dev, errp);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -814,7 +822,6 @@ static void sparc_cpu_initfn(Object *obj)
 | 
				
			|||||||
    CPUSPARCState *env = &cpu->env;
 | 
					    CPUSPARCState *env = &cpu->env;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (tcg_enabled()) {
 | 
					    if (tcg_enabled()) {
 | 
				
			||||||
        gen_intermediate_code_init(env);
 | 
					        gen_intermediate_code_init(env);
 | 
				
			||||||
@ -867,13 +874,6 @@ static void sparc_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
#else
 | 
					#else
 | 
				
			||||||
    cc->gdb_num_core_regs = 72;
 | 
					    cc->gdb_num_core_regs = 72;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: sparc_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const TypeInfo sparc_cpu_type_info = {
 | 
					static const TypeInfo sparc_cpu_type_info = {
 | 
				
			||||||
 | 
				
			|||||||
@ -92,6 +92,13 @@ static void tilegx_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    TileGXCPUClass *tcc = TILEGX_CPU_GET_CLASS(dev);
 | 
					    TileGXCPUClass *tcc = TILEGX_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cpu_reset(cs);
 | 
					    cpu_reset(cs);
 | 
				
			||||||
    qemu_init_vcpu(cs);
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
@ -107,7 +114,6 @@ static void tilegx_cpu_initfn(Object *obj)
 | 
				
			|||||||
    static bool tcg_initialized;
 | 
					    static bool tcg_initialized;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (tcg_enabled() && !tcg_initialized) {
 | 
					    if (tcg_enabled() && !tcg_initialized) {
 | 
				
			||||||
        tcg_initialized = true;
 | 
					        tcg_initialized = true;
 | 
				
			||||||
@ -162,13 +168,6 @@ static void tilegx_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->set_pc = tilegx_cpu_set_pc;
 | 
					    cc->set_pc = tilegx_cpu_set_pc;
 | 
				
			||||||
    cc->handle_mmu_fault = tilegx_cpu_handle_mmu_fault;
 | 
					    cc->handle_mmu_fault = tilegx_cpu_handle_mmu_fault;
 | 
				
			||||||
    cc->gdb_num_core_regs = 0;
 | 
					    cc->gdb_num_core_regs = 0;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: tilegx_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const TypeInfo tilegx_cpu_type_info = {
 | 
					static const TypeInfo tilegx_cpu_type_info = {
 | 
				
			||||||
 | 
				
			|||||||
@ -69,6 +69,13 @@ static void tricore_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
    TriCoreCPU *cpu = TRICORE_CPU(dev);
 | 
					    TriCoreCPU *cpu = TRICORE_CPU(dev);
 | 
				
			||||||
    TriCoreCPUClass *tcc = TRICORE_CPU_GET_CLASS(dev);
 | 
					    TriCoreCPUClass *tcc = TRICORE_CPU_GET_CLASS(dev);
 | 
				
			||||||
    CPUTriCoreState *env = &cpu->env;
 | 
					    CPUTriCoreState *env = &cpu->env;
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /* Some features automatically imply others */
 | 
					    /* Some features automatically imply others */
 | 
				
			||||||
    if (tricore_feature(env, TRICORE_FEATURE_161)) {
 | 
					    if (tricore_feature(env, TRICORE_FEATURE_161)) {
 | 
				
			||||||
@ -95,7 +102,6 @@ static void tricore_cpu_initfn(Object *obj)
 | 
				
			|||||||
    CPUTriCoreState *env = &cpu->env;
 | 
					    CPUTriCoreState *env = &cpu->env;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (tcg_enabled()) {
 | 
					    if (tcg_enabled()) {
 | 
				
			||||||
        tricore_tcg_init();
 | 
					        tricore_tcg_init();
 | 
				
			||||||
@ -172,13 +178,6 @@ static void tricore_cpu_class_init(ObjectClass *c, void *data)
 | 
				
			|||||||
    cc->dump_state = tricore_cpu_dump_state;
 | 
					    cc->dump_state = tricore_cpu_dump_state;
 | 
				
			||||||
    cc->set_pc = tricore_cpu_set_pc;
 | 
					    cc->set_pc = tricore_cpu_set_pc;
 | 
				
			||||||
    cc->synchronize_from_tb = tricore_cpu_synchronize_from_tb;
 | 
					    cc->synchronize_from_tb = tricore_cpu_synchronize_from_tb;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: tricore_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void cpu_register(const TriCoreCPUInfo *info)
 | 
					static void cpu_register(const TriCoreCPUInfo *info)
 | 
				
			||||||
 | 
				
			|||||||
@ -101,9 +101,17 @@ static const UniCore32CPUInfo uc32_cpus[] = {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
static void uc32_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
					static void uc32_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    UniCore32CPUClass *ucc = UNICORE32_CPU_GET_CLASS(dev);
 | 
					    UniCore32CPUClass *ucc = UNICORE32_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    qemu_init_vcpu(CPU(dev));
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    qemu_init_vcpu(cs);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    ucc->parent_realize(dev, errp);
 | 
					    ucc->parent_realize(dev, errp);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@ -116,7 +124,6 @@ static void uc32_cpu_initfn(Object *obj)
 | 
				
			|||||||
    static bool inited;
 | 
					    static bool inited;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef CONFIG_USER_ONLY
 | 
					#ifdef CONFIG_USER_ONLY
 | 
				
			||||||
    env->uncached_asr = ASR_MODE_USER;
 | 
					    env->uncached_asr = ASR_MODE_USER;
 | 
				
			||||||
@ -160,13 +167,6 @@ static void uc32_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
    cc->get_phys_page_debug = uc32_cpu_get_phys_page_debug;
 | 
					    cc->get_phys_page_debug = uc32_cpu_get_phys_page_debug;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
    dc->vmsd = &vmstate_uc32_cpu;
 | 
					    dc->vmsd = &vmstate_uc32_cpu;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: uc32_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void uc32_register_cpu_type(const UniCore32CPUInfo *info)
 | 
					static void uc32_register_cpu_type(const UniCore32CPUInfo *info)
 | 
				
			||||||
 | 
				
			|||||||
@ -99,6 +99,13 @@ static void xtensa_cpu_realizefn(DeviceState *dev, Error **errp)
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    CPUState *cs = CPU(dev);
 | 
					    CPUState *cs = CPU(dev);
 | 
				
			||||||
    XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(dev);
 | 
					    XtensaCPUClass *xcc = XTENSA_CPU_GET_CLASS(dev);
 | 
				
			||||||
 | 
					    Error *local_err = NULL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    cpu_exec_realizefn(cs, &local_err);
 | 
				
			||||||
 | 
					    if (local_err != NULL) {
 | 
				
			||||||
 | 
					        error_propagate(errp, local_err);
 | 
				
			||||||
 | 
					        return;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    cs->gdb_num_regs = xcc->config->gdb_regmap.num_regs;
 | 
					    cs->gdb_num_regs = xcc->config->gdb_regmap.num_regs;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -117,7 +124,6 @@ static void xtensa_cpu_initfn(Object *obj)
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    cs->env_ptr = env;
 | 
					    cs->env_ptr = env;
 | 
				
			||||||
    env->config = xcc->config;
 | 
					    env->config = xcc->config;
 | 
				
			||||||
    cpu_exec_init(cs, &error_abort);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (tcg_enabled() && !tcg_inited) {
 | 
					    if (tcg_enabled() && !tcg_inited) {
 | 
				
			||||||
        tcg_inited = true;
 | 
					        tcg_inited = true;
 | 
				
			||||||
@ -158,13 +164,6 @@ static void xtensa_cpu_class_init(ObjectClass *oc, void *data)
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
    cc->debug_excp_handler = xtensa_breakpoint_handler;
 | 
					    cc->debug_excp_handler = xtensa_breakpoint_handler;
 | 
				
			||||||
    dc->vmsd = &vmstate_xtensa_cpu;
 | 
					    dc->vmsd = &vmstate_xtensa_cpu;
 | 
				
			||||||
 | 
					 | 
				
			||||||
    /*
 | 
					 | 
				
			||||||
     * Reason: xtensa_cpu_initfn() calls cpu_exec_init(), which saves
 | 
					 | 
				
			||||||
     * the object in cpus -> dangling pointer after final
 | 
					 | 
				
			||||||
     * object_unref().
 | 
					 | 
				
			||||||
     */
 | 
					 | 
				
			||||||
    dc->cannot_destroy_with_object_finalize_yet = true;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static const TypeInfo xtensa_cpu_type_info = {
 | 
					static const TypeInfo xtensa_cpu_type_info = {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user