diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2009-10-19 15:17:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-10-20 01:55:51 -0400 |
commit | ed52ce2e3c33dc7626a40fa2da766d1a6460e543 (patch) | |
tree | 037f7791b8f493b1adc27d9f9692922ed886844e /tools/perf/util/event.h | |
parent | bbe2987bea26a684ff11d887dfc4cf39b22c27a2 (diff) |
perf tools: Add ->unmap_ip operation to struct map
We need this because we get section relative addresses when
reading the symtabs, but when a tool like 'perf annotate' needs
to match these address to what 'objdump -dS' produces we need
the address + section back again.
So in annotate now we look at the 'struct hist_entry' instances
(that weren't really being used) so that we iterate only over
the symbols that had some hit and get the map where that
particular hit happened so that we can get the right address to
match with annotate.
Verified that at least:
perf annotate mmap_read_counter # Uses the ~/bin/perf binary
perf annotate --vmlinux /home/acme/git/build/perf/vmlinux intel_pmu_enable_all
on a 'perf record perf top' session seems to work.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Mike Galbraith <efault@gmx.de>
LKML-Reference: <1255979877-12533-1-git-send-email-acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/event.h')
-rw-r--r-- | tools/perf/util/event.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index c2e62be62798..6b5be56a8271 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h | |||
@@ -82,6 +82,7 @@ struct map { | |||
82 | u64 end; | 82 | u64 end; |
83 | u64 pgoff; | 83 | u64 pgoff; |
84 | u64 (*map_ip)(struct map *, u64); | 84 | u64 (*map_ip)(struct map *, u64); |
85 | u64 (*unmap_ip)(struct map *, u64); | ||
85 | struct dso *dso; | 86 | struct dso *dso; |
86 | }; | 87 | }; |
87 | 88 | ||
@@ -90,7 +91,12 @@ static inline u64 map__map_ip(struct map *map, u64 ip) | |||
90 | return ip - map->start + map->pgoff; | 91 | return ip - map->start + map->pgoff; |
91 | } | 92 | } |
92 | 93 | ||
93 | static inline u64 vdso__map_ip(struct map *map __used, u64 ip) | 94 | static inline u64 map__unmap_ip(struct map *map, u64 ip) |
95 | { | ||
96 | return ip + map->start - map->pgoff; | ||
97 | } | ||
98 | |||
99 | static inline u64 identity__map_ip(struct map *map __used, u64 ip) | ||
94 | { | 100 | { |
95 | return ip; | 101 | return ip; |
96 | } | 102 | } |