diff options
| author | Max Filippov | 2014-11-02 09:04:18 +0100 |
|---|---|---|
| committer | Max Filippov | 2014-12-17 03:49:32 +0100 |
| commit | 246ae24d7df47f05d7b102f9c84e00b536eadc43 (patch) | |
| tree | 6f0829b1a368a7bdd3ae40446a40ed83ca7f1edf /monitor.c | |
| parent | Merge remote-tracking branch 'remotes/spice/tags/pull-spice-20141216-1' into ... (diff) | |
| download | qemu-246ae24d7df47f05d7b102f9c84e00b536eadc43.tar.gz qemu-246ae24d7df47f05d7b102f9c84e00b536eadc43.tar.xz qemu-246ae24d7df47f05d7b102f9c84e00b536eadc43.zip | |
tcg: add separate monitor command to dump opcode counters
Currently 'info jit' outputs half of the information to monitor and the
rest to qemu log. Dumping opcode counts to monitor as a part of 'info
jit' command doesn't sound useful. Add new monitor command 'info
opcount' that only dumps opcode counters.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'monitor.c')
| -rw-r--r-- | monitor.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1042,6 +1042,11 @@ static void do_info_jit(Monitor *mon, const QDict *qdict) dump_drift_info((FILE *)mon, monitor_fprintf); } +static void do_info_opcount(Monitor *mon, const QDict *qdict) +{ + dump_opcount_info((FILE *)mon, monitor_fprintf); +} + static void do_info_history(Monitor *mon, const QDict *qdict) { int i; @@ -2739,6 +2744,13 @@ static mon_cmd_t info_cmds[] = { .mhandler.cmd = do_info_jit, }, { + .name = "opcount", + .args_type = "", + .params = "", + .help = "show dynamic compiler opcode counters", + .mhandler.cmd = do_info_opcount, + }, + { .name = "kvm", .args_type = "", .params = "", |
