aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2009-11-24 10:01:52 -0500
committerIngo Molnar <mingo@elte.hu>2009-11-24 10:37:03 -0500
commitfcf1203a919c3a3d212c0ed01f5240fd592bf5ae (patch)
treebd7a9f796882c5b01fabc4afe2bdea6ac74c2098 /tools
parent727dad10c17cbaade3cb6a56bd4863a4630f4d13 (diff)
perf symbols: Rename find_symbol routines to find_function
Paving the way for supporting variable in adition to function symbols. Signed-off-by: Arnaldo 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: <1259074912-5924-1-git-send-email-acme@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools')
-rw-r--r--tools/perf/builtin-annotate.c4
-rw-r--r--tools/perf/builtin-kmem.c3
-rw-r--r--tools/perf/builtin-report.c8
-rw-r--r--tools/perf/builtin-top.c4
-rw-r--r--tools/perf/util/event.h7
-rw-r--r--tools/perf/util/map.c14
-rw-r--r--tools/perf/util/symbol.c68
-rw-r--r--tools/perf/util/symbol.h6
-rw-r--r--tools/perf/util/thread.h4
9 files changed, 62 insertions, 56 deletions
diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c
index cd97c2b1cc3b..18ac5eaefc36 100644
--- a/tools/perf/builtin-annotate.c
+++ b/tools/perf/builtin-annotate.c
@@ -162,7 +162,7 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head)
162 162
163 if (event->header.misc & PERF_RECORD_MISC_KERNEL) { 163 if (event->header.misc & PERF_RECORD_MISC_KERNEL) {
164 level = 'k'; 164 level = 'k';
165 sym = kernel_maps__find_symbol(ip, &map, symbol_filter); 165 sym = kernel_maps__find_function(ip, &map, symbol_filter);
166 dump_printf(" ...... dso: %s\n", 166 dump_printf(" ...... dso: %s\n",
167 map ? map->dso->long_name : "<not found>"); 167 map ? map->dso->long_name : "<not found>");
168 } else if (event->header.misc & PERF_RECORD_MISC_USER) { 168 } else if (event->header.misc & PERF_RECORD_MISC_USER) {
@@ -171,7 +171,7 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head)
171 if (map != NULL) { 171 if (map != NULL) {
172got_map: 172got_map:
173 ip = map->map_ip(map, ip); 173 ip = map->map_ip(map, ip);
174 sym = map__find_symbol(map, ip, symbol_filter); 174 sym = map__find_function(map, ip, symbol_filter);
175 } else { 175 } else {
176 /* 176 /*
177 * If this is outside of all known maps, 177 * If this is outside of all known maps,
diff --git a/tools/perf/builtin-kmem.c b/tools/perf/builtin-kmem.c
index 330dbc762f9e..35722fafc4d1 100644
--- a/tools/perf/builtin-kmem.c
+++ b/tools/perf/builtin-kmem.c
@@ -445,8 +445,7 @@ static void __print_result(struct rb_root *root, int n_lines, int is_caller)
445 if (is_caller) { 445 if (is_caller) {
446 addr = data->call_site; 446 addr = data->call_site;
447 if (!raw_ip) 447 if (!raw_ip)
448 sym = kernel_maps__find_symbol(addr, 448 sym = kernel_maps__find_function(addr, NULL, NULL);
449 NULL, NULL);
450 } else 449 } else
451 addr = data->ptr; 450 addr = data->ptr;
452 451
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c
index 0ee3d05a0409..e4b1004e76ea 100644
--- a/tools/perf/builtin-report.c
+++ b/tools/perf/builtin-report.c
@@ -448,14 +448,14 @@ got_map:
448 * trick of looking in the whole kernel symbol list. 448 * trick of looking in the whole kernel symbol list.
449 */ 449 */
450 if ((long long)ip < 0) 450 if ((long long)ip < 0)
451 return kernel_maps__find_symbol(ip, mapp, NULL); 451 return kernel_maps__find_function(ip, mapp, NULL);
452 } 452 }
453 dump_printf(" ...... dso: %s\n", 453 dump_printf(" ...... dso: %s\n",
454 map ? map->dso->long_name : "<not found>"); 454 map ? map->dso->long_name : "<not found>");
455 dump_printf(" ...... map: %Lx -> %Lx\n", *ipp, ip); 455 dump_printf(" ...... map: %Lx -> %Lx\n", *ipp, ip);
456 *ipp = ip; 456 *ipp = ip;
457 457
458 return map ? map__find_symbol(map, ip, NULL) : NULL; 458 return map ? map__find_function(map, ip, NULL) : NULL;
459} 459}
460 460
461static int call__match(struct symbol *sym) 461static int call__match(struct symbol *sym)
@@ -495,7 +495,7 @@ static struct symbol **resolve_callchain(struct thread *thread,
495 case PERF_CONTEXT_HV: 495 case PERF_CONTEXT_HV:
496 break; 496 break;
497 case PERF_CONTEXT_KERNEL: 497 case PERF_CONTEXT_KERNEL:
498 sym = kernel_maps__find_symbol(ip, NULL, NULL); 498 sym = kernel_maps__find_function(ip, NULL, NULL);
499 break; 499 break;
500 default: 500 default:
501 sym = resolve_symbol(thread, NULL, &ip); 501 sym = resolve_symbol(thread, NULL, &ip);
@@ -715,7 +715,7 @@ process_sample_event(event_t *event, unsigned long offset, unsigned long head)
715 715
716 if (cpumode == PERF_RECORD_MISC_KERNEL) { 716 if (cpumode == PERF_RECORD_MISC_KERNEL) {
717 level = 'k'; 717 level = 'k';
718 sym = kernel_maps__find_symbol(ip, &map, NULL); 718 sym = kernel_maps__find_function(ip, &map, NULL);
719 dump_printf(" ...... dso: %s\n", 719 dump_printf(" ...... dso: %s\n",
720 map ? map->dso->long_name : "<not found>"); 720 map ? map->dso->long_name : "<not found>");
721 } else if (cpumode == PERF_RECORD_MISC_USER) { 721 } else if (cpumode == PERF_RECORD_MISC_USER) {
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index 4c8653a86aaf..ded6cf65ad9c 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -948,7 +948,7 @@ static void event__process_sample(const event_t *self, int counter)
948 map = thread__find_map(thread, ip); 948 map = thread__find_map(thread, ip);
949 if (map != NULL) { 949 if (map != NULL) {
950 ip = map->map_ip(map, ip); 950 ip = map->map_ip(map, ip);
951 sym = map__find_symbol(map, ip, symbol_filter); 951 sym = map__find_function(map, ip, symbol_filter);
952 if (sym == NULL) 952 if (sym == NULL)
953 return; 953 return;
954 userspace_samples++; 954 userspace_samples++;
@@ -968,7 +968,7 @@ static void event__process_sample(const event_t *self, int counter)
968 if (hide_kernel_symbols) 968 if (hide_kernel_symbols)
969 return; 969 return;
970 970
971 sym = kernel_maps__find_symbol(ip, &map, symbol_filter); 971 sym = kernel_maps__find_function(ip, &map, symbol_filter);
972 if (sym == NULL) 972 if (sym == NULL)
973 return; 973 return;
974 break; 974 break;
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h
index f1e392612652..882a9531db97 100644
--- a/tools/perf/util/event.h
+++ b/tools/perf/util/event.h
@@ -119,9 +119,10 @@ void map__delete(struct map *self);
119struct map *map__clone(struct map *self); 119struct map *map__clone(struct map *self);
120int map__overlap(struct map *l, struct map *r); 120int map__overlap(struct map *l, struct map *r);
121size_t map__fprintf(struct map *self, FILE *fp); 121size_t map__fprintf(struct map *self, FILE *fp);
122struct symbol *map__find_symbol(struct map *self, u64 ip, symbol_filter_t filter); 122struct symbol *map__find_function(struct map *self, u64 ip,
123void map__fixup_start(struct map *self); 123 symbol_filter_t filter);
124void map__fixup_end(struct map *self); 124void map__fixup_start(struct map *self, struct rb_root *symbols);
125void map__fixup_end(struct map *self, struct rb_root *symbols);
125 126
126int event__synthesize_thread(pid_t pid, int (*process)(event_t *event)); 127int event__synthesize_thread(pid_t pid, int (*process)(event_t *event));
127void event__synthesize_threads(int (*process)(event_t *event)); 128void event__synthesize_threads(int (*process)(event_t *event));
diff --git a/tools/perf/util/map.c b/tools/perf/util/map.c
index 09412321a80d..41c5c4a20010 100644
--- a/tools/perf/util/map.c
+++ b/tools/perf/util/map.c
@@ -80,18 +80,18 @@ void map__delete(struct map *self)
80 free(self); 80 free(self);
81} 81}
82 82
83void map__fixup_start(struct map *self) 83void map__fixup_start(struct map *self, struct rb_root *symbols)
84{ 84{
85 struct rb_node *nd = rb_first(&self->dso->syms); 85 struct rb_node *nd = rb_first(symbols);
86 if (nd != NULL) { 86 if (nd != NULL) {
87 struct symbol *sym = rb_entry(nd, struct symbol, rb_node); 87 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
88 self->start = sym->start; 88 self->start = sym->start;
89 } 89 }
90} 90}
91 91
92void map__fixup_end(struct map *self) 92void map__fixup_end(struct map *self, struct rb_root *symbols)
93{ 93{
94 struct rb_node *nd = rb_last(&self->dso->syms); 94 struct rb_node *nd = rb_last(symbols);
95 if (nd != NULL) { 95 if (nd != NULL) {
96 struct symbol *sym = rb_entry(nd, struct symbol, rb_node); 96 struct symbol *sym = rb_entry(nd, struct symbol, rb_node);
97 self->end = sym->end; 97 self->end = sym->end;
@@ -100,8 +100,8 @@ void map__fixup_end(struct map *self)
100 100
101#define DSO__DELETED "(deleted)" 101#define DSO__DELETED "(deleted)"
102 102
103struct symbol * 103struct symbol *map__find_function(struct map *self, u64 ip,
104map__find_symbol(struct map *self, u64 ip, symbol_filter_t filter) 104 symbol_filter_t filter)
105{ 105{
106 if (!self->dso->loaded) { 106 if (!self->dso->loaded) {
107 int nr = dso__load(self->dso, self, filter); 107 int nr = dso__load(self->dso, self, filter);
@@ -136,7 +136,7 @@ map__find_symbol(struct map *self, u64 ip, symbol_filter_t filter)
136 } 136 }
137 } 137 }
138 138
139 return self->dso->find_symbol(self->dso, ip); 139 return self->dso->find_function(self->dso, ip);
140} 140}
141 141
142struct map *map__clone(struct map *self) 142struct map *map__clone(struct map *self)
diff --git a/tools/perf/util/symbol.c b/tools/perf/util/symbol.c
index 8db85b4f553f..4ed379b915fe 100644
--- a/tools/perf/util/symbol.c
+++ b/tools/perf/util/symbol.c
@@ -45,9 +45,9 @@ static struct symbol_conf symbol_conf__defaults = {
45 45
46static struct rb_root kernel_maps; 46static struct rb_root kernel_maps;
47 47
48static void dso__fixup_sym_end(struct dso *self) 48static void symbols__fixup_end(struct rb_root *self)
49{ 49{
50 struct rb_node *nd, *prevnd = rb_first(&self->syms); 50 struct rb_node *nd, *prevnd = rb_first(self);
51 struct symbol *curr, *prev; 51 struct symbol *curr, *prev;
52 52
53 if (prevnd == NULL) 53 if (prevnd == NULL)
@@ -144,8 +144,8 @@ struct dso *dso__new(const char *name)
144 strcpy(self->name, name); 144 strcpy(self->name, name);
145 dso__set_long_name(self, self->name); 145 dso__set_long_name(self, self->name);
146 self->short_name = self->name; 146 self->short_name = self->name;
147 self->syms = RB_ROOT; 147 self->functions = RB_ROOT;
148 self->find_symbol = dso__find_symbol; 148 self->find_function = dso__find_function;
149 self->slen_calculated = 0; 149 self->slen_calculated = 0;
150 self->origin = DSO__ORIG_NOT_FOUND; 150 self->origin = DSO__ORIG_NOT_FOUND;
151 self->loaded = 0; 151 self->loaded = 0;
@@ -155,22 +155,22 @@ struct dso *dso__new(const char *name)
155 return self; 155 return self;
156} 156}
157 157
158static void dso__delete_symbols(struct dso *self) 158static void symbols__delete(struct rb_root *self)
159{ 159{
160 struct symbol *pos; 160 struct symbol *pos;
161 struct rb_node *next = rb_first(&self->syms); 161 struct rb_node *next = rb_first(self);
162 162
163 while (next) { 163 while (next) {
164 pos = rb_entry(next, struct symbol, rb_node); 164 pos = rb_entry(next, struct symbol, rb_node);
165 next = rb_next(&pos->rb_node); 165 next = rb_next(&pos->rb_node);
166 rb_erase(&pos->rb_node, &self->syms); 166 rb_erase(&pos->rb_node, self);
167 symbol__delete(pos); 167 symbol__delete(pos);
168 } 168 }
169} 169}
170 170
171void dso__delete(struct dso *self) 171void dso__delete(struct dso *self)
172{ 172{
173 dso__delete_symbols(self); 173 symbols__delete(&self->functions);
174 if (self->long_name != self->name) 174 if (self->long_name != self->name)
175 free(self->long_name); 175 free(self->long_name);
176 free(self); 176 free(self);
@@ -182,9 +182,9 @@ void dso__set_build_id(struct dso *self, void *build_id)
182 self->has_build_id = 1; 182 self->has_build_id = 1;
183} 183}
184 184
185static void dso__insert_symbol(struct dso *self, struct symbol *sym) 185static void symbols__insert(struct rb_root *self, struct symbol *sym)
186{ 186{
187 struct rb_node **p = &self->syms.rb_node; 187 struct rb_node **p = &self->rb_node;
188 struct rb_node *parent = NULL; 188 struct rb_node *parent = NULL;
189 const u64 ip = sym->start; 189 const u64 ip = sym->start;
190 struct symbol *s; 190 struct symbol *s;
@@ -198,17 +198,17 @@ static void dso__insert_symbol(struct dso *self, struct symbol *sym)
198 p = &(*p)->rb_right; 198 p = &(*p)->rb_right;
199 } 199 }
200 rb_link_node(&sym->rb_node, parent, p); 200 rb_link_node(&sym->rb_node, parent, p);
201 rb_insert_color(&sym->rb_node, &self->syms); 201 rb_insert_color(&sym->rb_node, self);
202} 202}
203 203
204struct symbol *dso__find_symbol(struct dso *self, u64 ip) 204static struct symbol *symbols__find(struct rb_root *self, u64 ip)
205{ 205{
206 struct rb_node *n; 206 struct rb_node *n;
207 207
208 if (self == NULL) 208 if (self == NULL)
209 return NULL; 209 return NULL;
210 210
211 n = self->syms.rb_node; 211 n = self->rb_node;
212 212
213 while (n) { 213 while (n) {
214 struct symbol *s = rb_entry(n, struct symbol, rb_node); 214 struct symbol *s = rb_entry(n, struct symbol, rb_node);
@@ -224,6 +224,11 @@ struct symbol *dso__find_symbol(struct dso *self, u64 ip)
224 return NULL; 224 return NULL;
225} 225}
226 226
227struct symbol *dso__find_function(struct dso *self, u64 ip)
228{
229 return symbols__find(&self->functions, ip);
230}
231
227int build_id__sprintf(u8 *self, int len, char *bf) 232int build_id__sprintf(u8 *self, int len, char *bf)
228{ 233{
229 char *bid = bf; 234 char *bid = bf;
@@ -253,9 +258,9 @@ size_t dso__fprintf(struct dso *self, FILE *fp)
253 size_t ret = fprintf(fp, "dso: %s (", self->short_name); 258 size_t ret = fprintf(fp, "dso: %s (", self->short_name);
254 259
255 ret += dso__fprintf_buildid(self, fp); 260 ret += dso__fprintf_buildid(self, fp);
256 ret += fprintf(fp, ")\n"); 261 ret += fprintf(fp, ")\nFunctions:\n");
257 262
258 for (nd = rb_first(&self->syms); nd; nd = rb_next(nd)) { 263 for (nd = rb_first(&self->functions); nd; nd = rb_next(nd)) {
259 struct symbol *pos = rb_entry(nd, struct symbol, rb_node); 264 struct symbol *pos = rb_entry(nd, struct symbol, rb_node);
260 ret += symbol__fprintf(pos, fp); 265 ret += symbol__fprintf(pos, fp);
261 } 266 }
@@ -320,7 +325,7 @@ static int kernel_maps__load_all_kallsyms(void)
320 * kernel_maps__split_kallsyms, when we have split the 325 * kernel_maps__split_kallsyms, when we have split the
321 * maps per module 326 * maps per module
322 */ 327 */
323 dso__insert_symbol(kernel_map->dso, sym); 328 symbols__insert(&kernel_map->dso->functions, sym);
324 } 329 }
325 330
326 free(line); 331 free(line);
@@ -344,7 +349,7 @@ static int kernel_maps__split_kallsyms(symbol_filter_t filter)
344 struct map *map = kernel_map; 349 struct map *map = kernel_map;
345 struct symbol *pos; 350 struct symbol *pos;
346 int count = 0; 351 int count = 0;
347 struct rb_node *next = rb_first(&kernel_map->dso->syms); 352 struct rb_node *next = rb_first(&kernel_map->dso->functions);
348 int kernel_range = 0; 353 int kernel_range = 0;
349 354
350 while (next) { 355 while (next) {
@@ -394,12 +399,13 @@ static int kernel_maps__split_kallsyms(symbol_filter_t filter)
394 } 399 }
395 400
396 if (filter && filter(map, pos)) { 401 if (filter && filter(map, pos)) {
397 rb_erase(&pos->rb_node, &kernel_map->dso->syms); 402 rb_erase(&pos->rb_node, &kernel_map->dso->functions);
398 symbol__delete(pos); 403 symbol__delete(pos);
399 } else { 404 } else {
400 if (map != kernel_map) { 405 if (map != kernel_map) {
401 rb_erase(&pos->rb_node, &kernel_map->dso->syms); 406 rb_erase(&pos->rb_node,
402 dso__insert_symbol(map->dso, pos); 407 &kernel_map->dso->functions);
408 symbols__insert(&map->dso->functions, pos);
403 } 409 }
404 count++; 410 count++;
405 } 411 }
@@ -414,7 +420,7 @@ static int kernel_maps__load_kallsyms(symbol_filter_t filter)
414 if (kernel_maps__load_all_kallsyms()) 420 if (kernel_maps__load_all_kallsyms())
415 return -1; 421 return -1;
416 422
417 dso__fixup_sym_end(kernel_map->dso); 423 symbols__fixup_end(&kernel_map->dso->functions);
418 kernel_map->dso->origin = DSO__ORIG_KERNEL; 424 kernel_map->dso->origin = DSO__ORIG_KERNEL;
419 425
420 return kernel_maps__split_kallsyms(filter); 426 return kernel_maps__split_kallsyms(filter);
@@ -485,7 +491,7 @@ static int dso__load_perf_map(struct dso *self, struct map *map,
485 if (filter && filter(map, sym)) 491 if (filter && filter(map, sym))
486 symbol__delete(sym); 492 symbol__delete(sym);
487 else { 493 else {
488 dso__insert_symbol(self, sym); 494 symbols__insert(&self->functions, sym);
489 nr_syms++; 495 nr_syms++;
490 } 496 }
491 } 497 }
@@ -683,7 +689,7 @@ static int dso__synthesize_plt_symbols(struct dso *self, struct map *map,
683 if (filter && filter(map, f)) 689 if (filter && filter(map, f))
684 symbol__delete(f); 690 symbol__delete(f);
685 else { 691 else {
686 dso__insert_symbol(self, f); 692 symbols__insert(&self->functions, f);
687 ++nr; 693 ++nr;
688 } 694 }
689 } 695 }
@@ -705,7 +711,7 @@ static int dso__synthesize_plt_symbols(struct dso *self, struct map *map,
705 if (filter && filter(map, f)) 711 if (filter && filter(map, f))
706 symbol__delete(f); 712 symbol__delete(f);
707 else { 713 else {
708 dso__insert_symbol(self, f); 714 symbols__insert(&self->functions, f);
709 ++nr; 715 ++nr;
710 } 716 }
711 } 717 }
@@ -879,7 +885,7 @@ new_symbol:
879 if (filter && filter(curr_map, f)) 885 if (filter && filter(curr_map, f))
880 symbol__delete(f); 886 symbol__delete(f);
881 else { 887 else {
882 dso__insert_symbol(curr_dso, f); 888 symbols__insert(&curr_dso->functions, f);
883 nr++; 889 nr++;
884 } 890 }
885 } 891 }
@@ -888,7 +894,7 @@ new_symbol:
888 * For misannotated, zeroed, ASM function sizes. 894 * For misannotated, zeroed, ASM function sizes.
889 */ 895 */
890 if (nr > 0) 896 if (nr > 0)
891 dso__fixup_sym_end(self); 897 symbols__fixup_end(&self->functions);
892 err = nr; 898 err = nr;
893out_elf_end: 899out_elf_end:
894 elf_end(elf); 900 elf_end(elf);
@@ -1160,8 +1166,8 @@ static void kernel_maps__insert(struct map *map)
1160 maps__insert(&kernel_maps, map); 1166 maps__insert(&kernel_maps, map);
1161} 1167}
1162 1168
1163struct symbol *kernel_maps__find_symbol(u64 ip, struct map **mapp, 1169struct symbol *kernel_maps__find_function(u64 ip, struct map **mapp,
1164 symbol_filter_t filter) 1170 symbol_filter_t filter)
1165{ 1171{
1166 struct map *map = maps__find(&kernel_maps, ip); 1172 struct map *map = maps__find(&kernel_maps, ip);
1167 1173
@@ -1170,7 +1176,7 @@ struct symbol *kernel_maps__find_symbol(u64 ip, struct map **mapp,
1170 1176
1171 if (map) { 1177 if (map) {
1172 ip = map->map_ip(map, ip); 1178 ip = map->map_ip(map, ip);
1173 return map__find_symbol(map, ip, filter); 1179 return map__find_function(map, ip, filter);
1174 } else 1180 } else
1175 WARN_ONCE(RB_EMPTY_ROOT(&kernel_maps), 1181 WARN_ONCE(RB_EMPTY_ROOT(&kernel_maps),
1176 "Empty kernel_maps, was symbol__init() called?\n"); 1182 "Empty kernel_maps, was symbol__init() called?\n");
@@ -1432,8 +1438,8 @@ do_kallsyms:
1432 1438
1433 if (err > 0) { 1439 if (err > 0) {
1434out_fixup: 1440out_fixup:
1435 map__fixup_start(map); 1441 map__fixup_start(map, &map->dso->functions);
1436 map__fixup_end(map); 1442 map__fixup_end(map, &map->dso->functions);
1437 } 1443 }
1438 1444
1439 return err; 1445 return err;
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h
index 5538691494af..65846d0c5df7 100644
--- a/tools/perf/util/symbol.h
+++ b/tools/perf/util/symbol.h
@@ -65,8 +65,8 @@ static inline void *symbol__priv(struct symbol *self)
65 65
66struct dso { 66struct dso {
67 struct list_head node; 67 struct list_head node;
68 struct rb_root syms; 68 struct rb_root functions;
69 struct symbol *(*find_symbol)(struct dso *, u64 ip); 69 struct symbol *(*find_function)(struct dso *, u64 ip);
70 u8 adjust_symbols:1; 70 u8 adjust_symbols:1;
71 u8 slen_calculated:1; 71 u8 slen_calculated:1;
72 u8 loaded:1; 72 u8 loaded:1;
@@ -83,7 +83,7 @@ struct dso {
83struct dso *dso__new(const char *name); 83struct dso *dso__new(const char *name);
84void dso__delete(struct dso *self); 84void dso__delete(struct dso *self);
85 85
86struct symbol *dso__find_symbol(struct dso *self, u64 ip); 86struct symbol *dso__find_function(struct dso *self, u64 ip);
87 87
88struct dso *dsos__findnew(const char *name); 88struct dso *dsos__findnew(const char *name);
89int dso__load(struct dso *self, struct map *map, symbol_filter_t filter); 89int dso__load(struct dso *self, struct map *map, symbol_filter_t filter);
diff --git a/tools/perf/util/thread.h b/tools/perf/util/thread.h
index e4b8d437725a..74cba6487edb 100644
--- a/tools/perf/util/thread.h
+++ b/tools/perf/util/thread.h
@@ -26,8 +26,8 @@ size_t threads__fprintf(FILE *fp);
26void maps__insert(struct rb_root *maps, struct map *map); 26void maps__insert(struct rb_root *maps, struct map *map);
27struct map *maps__find(struct rb_root *maps, u64 ip); 27struct map *maps__find(struct rb_root *maps, u64 ip);
28 28
29struct symbol *kernel_maps__find_symbol(const u64 ip, struct map **mapp, 29struct symbol *kernel_maps__find_function(const u64 ip, struct map **mapp,
30 symbol_filter_t filter); 30 symbol_filter_t filter);
31struct map *kernel_maps__find_by_dso_name(const char *name); 31struct map *kernel_maps__find_by_dso_name(const char *name);
32 32
33static inline struct map *thread__find_map(struct thread *self, u64 ip) 33static inline struct map *thread__find_map(struct thread *self, u64 ip)