cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) | cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a) |
---|---|
1/* 2 * QEMU Xtensa CPU 3 * 4 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab. 5 * Copyright (c) 2012 SUSE LINUX Products GmbH 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 187 unchanged lines hidden (view full) --- 196 cc->has_work = xtensa_cpu_has_work; 197 cc->do_interrupt = xtensa_cpu_do_interrupt; 198 cc->tcg_ops.cpu_exec_interrupt = xtensa_cpu_exec_interrupt; 199 cc->dump_state = xtensa_cpu_dump_state; 200 cc->set_pc = xtensa_cpu_set_pc; 201 cc->gdb_read_register = xtensa_cpu_gdb_read_register; 202 cc->gdb_write_register = xtensa_cpu_gdb_write_register; 203 cc->gdb_stop_before_watchpoint = true; | 1/* 2 * QEMU Xtensa CPU 3 * 4 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab. 5 * Copyright (c) 2012 SUSE LINUX Products GmbH 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 187 unchanged lines hidden (view full) --- 196 cc->has_work = xtensa_cpu_has_work; 197 cc->do_interrupt = xtensa_cpu_do_interrupt; 198 cc->tcg_ops.cpu_exec_interrupt = xtensa_cpu_exec_interrupt; 199 cc->dump_state = xtensa_cpu_dump_state; 200 cc->set_pc = xtensa_cpu_set_pc; 201 cc->gdb_read_register = xtensa_cpu_gdb_read_register; 202 cc->gdb_write_register = xtensa_cpu_gdb_write_register; 203 cc->gdb_stop_before_watchpoint = true; |
204 cc->tlb_fill = xtensa_cpu_tlb_fill; | 204 cc->tcg_ops.tlb_fill = xtensa_cpu_tlb_fill; |
205#ifndef CONFIG_USER_ONLY 206 cc->do_unaligned_access = xtensa_cpu_do_unaligned_access; 207 cc->get_phys_page_debug = xtensa_cpu_get_phys_page_debug; 208 cc->do_transaction_failed = xtensa_cpu_do_transaction_failed; 209#endif 210 cc->debug_excp_handler = xtensa_breakpoint_handler; 211 cc->disas_set_info = xtensa_cpu_disas_set_info; 212 cc->tcg_ops.initialize = xtensa_translate_init; --- 19 unchanged lines hidden --- | 205#ifndef CONFIG_USER_ONLY 206 cc->do_unaligned_access = xtensa_cpu_do_unaligned_access; 207 cc->get_phys_page_debug = xtensa_cpu_get_phys_page_debug; 208 cc->do_transaction_failed = xtensa_cpu_do_transaction_failed; 209#endif 210 cc->debug_excp_handler = xtensa_breakpoint_handler; 211 cc->disas_set_info = xtensa_cpu_disas_set_info; 212 cc->tcg_ops.initialize = xtensa_translate_init; --- 19 unchanged lines hidden --- |