Skip to content

Commit

Permalink
target-alpha: QOM'ify CPU init
Browse files Browse the repository at this point in the history
Move code from cpu_alpha_init() into a CPU initializer.

Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
afaerber committed Apr 10, 2012
1 parent 5c3c10f commit 9434f5c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
20 changes: 20 additions & 0 deletions target-alpha/cpu.c
@@ -1,6 +1,7 @@
/*
* QEMU Alpha CPU
*
* Copyright (c) 2007 Jocelyn Mayer
* Copyright (c) 2012 SUSE LINUX Products GmbH
*
* This library is free software; you can redistribute it and/or
Expand All @@ -22,10 +23,29 @@
#include "qemu-common.h"


static void alpha_cpu_initfn(Object *obj)
{
AlphaCPU *cpu = ALPHA_CPU(obj);
CPUAlphaState *env = &cpu->env;

cpu_exec_init(env);
tlb_flush(env, 1);

#if defined(CONFIG_USER_ONLY)
env->ps = PS_USER_MODE;
cpu_alpha_store_fpcr(env, (FPCR_INVD | FPCR_DZED | FPCR_OVFD
| FPCR_UNFD | FPCR_INED | FPCR_DNOD
| FPCR_DYN_NORMAL));
#endif
env->lock_addr = -1;
env->fen = 1;
}

static const TypeInfo alpha_cpu_type_info = {
.name = TYPE_ALPHA_CPU,
.parent = TYPE_CPU,
.instance_size = sizeof(AlphaCPU),
.instance_init = alpha_cpu_initfn,
.abstract = false,
.class_size = sizeof(AlphaCPUClass),
};
Expand Down
12 changes: 1 addition & 11 deletions target-alpha/translate.c
Expand Up @@ -3531,9 +3531,8 @@ CPUAlphaState * cpu_alpha_init (const char *cpu_model)

cpu = ALPHA_CPU(object_new(TYPE_ALPHA_CPU));
env = &cpu->env;
cpu_exec_init(env);

alpha_translate_init();
tlb_flush(env, 1);

/* Default to ev67; no reason not to emulate insns by default. */
implver = IMPLVER_21264;
Expand All @@ -3551,15 +3550,6 @@ CPUAlphaState * cpu_alpha_init (const char *cpu_model)
env->implver = implver;
env->amask = amask;

#if defined (CONFIG_USER_ONLY)
env->ps = PS_USER_MODE;
cpu_alpha_store_fpcr(env, (FPCR_INVD | FPCR_DZED | FPCR_OVFD
| FPCR_UNFD | FPCR_INED | FPCR_DNOD
| FPCR_DYN_NORMAL));
#endif
env->lock_addr = -1;
env->fen = 1;

qemu_init_vcpu(env);
return env;
}
Expand Down

0 comments on commit 9434f5c

Please sign in to comment.