cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a)
1/*
2 * QEMU MIPS CPU
3 *
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
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

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

687 cc->get_phys_page_debug = mips_cpu_get_phys_page_debug;
688 cc->vmsd = &vmstate_mips_cpu;
689#endif
690 cc->disas_set_info = mips_cpu_disas_set_info;
691#ifdef CONFIG_TCG
692 cc->tcg_ops.initialize = mips_tcg_init;
693 cc->tcg_ops.cpu_exec_interrupt = mips_cpu_exec_interrupt;
694 cc->tcg_ops.synchronize_from_tb = mips_cpu_synchronize_from_tb;
1/*
2 * QEMU MIPS CPU
3 *
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
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

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

687 cc->get_phys_page_debug = mips_cpu_get_phys_page_debug;
688 cc->vmsd = &vmstate_mips_cpu;
689#endif
690 cc->disas_set_info = mips_cpu_disas_set_info;
691#ifdef CONFIG_TCG
692 cc->tcg_ops.initialize = mips_tcg_init;
693 cc->tcg_ops.cpu_exec_interrupt = mips_cpu_exec_interrupt;
694 cc->tcg_ops.synchronize_from_tb = mips_cpu_synchronize_from_tb;
695 cc->tlb_fill = mips_cpu_tlb_fill;
695 cc->tcg_ops.tlb_fill = mips_cpu_tlb_fill;
696#endif
697
698 cc->gdb_num_core_regs = 73;
699 cc->gdb_stop_before_watchpoint = true;
700}
701
702static const TypeInfo mips_cpu_type_info = {
703 .name = TYPE_MIPS_CPU,

--- 96 unchanged lines hidden ---
696#endif
697
698 cc->gdb_num_core_regs = 73;
699 cc->gdb_stop_before_watchpoint = true;
700}
701
702static const TypeInfo mips_cpu_type_info = {
703 .name = TYPE_MIPS_CPU,

--- 96 unchanged lines hidden ---