aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/util/symbol.h
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2009-11-27 13:29:16 -0500
committerIngo Molnar <mingo@elte.hu>2009-11-27 14:21:59 -0500
commit3610583c29563e23dd038d2870f59c88438bf7a3 (patch)
treecb8d20387bcc8e37b0db2432f339387a4fd52150 /tools/perf/util/symbol.h
parent605ca4ba017455d39ac6991c58eb1e80fb8af48d (diff)
perf symbols: Add a 'type' field to struct map
That way we will be able to check if the right symtab is loaded in the underlying DSO. 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: <1259346563-12568-5-git-send-email-acme@infradead.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'tools/perf/util/symbol.h')
-rw-r--r--tools/perf/util/symbol.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h
index fb0be9e92bf3..11d41952ce04 100644
--- a/tools/perf/util/symbol.h
+++ b/tools/perf/util/symbol.h
@@ -69,10 +69,10 @@ struct dso {
69 struct symbol *(*find_function)(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;
73 u8 has_build_id:1; 72 u8 has_build_id:1;
74 u8 kernel:1; 73 u8 kernel:1;
75 unsigned char origin; 74 unsigned char origin;
75 u8 loaded;
76 u8 build_id[BUILD_ID_SIZE]; 76 u8 build_id[BUILD_ID_SIZE];
77 u16 long_name_len; 77 u16 long_name_len;
78 const char *short_name; 78 const char *short_name;
@@ -85,6 +85,8 @@ void dso__delete(struct dso *self);
85 85
86struct symbol *dso__find_function(struct dso *self, u64 ip); 86struct symbol *dso__find_function(struct dso *self, u64 ip);
87 87
88bool dso__loaded(const struct dso *self, enum map_type type);
89
88struct dso *dsos__findnew(const char *name); 90struct dso *dsos__findnew(const char *name);
89int dso__load(struct dso *self, struct map *map, symbol_filter_t filter); 91int dso__load(struct dso *self, struct map *map, symbol_filter_t filter);
90void dsos__fprintf(FILE *fp); 92void dsos__fprintf(FILE *fp);