mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
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
3 changed files with 11 additions and 0 deletions
|
@ -261,6 +261,7 @@ STEXI
|
|||
Show memory tree.
|
||||
ETEXI
|
||||
|
||||
#if defined(CONFIG_TCG)
|
||||
{
|
||||
.name = "jit",
|
||||
.args_type = "",
|
||||
|
@ -268,6 +269,7 @@ ETEXI
|
|||
.help = "show dynamic compiler info",
|
||||
.cmd = hmp_info_jit,
|
||||
},
|
||||
#endif
|
||||
|
||||
STEXI
|
||||
@item info jit
|
||||
|
@ -275,6 +277,7 @@ STEXI
|
|||
Show dynamic compiler info.
|
||||
ETEXI
|
||||
|
||||
#if defined(CONFIG_TCG)
|
||||
{
|
||||
.name = "opcount",
|
||||
.args_type = "",
|
||||
|
@ -282,6 +285,7 @@ ETEXI
|
|||
.help = "show dynamic compiler opcode counters",
|
||||
.cmd = hmp_info_opcount,
|
||||
},
|
||||
#endif
|
||||
|
||||
STEXI
|
||||
@item info opcount
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue