Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/accel/tcg/hmp.c

15 lines
371 B
C
Raw Permalink Normal View History

2023-03-06 14:48:14 +01:00
#include "qemu/osdep.h"
#include "qemu/error-report.h"
#include "qapi/error.h"
#include "qapi/qapi-commands-machine.h"
#include "exec/exec-all.h"
#include "monitor/monitor.h"
static void hmp_tcg_register(void)
{
monitor_register_hmp_info_hrt("jit", qmp_x_query_jit);
monitor_register_hmp_info_hrt("opcount", qmp_x_query_opcount);
}
type_init(hmp_tcg_register);