2 #define __PERF_SYMBOL 1
4 #include <linux/types.h>
9 #include <linux/list.h>
10 #include <linux/rbtree.h>
16 #ifdef HAVE_LIBELF_SUPPORT
24 #ifdef HAVE_CPLUS_DEMANGLE_SUPPORT
25 extern char *cplus_demangle(const char *, int);
27 static inline char *bfd_demangle(void __maybe_unused
*v
, const char *c
, int i
)
29 return cplus_demangle(c
, i
);
33 static inline char *bfd_demangle(void __maybe_unused
*v
,
34 const char __maybe_unused
*c
,
40 #define PACKAGE 'perf'
46 * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
47 * for newer versions we can use mmap to reduce memory usage:
49 #ifdef HAVE_LIBELF_MMAP_SUPPORT
50 # define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP
52 # define PERF_ELF_C_READ_MMAP ELF_C_READ
55 #ifdef HAVE_LIBELF_SUPPORT
56 extern Elf_Scn
*elf_section_by_name(Elf
*elf
, GElf_Ehdr
*ep
,
57 GElf_Shdr
*shp
, const char *name
, size_t *idx
);
61 #define DMGL_PARAMS (1 << 0) /* Include function args */
62 #define DMGL_ANSI (1 << 1) /* Include const, volatile, etc */
65 /** struct symbol - symtab entry
67 * @ignore - resolvable but tools ignore it (e.g. idle routines)
70 struct rb_node rb_node
;
79 void symbol__delete(struct symbol
*sym
);
80 void symbols__delete(struct rb_root
*symbols
);
82 static inline size_t symbol__size(const struct symbol
*sym
)
84 return sym
->end
- sym
->start
+ 1;
90 unsigned short priv_size
;
91 unsigned short nr_events
;
92 bool try_vmlinux_path
,
101 show_cpu_utilization
,
108 const char *vmlinux_name
,
112 const char *default_guest_vmlinux_name
,
113 *default_guest_kallsyms
,
114 *default_guest_modules
;
115 const char *guestmount
;
116 const char *dso_list_str
,
120 struct strlist
*dso_list
,
130 extern struct symbol_conf symbol_conf
;
131 extern int vmlinux_path__nr_entries
;
132 extern char **vmlinux_path
;
134 static inline void *symbol__priv(struct symbol
*sym
)
136 return ((void *)sym
) - symbol_conf
.priv_size
;
139 struct ref_reloc_sym
{
142 u64 unrelocated_addr
;
152 struct addr_map_symbol
{
160 struct addr_map_symbol from
;
161 struct addr_map_symbol to
;
162 struct branch_flags flags
;
166 struct addr_map_symbol iaddr
;
167 struct addr_map_symbol daddr
;
168 union perf_mem_data_src data_src
;
171 struct addr_location
{
172 struct machine
*machine
;
173 struct thread
*thread
;
186 enum dso_binary_type type
;
188 #ifdef HAVE_LIBELF_SUPPORT
207 void symsrc__destroy(struct symsrc
*ss
);
208 int symsrc__init(struct symsrc
*ss
, struct dso
*dso
, const char *name
,
209 enum dso_binary_type type
);
210 bool symsrc__has_symtab(struct symsrc
*ss
);
211 bool symsrc__possibly_runtime(struct symsrc
*ss
);
213 int dso__load(struct dso
*dso
, struct map
*map
, symbol_filter_t filter
);
214 int dso__load_vmlinux(struct dso
*dso
, struct map
*map
,
215 const char *vmlinux
, bool vmlinux_allocated
,
216 symbol_filter_t filter
);
217 int dso__load_vmlinux_path(struct dso
*dso
, struct map
*map
,
218 symbol_filter_t filter
);
219 int dso__load_kallsyms(struct dso
*dso
, const char *filename
, struct map
*map
,
220 symbol_filter_t filter
);
222 struct symbol
*dso__find_symbol(struct dso
*dso
, enum map_type type
,
224 struct symbol
*dso__find_symbol_by_name(struct dso
*dso
, enum map_type type
,
226 struct symbol
*dso__first_symbol(struct dso
*dso
, enum map_type type
);
228 int filename__read_build_id(const char *filename
, void *bf
, size_t size
);
229 int sysfs__read_build_id(const char *filename
, void *bf
, size_t size
);
230 int modules__parse(const char *filename
, void *arg
,
231 int (*process_module
)(void *arg
, const char *name
,
233 int filename__read_debuglink(const char *filename
, char *debuglink
,
236 int symbol__init(void);
237 void symbol__exit(void);
238 void symbol__elf_init(void);
239 struct symbol
*symbol__new(u64 start
, u64 len
, u8 binding
, const char *name
);
240 size_t symbol__fprintf_symname_offs(const struct symbol
*sym
,
241 const struct addr_location
*al
, FILE *fp
);
242 size_t symbol__fprintf_symname(const struct symbol
*sym
, FILE *fp
);
243 size_t symbol__fprintf(struct symbol
*sym
, FILE *fp
);
244 bool symbol_type__is_a(char symbol_type
, enum map_type map_type
);
245 bool symbol__restricted_filename(const char *filename
,
246 const char *restricted_filename
);
247 bool symbol__is_idle(struct symbol
*sym
);
249 int dso__load_sym(struct dso
*dso
, struct map
*map
, struct symsrc
*syms_ss
,
250 struct symsrc
*runtime_ss
, symbol_filter_t filter
,
252 int dso__synthesize_plt_symbols(struct dso
*dso
, struct symsrc
*ss
,
253 struct map
*map
, symbol_filter_t filter
);
255 void symbols__insert(struct rb_root
*symbols
, struct symbol
*sym
);
256 void symbols__fixup_duplicate(struct rb_root
*symbols
);
257 void symbols__fixup_end(struct rb_root
*symbols
);
258 void __map_groups__fixup_end(struct map_groups
*mg
, enum map_type type
);
260 typedef int (*mapfn_t
)(u64 start
, u64 len
, u64 pgoff
, void *data
);
261 int file__read_maps(int fd
, bool exe
, mapfn_t mapfn
, void *data
,
264 #define PERF_KCORE_EXTRACT "/tmp/perf-kcore-XXXXXX"
266 struct kcore_extract
{
267 char *kcore_filename
;
271 char extract_filename
[sizeof(PERF_KCORE_EXTRACT
)];
275 int kcore_extract__create(struct kcore_extract
*kce
);
276 void kcore_extract__delete(struct kcore_extract
*kce
);
278 int kcore_copy(const char *from_dir
, const char *to_dir
);
279 int compare_proc_modules(const char *from
, const char *to
);
281 int setup_list(struct strlist
**list
, const char *list_str
,
282 const char *list_name
);
284 #endif /* __PERF_SYMBOL */