cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) | cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a) |
---|---|
1/* 2 * QEMU SuperH CPU 3 * 4 * Copyright (c) 2005 Samuel Tardieu 5 * Copyright (c) 2012 SUSE LINUX Products GmbH 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public --- 212 unchanged lines hidden (view full) --- 221 cc->has_work = superh_cpu_has_work; 222 cc->do_interrupt = superh_cpu_do_interrupt; 223 cc->tcg_ops.cpu_exec_interrupt = superh_cpu_exec_interrupt; 224 cc->dump_state = superh_cpu_dump_state; 225 cc->set_pc = superh_cpu_set_pc; 226 cc->tcg_ops.synchronize_from_tb = superh_cpu_synchronize_from_tb; 227 cc->gdb_read_register = superh_cpu_gdb_read_register; 228 cc->gdb_write_register = superh_cpu_gdb_write_register; | 1/* 2 * QEMU SuperH CPU 3 * 4 * Copyright (c) 2005 Samuel Tardieu 5 * Copyright (c) 2012 SUSE LINUX Products GmbH 6 * 7 * This library is free software; you can redistribute it and/or 8 * modify it under the terms of the GNU Lesser General Public --- 212 unchanged lines hidden (view full) --- 221 cc->has_work = superh_cpu_has_work; 222 cc->do_interrupt = superh_cpu_do_interrupt; 223 cc->tcg_ops.cpu_exec_interrupt = superh_cpu_exec_interrupt; 224 cc->dump_state = superh_cpu_dump_state; 225 cc->set_pc = superh_cpu_set_pc; 226 cc->tcg_ops.synchronize_from_tb = superh_cpu_synchronize_from_tb; 227 cc->gdb_read_register = superh_cpu_gdb_read_register; 228 cc->gdb_write_register = superh_cpu_gdb_write_register; |
229 cc->tlb_fill = superh_cpu_tlb_fill; | 229 cc->tcg_ops.tlb_fill = superh_cpu_tlb_fill; |
230#ifndef CONFIG_USER_ONLY 231 cc->do_unaligned_access = superh_cpu_do_unaligned_access; 232 cc->get_phys_page_debug = superh_cpu_get_phys_page_debug; 233#endif 234 cc->disas_set_info = superh_cpu_disas_set_info; 235 cc->tcg_ops.initialize = sh4_translate_init; 236 237 cc->gdb_num_core_regs = 59; --- 31 unchanged lines hidden --- | 230#ifndef CONFIG_USER_ONLY 231 cc->do_unaligned_access = superh_cpu_do_unaligned_access; 232 cc->get_phys_page_debug = superh_cpu_get_phys_page_debug; 233#endif 234 cc->disas_set_info = superh_cpu_disas_set_info; 235 cc->tcg_ops.initialize = sh4_translate_init; 236 237 cc->gdb_num_core_regs = 59; --- 31 unchanged lines hidden --- |