cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a)
1/*
2 * QEMU Alpha CPU
3 *
4 * Copyright (c) 2007 Jocelyn Mayer
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

--- 209 unchanged lines hidden (view full) ---

218 cc->class_by_name = alpha_cpu_class_by_name;
219 cc->has_work = alpha_cpu_has_work;
220 cc->do_interrupt = alpha_cpu_do_interrupt;
221 cc->tcg_ops.cpu_exec_interrupt = alpha_cpu_exec_interrupt;
222 cc->dump_state = alpha_cpu_dump_state;
223 cc->set_pc = alpha_cpu_set_pc;
224 cc->gdb_read_register = alpha_cpu_gdb_read_register;
225 cc->gdb_write_register = alpha_cpu_gdb_write_register;
1/*
2 * QEMU Alpha CPU
3 *
4 * Copyright (c) 2007 Jocelyn Mayer
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

--- 209 unchanged lines hidden (view full) ---

218 cc->class_by_name = alpha_cpu_class_by_name;
219 cc->has_work = alpha_cpu_has_work;
220 cc->do_interrupt = alpha_cpu_do_interrupt;
221 cc->tcg_ops.cpu_exec_interrupt = alpha_cpu_exec_interrupt;
222 cc->dump_state = alpha_cpu_dump_state;
223 cc->set_pc = alpha_cpu_set_pc;
224 cc->gdb_read_register = alpha_cpu_gdb_read_register;
225 cc->gdb_write_register = alpha_cpu_gdb_write_register;
226 cc->tlb_fill = alpha_cpu_tlb_fill;
226 cc->tcg_ops.tlb_fill = alpha_cpu_tlb_fill;
227#ifndef CONFIG_USER_ONLY
228 cc->do_transaction_failed = alpha_cpu_do_transaction_failed;
229 cc->do_unaligned_access = alpha_cpu_do_unaligned_access;
230 cc->get_phys_page_debug = alpha_cpu_get_phys_page_debug;
231 dc->vmsd = &vmstate_alpha_cpu;
232#endif
233 cc->disas_set_info = alpha_cpu_disas_set_info;
234 cc->tcg_ops.initialize = alpha_translate_init;

--- 32 unchanged lines hidden ---
227#ifndef CONFIG_USER_ONLY
228 cc->do_transaction_failed = alpha_cpu_do_transaction_failed;
229 cc->do_unaligned_access = alpha_cpu_do_unaligned_access;
230 cc->get_phys_page_debug = alpha_cpu_get_phys_page_debug;
231 dc->vmsd = &vmstate_alpha_cpu;
232#endif
233 cc->disas_set_info = alpha_cpu_disas_set_info;
234 cc->tcg_ops.initialize = alpha_translate_init;

--- 32 unchanged lines hidden ---