aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-07-03 15:22:38 +0200
committerRichard Henderson <richard.henderson@linaro.org>2023-11-06 08:27:21 -0800
commit24a4d59aa7fdc337eef1c2b589478ea998e54373 (patch)
tree58d869c41c85bd1d0d42781b7a286693c6fefe71 /include
parent3e01f1147a16ca566694b97eafc941d62fa1e8d8 (diff)
downloadqemu-24a4d59aa7fdc337eef1c2b589478ea998e54373.zip
qemu-24a4d59aa7fdc337eef1c2b589478ea998e54373.tar.gz
qemu-24a4d59aa7fdc337eef1c2b589478ea998e54373.tar.bz2
accel/tcg: Move HMP info jit and info opcount code
Move all of it into accel/tcg/monitor.c. This puts everything about tcg that is only used by the monitor in the same place. Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/exec/cputlb.h1
-rw-r--r--include/tcg/tcg.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/include/exec/cputlb.h b/include/exec/cputlb.h
index 19b16e5..6da1462 100644
--- a/include/exec/cputlb.h
+++ b/include/exec/cputlb.h
@@ -26,6 +26,5 @@
/* cputlb.c */
void tlb_protect_code(ram_addr_t ram_addr);
void tlb_unprotect_code(ram_addr_t ram_addr);
-void tlb_flush_counts(size_t *full, size_t *part, size_t *elide);
#endif
#endif
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h
index a9282cd..3a4c0f1 100644
--- a/include/tcg/tcg.h
+++ b/include/tcg/tcg.h
@@ -846,9 +846,6 @@ static inline TCGv_ptr tcg_temp_new_ptr(void)
return temp_tcgv_ptr(t);
}
-void tcg_dump_info(GString *buf);
-void tcg_dump_op_count(GString *buf);
-
#define TCG_CT_CONST 1 /* any constant of register size */
typedef struct TCGArgConstraint {