diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2021-09-08 10:35:43 +0100 |
---|---|---|
committer | Daniel P. Berrangé <berrange@redhat.com> | 2021-11-02 15:57:20 +0000 |
commit | 3a841ab53f165910224dc4bebabf1a8f1d04200c (patch) | |
tree | bdca4b2a1bc53369eb9d1bfded42baefbae359a3 /qapi/machine.json | |
parent | 91f2fa7045e3f6c298b14ea7c66c486c27fe3b9f (diff) | |
download | qemu-3a841ab53f165910224dc4bebabf1a8f1d04200c.zip qemu-3a841ab53f165910224dc4bebabf1a8f1d04200c.tar.gz qemu-3a841ab53f165910224dc4bebabf1a8f1d04200c.tar.bz2 |
qapi: introduce x-query-jit QMP command
This is a counterpart to the HMP "info jit" command. It is being
added with an "x-" prefix because this QMP command is intended as an
ad hoc debugging tool and will thus not be modelled in QAPI as fully
structured data, nor will it have long term guaranteed stability.
The existing HMP command is rewritten to call the QMP command.
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'qapi/machine.json')
-rw-r--r-- | qapi/machine.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/qapi/machine.json b/qapi/machine.json index ca49358..422a446 100644 --- a/qapi/machine.json +++ b/qapi/machine.json @@ -1425,6 +1425,19 @@ 'returns': 'HumanReadableText' } ## +# @x-query-jit: +# +# Query TCG compiler statistics +# +# Returns: TCG compiler statistics +# +# Since: 6.2 +## +{ 'command': 'x-query-jit', + 'returns': 'HumanReadableText', + 'if': 'CONFIG_TCG' } + +## # @x-query-numa: # # Query NUMA topology information |