diff options
author | Daniel P. Berrangé | 2021-09-08 11:35:43 +0200 |
---|---|---|
committer | Daniel P. Berrangé | 2021-11-02 16:57:20 +0100 |
commit | 3a841ab53f165910224dc4bebabf1a8f1d04200c (patch) | |
tree | bdca4b2a1bc53369eb9d1bfded42baefbae359a3 /include/tcg | |
parent | qapi: introduce x-query-irq QMP command (diff) | |
download | qemu-3a841ab53f165910224dc4bebabf1a8f1d04200c.tar.gz qemu-3a841ab53f165910224dc4bebabf1a8f1d04200c.tar.xz qemu-3a841ab53f165910224dc4bebabf1a8f1d04200c.zip |
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 'include/tcg')
-rw-r--r-- | include/tcg/tcg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index 7069a401f1..7c8019a9b2 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -937,7 +937,7 @@ int tcg_check_temp_count(void); #endif int64_t tcg_cpu_exec_time(void); -void tcg_dump_info(void); +void tcg_dump_info(GString *buf); void tcg_dump_op_count(void); #define TCG_CT_CONST 1 /* any constant of register size */ |