mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 00/25] perf intel-pt: Add support for Event Trace and TNT disable
@ 2022-01-24  8:41 Adrian Hunter
  2022-01-24  8:41 ` [PATCH 01/25] perf intel-pt: pkt-decoder-test: Fix scope of test_data Adrian Hunter
                   ` (25 more replies)
  0 siblings, 26 replies; 30+ messages in thread
From: Adrian Hunter @ 2022-01-24  8:41 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Jiri Olsa, Alexander Shishkin, Andi Kleen, linux-kernel

Hi

Brief documentation is in the last patch with more technical details in
Intel SDM (https://www.intel.com/sdm) version 076.

The patches touch mostly Intel PT and auxtrace code, with a few supporting
changes to perf script.

I am not aware of any hardware that has the new capabilities yet.

Patches can also be found here:

	https://github.com/ahunter6/linux/tree/event-trace


Adrian Hunter (25):
      perf intel-pt: pkt-decoder-test: Fix scope of test_data
      perf intel-pt: pkt-decoder: Remove misplaced linebreak
      perf intel-pt: pkt-decoder: Add CFE and EVD packets
      perf intel-pt: pkt-decoder: Add MODE.Exec IFLAG bit
      perf intel-pt: decoder: Add config bit definitions
      perf intel-pt: decoder: Factor out clearing of FUP event variables
      perf intel-pt: decoder: Add CFE and EVD processing
      perf intel-pt: decoder: Add MODE.Exec IFLAG processing
      perf tools: Define Intel PT CFE / EVD event
      perf tools: Define Intel PT iflag synthesized event
      perf tools: Define new D and t flags
      perf auxtrace: Add itrace option "I"
      perf intel-pt: Record Event Trace capability flag
      perf intel-pt: Synthesize CFE / EVD event
      perf intel-pt: Synthesize iflag event
      perf intel-pt: Synthesize new D and t flags
      perf intel-pt: Force 'quick' mode when TNT is disabled
      perf script: Display Intel PT CFE / EVD synthesized event
      perf script: Display Intel PT iflag synthesized event
      perf script: Display new D and t flags
      perf scripts python: intel-pt-events.py: Add Event Trace
      perf scripting python: Add all sample flags to DB export
      perf scripts python: export-to-sqlite.py: Export all sample flags
      perf scripts python: export-to-postgresql.py: Export all sample flags
      perf intel-pt: Add documentation for Event Trace and TNT disable

 tools/perf/Documentation/itrace.txt                |   2 +
 tools/perf/Documentation/perf-intel-pt.txt         | 104 ++++++++-
 tools/perf/Documentation/perf-script.txt           |  13 +-
 .../arch/x86/tests/intel-pt-pkt-decoder-test.c     |  17 +-
 tools/perf/arch/x86/util/intel-pt.c                |   7 +
 tools/perf/builtin-script.c                        |  78 ++++++-
 tools/perf/scripts/python/export-to-postgresql.py  |  17 +-
 tools/perf/scripts/python/export-to-sqlite.py      |  19 +-
 tools/perf/scripts/python/intel-pt-events.py       |  55 ++++-
 tools/perf/util/auxtrace.c                         |   4 +
 tools/perf/util/auxtrace.h                         |   4 +
 tools/perf/util/event.h                            |  45 +++-
 .../perf/util/intel-pt-decoder/intel-pt-decoder.c  | 245 +++++++++++++++++++--
 .../perf/util/intel-pt-decoder/intel-pt-decoder.h  |  21 ++
 .../util/intel-pt-decoder/intel-pt-pkt-decoder.c   |  47 +++-
 .../util/intel-pt-decoder/intel-pt-pkt-decoder.h   |   3 +
 tools/perf/util/intel-pt.c                         | 164 +++++++++++++-
 .../util/scripting-engines/trace-event-python.c    |   3 +-
 18 files changed, 779 insertions(+), 69 deletions(-)


Regards
Adrian

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

end of thread, other threads:[~2022-02-16  9:46 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-24  8:41 [PATCH 00/25] perf intel-pt: Add support for Event Trace and TNT disable Adrian Hunter
2022-01-24  8:41 ` [PATCH 01/25] perf intel-pt: pkt-decoder-test: Fix scope of test_data Adrian Hunter
2022-01-24  8:41 ` [PATCH 02/25] perf intel-pt: pkt-decoder: Remove misplaced linebreak Adrian Hunter
2022-01-24  8:41 ` [PATCH 03/25] perf intel-pt: pkt-decoder: Add CFE and EVD packets Adrian Hunter
2022-01-24  8:41 ` [PATCH 04/25] perf intel-pt: pkt-decoder: Add MODE.Exec IFLAG bit Adrian Hunter
2022-01-24  8:41 ` [PATCH 05/25] perf intel-pt: decoder: Add config bit definitions Adrian Hunter
2022-01-24  8:41 ` [PATCH 06/25] perf intel-pt: decoder: Factor out clearing of FUP event variables Adrian Hunter
2022-01-24  8:41 ` [PATCH 07/25] perf intel-pt: decoder: Add CFE and EVD processing Adrian Hunter
2022-01-24  8:41 ` [PATCH 08/25] perf intel-pt: decoder: Add MODE.Exec IFLAG processing Adrian Hunter
2022-01-24  8:41 ` [PATCH 09/25] perf tools: Define Intel PT CFE / EVD event Adrian Hunter
2022-01-24  8:41 ` [PATCH 10/25] perf tools: Define Intel PT iflag synthesized event Adrian Hunter
2022-01-24  8:41 ` [PATCH 11/25] perf tools: Define new D and t flags Adrian Hunter
2022-01-24  8:41 ` [PATCH 12/25] perf auxtrace: Add itrace option "I" Adrian Hunter
2022-01-24  8:41 ` [PATCH 13/25] perf intel-pt: Record Event Trace capability flag Adrian Hunter
2022-01-24  8:41 ` [PATCH 14/25] perf intel-pt: Synthesize CFE / EVD event Adrian Hunter
2022-01-24  8:41 ` [PATCH 15/25] perf intel-pt: Synthesize iflag event Adrian Hunter
2022-01-24  8:41 ` [PATCH 16/25] perf intel-pt: Synthesize new D and t flags Adrian Hunter
2022-01-24  8:41 ` [PATCH 17/25] perf intel-pt: Force 'quick' mode when TNT is disabled Adrian Hunter
2022-01-24  8:41 ` [PATCH 18/25] perf script: Display Intel PT CFE / EVD synthesized event Adrian Hunter
2022-01-24  8:41 ` [PATCH 19/25] perf script: Display Intel PT iflag " Adrian Hunter
2022-01-24  8:41 ` [PATCH 20/25] perf script: Display new D and t flags Adrian Hunter
2022-01-24  8:41 ` [PATCH 21/25] perf scripts python: intel-pt-events.py: Add Event Trace Adrian Hunter
2022-01-24  8:41 ` [PATCH 22/25] perf scripting python: Add all sample flags to DB export Adrian Hunter
2022-01-24  8:41 ` [PATCH 23/25] perf scripts python: export-to-sqlite.py: Export all sample flags Adrian Hunter
2022-01-24  8:42 ` [PATCH 24/25] perf scripts python: export-to-postgresql.py: " Adrian Hunter
2022-01-24  8:42 ` [PATCH 25/25] perf intel-pt: Add documentation for Event Trace and TNT disable Adrian Hunter
2022-02-15 14:27 ` [PATCH 00/25] perf intel-pt: Add support " Arnaldo Carvalho de Melo
2022-02-15 19:39   ` Arnaldo Carvalho de Melo
2022-02-16  6:12     ` Adrian Hunter
2022-02-16  9:46       ` Arnaldo Carvalho de Melo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome