2021-01-21 09:15:06 +03:00
|
|
|
/*
|
|
|
|
* Internal execution defines for qemu
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ACCEL_TCG_INTERNAL_H
|
|
|
|
#define ACCEL_TCG_INTERNAL_H
|
|
|
|
|
|
|
|
#include "exec/exec-all.h"
|
|
|
|
|
|
|
|
TranslationBlock *tb_gen_code(CPUState *cpu, target_ulong pc,
|
|
|
|
target_ulong cs_base, uint32_t flags,
|
|
|
|
int cflags);
|
2022-04-20 16:26:02 +03:00
|
|
|
G_NORETURN void cpu_io_recompile(CPUState *cpu, uintptr_t retaddr);
|
2021-03-10 02:42:16 +03:00
|
|
|
void page_init(void);
|
|
|
|
void tb_htable_init(void);
|
2021-01-17 19:48:12 +03:00
|
|
|
|
2021-01-21 09:15:06 +03:00
|
|
|
#endif /* ACCEL_TCG_INTERNAL_H */
|