aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2025-07-03 11:42:17 +0200
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2025-07-04 12:08:07 +0200
commitf1e59f012de35310314a2a12ea9cb5f72019c976 (patch)
treeb6fae6e7c22b8cf1ff6ef67519845801d8c84df5
parenta8e49597d486123a62375eda6dbc939fffbfd31d (diff)
downloadqemu-f1e59f012de35310314a2a12ea9cb5f72019c976.zip
qemu-f1e59f012de35310314a2a12ea9cb5f72019c976.tar.gz
qemu-f1e59f012de35310314a2a12ea9cb5f72019c976.tar.bz2
accel/tcg: Remove profiler leftover
TCG profiler was removed in commit 1b65b4f54c7. Fixes: 1b65b4f54c7 ("accel/tcg: remove CONFIG_PROFILER") Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Xiaoyao Li <xiaoyao.li@intel.com> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Message-Id: <20250703173248.44995-9-philmd@linaro.org>
-rw-r--r--accel/tcg/monitor.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/accel/tcg/monitor.c b/accel/tcg/monitor.c
index 7c68622..344ec50 100644
--- a/accel/tcg/monitor.c
+++ b/accel/tcg/monitor.c
@@ -141,11 +141,6 @@ static void tlb_flush_counts(size_t *pfull, size_t *ppart, size_t *pelide)
*pelide = elide;
}
-static void tcg_dump_info(GString *buf)
-{
- g_string_append_printf(buf, "[TCG profiler not compiled]\n");
-}
-
static void dump_exec_info(GString *buf)
{
struct tb_tree_stats tst = {};
@@ -196,7 +191,6 @@ static void dump_exec_info(GString *buf)
g_string_append_printf(buf, "TLB full flushes %zu\n", flush_full);
g_string_append_printf(buf, "TLB partial flushes %zu\n", flush_part);
g_string_append_printf(buf, "TLB elided flushes %zu\n", flush_elide);
- tcg_dump_info(buf);
}
HumanReadableText *qmp_x_query_jit(Error **errp)