mirror of https://github.com/xqemu/xqemu.git
monitor: disable "info jit" and "info opcount" if !TCG
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
8e2b72990e
commit
f0d14a95a5
|
@ -1851,6 +1851,11 @@ void dump_exec_info(FILE *f, fprintf_function cpu_fprintf)
|
||||||
|
|
||||||
tb_lock();
|
tb_lock();
|
||||||
|
|
||||||
|
if (!tcg_enabled()) {
|
||||||
|
cpu_fprintf(f, "TCG not enabled\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
target_code_size = 0;
|
target_code_size = 0;
|
||||||
max_target_code_size = 0;
|
max_target_code_size = 0;
|
||||||
cross_page = 0;
|
cross_page = 0;
|
||||||
|
|
|
@ -261,6 +261,7 @@ STEXI
|
||||||
Show memory tree.
|
Show memory tree.
|
||||||
ETEXI
|
ETEXI
|
||||||
|
|
||||||
|
#if defined(CONFIG_TCG)
|
||||||
{
|
{
|
||||||
.name = "jit",
|
.name = "jit",
|
||||||
.args_type = "",
|
.args_type = "",
|
||||||
|
@ -268,6 +269,7 @@ ETEXI
|
||||||
.help = "show dynamic compiler info",
|
.help = "show dynamic compiler info",
|
||||||
.cmd = hmp_info_jit,
|
.cmd = hmp_info_jit,
|
||||||
},
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
STEXI
|
STEXI
|
||||||
@item info jit
|
@item info jit
|
||||||
|
@ -275,6 +277,7 @@ STEXI
|
||||||
Show dynamic compiler info.
|
Show dynamic compiler info.
|
||||||
ETEXI
|
ETEXI
|
||||||
|
|
||||||
|
#if defined(CONFIG_TCG)
|
||||||
{
|
{
|
||||||
.name = "opcount",
|
.name = "opcount",
|
||||||
.args_type = "",
|
.args_type = "",
|
||||||
|
@ -282,6 +285,7 @@ ETEXI
|
||||||
.help = "show dynamic compiler opcode counters",
|
.help = "show dynamic compiler opcode counters",
|
||||||
.cmd = hmp_info_opcount,
|
.cmd = hmp_info_opcount,
|
||||||
},
|
},
|
||||||
|
#endif
|
||||||
|
|
||||||
STEXI
|
STEXI
|
||||||
@item info opcount
|
@item info opcount
|
||||||
|
|
|
@ -1098,6 +1098,7 @@ static void hmp_info_registers(Monitor *mon, const QDict *qdict)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_TCG
|
||||||
static void hmp_info_jit(Monitor *mon, const QDict *qdict)
|
static void hmp_info_jit(Monitor *mon, const QDict *qdict)
|
||||||
{
|
{
|
||||||
if (!tcg_enabled()) {
|
if (!tcg_enabled()) {
|
||||||
|
@ -1113,6 +1114,7 @@ static void hmp_info_opcount(Monitor *mon, const QDict *qdict)
|
||||||
{
|
{
|
||||||
dump_opcount_info((FILE *)mon, monitor_fprintf);
|
dump_opcount_info((FILE *)mon, monitor_fprintf);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void hmp_info_history(Monitor *mon, const QDict *qdict)
|
static void hmp_info_history(Monitor *mon, const QDict *qdict)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue