Commit a44f605b authored by Cody P Schafer's avatar Cody P Schafer Committed by Arnaldo Carvalho de Melo

perf symbols: Switch dso__synthesize_plt_symbols() to use symsrc

Previously dso__synthesize_plt_symbols() was reopening the elf file to
obtain dynsyms from it. Rather than reopen the file, use the already
opened reference within the symsrc to access it.

Setup for the later patch

"perf symbols: Use both runtime and debug images"
Signed-off-by: default avatarCody P Schafer <cody@linux.vnet.ibm.com>
Cc: David Hansen <dave@linux.vnet.ibm.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Matt Hellsley <matthltc@us.ibm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
Link: http://lkml.kernel.org/r/1344637382-22789-14-git-send-email-cody@linux.vnet.ibm.comSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
parent 005f9294
...@@ -166,7 +166,7 @@ static Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep, ...@@ -166,7 +166,7 @@ static Elf_Scn *elf_section_by_name(Elf *elf, GElf_Ehdr *ep,
* And always look at the original dso, not at debuginfo packages, that * And always look at the original dso, not at debuginfo packages, that
* have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS). * have the PLT data stripped out (shdr_rel_plt.sh_type == SHT_NOBITS).
*/ */
int dso__synthesize_plt_symbols(struct dso *dso, char *name, struct map *map, int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss, struct map *map,
symbol_filter_t filter) symbol_filter_t filter)
{ {
uint32_t nr_rel_entries, idx; uint32_t nr_rel_entries, idx;
...@@ -181,21 +181,15 @@ int dso__synthesize_plt_symbols(struct dso *dso, char *name, struct map *map, ...@@ -181,21 +181,15 @@ int dso__synthesize_plt_symbols(struct dso *dso, char *name, struct map *map,
GElf_Ehdr ehdr; GElf_Ehdr ehdr;
char sympltname[1024]; char sympltname[1024];
Elf *elf; Elf *elf;
int nr = 0, symidx, fd, err = 0; int nr = 0, symidx, err = 0;
fd = open(name, O_RDONLY); elf = ss->elf;
if (fd < 0) ehdr = ss->ehdr;
goto out;
elf = elf_begin(fd, PERF_ELF_C_READ_MMAP, NULL);
if (elf == NULL)
goto out_close;
if (gelf_getehdr(elf, &ehdr) == NULL) scn_dynsym = ss->dynsym;
goto out_elf_end; shdr_dynsym = ss->dynshdr;
dynsym_idx = ss->dynsym_idx;
scn_dynsym = elf_section_by_name(elf, &ehdr, &shdr_dynsym,
".dynsym", &dynsym_idx);
if (scn_dynsym == NULL) if (scn_dynsym == NULL)
goto out_elf_end; goto out_elf_end;
...@@ -291,13 +285,8 @@ int dso__synthesize_plt_symbols(struct dso *dso, char *name, struct map *map, ...@@ -291,13 +285,8 @@ int dso__synthesize_plt_symbols(struct dso *dso, char *name, struct map *map,
err = 0; err = 0;
out_elf_end: out_elf_end:
elf_end(elf);
out_close:
close(fd);
if (err == 0) if (err == 0)
return nr; return nr;
out:
pr_debug("%s: problems reading %s PLT info.\n", pr_debug("%s: problems reading %s PLT info.\n",
__func__, dso->long_name); __func__, dso->long_name);
return 0; return 0;
......
...@@ -266,7 +266,8 @@ void symsrc__destroy(struct symsrc *ss) ...@@ -266,7 +266,8 @@ void symsrc__destroy(struct symsrc *ss)
close(ss->fd); close(ss->fd);
} }
int dso__synthesize_plt_symbols(struct dso *dso __used, char *name __used, int dso__synthesize_plt_symbols(struct dso *dso __used,
struct symsrc *ss __used,
struct map *map __used, struct map *map __used,
symbol_filter_t filter __used) symbol_filter_t filter __used)
{ {
......
...@@ -1091,21 +1091,23 @@ int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter) ...@@ -1091,21 +1091,23 @@ int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter)
ret = dso__load_sym(dso, map, &ss, filter, 0, ret = dso__load_sym(dso, map, &ss, filter, 0,
want_symtab); want_symtab);
symsrc__destroy(&ss);
/* /*
* Some people seem to have debuginfo files _WITHOUT_ debug * Some people seem to have debuginfo files _WITHOUT_ debug
* info!?!? * info!?!?
*/ */
if (!ret) if (!ret) {
symsrc__destroy(&ss);
continue; continue;
}
if (ret > 0) { if (ret > 0) {
int nr_plt; int nr_plt;
nr_plt = dso__synthesize_plt_symbols(dso, name, map, filter); nr_plt = dso__synthesize_plt_symbols(dso, &ss, map, filter);
if (nr_plt > 0) if (nr_plt > 0)
ret += nr_plt; ret += nr_plt;
symsrc__destroy(&ss);
break; break;
} }
} }
......
...@@ -370,8 +370,8 @@ ssize_t dso__data_read_addr(struct dso *dso, struct map *map, ...@@ -370,8 +370,8 @@ ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
int dso__test_data(void); int dso__test_data(void);
int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *ss, int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *ss,
symbol_filter_t filter, int kmodule, int want_symtab); symbol_filter_t filter, int kmodule, int want_symtab);
int dso__synthesize_plt_symbols(struct dso *dso, char *name, struct map *map, int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss,
symbol_filter_t filter); struct map *map, symbol_filter_t filter);
void symbols__insert(struct rb_root *symbols, struct symbol *sym); void symbols__insert(struct rb_root *symbols, struct symbol *sym);
void symbols__fixup_duplicate(struct rb_root *symbols); void symbols__fixup_duplicate(struct rb_root *symbols);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment