2 #define __PERF_SYMBOL 1
4 #include <linux/types.h>
9 #include <linux/list.h>
10 #include <linux/rbtree.h>
13 #ifdef HAVE_CPLUS_DEMANGLE
14 extern char *cplus_demangle(const char *, int);
16 static inline char *bfd_demangle(void __used *v, const char *c, int i)
18 return cplus_demangle(c, i);
22 static inline char *bfd_demangle(void __used *v, const char __used *c,
32 int hex2u64(const char *ptr, u64 *val);
33 char *strxfrchar(char *s, char from, char to);
36 * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
37 * for newer versions we can use mmap to reduce memory usage:
40 # define PERF_ELF_C_READ_MMAP ELF_C_READ
42 # define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP
46 #define DMGL_PARAMS (1 << 0) /* Include function args */
47 #define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */
50 #define BUILD_ID_SIZE 20
52 /** struct symbol - symtab entry
54 * @ignore - resolvable but tools ignore it (e.g. idle routines)
57 struct rb_node rb_node;
66 void symbol__delete(struct symbol *sym);
68 static inline size_t symbol__size(const struct symbol *sym)
70 return sym->end - sym->start + 1;
76 unsigned short priv_size;
77 unsigned short nr_events;
78 bool try_vmlinux_path,
91 const char *vmlinux_name,
95 const char *default_guest_vmlinux_name,
96 *default_guest_kallsyms,
97 *default_guest_modules;
98 const char *guestmount;
99 const char *dso_list_str,
103 struct strlist *dso_list,
113 extern struct symbol_conf symbol_conf;
115 static inline void *symbol__priv(struct symbol *sym)
117 return ((void *)sym) - symbol_conf.priv_size;
120 struct ref_reloc_sym {
123 u64 unrelocated_addr;
133 struct addr_map_symbol {
141 struct addr_map_symbol from;
142 struct addr_map_symbol to;
143 struct branch_flags flags;
146 struct addr_location {
147 struct thread *thread;
157 enum dso_kernel_type {
160 DSO_TYPE_GUEST_KERNEL
164 struct list_head node;
165 struct rb_root symbols[MAP__NR_TYPES];
166 struct rb_root symbol_names[MAP__NR_TYPES];
167 enum dso_kernel_type kernel;
171 u8 annotate_warned:1;
174 unsigned char symtab_type;
177 u8 build_id[BUILD_ID_SIZE];
178 const char *short_name;
185 struct dso *dso__new(const char *name);
186 void dso__delete(struct dso *dso);
188 int dso__name_len(const struct dso *dso);
190 bool dso__loaded(const struct dso *dso, enum map_type type);
191 bool dso__sorted_by_name(const struct dso *dso, enum map_type type);
193 static inline void dso__set_loaded(struct dso *dso, enum map_type type)
195 dso->loaded |= (1 << type);
198 void dso__sort_by_name(struct dso *dso, enum map_type type);
200 struct dso *__dsos__findnew(struct list_head *head, const char *name);
202 int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter);
203 int dso__load_vmlinux(struct dso *dso, struct map *map,
204 const char *vmlinux, symbol_filter_t filter);
205 int dso__load_vmlinux_path(struct dso *dso, struct map *map,
206 symbol_filter_t filter);
207 int dso__load_kallsyms(struct dso *dso, const char *filename, struct map *map,
208 symbol_filter_t filter);
209 int machine__load_kallsyms(struct machine *machine, const char *filename,
210 enum map_type type, symbol_filter_t filter);
211 int machine__load_vmlinux_path(struct machine *machine, enum map_type type,
212 symbol_filter_t filter);
214 size_t __dsos__fprintf(struct list_head *head, FILE *fp);
216 size_t machine__fprintf_dsos_buildid(struct machine *machine,
217 FILE *fp, bool with_hits);
218 size_t machines__fprintf_dsos(struct rb_root *machines, FILE *fp);
219 size_t machines__fprintf_dsos_buildid(struct rb_root *machines,
220 FILE *fp, bool with_hits);
221 size_t dso__fprintf_buildid(struct dso *dso, FILE *fp);
222 size_t dso__fprintf_symbols_by_name(struct dso *dso,
223 enum map_type type, FILE *fp);
224 size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp);
227 SYMTAB__KALLSYMS = 0,
228 SYMTAB__GUEST_KALLSYMS,
230 SYMTAB__BUILD_ID_CACHE,
231 SYMTAB__FEDORA_DEBUGINFO,
232 SYMTAB__UBUNTU_DEBUGINFO,
233 SYMTAB__BUILDID_DEBUGINFO,
234 SYMTAB__SYSTEM_PATH_DSO,
235 SYMTAB__GUEST_KMODULE,
236 SYMTAB__SYSTEM_PATH_KMODULE,
240 char dso__symtab_origin(const struct dso *dso);
241 void dso__set_long_name(struct dso *dso, char *name);
242 void dso__set_build_id(struct dso *dso, void *build_id);
243 void dso__read_running_kernel_build_id(struct dso *dso,
244 struct machine *machine);
245 struct map *dso__new_map(const char *name);
246 struct symbol *dso__find_symbol(struct dso *dso, enum map_type type,
248 struct symbol *dso__find_symbol_by_name(struct dso *dso, enum map_type type,
251 int filename__read_build_id(const char *filename, void *bf, size_t size);
252 int sysfs__read_build_id(const char *filename, void *bf, size_t size);
253 bool __dsos__read_build_ids(struct list_head *head, bool with_hits);
254 int build_id__sprintf(const u8 *build_id, int len, char *bf);
255 int kallsyms__parse(const char *filename, void *arg,
256 int (*process_symbol)(void *arg, const char *name,
257 char type, u64 start, u64 end));
259 void machine__destroy_kernel_maps(struct machine *machine);
260 int __machine__create_kernel_maps(struct machine *machine, struct dso *kernel);
261 int machine__create_kernel_maps(struct machine *machine);
263 int machines__create_kernel_maps(struct rb_root *machines, pid_t pid);
264 int machines__create_guest_kernel_maps(struct rb_root *machines);
265 void machines__destroy_guest_kernel_maps(struct rb_root *machines);
267 int symbol__init(void);
268 void symbol__exit(void);
269 size_t symbol__fprintf_symname_offs(const struct symbol *sym,
270 const struct addr_location *al, FILE *fp);
271 size_t symbol__fprintf_symname(const struct symbol *sym, FILE *fp);
272 bool symbol_type__is_a(char symbol_type, enum map_type map_type);
274 size_t machine__fprintf_vmlinux_path(struct machine *machine, FILE *fp);
276 #endif /* __PERF_SYMBOL */