2017-07-03 13:12:17 +03: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 "qemu-common.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "tcg/tcg.h"
|
|
|
|
#include "exec/cpu-common.h"
|
|
|
|
#include "exec/exec-all.h"
|
2018-06-29 23:07:10 +03:00
|
|
|
#include "translate-all.h"
|
2017-07-03 13:12:17 +03:00
|
|
|
|
|
|
|
void tb_flush(CPUState *cpu)
|
|
|
|
{
|
|
|
|
}
|
2017-11-22 11:41:57 +03:00
|
|
|
|
|
|
|
void tlb_set_dirty(CPUState *cpu, target_ulong vaddr)
|
|
|
|
{
|
|
|
|
}
|
2018-06-29 23:07:10 +03:00
|
|
|
|
|
|
|
void tb_invalidate_phys_page_range(tb_page_addr_t start, tb_page_addr_t end,
|
|
|
|
int is_cpu_write_access)
|
|
|
|
{
|
|
|
|
}
|