|
@@ -185,11 +185,6 @@ static int cpu_common_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
-static bool cpu_common_virtio_is_big_endian(CPUState *cpu)
|
|
|
|
-{
|
|
|
|
- return target_words_bigendian();
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
void cpu_dump_state(CPUState *cpu, FILE *f, int flags)
|
|
void cpu_dump_state(CPUState *cpu, FILE *f, int flags)
|
|
{
|
|
{
|
|
CPUClass *cc = CPU_GET_CLASS(cpu);
|
|
CPUClass *cc = CPU_GET_CLASS(cpu);
|
|
@@ -388,7 +383,6 @@ static void cpu_class_init(ObjectClass *klass, void *data)
|
|
k->write_elf64_note = cpu_common_write_elf64_note;
|
|
k->write_elf64_note = cpu_common_write_elf64_note;
|
|
k->gdb_read_register = cpu_common_gdb_read_register;
|
|
k->gdb_read_register = cpu_common_gdb_read_register;
|
|
k->gdb_write_register = cpu_common_gdb_write_register;
|
|
k->gdb_write_register = cpu_common_gdb_write_register;
|
|
- k->virtio_is_big_endian = cpu_common_virtio_is_big_endian;
|
|
|
|
set_bit(DEVICE_CATEGORY_CPU, dc->categories);
|
|
set_bit(DEVICE_CATEGORY_CPU, dc->categories);
|
|
dc->realize = cpu_common_realizefn;
|
|
dc->realize = cpu_common_realizefn;
|
|
dc->unrealize = cpu_common_unrealizefn;
|
|
dc->unrealize = cpu_common_unrealizefn;
|