a35b3e1415
Plumb the value through to alloc_code_gen_buffer. This is not supported by any os or tcg backend, so for now enabling it will result in an error. Reviewed-by: Joelle van Dyne <j@getutm.app> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
21 lines
384 B
C
21 lines
384 B
C
/*
|
|
* QEMU TCG support
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef SYSEMU_TCG_H
|
|
#define SYSEMU_TCG_H
|
|
|
|
void tcg_exec_init(unsigned long tb_size, int splitwx);
|
|
|
|
#ifdef CONFIG_TCG
|
|
extern bool tcg_allowed;
|
|
#define tcg_enabled() (tcg_allowed)
|
|
#else
|
|
#define tcg_enabled() 0
|
|
#endif
|
|
|
|
#endif
|