target/riscv: debug: Introduce tinfo CSR
[qemu.git] / accel / stubs / tcg-stub.c
blob6ce8a34228cea37ebeb7e08cb6d6a3d548ac47b7
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 "exec/exec-all.h"
16 void tb_flush(CPUState *cpu)
20 void tlb_set_dirty(CPUState *cpu, target_ulong vaddr)
24 int probe_access_flags(CPUArchState *env, target_ulong addr,
25 MMUAccessType access_type, int mmu_idx,
26 bool nonfault, void **phost, uintptr_t retaddr)
28 g_assert_not_reached();
31 void *probe_access(CPUArchState *env, target_ulong addr, int size,
32 MMUAccessType access_type, int mmu_idx, uintptr_t retaddr)
34 /* Handled by hardware accelerator. */
35 g_assert_not_reached();
38 G_NORETURN void cpu_loop_exit(CPUState *cpu)
40 g_assert_not_reached();
43 G_NORETURN void cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc)
45 g_assert_not_reached();