diff options
author | Jiri Olsa <jolsa@redhat.com> | 2012-10-10 08:53:17 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-10-24 04:41:27 -0400 |
commit | 1d33d6dce11e2c900daeca8110d56b95f1174188 (patch) | |
tree | 39effb8dbf8d935d4d83df660733aa578a35f02b | |
parent | 3fded963cdae12ff891a55efc866437506c3f912 (diff) |
perf tools: Add support to specify hw event as PMU event term
Add a way to specify hw event as PMU event term like:
'cpu/event=cpu-cycles/u'
'cpu/event=instructions,.../u'
'cpu/cycles,.../u'
The 'event=cpu-cycles' term is replaced/translated by the hw events
term translation, which is exposed by sysfs 'events' group attribute.
Add parser bits, the rest is already handled by the PMU alias code.
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Stephane Eranian <eranian@google.com>
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1349873598-12583-8-git-send-email-jolsa@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | tools/perf/util/parse-events.c | 18 | ||||
-rw-r--r-- | tools/perf/util/parse-events.h | 2 | ||||
-rw-r--r-- | tools/perf/util/parse-events.y | 18 |
3 files changed, 38 insertions, 0 deletions
diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c index 75c7b0fca6d9..2fe15874e46e 100644 --- a/tools/perf/util/parse-events.c +++ b/tools/perf/util/parse-events.c | |||
@@ -1142,6 +1142,24 @@ int parse_events__term_str(struct parse_events__term **term, | |||
1142 | config, str, 0); | 1142 | config, str, 0); |
1143 | } | 1143 | } |
1144 | 1144 | ||
1145 | int parse_events__term_sym_hw(struct parse_events__term **term, | ||
1146 | char *config, unsigned idx) | ||
1147 | { | ||
1148 | struct event_symbol *sym; | ||
1149 | |||
1150 | BUG_ON(idx >= PERF_COUNT_HW_MAX); | ||
1151 | sym = &event_symbols_hw[idx]; | ||
1152 | |||
1153 | if (config) | ||
1154 | return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, | ||
1155 | PARSE_EVENTS__TERM_TYPE_USER, config, | ||
1156 | (char *) sym->symbol, 0); | ||
1157 | else | ||
1158 | return new_term(term, PARSE_EVENTS__TERM_TYPE_STR, | ||
1159 | PARSE_EVENTS__TERM_TYPE_USER, | ||
1160 | (char *) "event", (char *) sym->symbol, 0); | ||
1161 | } | ||
1162 | |||
1145 | int parse_events__term_clone(struct parse_events__term **new, | 1163 | int parse_events__term_clone(struct parse_events__term **new, |
1146 | struct parse_events__term *term) | 1164 | struct parse_events__term *term) |
1147 | { | 1165 | { |
diff --git a/tools/perf/util/parse-events.h b/tools/perf/util/parse-events.h index 839230ceb18b..ac9a6aacf2f5 100644 --- a/tools/perf/util/parse-events.h +++ b/tools/perf/util/parse-events.h | |||
@@ -76,6 +76,8 @@ int parse_events__term_num(struct parse_events__term **_term, | |||
76 | int type_term, char *config, u64 num); | 76 | int type_term, char *config, u64 num); |
77 | int parse_events__term_str(struct parse_events__term **_term, | 77 | int parse_events__term_str(struct parse_events__term **_term, |
78 | int type_term, char *config, char *str); | 78 | int type_term, char *config, char *str); |
79 | int parse_events__term_sym_hw(struct parse_events__term **term, | ||
80 | char *config, unsigned idx); | ||
79 | int parse_events__term_clone(struct parse_events__term **new, | 81 | int parse_events__term_clone(struct parse_events__term **new, |
80 | struct parse_events__term *term); | 82 | struct parse_events__term *term); |
81 | void parse_events__free_terms(struct list_head *terms); | 83 | void parse_events__free_terms(struct list_head *terms); |
diff --git a/tools/perf/util/parse-events.y b/tools/perf/util/parse-events.y index cd88209e3c58..0f9914ae6bac 100644 --- a/tools/perf/util/parse-events.y +++ b/tools/perf/util/parse-events.y | |||
@@ -352,6 +352,15 @@ PE_NAME '=' PE_VALUE | |||
352 | $$ = term; | 352 | $$ = term; |
353 | } | 353 | } |
354 | | | 354 | | |
355 | PE_NAME '=' PE_VALUE_SYM_HW | ||
356 | { | ||
357 | struct parse_events__term *term; | ||
358 | int config = $3 & 255; | ||
359 | |||
360 | ABORT_ON(parse_events__term_sym_hw(&term, $1, config)); | ||
361 | $$ = term; | ||
362 | } | ||
363 | | | ||
355 | PE_NAME | 364 | PE_NAME |
356 | { | 365 | { |
357 | struct parse_events__term *term; | 366 | struct parse_events__term *term; |
@@ -361,6 +370,15 @@ PE_NAME | |||
361 | $$ = term; | 370 | $$ = term; |
362 | } | 371 | } |
363 | | | 372 | | |
373 | PE_VALUE_SYM_HW | ||
374 | { | ||
375 | struct parse_events__term *term; | ||
376 | int config = $1 & 255; | ||
377 | |||
378 | ABORT_ON(parse_events__term_sym_hw(&term, NULL, config)); | ||
379 | $$ = term; | ||
380 | } | ||
381 | | | ||
364 | PE_TERM '=' PE_NAME | 382 | PE_TERM '=' PE_NAME |
365 | { | 383 | { |
366 | struct parse_events__term *term; | 384 | struct parse_events__term *term; |