2017-07-03 12:12:17 +02:00
|
|
|
/*
|
|
|
|
* QEMU TCG accelerator stub
|
|
|
|
*
|
|
|
|
* Copyright Red Hat, Inc. 2013
|
|
|
|
*
|
|
|
|
* Author: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec/exec-all.h"
|
|
|
|
|
|
|
|
void tb_flush(CPUState *cpu)
|
|
|
|
{
|
|
|
|
}
|
2017-11-22 09:41:57 +01:00
|
|
|
|
|
|
|
void tlb_set_dirty(CPUState *cpu, target_ulong vaddr)
|
|
|
|
{
|
|
|
|
}
|
2020-06-18 14:33:42 +02:00
|
|
|
|
|
|
|
void *probe_access(CPUArchState *env, target_ulong addr, int size,
|
|
|
|
MMUAccessType access_type, int mmu_idx, uintptr_t retaddr)
|
|
|
|
{
|
|
|
|
/* Handled by hardware accelerator. */
|
|
|
|
g_assert_not_reached();
|
|
|
|
}
|