diff options
author | Jiri Olsa <jolsa@redhat.com> | 2012-06-28 17:18:49 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-06-29 12:28:13 -0400 |
commit | 287e74aa3db097469bdca401f33f00ef20dc710d (patch) | |
tree | ff8e1984ad2a4f024fc65bf4291a9088ac509f75 /tools/perf/util/evsel.c | |
parent | 7582732f57e547929d4c65ad8e38f3446e0538d8 (diff) |
perf evsel: Handle hw breakpoints event names in perf_evsel__name()
Adding hw breakpoint events hook in the perf_evsel__name function, to
display event names properly all over the perf tools.
Updated hw breakpoints events tests.
Signed-off-by: Jiri Olsa <jolsa@redhat.com>
Cc: Jovi Zhang <bookjovi@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1340918329-3012-3-git-send-email-jolsa@redhat.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/evsel.c')
-rw-r--r-- | tools/perf/util/evsel.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c index 3d1f6968f175..e81771364867 100644 --- a/tools/perf/util/evsel.c +++ b/tools/perf/util/evsel.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include "cpumap.h" | 15 | #include "cpumap.h" |
16 | #include "thread_map.h" | 16 | #include "thread_map.h" |
17 | #include "target.h" | 17 | #include "target.h" |
18 | #include "../../../include/linux/hw_breakpoint.h" | ||
18 | 19 | ||
19 | #define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y)) | 20 | #define FD(e, x, y) (*(int *)xyarray__entry(e->fd, x, y)) |
20 | #define GROUP_FD(group_fd, cpu) (*(int *)xyarray__entry(group_fd, cpu, 0)) | 21 | #define GROUP_FD(group_fd, cpu) (*(int *)xyarray__entry(group_fd, cpu, 0)) |
@@ -152,6 +153,31 @@ static int perf_evsel__sw_name(struct perf_evsel *evsel, char *bf, size_t size) | |||
152 | return r + perf_evsel__add_modifiers(evsel, bf + r, size - r); | 153 | return r + perf_evsel__add_modifiers(evsel, bf + r, size - r); |
153 | } | 154 | } |
154 | 155 | ||
156 | static int __perf_evsel__bp_name(char *bf, size_t size, u64 addr, u64 type) | ||
157 | { | ||
158 | int r; | ||
159 | |||
160 | r = scnprintf(bf, size, "mem:0x%" PRIx64 ":", addr); | ||
161 | |||
162 | if (type & HW_BREAKPOINT_R) | ||
163 | r += scnprintf(bf + r, size - r, "r"); | ||
164 | |||
165 | if (type & HW_BREAKPOINT_W) | ||
166 | r += scnprintf(bf + r, size - r, "w"); | ||
167 | |||
168 | if (type & HW_BREAKPOINT_X) | ||
169 | r += scnprintf(bf + r, size - r, "x"); | ||
170 | |||
171 | return r; | ||
172 | } | ||
173 | |||
174 | static int perf_evsel__bp_name(struct perf_evsel *evsel, char *bf, size_t size) | ||
175 | { | ||
176 | struct perf_event_attr *attr = &evsel->attr; | ||
177 | int r = __perf_evsel__bp_name(bf, size, attr->bp_addr, attr->bp_type); | ||
178 | return r + perf_evsel__add_modifiers(evsel, bf + r, size - r); | ||
179 | } | ||
180 | |||
155 | const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX] | 181 | const char *perf_evsel__hw_cache[PERF_COUNT_HW_CACHE_MAX] |
156 | [PERF_EVSEL__MAX_ALIASES] = { | 182 | [PERF_EVSEL__MAX_ALIASES] = { |
157 | { "L1-dcache", "l1-d", "l1d", "L1-data", }, | 183 | { "L1-dcache", "l1-d", "l1d", "L1-data", }, |
@@ -285,6 +311,10 @@ const char *perf_evsel__name(struct perf_evsel *evsel) | |||
285 | scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint"); | 311 | scnprintf(bf, sizeof(bf), "%s", "unknown tracepoint"); |
286 | break; | 312 | break; |
287 | 313 | ||
314 | case PERF_TYPE_BREAKPOINT: | ||
315 | perf_evsel__bp_name(evsel, bf, sizeof(bf)); | ||
316 | break; | ||
317 | |||
288 | default: | 318 | default: |
289 | scnprintf(bf, sizeof(bf), "%s", "unknown attr type"); | 319 | scnprintf(bf, sizeof(bf), "%s", "unknown attr type"); |
290 | break; | 320 | break; |