Skip to content

Commit

Permalink
perf session: Add perf_session__deliver_synth_event()
Browse files Browse the repository at this point in the history
Add a function to deliver synthesized events from within a session.

Intel PT decoding works by synthesizing events (primarily branch events)
that can then be consumed by existing tools.  This function will be used
to deliver those events.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1414417770-18602-3-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Adrian Hunter authored and Arnaldo Carvalho de Melo committed Oct 29, 2014
1 parent cba9b84 commit a293829
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tools/perf/util/session.c
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,19 @@ static s64 perf_session__process_user_event(struct perf_session *session,
}
}

int perf_session__deliver_synth_event(struct perf_session *session,
union perf_event *event,
struct perf_sample *sample,
struct perf_tool *tool)
{
events_stats__inc(&session->stats, event->header.type);

if (event->header.type >= PERF_RECORD_USER_TYPE_START)
return perf_session__process_user_event(session, event, tool, 0);

return perf_session__deliver_event(session, event, sample, tool, 0);
}

static void event_swap(union perf_event *event, bool sample_id_all)
{
perf_event__swap_op swap;
Expand Down
5 changes: 5 additions & 0 deletions tools/perf/util/session.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,11 @@ extern volatile int session_done;

#define session_done() ACCESS_ONCE(session_done)

int perf_session__deliver_synth_event(struct perf_session *session,
union perf_event *event,
struct perf_sample *sample,
struct perf_tool *tool);

int perf_event__process_id_index(struct perf_tool *tool,
union perf_event *event,
struct perf_session *session);
Expand Down

0 comments on commit a293829

Please sign in to comment.