mmu-hash64.c (43507e47e14e92e4460fdd29cf9f3798b401589f) mmu-hash64.c (a1b05c06255c2136bd4076017c48546035a8cb40)
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

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

197 }
198}
199
200void helper_SLBIE(CPUPPCState *env, target_ulong addr)
201{
202 __helper_slbie(env, addr, false);
203}
204
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

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

197 }
198}
199
200void helper_SLBIE(CPUPPCState *env, target_ulong addr)
201{
202 __helper_slbie(env, addr, false);
203}
204
205void helper_slbieg(CPUPPCState *env, target_ulong addr)
205void helper_SLBIEG(CPUPPCState *env, target_ulong addr)
206{
207 __helper_slbie(env, addr, true);
208}
209#endif
210
211int ppc_store_slb(PowerPCCPU *cpu, target_ulong slot,
212 target_ulong esid, target_ulong vsid)
213{

--- 965 unchanged lines hidden ---
206{
207 __helper_slbie(env, addr, true);
208}
209#endif
210
211int ppc_store_slb(PowerPCCPU *cpu, target_ulong slot,
212 target_ulong esid, target_ulong vsid)
213{

--- 965 unchanged lines hidden ---