mirror of https://github.com/xemu-project/xemu.git
target/mips: Populate CPUClass.mmu_index
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
6ebf33c5dc
commit
0efa3dc275
|
@ -182,6 +182,11 @@ static bool mips_cpu_has_work(CPUState *cs)
|
||||||
return has_work;
|
return has_work;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int mips_cpu_mmu_index(CPUState *cs, bool ifunc)
|
||||||
|
{
|
||||||
|
return mips_env_mmu_index(cpu_env(cs));
|
||||||
|
}
|
||||||
|
|
||||||
#include "cpu-defs.c.inc"
|
#include "cpu-defs.c.inc"
|
||||||
|
|
||||||
static void mips_cpu_reset_hold(Object *obj)
|
static void mips_cpu_reset_hold(Object *obj)
|
||||||
|
@ -579,6 +584,7 @@ static void mips_cpu_class_init(ObjectClass *c, void *data)
|
||||||
|
|
||||||
cc->class_by_name = mips_cpu_class_by_name;
|
cc->class_by_name = mips_cpu_class_by_name;
|
||||||
cc->has_work = mips_cpu_has_work;
|
cc->has_work = mips_cpu_has_work;
|
||||||
|
cc->mmu_index = mips_cpu_mmu_index;
|
||||||
cc->dump_state = mips_cpu_dump_state;
|
cc->dump_state = mips_cpu_dump_state;
|
||||||
cc->set_pc = mips_cpu_set_pc;
|
cc->set_pc = mips_cpu_set_pc;
|
||||||
cc->get_pc = mips_cpu_get_pc;
|
cc->get_pc = mips_cpu_get_pc;
|
||||||
|
|
Loading…
Reference in New Issue