cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a)
1/*
2 * QEMU HPPA CPU
3 *
4 * Copyright (c) 2016 Richard Henderson <rth@twiddle.net>
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

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

142 cc->has_work = hppa_cpu_has_work;
143 cc->do_interrupt = hppa_cpu_do_interrupt;
144 cc->tcg_ops.cpu_exec_interrupt = hppa_cpu_exec_interrupt;
145 cc->dump_state = hppa_cpu_dump_state;
146 cc->set_pc = hppa_cpu_set_pc;
147 cc->tcg_ops.synchronize_from_tb = hppa_cpu_synchronize_from_tb;
148 cc->gdb_read_register = hppa_cpu_gdb_read_register;
149 cc->gdb_write_register = hppa_cpu_gdb_write_register;
1/*
2 * QEMU HPPA CPU
3 *
4 * Copyright (c) 2016 Richard Henderson <rth@twiddle.net>
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

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

142 cc->has_work = hppa_cpu_has_work;
143 cc->do_interrupt = hppa_cpu_do_interrupt;
144 cc->tcg_ops.cpu_exec_interrupt = hppa_cpu_exec_interrupt;
145 cc->dump_state = hppa_cpu_dump_state;
146 cc->set_pc = hppa_cpu_set_pc;
147 cc->tcg_ops.synchronize_from_tb = hppa_cpu_synchronize_from_tb;
148 cc->gdb_read_register = hppa_cpu_gdb_read_register;
149 cc->gdb_write_register = hppa_cpu_gdb_write_register;
150 cc->tlb_fill = hppa_cpu_tlb_fill;
150 cc->tcg_ops.tlb_fill = hppa_cpu_tlb_fill;
151#ifndef CONFIG_USER_ONLY
152 cc->get_phys_page_debug = hppa_cpu_get_phys_page_debug;
153 dc->vmsd = &vmstate_hppa_cpu;
154#endif
155 cc->do_unaligned_access = hppa_cpu_do_unaligned_access;
156 cc->disas_set_info = hppa_cpu_disas_set_info;
157 cc->tcg_ops.initialize = hppa_translate_init;
158

--- 19 unchanged lines hidden ---
151#ifndef CONFIG_USER_ONLY
152 cc->get_phys_page_debug = hppa_cpu_get_phys_page_debug;
153 dc->vmsd = &vmstate_hppa_cpu;
154#endif
155 cc->do_unaligned_access = hppa_cpu_do_unaligned_access;
156 cc->disas_set_info = hppa_cpu_disas_set_info;
157 cc->tcg_ops.initialize = hppa_translate_init;
158

--- 19 unchanged lines hidden ---