cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) | cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a) |
---|---|
1/* 2 * QEMU ARM CPU 3 * 4 * Copyright (c) 2012 SUSE LINUX Products GmbH 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 --- 2265 unchanged lines hidden (view full) --- 2274 cc->gdb_arch_name = arm_gdb_arch_name; 2275 cc->gdb_get_dynamic_xml = arm_gdb_get_dynamic_xml; 2276 cc->gdb_stop_before_watchpoint = true; 2277 cc->disas_set_info = arm_disas_set_info; 2278#ifdef CONFIG_TCG 2279 cc->tcg_ops.initialize = arm_translate_init; 2280 cc->tcg_ops.cpu_exec_interrupt = arm_cpu_exec_interrupt; 2281 cc->tcg_ops.synchronize_from_tb = arm_cpu_synchronize_from_tb; | 1/* 2 * QEMU ARM CPU 3 * 4 * Copyright (c) 2012 SUSE LINUX Products GmbH 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License 8 * as published by the Free Software Foundation; either version 2 --- 2265 unchanged lines hidden (view full) --- 2274 cc->gdb_arch_name = arm_gdb_arch_name; 2275 cc->gdb_get_dynamic_xml = arm_gdb_get_dynamic_xml; 2276 cc->gdb_stop_before_watchpoint = true; 2277 cc->disas_set_info = arm_disas_set_info; 2278#ifdef CONFIG_TCG 2279 cc->tcg_ops.initialize = arm_translate_init; 2280 cc->tcg_ops.cpu_exec_interrupt = arm_cpu_exec_interrupt; 2281 cc->tcg_ops.synchronize_from_tb = arm_cpu_synchronize_from_tb; |
2282 cc->tlb_fill = arm_cpu_tlb_fill; | 2282 cc->tcg_ops.tlb_fill = arm_cpu_tlb_fill; |
2283 cc->debug_excp_handler = arm_debug_excp_handler; 2284 cc->debug_check_watchpoint = arm_debug_check_watchpoint; 2285 cc->do_unaligned_access = arm_cpu_do_unaligned_access; 2286#if !defined(CONFIG_USER_ONLY) 2287 cc->do_transaction_failed = arm_cpu_do_transaction_failed; 2288 cc->adjust_watchpoint_address = arm_adjust_watchpoint_address; 2289#endif /* CONFIG_TCG && !CONFIG_USER_ONLY */ 2290#endif --- 93 unchanged lines hidden --- | 2283 cc->debug_excp_handler = arm_debug_excp_handler; 2284 cc->debug_check_watchpoint = arm_debug_check_watchpoint; 2285 cc->do_unaligned_access = arm_cpu_do_unaligned_access; 2286#if !defined(CONFIG_USER_ONLY) 2287 cc->do_transaction_failed = arm_cpu_do_transaction_failed; 2288 cc->adjust_watchpoint_address = arm_adjust_watchpoint_address; 2289#endif /* CONFIG_TCG && !CONFIG_USER_ONLY */ 2290#endif --- 93 unchanged lines hidden --- |