]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
perf symbols: Retain symbol source file name to lookup source line numbers
authorAdrian Hunter <adrian.hunter@intel.com>
Tue, 3 Dec 2013 07:23:08 +0000 (09:23 +0200)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 4 Dec 2013 16:46:36 +0000 (13:46 -0300)
Currently, lookup of an ip's source file name and line number is done
using the dso file name.

Instead retain the file name used to lookup the dso's symbols and use
that.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1386055390-13757-6-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/dso.c
tools/perf/util/dso.h
tools/perf/util/srcline.c
tools/perf/util/symbol.c

index 68aa55aa5c171d70187459c9485053a1821e527f..49da9684f63595bcfc892f80c59df08c29ea3d36 100644 (file)
@@ -470,6 +470,7 @@ void dso__delete(struct dso *dso)
                free(dso->long_name);
        dso_cache__free(&dso->cache);
        dso__free_a2l(dso);
+       free(dso->symsrc_filename);
        free(dso);
 }
 
index d8613dc3ca8f1a70a10fa361f2d1a14e7a42fd08..7142e526126605964fbd4359cf7e9fcbf21b6512 100644 (file)
@@ -78,6 +78,7 @@ struct dso {
        struct rb_root   symbol_names[MAP__NR_TYPES];
        struct rb_root   cache;
        void             *a2l;
+       char             *symsrc_filename;
        enum dso_kernel_type    kernel;
        enum dso_swap_type      needs_swap;
        enum dso_binary_type    symtab_type;
index 25b85b28301b4a1b3fd9405187948cf3cd70087a..93795f9c24806069eea5b0c9ec11d2273475b65b 100644 (file)
@@ -249,11 +249,16 @@ char *get_srcline(struct dso *dso, unsigned long addr)
        char *file = NULL;
        unsigned line = 0;
        char *srcline;
-       char *dso_name = dso->long_name;
+       char *dso_name;
 
        if (!dso->has_srcline)
                return SRCLINE_UNKNOWN;
 
+       if (dso->symsrc_filename)
+               dso_name = dso->symsrc_filename;
+       else
+               dso_name = dso->long_name;
+
        if (dso_name[0] == '[')
                goto out;
 
index 360eefecb81df4de3d458085ba6cbc05dce0f0d4..de87dbac50a0d42513209e6aaa5c56fa2a2471fa 100644 (file)
@@ -1336,6 +1336,8 @@ int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter)
                if (!syms_ss && symsrc__has_symtab(ss)) {
                        syms_ss = ss;
                        next_slot = true;
+                       if (!dso->symsrc_filename)
+                               dso->symsrc_filename = strdup(name);
                }
 
                if (!runtime_ss && symsrc__possibly_runtime(ss)) {