perf intel-pt: Add decoder flags for trace begin / end
authorAdrian Hunter <adrian.hunter@intel.com>
Thu, 20 Sep 2018 13:00:47 +0000 (16:00 +0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 20 Sep 2018 18:19:51 +0000 (15:19 -0300)
Previously, the decoder would indicate begin / end by a branch from / to
zero. That hides useful information, in particular when a trace ends
with a call. To prepare for remedying that, add Intel PT decoder flags
for trace begin / end and map them to the existing sample flags.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: http://lkml.kernel.org/r/20180920130048.31432-6-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/intel-pt-decoder/intel-pt-decoder.h
tools/perf/util/intel-pt.c

index 51c18d67f4ca855d02f19be640490ab7a9e74356..ed088d4726ba6186176cc1213d49ba14736aeefb 100644 (file)
@@ -37,6 +37,8 @@ enum intel_pt_sample_type {
        INTEL_PT_EX_STOP        = 1 << 6,
        INTEL_PT_PWR_EXIT       = 1 << 7,
        INTEL_PT_CBR_CHG        = 1 << 8,
+       INTEL_PT_TRACE_BEGIN    = 1 << 9,
+       INTEL_PT_TRACE_END      = 1 << 10,
 };
 
 enum intel_pt_period_type {
index aec68908d60428314f73bc04c749520c1d96fd06..48c1d415c6b069004dacddafdb759f25efb2b176 100644 (file)
@@ -908,6 +908,11 @@ static void intel_pt_sample_flags(struct intel_pt_queue *ptq)
                ptq->insn_len = ptq->state->insn_len;
                memcpy(ptq->insn, ptq->state->insn, INTEL_PT_INSN_BUF_SZ);
        }
+
+       if (ptq->state->type & INTEL_PT_TRACE_BEGIN)
+               ptq->flags |= PERF_IP_FLAG_TRACE_BEGIN;
+       if (ptq->state->type & INTEL_PT_TRACE_END)
+               ptq->flags |= PERF_IP_FLAG_TRACE_END;
 }
 
 static int intel_pt_setup_queue(struct intel_pt *pt,