mmu-hash64.c (d1e8e8ecc3d2a1a72504912d671f1cbbac1b06e5) mmu-hash64.c (b39466269b9b3c29b0c31c1320aa519f376b750f)
1/*
2 * PowerPC MMU, TLB, SLB and BAT emulation helpers for QEMU.
3 *
4 * Copyright (c) 2003-2007 Jocelyn Mayer
5 * Copyright (c) 2013 David Gibson, IBM Corporation
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

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

18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 */
20#include "qemu/osdep.h"
21#include "qapi/error.h"
22#include "cpu.h"
23#include "exec/exec-all.h"
24#include "exec/helper-proto.h"
25#include "qemu/error-report.h"
1/*
2 * PowerPC MMU, TLB, SLB and BAT emulation helpers for QEMU.
3 *
4 * Copyright (c) 2003-2007 Jocelyn Mayer
5 * Copyright (c) 2013 David Gibson, IBM Corporation
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

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

18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 */
20#include "qemu/osdep.h"
21#include "qapi/error.h"
22#include "cpu.h"
23#include "exec/exec-all.h"
24#include "exec/helper-proto.h"
25#include "qemu/error-report.h"
26#include "sysemu/kvm.h"
26#include "sysemu/hw_accel.h"
27#include "kvm_ppc.h"
28#include "mmu-hash64.h"
29#include "exec/log.h"
30
31//#define DEBUG_SLB
32
33#ifdef DEBUG_SLB
34# define LOG_SLB(...) qemu_log_mask(CPU_LOG_MMU, __VA_ARGS__)

--- 1025 unchanged lines hidden ---
27#include "kvm_ppc.h"
28#include "mmu-hash64.h"
29#include "exec/log.h"
30
31//#define DEBUG_SLB
32
33#ifdef DEBUG_SLB
34# define LOG_SLB(...) qemu_log_mask(CPU_LOG_MMU, __VA_ARGS__)

--- 1025 unchanged lines hidden ---