]>
git.proxmox.com Git - mirror_qemu.git/blob - accel/tcg/monitor.c
2 * SPDX-License-Identifier: LGPL-2.1-or-later
6 * Copyright (c) 2003-2005 Fabrice Bellard
9 #include "qemu/osdep.h"
10 #include "qemu/accel.h"
11 #include "qapi/error.h"
12 #include "qapi/type-helpers.h"
13 #include "qapi/qapi-commands-machine.h"
14 #include "monitor/monitor.h"
15 #include "sysemu/cpus.h"
16 #include "sysemu/cpu-timers.h"
17 #include "sysemu/tcg.h"
22 static void dump_drift_info(GString
*buf
)
24 if (!icount_enabled()) {
28 g_string_append_printf(buf
, "Host - Guest clock %"PRIi64
" ms\n",
29 (cpu_get_clock() - icount_get()) / SCALE_MS
);
30 if (icount_align_option
) {
31 g_string_append_printf(buf
, "Max guest delay %"PRIi64
" ms\n",
32 -max_delay
/ SCALE_MS
);
33 g_string_append_printf(buf
, "Max guest advance %"PRIi64
" ms\n",
34 max_advance
/ SCALE_MS
);
36 g_string_append_printf(buf
, "Max guest delay NA\n");
37 g_string_append_printf(buf
, "Max guest advance NA\n");
41 static void dump_accel_info(GString
*buf
)
43 AccelState
*accel
= current_accel();
44 bool one_insn_per_tb
= object_property_get_bool(OBJECT(accel
),
48 g_string_append_printf(buf
, "Accelerator settings:\n");
49 g_string_append_printf(buf
, "one-insn-per-tb: %s\n\n",
50 one_insn_per_tb
? "on" : "off");
53 HumanReadableText
*qmp_x_query_jit(Error
**errp
)
55 g_autoptr(GString
) buf
= g_string_new("");
58 error_setg(errp
, "JIT information is only available with accel=tcg");
66 return human_readable_text_from_str(buf
);
69 HumanReadableText
*qmp_x_query_opcount(Error
**errp
)
71 g_autoptr(GString
) buf
= g_string_new("");
75 "Opcode count information is only available with accel=tcg");
79 tcg_dump_op_count(buf
);
81 return human_readable_text_from_str(buf
);
84 static void hmp_tcg_register(void)
86 monitor_register_hmp_info_hrt("jit", qmp_x_query_jit
);
87 monitor_register_hmp_info_hrt("opcount", qmp_x_query_opcount
);
90 type_init(hmp_tcg_register
);