mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 18:44:58 -06:00
accel/tcg: Report one-insn-per-tb in 'info jit', not 'info status'
Currently we report whether the TCG accelerator is in 'one-insn-per-tb' mode in the 'info status' output. This is a pretty minor piece of TCG specific information, and we want to deprecate the 'singlestep' field of the associated QMP command. Move the 'one-insn-per-tb' reporting to 'info jit'. We don't need a deprecate-and-drop period for this because the HMP interface has no stability guarantees. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20230417164041.684562-8-peter.maydell@linaro.org
This commit is contained in:
parent
12fd0f41d0
commit
e726acd5b8
2 changed files with 16 additions and 3 deletions
|
@ -28,9 +28,8 @@ void hmp_info_status(Monitor *mon, const QDict *qdict)
|
|||
|
||||
info = qmp_query_status(NULL);
|
||||
|
||||
monitor_printf(mon, "VM status: %s%s",
|
||||
info->running ? "running" : "paused",
|
||||
info->singlestep ? " (single step mode)" : "");
|
||||
monitor_printf(mon, "VM status: %s",
|
||||
info->running ? "running" : "paused");
|
||||
|
||||
if (!info->running && info->status != RUN_STATE_PAUSED) {
|
||||
monitor_printf(mon, " (%s)", RunState_str(info->status));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue