Skip to content

Commit

Permalink
perf symbols: Factor want_symtab out of dso__load_sym()
Browse files Browse the repository at this point in the history
Only one callsite of dso__load_sym() uses the want_symtab functionality,
so place the logic at the callsite instead of within dso__load_sym().

This sets us up for removal of want_symtab completely once we keep
multiple elf handles (within symsrc's) around.

Setup for the later patch

"perf symbols: Use both runtime and debug images"

Signed-off-by: Cody 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-15-git-send-email-cody@linux.vnet.ibm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Cody P Schafer authored and Arnaldo Carvalho de Melo committed Aug 13, 2012
1 parent a44f605 commit d26cd12
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 17 deletions.
21 changes: 10 additions & 11 deletions tools/perf/util/symbol-elf.c
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,10 @@ static int dso__swap_init(struct dso *dso, unsigned char eidata)
return 0;
}

bool symsrc__has_symtab(struct symsrc *ss)
{
return ss->symtab != NULL;
}

void symsrc__destroy(struct symsrc *ss)
{
Expand Down Expand Up @@ -616,7 +620,7 @@ int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
}

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)
{
struct kmap *kmap = dso->kernel ? map__kmap(map) : NULL;
struct map *curr_map = map;
Expand All @@ -636,21 +640,16 @@ int dso__load_sym(struct dso *dso, struct map *map, struct symsrc *ss,

dso->symtab_type = ss->type;

if (!ss->symtab) {
ss->symtab = ss->dynsym;
ss->symshdr = ss->dynshdr;
}

elf = ss->elf;
ehdr = ss->ehdr;
sec = ss->symtab;
shdr = ss->symshdr;

if (sec == NULL) {
if (want_symtab)
goto out_elf_end;

sec = ss->dynsym;
shdr = ss->dynshdr;
if (sec == NULL)
goto out_elf_end;
}

opdsec = ss->opdsec;
opdshdr = ss->opdshdr;
opdidx = ss->opdidx;
Expand Down
8 changes: 6 additions & 2 deletions tools/perf/util/symbol-minimal.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,11 @@ int symsrc__init(struct symsrc *ss, struct dso *dso __used, const char *name,
return -1;
}

bool symsrc__has_symtab(struct symsrc *ss __used)
{
return false;
}

void symsrc__destroy(struct symsrc *ss)
{
free(ss->name);
Expand All @@ -275,8 +280,7 @@ int dso__synthesize_plt_symbols(struct dso *dso __used,
}

int dso__load_sym(struct dso *dso, struct map *map __used, struct symsrc *ss,
symbol_filter_t filter __used, int kmodule __used,
int want_symtab __used)
symbol_filter_t filter __used, int kmodule __used)
{
unsigned char *build_id[BUILD_ID_SIZE];

Expand Down
10 changes: 7 additions & 3 deletions tools/perf/util/symbol.c
Original file line number Diff line number Diff line change
Expand Up @@ -1089,8 +1089,12 @@ int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter)
if (symsrc__init(&ss, dso, name, symtab_type) < 0)
continue;

ret = dso__load_sym(dso, map, &ss, filter, 0,
want_symtab);
if (want_symtab && !symsrc__has_symtab(&ss)) {
symsrc__destroy(&ss);
continue;
}

ret = dso__load_sym(dso, map, &ss, filter, 0);

/*
* Some people seem to have debuginfo files _WITHOUT_ debug
Expand Down Expand Up @@ -1376,7 +1380,7 @@ int dso__load_vmlinux(struct dso *dso, struct map *map,
if (symsrc__init(&ss, dso, symfs_vmlinux, symtab_type))
return -1;

err = dso__load_sym(dso, map, &ss, filter, 0, 0);
err = dso__load_sym(dso, map, &ss, filter, 0);
symsrc__destroy(&ss);

if (err > 0) {
Expand Down
3 changes: 2 additions & 1 deletion tools/perf/util/symbol.h
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ struct symsrc {
void symsrc__destroy(struct symsrc *ss);
int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
enum dso_binary_type type);
bool symsrc__has_symtab(struct symsrc *ss);

#define DSO__SWAP(dso, type, val) \
({ \
Expand Down Expand Up @@ -369,7 +370,7 @@ ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
u8 *data, ssize_t size);
int dso__test_data(void);
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 dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss,
struct map *map, symbol_filter_t filter);

Expand Down

0 comments on commit d26cd12

Please sign in to comment.