cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) | cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a) |
---|---|
1/* 2 * Sparc CPU init helpers 3 * 4 * Copyright (c) 2003-2005 Fabrice Bellard 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either --- 859 unchanged lines hidden (view full) --- 868 cc->dump_state = sparc_cpu_dump_state; 869#if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY) 870 cc->memory_rw_debug = sparc_cpu_memory_rw_debug; 871#endif 872 cc->set_pc = sparc_cpu_set_pc; 873 cc->tcg_ops.synchronize_from_tb = sparc_cpu_synchronize_from_tb; 874 cc->gdb_read_register = sparc_cpu_gdb_read_register; 875 cc->gdb_write_register = sparc_cpu_gdb_write_register; | 1/* 2 * Sparc CPU init helpers 3 * 4 * Copyright (c) 2003-2005 Fabrice Bellard 5 * 6 * This library is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public 8 * License as published by the Free Software Foundation; either --- 859 unchanged lines hidden (view full) --- 868 cc->dump_state = sparc_cpu_dump_state; 869#if !defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY) 870 cc->memory_rw_debug = sparc_cpu_memory_rw_debug; 871#endif 872 cc->set_pc = sparc_cpu_set_pc; 873 cc->tcg_ops.synchronize_from_tb = sparc_cpu_synchronize_from_tb; 874 cc->gdb_read_register = sparc_cpu_gdb_read_register; 875 cc->gdb_write_register = sparc_cpu_gdb_write_register; |
876 cc->tlb_fill = sparc_cpu_tlb_fill; | 876 cc->tcg_ops.tlb_fill = sparc_cpu_tlb_fill; |
877#ifndef CONFIG_USER_ONLY 878 cc->do_transaction_failed = sparc_cpu_do_transaction_failed; 879 cc->do_unaligned_access = sparc_cpu_do_unaligned_access; 880 cc->get_phys_page_debug = sparc_cpu_get_phys_page_debug; 881 cc->vmsd = &vmstate_sparc_cpu; 882#endif 883 cc->disas_set_info = cpu_sparc_disas_set_info; 884 cc->tcg_ops.initialize = sparc_tcg_init; --- 49 unchanged lines hidden --- | 877#ifndef CONFIG_USER_ONLY 878 cc->do_transaction_failed = sparc_cpu_do_transaction_failed; 879 cc->do_unaligned_access = sparc_cpu_do_unaligned_access; 880 cc->get_phys_page_debug = sparc_cpu_get_phys_page_debug; 881 cc->vmsd = &vmstate_sparc_cpu; 882#endif 883 cc->disas_set_info = cpu_sparc_disas_set_info; 884 cc->tcg_ops.initialize = sparc_tcg_init; --- 49 unchanged lines hidden --- |