diff options
author | Jiri Olsa <jolsa@kernel.org> | 2016-01-05 16:09:09 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2016-01-06 18:11:15 -0500 |
commit | e099eba8c8df0f96e7cd6ddc5fc3151fe37be24e (patch) | |
tree | d103a5266729921fddf16c77da7dd670a7f86be0 /tools/perf/builtin-script.c | |
parent | 8058a30ce174060a3c8156dc87b4d4ae39e8281b (diff) |
perf script: Add stat default handlers
Implement struct scripting_ops::(process_stat|process_stat_interval)
handlers - calling scripting handlers from stat events handlers.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Kan Liang <kan.liang@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1452028152-26762-6-git-send-email-jolsa@kernel.org
[ Rename 'time' parameters to 'tstamp', to fix the build in older distros ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-script.c')
-rw-r--r-- | tools/perf/builtin-script.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index a90bc0b81e70..5e1865408aa5 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c | |||
@@ -221,6 +221,9 @@ static int perf_evsel__check_attr(struct perf_evsel *evsel, | |||
221 | struct perf_event_attr *attr = &evsel->attr; | 221 | struct perf_event_attr *attr = &evsel->attr; |
222 | bool allow_user_set; | 222 | bool allow_user_set; |
223 | 223 | ||
224 | if (perf_header__has_feat(&session->header, HEADER_STAT)) | ||
225 | return 0; | ||
226 | |||
224 | allow_user_set = perf_header__has_feat(&session->header, | 227 | allow_user_set = perf_header__has_feat(&session->header, |
225 | HEADER_AUXTRACE); | 228 | HEADER_AUXTRACE); |
226 | 229 | ||
@@ -674,6 +677,18 @@ static void process_event(struct perf_script *script __maybe_unused, union perf_ | |||
674 | 677 | ||
675 | static struct scripting_ops *scripting_ops; | 678 | static struct scripting_ops *scripting_ops; |
676 | 679 | ||
680 | static void process_stat(struct perf_evsel *counter, u64 tstamp) | ||
681 | { | ||
682 | if (scripting_ops && scripting_ops->process_stat) | ||
683 | scripting_ops->process_stat(&stat_config, counter, tstamp); | ||
684 | } | ||
685 | |||
686 | static void process_stat_interval(u64 tstamp) | ||
687 | { | ||
688 | if (scripting_ops && scripting_ops->process_stat_interval) | ||
689 | scripting_ops->process_stat_interval(tstamp); | ||
690 | } | ||
691 | |||
677 | static void setup_scripting(void) | 692 | static void setup_scripting(void) |
678 | { | 693 | { |
679 | setup_perl_scripting(); | 694 | setup_perl_scripting(); |
@@ -1690,6 +1705,22 @@ static void script__setup_sample_type(struct perf_script *script) | |||
1690 | } | 1705 | } |
1691 | } | 1706 | } |
1692 | 1707 | ||
1708 | static int process_stat_round_event(struct perf_tool *tool __maybe_unused, | ||
1709 | union perf_event *event, | ||
1710 | struct perf_session *session) | ||
1711 | { | ||
1712 | struct stat_round_event *round = &event->stat_round; | ||
1713 | struct perf_evsel *counter; | ||
1714 | |||
1715 | evlist__for_each(session->evlist, counter) { | ||
1716 | perf_stat_process_counter(&stat_config, counter); | ||
1717 | process_stat(counter, round->time); | ||
1718 | } | ||
1719 | |||
1720 | process_stat_interval(round->time); | ||
1721 | return 0; | ||
1722 | } | ||
1723 | |||
1693 | static int process_stat_config_event(struct perf_tool *tool __maybe_unused, | 1724 | static int process_stat_config_event(struct perf_tool *tool __maybe_unused, |
1694 | union perf_event *event, | 1725 | union perf_event *event, |
1695 | struct perf_session *session __maybe_unused) | 1726 | struct perf_session *session __maybe_unused) |
@@ -1783,6 +1814,8 @@ int cmd_script(int argc, const char **argv, const char *prefix __maybe_unused) | |||
1783 | .auxtrace_info = perf_event__process_auxtrace_info, | 1814 | .auxtrace_info = perf_event__process_auxtrace_info, |
1784 | .auxtrace = perf_event__process_auxtrace, | 1815 | .auxtrace = perf_event__process_auxtrace, |
1785 | .auxtrace_error = perf_event__process_auxtrace_error, | 1816 | .auxtrace_error = perf_event__process_auxtrace_error, |
1817 | .stat = perf_event__process_stat_event, | ||
1818 | .stat_round = process_stat_round_event, | ||
1786 | .stat_config = process_stat_config_event, | 1819 | .stat_config = process_stat_config_event, |
1787 | .thread_map = process_thread_map_event, | 1820 | .thread_map = process_thread_map_event, |
1788 | .cpu_map = process_cpu_map_event, | 1821 | .cpu_map = process_cpu_map_event, |