8f2c4cbc76
Commit 2726627197
started to use tb_unlock() and tlb_set_dirty() on
non TCG code. Add the functions as stubs, so that builds with TCG
disabled continue to compile.
Signed-off-by: Juan Quintela <quintela@redhat.com>
Acked-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
[PMM: tweaked commit message]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
31 lines
523 B
C
31 lines
523 B
C
/*
|
|
* 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"
|
|
|
|
void tb_flush(CPUState *cpu)
|
|
{
|
|
}
|
|
|
|
void tb_unlock(void)
|
|
{
|
|
}
|
|
|
|
void tlb_set_dirty(CPUState *cpu, target_ulong vaddr)
|
|
{
|
|
}
|