qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v14 00/10] TCG code quality tracking
@ 2023-05-30  8:35 Fei Wu
  2023-05-30  8:35 ` [PATCH v14 01/10] accel/tcg: remove CONFIG_PROFILER Fei Wu
                   ` (9 more replies)
  0 siblings, 10 replies; 47+ messages in thread
From: Fei Wu @ 2023-05-30  8:35 UTC (permalink / raw)
  To: richard.henderson, alex.bennee, qemu-devel; +Cc: Fei Wu

v14
---
* cleanup TCGProfile in patch 04


Alex Bennée (1):
  tb-stats: reset the tracked TBs on a tb_flush

Fei Wu (3):
  accel/tcg: remove CONFIG_PROFILER
  accel/tcg: add jit stats and time to TBStatistics
  docs: add tb-stats how to

Vanderson M. do Rosario (6):
  accel/tcg: introduce TBStatistics structure
  accel: collecting TB execution count
  debug: add -d tb_stats to control TBStatistics collection:
  monitor: adding tb_stats hmp command
  Adding info [tb-list|tb] commands to HMP (WIP)
  tb-stats: dump hot TBs at the end of the execution

 MAINTAINERS                   |   1 +
 accel/tcg/cpu-exec.c          |   6 +
 accel/tcg/meson.build         |   1 +
 accel/tcg/monitor.c           | 122 +++++-
 accel/tcg/tb-context.h        |   1 +
 accel/tcg/tb-hash.h           |   7 +
 accel/tcg/tb-maint.c          |  20 +
 accel/tcg/tb-stats.c          | 692 ++++++++++++++++++++++++++++++++++
 accel/tcg/tcg-accel-ops.c     |  15 +-
 accel/tcg/tcg-runtime.c       |   1 +
 accel/tcg/translate-all.c     | 143 +++++--
 accel/tcg/translator.c        |  30 ++
 disas/disas.c                 |  26 +-
 docs/devel/tcg-tbstats.rst    | 129 +++++++
 hmp-commands-info.hx          |  16 +
 hmp-commands.hx               |  16 +
 include/exec/exec-all.h       |   3 +
 include/exec/gen-icount.h     |   2 +
 include/exec/tb-stats-dump.h  |  21 ++
 include/exec/tb-stats-flags.h |  34 ++
 include/exec/tb-stats.h       | 164 ++++++++
 include/monitor/hmp.h         |   3 +
 include/qemu/log-for-trace.h  |   6 +-
 include/qemu/log.h            |   3 +
 include/qemu/timer.h          |   5 +-
 include/tcg/tcg.h             |  41 +-
 linux-user/exit.c             |   2 +
 meson.build                   |   2 -
 meson_options.txt             |   2 -
 scripts/meson-buildoptions.sh |   3 -
 softmmu/runstate.c            |  10 +-
 stubs/meson.build             |   1 +
 stubs/tb-stats.c              |  32 ++
 tcg/tcg.c                     | 230 +++--------
 tests/qtest/qmp-cmd-test.c    |   2 +-
 util/log.c                    | 103 ++++-
 36 files changed, 1601 insertions(+), 294 deletions(-)
 create mode 100644 accel/tcg/tb-stats.c
 create mode 100644 docs/devel/tcg-tbstats.rst
 create mode 100644 include/exec/tb-stats-dump.h
 create mode 100644 include/exec/tb-stats-flags.h
 create mode 100644 include/exec/tb-stats.h
 create mode 100644 stubs/tb-stats.c

-- 
2.25.1



^ permalink raw reply	[flat|nested] 47+ messages in thread

end of thread, other threads:[~2023-06-12  1:21 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-30  8:35 [PATCH v14 00/10] TCG code quality tracking Fei Wu
2023-05-30  8:35 ` [PATCH v14 01/10] accel/tcg: remove CONFIG_PROFILER Fei Wu
2023-05-30  8:35 ` [PATCH v14 02/10] accel/tcg: introduce TBStatistics structure Fei Wu
2023-05-31 23:59   ` Richard Henderson
2023-06-01  1:30     ` Wu, Fei
2023-06-01  2:48       ` Richard Henderson
2023-06-01  0:01   ` Richard Henderson
2023-06-01  3:19     ` Wu, Fei
2023-06-01  4:16       ` Richard Henderson
2023-06-01  5:36         ` Wu, Fei
2023-05-30  8:35 ` [PATCH v14 03/10] accel: collecting TB execution count Fei Wu
2023-06-01  0:05   ` Richard Henderson
2023-06-01  5:44     ` Wu, Fei
2023-06-01 14:03       ` Richard Henderson
2023-06-02  1:54         ` Wu, Fei
2023-06-02  4:02           ` Richard Henderson
2023-05-30  8:35 ` [PATCH v14 04/10] accel/tcg: add jit stats and time to TBStatistics Fei Wu
2023-05-30  9:37   ` Markus Armbruster
2023-05-31  0:54     ` Wu, Fei
2023-06-01  1:08   ` Richard Henderson
2023-06-01  6:48     ` Wu, Fei
2023-06-01 14:10       ` Richard Henderson
2023-06-01 15:10       ` Richard Henderson
2023-05-30  8:35 ` [PATCH v14 05/10] debug: add -d tb_stats to control TBStatistics collection: Fei Wu
2023-06-01  1:18   ` Richard Henderson
2023-06-01  6:59     ` Wu, Fei
2023-05-30  8:35 ` [PATCH v14 06/10] monitor: adding tb_stats hmp command Fei Wu
2023-06-01  1:23   ` Richard Henderson
2023-06-01  7:20     ` Wu, Fei
2023-06-01 14:25       ` Richard Henderson
2023-05-30  8:35 ` [PATCH v14 07/10] tb-stats: reset the tracked TBs on a tb_flush Fei Wu
2023-06-01  1:30   ` Richard Henderson
2023-06-01  7:22     ` Wu, Fei
2023-05-30  8:35 ` [PATCH v14 08/10] Adding info [tb-list|tb] commands to HMP (WIP) Fei Wu
2023-06-01  2:40   ` Richard Henderson
2023-06-01 12:12     ` Wu, Fei
2023-06-06  7:30       ` Wu, Fei
2023-06-07 12:49     ` Wu, Fei
2023-06-08  7:38       ` Wu, Fei
2023-06-08  9:23         ` Peter Maydell
2023-06-08 12:06           ` Dr. David Alan Gilbert
2023-06-08 12:22             ` Peter Maydell
2023-06-09 14:32           ` Wu, Fei
2023-06-09 15:51             ` Peter Maydell
2023-06-12  1:20               ` Wu, Fei
2023-05-30  8:35 ` [PATCH v14 09/10] tb-stats: dump hot TBs at the end of the execution Fei Wu
2023-05-30  8:35 ` [PATCH v14 10/10] docs: add tb-stats how to Fei Wu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).