[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v12 05/15] accel/tcg: move profiler dev_time to tb_stats
|
From: |
Fei Wu |
|
Subject: |
[PATCH v12 05/15] accel/tcg: move profiler dev_time to tb_stats |
|
Date: |
Thu, 18 May 2023 21:57:47 +0800 |
From: Alex Bennée <alex.bennee@linaro.org>
This shouldn't live in the monitor code anyway. While we are at it
make it an uint64_t as we won't be dealing in negative numbers.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Fei Wu <fei2.wu@intel.com>
---
accel/tcg/monitor.c | 2 --
accel/tcg/tb-stats.c | 2 ++
include/qemu/timer.h | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/accel/tcg/monitor.c b/accel/tcg/monitor.c
index 92fce580f1..d4e044f7f5 100644
--- a/accel/tcg/monitor.c
+++ b/accel/tcg/monitor.c
@@ -82,8 +82,6 @@ HumanReadableText *qmp_x_query_opcount(Error **errp)
#ifdef CONFIG_PROFILER
-int64_t dev_time;
-
HumanReadableText *qmp_x_query_profile(Error **errp)
{
g_autoptr(GString) buf = g_string_new("");
diff --git a/accel/tcg/tb-stats.c b/accel/tcg/tb-stats.c
index 74708d1f40..7deb617446 100644
--- a/accel/tcg/tb-stats.c
+++ b/accel/tcg/tb-stats.c
@@ -28,6 +28,8 @@ enum TBStatsStatus {
static enum TBStatsStatus tcg_collect_tb_stats;
static uint32_t default_tbstats_flag;
+uint64_t dev_time;
+
struct jit_profile_info {
uint64_t translations;
uint64_t aborted;
diff --git a/include/qemu/timer.h b/include/qemu/timer.h
index ee071e07d1..d86fc73a17 100644
--- a/include/qemu/timer.h
+++ b/include/qemu/timer.h
@@ -995,7 +995,7 @@ static inline int64_t profile_getclock(void)
return get_clock();
}
-extern int64_t dev_time;
+extern uint64_t dev_time;
#endif
#endif
--
2.25.1
- [PATCH v12 00/15] TCG code quality tracking, Fei Wu, 2023/05/18
- [PATCH v12 01/15] accel/tcg: introduce TBStatistics structure, Fei Wu, 2023/05/18
- [PATCH v12 02/15] accel: collecting TB execution count, Fei Wu, 2023/05/18
- [PATCH v12 03/15] accel: collecting JIT statistics, Fei Wu, 2023/05/18
- [PATCH v12 04/15] accel: replacing part of CONFIG_PROFILER with TBStats, Fei Wu, 2023/05/18
- [PATCH v12 05/15] accel/tcg: move profiler dev_time to tb_stats,
Fei Wu <=
- [PATCH v12 06/15] accel/tcg: convert profiling of restore operations to TBStats, Fei Wu, 2023/05/18
- [PATCH v12 08/15] accel: adding TB_JIT_TIME and full replacing CONFIG_PROFILER, Fei Wu, 2023/05/18
- [PATCH v12 09/15] debug: add -d tb_stats to control TBStatistics collection:, Fei Wu, 2023/05/18
- [PATCH v12 07/15] accel/tcg: convert profiling of code generation to TBStats, Fei Wu, 2023/05/18
- [PATCH v12 11/15] tb-stats: reset the tracked TBs on a tb_flush, Fei Wu, 2023/05/18
- [PATCH v12 10/15] monitor: adding tb_stats hmp command, Fei Wu, 2023/05/18
- [PATCH v12 12/15] Adding info [tb-list|tb] commands to HMP (WIP), Fei Wu, 2023/05/18
- [PATCH v12 13/15] tb-stats: dump hot TBs at the end of the execution, Fei Wu, 2023/05/18