aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/builtin-script.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/builtin-script.c')
-rw-r--r--tools/perf/builtin-script.c33
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
675static struct scripting_ops *scripting_ops; 678static struct scripting_ops *scripting_ops;
676 679
680static 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
686static 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
677static void setup_scripting(void) 692static 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
1708static 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
1693static int process_stat_config_event(struct perf_tool *tool __maybe_unused, 1724static 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,