diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-05-30 19:16:45 -0400 |
commit | ada47b5fe13d89735805b566185f4885f5a3f750 (patch) | |
tree | 644b88f8a71896307d71438e9b3af49126ffb22b /tools/perf/util/symbol.h | |
parent | 43e98717ad40a4ae64545b5ba047c7b86aa44f4f (diff) | |
parent | 3280f21d43ee541f97f8cda5792150d2dbec20d5 (diff) |
Merge branch 'wip-2.6.34' into old-private-masterarchived-private-master
Diffstat (limited to 'tools/perf/util/symbol.h')
-rw-r--r-- | tools/perf/util/symbol.h | 146 |
1 files changed, 108 insertions, 38 deletions
diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h index 829da9edba64..f30a37428919 100644 --- a/tools/perf/util/symbol.h +++ b/tools/perf/util/symbol.h | |||
@@ -1,13 +1,15 @@ | |||
1 | #ifndef _PERF_SYMBOL_ | 1 | #ifndef __PERF_SYMBOL |
2 | #define _PERF_SYMBOL_ 1 | 2 | #define __PERF_SYMBOL 1 |
3 | 3 | ||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | #include <stdbool.h> | ||
5 | #include "types.h" | 6 | #include "types.h" |
6 | #include <linux/list.h> | 7 | #include <linux/list.h> |
7 | #include <linux/rbtree.h> | 8 | #include <linux/rbtree.h> |
8 | #include "module.h" | ||
9 | #include "event.h" | 9 | #include "event.h" |
10 | 10 | ||
11 | #define DEBUG_CACHE_DIR ".debug" | ||
12 | |||
11 | #ifdef HAVE_CPLUS_DEMANGLE | 13 | #ifdef HAVE_CPLUS_DEMANGLE |
12 | extern char *cplus_demangle(const char *, int); | 14 | extern char *cplus_demangle(const char *, int); |
13 | 15 | ||
@@ -46,57 +48,125 @@ struct symbol { | |||
46 | struct rb_node rb_node; | 48 | struct rb_node rb_node; |
47 | u64 start; | 49 | u64 start; |
48 | u64 end; | 50 | u64 end; |
49 | u64 obj_start; | ||
50 | u64 hist_sum; | ||
51 | u64 *hist; | ||
52 | struct module *module; | ||
53 | void *priv; | ||
54 | char name[0]; | 51 | char name[0]; |
55 | }; | 52 | }; |
56 | 53 | ||
54 | void symbol__delete(struct symbol *self); | ||
55 | |||
56 | struct strlist; | ||
57 | |||
58 | struct symbol_conf { | ||
59 | unsigned short priv_size; | ||
60 | bool try_vmlinux_path, | ||
61 | use_modules, | ||
62 | sort_by_name, | ||
63 | show_nr_samples, | ||
64 | use_callchain, | ||
65 | exclude_other, | ||
66 | full_paths; | ||
67 | const char *vmlinux_name, | ||
68 | *field_sep; | ||
69 | char *dso_list_str, | ||
70 | *comm_list_str, | ||
71 | *sym_list_str, | ||
72 | *col_width_list_str; | ||
73 | struct strlist *dso_list, | ||
74 | *comm_list, | ||
75 | *sym_list; | ||
76 | }; | ||
77 | |||
78 | extern struct symbol_conf symbol_conf; | ||
79 | |||
80 | static inline void *symbol__priv(struct symbol *self) | ||
81 | { | ||
82 | return ((void *)self) - symbol_conf.priv_size; | ||
83 | } | ||
84 | |||
85 | struct ref_reloc_sym { | ||
86 | const char *name; | ||
87 | u64 addr; | ||
88 | u64 unrelocated_addr; | ||
89 | }; | ||
90 | |||
91 | struct addr_location { | ||
92 | struct thread *thread; | ||
93 | struct map *map; | ||
94 | struct symbol *sym; | ||
95 | u64 addr; | ||
96 | char level; | ||
97 | bool filtered; | ||
98 | }; | ||
99 | |||
57 | struct dso { | 100 | struct dso { |
58 | struct list_head node; | 101 | struct list_head node; |
59 | struct rb_root syms; | 102 | struct rb_root symbols[MAP__NR_TYPES]; |
60 | struct symbol *(*find_symbol)(struct dso *, u64 ip); | 103 | struct rb_root symbol_names[MAP__NR_TYPES]; |
61 | unsigned int sym_priv_size; | 104 | u8 adjust_symbols:1; |
62 | unsigned char adjust_symbols; | 105 | u8 slen_calculated:1; |
63 | unsigned char slen_calculated; | 106 | u8 has_build_id:1; |
107 | u8 kernel:1; | ||
108 | u8 hit:1; | ||
64 | unsigned char origin; | 109 | unsigned char origin; |
110 | u8 sorted_by_name; | ||
111 | u8 loaded; | ||
112 | u8 build_id[BUILD_ID_SIZE]; | ||
113 | const char *short_name; | ||
114 | char *long_name; | ||
115 | u16 long_name_len; | ||
116 | u16 short_name_len; | ||
65 | char name[0]; | 117 | char name[0]; |
66 | }; | 118 | }; |
67 | 119 | ||
68 | extern const char *sym_hist_filter; | 120 | struct dso *dso__new(const char *name); |
69 | 121 | struct dso *dso__new_kernel(const char *name); | |
70 | typedef int (*symbol_filter_t)(struct dso *self, struct symbol *sym); | ||
71 | |||
72 | struct dso *dso__new(const char *name, unsigned int sym_priv_size); | ||
73 | void dso__delete(struct dso *self); | 122 | void dso__delete(struct dso *self); |
74 | 123 | ||
75 | static inline void *dso__sym_priv(struct dso *self, struct symbol *sym) | 124 | bool dso__loaded(const struct dso *self, enum map_type type); |
125 | bool dso__sorted_by_name(const struct dso *self, enum map_type type); | ||
126 | |||
127 | static inline void dso__set_loaded(struct dso *self, enum map_type type) | ||
76 | { | 128 | { |
77 | return ((void *)sym) - self->sym_priv_size; | 129 | self->loaded |= (1 << type); |
78 | } | 130 | } |
79 | 131 | ||
80 | struct symbol *dso__find_symbol(struct dso *self, u64 ip); | 132 | void dso__sort_by_name(struct dso *self, enum map_type type); |
81 | 133 | ||
82 | int dso__load_kernel(struct dso *self, const char *vmlinux, | 134 | extern struct list_head dsos__user, dsos__kernel; |
83 | symbol_filter_t filter, int verbose, int modules); | ||
84 | int dso__load_modules(struct dso *self, symbol_filter_t filter, int verbose); | ||
85 | int dso__load(struct dso *self, symbol_filter_t filter, int verbose); | ||
86 | struct dso *dsos__findnew(const char *name); | ||
87 | void dsos__fprintf(FILE *fp); | ||
88 | 135 | ||
89 | size_t dso__fprintf(struct dso *self, FILE *fp); | 136 | struct dso *__dsos__findnew(struct list_head *head, const char *name); |
90 | char dso__symtab_origin(const struct dso *self); | ||
91 | 137 | ||
92 | int load_kernel(void); | 138 | static inline struct dso *dsos__findnew(const char *name) |
139 | { | ||
140 | return __dsos__findnew(&dsos__user, name); | ||
141 | } | ||
93 | 142 | ||
94 | void symbol__init(void); | 143 | int dso__load(struct dso *self, struct map *map, symbol_filter_t filter); |
144 | int dso__load_vmlinux_path(struct dso *self, struct map *map, | ||
145 | symbol_filter_t filter); | ||
146 | int dso__load_kallsyms(struct dso *self, const char *filename, struct map *map, | ||
147 | symbol_filter_t filter); | ||
148 | void dsos__fprintf(FILE *fp); | ||
149 | size_t dsos__fprintf_buildid(FILE *fp, bool with_hits); | ||
95 | 150 | ||
96 | extern struct list_head dsos; | 151 | size_t dso__fprintf_buildid(struct dso *self, FILE *fp); |
97 | extern struct dso *kernel_dso; | 152 | size_t dso__fprintf(struct dso *self, enum map_type type, FILE *fp); |
98 | extern struct dso *vdso; | 153 | char dso__symtab_origin(const struct dso *self); |
99 | extern struct dso *hypervisor_dso; | 154 | void dso__set_long_name(struct dso *self, char *name); |
100 | extern const char *vmlinux_name; | 155 | void dso__set_build_id(struct dso *self, void *build_id); |
101 | extern int modules; | 156 | void dso__read_running_kernel_build_id(struct dso *self); |
102 | #endif /* _PERF_SYMBOL_ */ | 157 | struct symbol *dso__find_symbol(struct dso *self, enum map_type type, u64 addr); |
158 | struct symbol *dso__find_symbol_by_name(struct dso *self, enum map_type type, | ||
159 | const char *name); | ||
160 | |||
161 | int filename__read_build_id(const char *filename, void *bf, size_t size); | ||
162 | int sysfs__read_build_id(const char *filename, void *bf, size_t size); | ||
163 | bool dsos__read_build_ids(bool with_hits); | ||
164 | int build_id__sprintf(const u8 *self, int len, char *bf); | ||
165 | int kallsyms__parse(const char *filename, void *arg, | ||
166 | int (*process_symbol)(void *arg, const char *name, | ||
167 | char type, u64 start)); | ||
168 | |||
169 | int symbol__init(void); | ||
170 | bool symbol_type__is_a(char symbol_type, enum map_type map_type); | ||
171 | |||
172 | #endif /* __PERF_SYMBOL */ | ||