target-lm32: QOM'ify CPU

Embed CPULM32State as first member of QOM LM32CPU.
Let CPUClass::reset() call cpu_state_reset() for now.

Signed-off-by: Andreas Färber <afaerber@suse.de>
Acked-by: Michael Walle <michael@walle.cc>
This commit is contained in:
Andreas Färber 2012-04-11 01:22:08 +02:00
parent c1958aea51
commit fc0ced2fbd
5 changed files with 136 additions and 1 deletions

View file

@ -194,6 +194,7 @@ static uint32_t cfg_by_def(const LM32Def *def)
CPULM32State *cpu_lm32_init(const char *cpu_model)
{
LM32CPU *cpu;
CPULM32State *env;
const LM32Def *def;
static int tcg_initialized;
@ -203,7 +204,8 @@ CPULM32State *cpu_lm32_init(const char *cpu_model)
return NULL;
}
env = g_malloc0(sizeof(CPULM32State));
cpu = LM32_CPU(object_new(TYPE_LM32_CPU));
env = &cpu->env;
env->features = def->features;
env->num_bps = def->num_breakpoints;