mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:10 +00:00
monitor: Merge hmp-target.c code within hmp-cmds.c
hmp-target.c doesn't contain any target-specific code anymore. Merge it within hmp-cmds.c (which is already built once). Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20260427080738.77138-32-philmd@linaro.org>
This commit is contained in:
@@ -3408,7 +3408,6 @@ Human Monitor (HMP)
|
||||
M: Dr. David Alan Gilbert <dave@treblig.org>
|
||||
S: Maintained
|
||||
F: monitor/monitor-internal.h
|
||||
F: monitor/hmp-target.c
|
||||
F: monitor/monitor.c
|
||||
F: monitor/hmp*
|
||||
F: hmp.h
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu/base-arch-defs.h"
|
||||
#include "system/address-spaces.h"
|
||||
#include "system/ioport.h"
|
||||
#include "exec/gdbstub.h"
|
||||
@@ -22,19 +23,58 @@
|
||||
#include "monitor/hmp.h"
|
||||
#include "qemu/help_option.h"
|
||||
#include "monitor/hmp.h"
|
||||
#include "monitor/hmp-completion.h"
|
||||
#include "monitor/monitor-internal.h"
|
||||
#include "monitor/qdev.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qapi/qapi-commands-control.h"
|
||||
#include "qapi/qapi-commands-machine.h"
|
||||
#include "qapi/qapi-commands-misc.h"
|
||||
#include "block/block-hmp-cmds.h"
|
||||
#include "qobject/qdict.h"
|
||||
#include "qemu/cutils.h"
|
||||
#include "qemu/log.h"
|
||||
#include "net/slirp.h"
|
||||
#include "system/device_tree.h"
|
||||
#include "system/hw_accel.h"
|
||||
#include "system/memory.h"
|
||||
#include "system/system.h"
|
||||
#include "disas/disas.h"
|
||||
|
||||
/* Please update hmp-commands.hx when adding or changing commands */
|
||||
static HMPCommand hmp_info_cmds[] = {
|
||||
#include "hmp-commands-info.h"
|
||||
{ NULL, NULL, },
|
||||
};
|
||||
|
||||
/* hmp_cmds and hmp_info_cmds would be sorted at runtime */
|
||||
static HMPCommand hmp_cmds[] = {
|
||||
#include "hmp-commands.h"
|
||||
{ NULL, NULL, },
|
||||
};
|
||||
|
||||
HMPCommand *hmp_cmds_for_target(bool info_command)
|
||||
{
|
||||
return info_command ? hmp_info_cmds : hmp_cmds;
|
||||
}
|
||||
|
||||
static int
|
||||
compare_mon_cmd(const void *a, const void *b)
|
||||
{
|
||||
return strcmp(((const HMPCommand *)a)->name,
|
||||
((const HMPCommand *)b)->name);
|
||||
}
|
||||
|
||||
static void __attribute__((__constructor__)) sortcmdlist(void)
|
||||
{
|
||||
qsort(hmp_cmds, ARRAY_SIZE(hmp_cmds) - 1,
|
||||
sizeof(*hmp_cmds),
|
||||
compare_mon_cmd);
|
||||
qsort(hmp_info_cmds, ARRAY_SIZE(hmp_info_cmds) - 1,
|
||||
sizeof(*hmp_info_cmds),
|
||||
compare_mon_cmd);
|
||||
}
|
||||
|
||||
bool hmp_handle_error(Monitor *mon, Error *err)
|
||||
{
|
||||
if (err) {
|
||||
|
||||
@@ -1,74 +0,0 @@
|
||||
/*
|
||||
* QEMU monitor, target-dependent part
|
||||
*
|
||||
* Copyright (c) 2003-2004 Fabrice Bellard
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu/base-arch-defs.h"
|
||||
#include "monitor-internal.h"
|
||||
#include "monitor/qdev.h"
|
||||
#include "net/slirp.h"
|
||||
#include "system/device_tree.h"
|
||||
#include "monitor/hmp.h"
|
||||
#include "monitor/hmp-completion.h"
|
||||
#include "block/block-hmp-cmds.h"
|
||||
#include "qapi/qapi-commands-control.h"
|
||||
#include "qapi/qapi-commands-misc.h"
|
||||
#include "qapi/qapi-commands-machine.h"
|
||||
#include "hw/core/sysemu-cpu-ops.h"
|
||||
|
||||
/* Make devices configuration available for use in hmp-commands*.hx templates */
|
||||
#include CONFIG_DEVICES
|
||||
|
||||
/* Please update hmp-commands.hx when adding or changing commands */
|
||||
static HMPCommand hmp_info_cmds[] = {
|
||||
#include "hmp-commands-info.h"
|
||||
{ NULL, NULL, },
|
||||
};
|
||||
|
||||
/* hmp_cmds and hmp_info_cmds would be sorted at runtime */
|
||||
static HMPCommand hmp_cmds[] = {
|
||||
#include "hmp-commands.h"
|
||||
{ NULL, NULL, },
|
||||
};
|
||||
|
||||
HMPCommand *hmp_cmds_for_target(bool info_command)
|
||||
{
|
||||
return info_command ? hmp_info_cmds : hmp_cmds;
|
||||
}
|
||||
|
||||
static int
|
||||
compare_mon_cmd(const void *a, const void *b)
|
||||
{
|
||||
return strcmp(((const HMPCommand *)a)->name,
|
||||
((const HMPCommand *)b)->name);
|
||||
}
|
||||
|
||||
static void __attribute__((__constructor__)) sortcmdlist(void)
|
||||
{
|
||||
qsort(hmp_cmds, ARRAY_SIZE(hmp_cmds) - 1,
|
||||
sizeof(*hmp_cmds),
|
||||
compare_mon_cmd);
|
||||
qsort(hmp_info_cmds, ARRAY_SIZE(hmp_info_cmds) - 1,
|
||||
sizeof(*hmp_info_cmds),
|
||||
compare_mon_cmd);
|
||||
}
|
||||
@@ -7,6 +7,3 @@ system_ss.add(files(
|
||||
'qemu-config-qmp.c',
|
||||
'qmp-cmds.c',
|
||||
))
|
||||
|
||||
specific_ss.add(when: 'CONFIG_SYSTEM_ONLY',
|
||||
if_true: [files('hmp-target.c')])
|
||||
|
||||
Reference in New Issue
Block a user