accel/tcg: Add stub for probe_access()
[qemu/ar7.git] / accel / stubs / tcg-stub.c
blobe4bbf997aaf50ac6e318fb4b1a844ded5e1fadcb
1 /*
2 * QEMU TCG accelerator stub
4 * Copyright Red Hat, Inc. 2013
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "cpu.h"
15 #include "tcg/tcg.h"
16 #include "exec/exec-all.h"
18 void tb_flush(CPUState *cpu)
22 void tlb_set_dirty(CPUState *cpu, target_ulong vaddr)
26 void *probe_access(CPUArchState *env, target_ulong addr, int size,
27 MMUAccessType access_type, int mmu_idx, uintptr_t retaddr)
29 /* Handled by hardware accelerator. */
30 g_assert_not_reached();