diff options
author | Peter Zijlstra <peterz@infradead.org> | 2009-06-22 10:52:51 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-06-22 11:02:07 -0400 |
commit | 520f2c346af463fa00924b236e092da482b344cc (patch) | |
tree | 7ff2f8277c1c56cd93f32062bb065f0ea44d7d3f /tools/perf/util | |
parent | 74d5b5889ea71a95d8924c08f8a7c6e2bdcbc0ba (diff) |
perf report: Output more symbol related debug data
Print more symbol relocation related info under -vv.
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
LKML-Reference: <new-submission>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util')
-rw-r--r-- | tools/perf/util/symbol.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c index 01b62fa03996..9c659ef6aec2 100644 --- a/tools/perf/util/symbol.c +++ b/tools/perf/util/symbol.c | |||
@@ -535,6 +535,10 @@ static int dso__load_sym(struct dso *self, int fd, const char *name, | |||
535 | gelf_getshdr(sec, &shdr); | 535 | gelf_getshdr(sec, &shdr); |
536 | obj_start = sym.st_value; | 536 | obj_start = sym.st_value; |
537 | 537 | ||
538 | if (verbose >= 2) | ||
539 | printf("adjusting symbol: st_value: %Lx sh_addr: %Lx sh_offset: %Lx\n", | ||
540 | (u64)sym.st_value, (u64)shdr.sh_addr, (u64)shdr.sh_offset); | ||
541 | |||
538 | sym.st_value -= shdr.sh_addr - shdr.sh_offset; | 542 | sym.st_value -= shdr.sh_addr - shdr.sh_offset; |
539 | 543 | ||
540 | f = symbol__new(sym.st_value, sym.st_size, | 544 | f = symbol__new(sym.st_value, sym.st_size, |