Commit 6a4694a4 authored by Arnaldo Carvalho de Melo's avatar Arnaldo Carvalho de Melo Committed by Ingo Molnar

perf symbols: Better support for multiple symbol tables per dso

By using an array of rb_roots in struct dso we can, from a
struct map instance to get the right symbol rb_tree more easily.
This way we can have just one symbol lookup method for struct
map instances, map__find_symbol, instead of one per symtab type
(functions, variables).
Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
Cc: Frédéric Weisbecker <fweisbec@gmail.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <1259346563-12568-6-git-send-email-acme@infradead.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 3610583c
...@@ -170,7 +170,7 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head) ...@@ -170,7 +170,7 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head)
map = thread__find_map(thread, ip); map = thread__find_map(thread, ip);
if (map != NULL) { if (map != NULL) {
ip = map->map_ip(map, ip); ip = map->map_ip(map, ip);
sym = map__find_function(map, ip, symbol_filter); sym = map__find_symbol(map, ip, symbol_filter);
} else { } else {
/* /*
* If this is outside of all known maps, * If this is outside of all known maps,
......
...@@ -455,7 +455,7 @@ resolve_symbol(struct thread *thread, struct map **mapp, u64 *ipp) ...@@ -455,7 +455,7 @@ resolve_symbol(struct thread *thread, struct map **mapp, u64 *ipp)
dump_printf(" ...... map: %Lx -> %Lx\n", *ipp, ip); dump_printf(" ...... map: %Lx -> %Lx\n", *ipp, ip);
*ipp = ip; *ipp = ip;
return map ? map__find_function(map, ip, NULL) : NULL; return map ? map__find_symbol(map, ip, NULL) : NULL;
} }
static int call__match(struct symbol *sym) static int call__match(struct symbol *sym)
......
...@@ -948,7 +948,7 @@ static void event__process_sample(const event_t *self, int counter) ...@@ -948,7 +948,7 @@ static void event__process_sample(const event_t *self, int counter)
map = thread__find_map(thread, ip); map = thread__find_map(thread, ip);
if (map != NULL) { if (map != NULL) {
ip = map->map_ip(map, ip); ip = map->map_ip(map, ip);
sym = map__find_function(map, ip, symbol_filter); sym = map__find_symbol(map, ip, symbol_filter);
if (sym == NULL) if (sym == NULL)
return; return;
userspace_samples++; userspace_samples++;
......
...@@ -81,7 +81,9 @@ typedef union event_union { ...@@ -81,7 +81,9 @@ typedef union event_union {
} event_t; } event_t;
enum map_type { enum map_type {
MAP__FUNCTION, MAP__FUNCTION = 0,
MAP__NR_TYPES,
}; };
struct map { struct map {
...@@ -125,10 +127,10 @@ void map__delete(struct map *self); ...@@ -125,10 +127,10 @@ void map__delete(struct map *self);
struct map *map__clone(struct map *self); struct map *map__clone(struct map *self);
int map__overlap(struct map *l, struct map *r); int map__overlap(struct map *l, struct map *r);
size_t map__fprintf(struct map *self, FILE *fp); size_t map__fprintf(struct map *self, FILE *fp);
struct symbol *map__find_function(struct map *self, u64 ip, struct symbol *map__find_symbol(struct map *self, u64 addr,
symbol_filter_t filter); symbol_filter_t filter);
void map__fixup_start(struct map *self, struct rb_root *symbols); void map__fixup_start(struct map *self);
void map__fixup_end(struct map *self, struct rb_root *symbols); void map__fixup_end(struct map *self);
int event__synthesize_thread(pid_t pid, int (*process)(event_t *event)); int event__synthesize_thread(pid_t pid, int (*process)(event_t *event));
void event__synthesize_threads(int (*process)(event_t *event)); void event__synthesize_threads(int (*process)(event_t *event));
......
...@@ -82,8 +82,9 @@ void map__delete(struct map *self) ...@@ -82,8 +82,9 @@ void map__delete(struct map *self)
free(self); free(self);
} }
void map__fixup_start(struct map *self, struct rb_root *symbols) void map__fixup_start(struct map *self)
{ {
struct rb_root *symbols = &self->dso->symbols[self->type];
struct rb_node *nd = rb_first(symbols); struct rb_node *nd = rb_first(symbols);
if (nd != NULL) { if (nd != NULL) {
struct symbol *sym = rb_entry(nd, struct symbol, rb_node); struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
...@@ -91,8 +92,9 @@ void map__fixup_start(struct map *self, struct rb_root *symbols) ...@@ -91,8 +92,9 @@ void map__fixup_start(struct map *self, struct rb_root *symbols)
} }
} }
void map__fixup_end(struct map *self, struct rb_root *symbols) void map__fixup_end(struct map *self)
{ {
struct rb_root *symbols = &self->dso->symbols[self->type];
struct rb_node *nd = rb_last(symbols); struct rb_node *nd = rb_last(symbols);
if (nd != NULL) { if (nd != NULL) {
struct symbol *sym = rb_entry(nd, struct symbol, rb_node); struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
...@@ -102,7 +104,7 @@ void map__fixup_end(struct map *self, struct rb_root *symbols) ...@@ -102,7 +104,7 @@ void map__fixup_end(struct map *self, struct rb_root *symbols)
#define DSO__DELETED "(deleted)" #define DSO__DELETED "(deleted)"
struct symbol *map__find_function(struct map *self, u64 ip, struct symbol *map__find_symbol(struct map *self, u64 addr,
symbol_filter_t filter) symbol_filter_t filter)
{ {
if (!dso__loaded(self->dso, self->type)) { if (!dso__loaded(self->dso, self->type)) {
...@@ -138,7 +140,7 @@ struct symbol *map__find_function(struct map *self, u64 ip, ...@@ -138,7 +140,7 @@ struct symbol *map__find_function(struct map *self, u64 ip,
} }
} }
return self->dso->find_function(self->dso, ip); return self->dso->find_symbol(self->dso, self->type, addr);
} }
struct map *map__clone(struct map *self) struct map *map__clone(struct map *self)
......
...@@ -31,6 +31,7 @@ enum dso_origin { ...@@ -31,6 +31,7 @@ enum dso_origin {
static void dsos__add(struct list_head *head, struct dso *dso); static void dsos__add(struct list_head *head, struct dso *dso);
static struct map *map__new2(u64 start, struct dso *dso, enum map_type type); static struct map *map__new2(u64 start, struct dso *dso, enum map_type type);
static void kernel_maps__insert(struct map *map); static void kernel_maps__insert(struct map *map);
struct symbol *dso__find_symbol(struct dso *self, enum map_type type, u64 addr);
static int dso__load_kernel_sym(struct dso *self, struct map *map, static int dso__load_kernel_sym(struct dso *self, struct map *map,
symbol_filter_t filter); symbol_filter_t filter);
unsigned int symbol__priv_size; unsigned int symbol__priv_size;
...@@ -151,11 +152,13 @@ struct dso *dso__new(const char *name) ...@@ -151,11 +152,13 @@ struct dso *dso__new(const char *name)
struct dso *self = malloc(sizeof(*self) + strlen(name) + 1); struct dso *self = malloc(sizeof(*self) + strlen(name) + 1);
if (self != NULL) { if (self != NULL) {
int i;
strcpy(self->name, name); strcpy(self->name, name);
dso__set_long_name(self, self->name); dso__set_long_name(self, self->name);
self->short_name = self->name; self->short_name = self->name;
self->functions = RB_ROOT; for (i = 0; i < MAP__NR_TYPES; ++i)
self->find_function = dso__find_function; self->symbols[i] = RB_ROOT;
self->find_symbol = dso__find_symbol;
self->slen_calculated = 0; self->slen_calculated = 0;
self->origin = DSO__ORIG_NOT_FOUND; self->origin = DSO__ORIG_NOT_FOUND;
self->loaded = 0; self->loaded = 0;
...@@ -180,7 +183,9 @@ static void symbols__delete(struct rb_root *self) ...@@ -180,7 +183,9 @@ static void symbols__delete(struct rb_root *self)
void dso__delete(struct dso *self) void dso__delete(struct dso *self)
{ {
symbols__delete(&self->functions); int i;
for (i = 0; i < MAP__NR_TYPES; ++i)
symbols__delete(&self->symbols[i]);
if (self->long_name != self->name) if (self->long_name != self->name)
free(self->long_name); free(self->long_name);
free(self); free(self);
...@@ -234,9 +239,9 @@ static struct symbol *symbols__find(struct rb_root *self, u64 ip) ...@@ -234,9 +239,9 @@ static struct symbol *symbols__find(struct rb_root *self, u64 ip)
return NULL; return NULL;
} }
struct symbol *dso__find_function(struct dso *self, u64 ip) struct symbol *dso__find_symbol(struct dso *self, enum map_type type, u64 addr)
{ {
return symbols__find(&self->functions, ip); return symbols__find(&self->symbols[type], addr);
} }
int build_id__sprintf(u8 *self, int len, char *bf) int build_id__sprintf(u8 *self, int len, char *bf)
...@@ -262,18 +267,26 @@ size_t dso__fprintf_buildid(struct dso *self, FILE *fp) ...@@ -262,18 +267,26 @@ size_t dso__fprintf_buildid(struct dso *self, FILE *fp)
return fprintf(fp, "%s", sbuild_id); return fprintf(fp, "%s", sbuild_id);
} }
static const char * map_type__name[MAP__NR_TYPES] = {
[MAP__FUNCTION] = "Functions",
};
size_t dso__fprintf(struct dso *self, FILE *fp) size_t dso__fprintf(struct dso *self, FILE *fp)
{ {
int i;
struct rb_node *nd; struct rb_node *nd;
size_t ret = fprintf(fp, "dso: %s (", self->short_name); size_t ret = fprintf(fp, "dso: %s (", self->short_name);
ret += dso__fprintf_buildid(self, fp); ret += dso__fprintf_buildid(self, fp);
ret += fprintf(fp, ")\nFunctions:\n"); ret += fprintf(fp, ")\n");
for (i = 0; i < MAP__NR_TYPES; ++i) {
ret += fprintf(fp, "%s:\n", map_type__name[i]);
for (nd = rb_first(&self->functions); nd; nd = rb_next(nd)) { for (nd = rb_first(&self->symbols[i]); nd; nd = rb_next(nd)) {
struct symbol *pos = rb_entry(nd, struct symbol, rb_node); struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
ret += symbol__fprintf(pos, fp); ret += symbol__fprintf(pos, fp);
} }
}
return ret; return ret;
} }
...@@ -335,7 +348,7 @@ static int kernel_maps__load_all_kallsyms(void) ...@@ -335,7 +348,7 @@ static int kernel_maps__load_all_kallsyms(void)
* kernel_maps__split_kallsyms, when we have split the * kernel_maps__split_kallsyms, when we have split the
* maps per module * maps per module
*/ */
symbols__insert(&kernel_map__functions->dso->functions, sym); symbols__insert(&kernel_map__functions->dso->symbols[MAP__FUNCTION], sym);
} }
free(line); free(line);
...@@ -359,7 +372,7 @@ static int kernel_maps__split_kallsyms(symbol_filter_t filter) ...@@ -359,7 +372,7 @@ static int kernel_maps__split_kallsyms(symbol_filter_t filter)
struct map *map = kernel_map__functions; struct map *map = kernel_map__functions;
struct symbol *pos; struct symbol *pos;
int count = 0; int count = 0;
struct rb_node *next = rb_first(&kernel_map__functions->dso->functions); struct rb_node *next = rb_first(&kernel_map__functions->dso->symbols[map->type]);
int kernel_range = 0; int kernel_range = 0;
while (next) { while (next) {
...@@ -409,13 +422,13 @@ static int kernel_maps__split_kallsyms(symbol_filter_t filter) ...@@ -409,13 +422,13 @@ static int kernel_maps__split_kallsyms(symbol_filter_t filter)
} }
if (filter && filter(map, pos)) { if (filter && filter(map, pos)) {
rb_erase(&pos->rb_node, &kernel_map__functions->dso->functions); rb_erase(&pos->rb_node, &kernel_map__functions->dso->symbols[map->type]);
symbol__delete(pos); symbol__delete(pos);
} else { } else {
if (map != kernel_map__functions) { if (map != kernel_map__functions) {
rb_erase(&pos->rb_node, rb_erase(&pos->rb_node,
&kernel_map__functions->dso->functions); &kernel_map__functions->dso->symbols[map->type]);
symbols__insert(&map->dso->functions, pos); symbols__insert(&map->dso->symbols[map->type], pos);
} }
count++; count++;
} }
...@@ -430,7 +443,7 @@ static int kernel_maps__load_kallsyms(symbol_filter_t filter) ...@@ -430,7 +443,7 @@ static int kernel_maps__load_kallsyms(symbol_filter_t filter)
if (kernel_maps__load_all_kallsyms()) if (kernel_maps__load_all_kallsyms())
return -1; return -1;
symbols__fixup_end(&kernel_map__functions->dso->functions); symbols__fixup_end(&kernel_map__functions->dso->symbols[MAP__FUNCTION]);
kernel_map__functions->dso->origin = DSO__ORIG_KERNEL; kernel_map__functions->dso->origin = DSO__ORIG_KERNEL;
return kernel_maps__split_kallsyms(filter); return kernel_maps__split_kallsyms(filter);
...@@ -501,7 +514,7 @@ static int dso__load_perf_map(struct dso *self, struct map *map, ...@@ -501,7 +514,7 @@ static int dso__load_perf_map(struct dso *self, struct map *map,
if (filter && filter(map, sym)) if (filter && filter(map, sym))
symbol__delete(sym); symbol__delete(sym);
else { else {
symbols__insert(&self->functions, sym); symbols__insert(&self->symbols[map->type], sym);
nr_syms++; nr_syms++;
} }
} }
...@@ -699,7 +712,7 @@ static int dso__synthesize_plt_symbols(struct dso *self, struct map *map, ...@@ -699,7 +712,7 @@ static int dso__synthesize_plt_symbols(struct dso *self, struct map *map,
if (filter && filter(map, f)) if (filter && filter(map, f))
symbol__delete(f); symbol__delete(f);
else { else {
symbols__insert(&self->functions, f); symbols__insert(&self->symbols[map->type], f);
++nr; ++nr;
} }
} }
...@@ -721,7 +734,7 @@ static int dso__synthesize_plt_symbols(struct dso *self, struct map *map, ...@@ -721,7 +734,7 @@ static int dso__synthesize_plt_symbols(struct dso *self, struct map *map,
if (filter && filter(map, f)) if (filter && filter(map, f))
symbol__delete(f); symbol__delete(f);
else { else {
symbols__insert(&self->functions, f); symbols__insert(&self->symbols[map->type], f);
++nr; ++nr;
} }
} }
...@@ -896,7 +909,7 @@ static int dso__load_sym(struct dso *self, struct map *map, const char *name, ...@@ -896,7 +909,7 @@ static int dso__load_sym(struct dso *self, struct map *map, const char *name,
if (filter && filter(curr_map, f)) if (filter && filter(curr_map, f))
symbol__delete(f); symbol__delete(f);
else { else {
symbols__insert(&curr_dso->functions, f); symbols__insert(&curr_dso->symbols[curr_map->type], f);
nr++; nr++;
} }
} }
...@@ -905,7 +918,7 @@ static int dso__load_sym(struct dso *self, struct map *map, const char *name, ...@@ -905,7 +918,7 @@ static int dso__load_sym(struct dso *self, struct map *map, const char *name,
* For misannotated, zeroed, ASM function sizes. * For misannotated, zeroed, ASM function sizes.
*/ */
if (nr > 0) if (nr > 0)
symbols__fixup_end(&self->functions); symbols__fixup_end(&self->symbols[map->type]);
err = nr; err = nr;
out_elf_end: out_elf_end:
elf_end(elf); elf_end(elf);
...@@ -1191,7 +1204,7 @@ struct symbol *kernel_maps__find_function(u64 ip, struct map **mapp, ...@@ -1191,7 +1204,7 @@ struct symbol *kernel_maps__find_function(u64 ip, struct map **mapp,
if (map) { if (map) {
ip = map->map_ip(map, ip); ip = map->map_ip(map, ip);
return map__find_function(map, ip, filter); return map__find_symbol(map, ip, filter);
} else } else
WARN_ONCE(RB_EMPTY_ROOT(&kernel_maps__functions), WARN_ONCE(RB_EMPTY_ROOT(&kernel_maps__functions),
"Empty kernel_maps, was symbol__init() called?\n"); "Empty kernel_maps, was symbol__init() called?\n");
...@@ -1453,8 +1466,8 @@ static int dso__load_kernel_sym(struct dso *self, struct map *map, ...@@ -1453,8 +1466,8 @@ static int dso__load_kernel_sym(struct dso *self, struct map *map,
if (err > 0) { if (err > 0) {
out_fixup: out_fixup:
map__fixup_start(map, &map->dso->functions); map__fixup_start(map);
map__fixup_end(map, &map->dso->functions); map__fixup_end(map);
} }
return err; return err;
......
...@@ -65,8 +65,9 @@ static inline void *symbol__priv(struct symbol *self) ...@@ -65,8 +65,9 @@ static inline void *symbol__priv(struct symbol *self)
struct dso { struct dso {
struct list_head node; struct list_head node;
struct rb_root functions; struct rb_root symbols[MAP__NR_TYPES];
struct symbol *(*find_function)(struct dso *, u64 ip); struct symbol *(*find_symbol)(struct dso *self,
enum map_type type, u64 addr);
u8 adjust_symbols:1; u8 adjust_symbols:1;
u8 slen_calculated:1; u8 slen_calculated:1;
u8 has_build_id:1; u8 has_build_id:1;
...@@ -83,8 +84,6 @@ struct dso { ...@@ -83,8 +84,6 @@ struct dso {
struct dso *dso__new(const char *name); struct dso *dso__new(const char *name);
void dso__delete(struct dso *self); void dso__delete(struct dso *self);
struct symbol *dso__find_function(struct dso *self, u64 ip);
bool dso__loaded(const struct dso *self, enum map_type type); bool dso__loaded(const struct dso *self, enum map_type type);
struct dso *dsos__findnew(const char *name); struct dso *dsos__findnew(const char *name);
......
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