symbol.h 4.1 KB
Newer Older
1 2
#ifndef __PERF_SYMBOL
#define __PERF_SYMBOL 1
3 4

#include <linux/types.h>
5
#include <stdbool.h>
6
#include "types.h"
7
#include <linux/list.h>
8
#include <linux/rbtree.h>
9
#include "event.h"
10

11 12
#define DEBUG_CACHE_DIR ".debug"

13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
#ifdef HAVE_CPLUS_DEMANGLE
extern char *cplus_demangle(const char *, int);

static inline char *bfd_demangle(void __used *v, const char *c, int i)
{
	return cplus_demangle(c, i);
}
#else
#ifdef NO_DEMANGLE
static inline char *bfd_demangle(void __used *v, const char __used *c,
				 int __used i)
{
	return NULL;
}
#else
#include <bfd.h>
#endif
#endif

32 33 34 35 36 37 38 39 40 41
/*
 * libelf 0.8.x and earlier do not support ELF_C_READ_MMAP;
 * for newer versions we can use mmap to reduce memory usage:
 */
#ifdef LIBELF_NO_MMAP
# define PERF_ELF_C_READ_MMAP ELF_C_READ
#else
# define PERF_ELF_C_READ_MMAP ELF_C_READ_MMAP
#endif

42 43 44 45 46
#ifndef DMGL_PARAMS
#define DMGL_PARAMS      (1 << 0)       /* Include function args */
#define DMGL_ANSI        (1 << 1)       /* Include const, volatile, etc */
#endif

47 48
struct symbol {
	struct rb_node	rb_node;
49 50
	u64		start;
	u64		end;
51 52 53
	char		name[0];
};

54 55
struct strlist;

56 57 58
struct symbol_conf {
	unsigned short	priv_size;
	bool		try_vmlinux_path,
59
			use_modules,
60 61 62
			sort_by_name,
			show_nr_samples,
			use_callchain,
63 64
			exclude_other,
			full_paths;
65 66
	const char	*vmlinux_name,
			*field_sep;
67 68 69 70 71 72 73
	char            *dso_list_str,
			*comm_list_str,
			*sym_list_str,
			*col_width_list_str;
       struct strlist	*dso_list,
			*comm_list,
			*sym_list;
74 75
};

76
extern struct symbol_conf symbol_conf;
77 78 79

static inline void *symbol__priv(struct symbol *self)
{
80
	return ((void *)self) - symbol_conf.priv_size;
81 82
}

83 84 85 86 87 88
struct ref_reloc_sym {
	const char	*name;
	u64		addr;
	u64		unrelocated_addr;
};

89 90 91 92 93 94
struct addr_location {
	struct thread *thread;
	struct map    *map;
	struct symbol *sym;
	u64	      addr;
	char	      level;
95
	bool	      filtered;
96 97
};

98 99
struct dso {
	struct list_head node;
100
	struct rb_root	 symbols[MAP__NR_TYPES];
101
	struct rb_root	 symbol_names[MAP__NR_TYPES];
102 103 104
	u8		 adjust_symbols:1;
	u8		 slen_calculated:1;
	u8		 has_build_id:1;
105
	u8		 kernel:1;
106
	u8		 hit:1;
107
	unsigned char	 origin;
108
	u8		 sorted_by_name;
109
	u8		 loaded;
110
	u8		 build_id[BUILD_ID_SIZE];
111
	u16		 long_name_len;
112 113
	const char	 *short_name;
	char	 	 *long_name;
114 115 116
	char		 name[0];
};

117
struct dso *dso__new(const char *name);
118
struct dso *dso__new_kernel(const char *name);
119 120
void dso__delete(struct dso *self);

121
bool dso__loaded(const struct dso *self, enum map_type type);
122 123 124
bool dso__sorted_by_name(const struct dso *self, enum map_type type);

void dso__sort_by_name(struct dso *self, enum map_type type);
125

126 127 128 129 130 131 132 133 134
extern struct list_head dsos__user, dsos__kernel;

struct dso *__dsos__findnew(struct list_head *head, const char *name);

static inline struct dso *dsos__findnew(const char *name)
{
	return __dsos__findnew(&dsos__user, name);
}

135
int dso__load(struct dso *self, struct map *map, symbol_filter_t filter);
136
int dso__load_vmlinux_path(struct dso *self, struct map *map,
137 138 139
			   symbol_filter_t filter);
int dso__load_kallsyms(struct dso *self, const char *filename, struct map *map,
		       symbol_filter_t filter);
140
void dsos__fprintf(FILE *fp);
141
size_t dsos__fprintf_buildid(FILE *fp, bool with_hits);
142

143
size_t dso__fprintf_buildid(struct dso *self, FILE *fp);
144
size_t dso__fprintf(struct dso *self, enum map_type type, FILE *fp);
145
char dso__symtab_origin(const struct dso *self);
146
void dso__set_long_name(struct dso *self, char *name);
147
void dso__set_build_id(struct dso *self, void *build_id);
148
void dso__read_running_kernel_build_id(struct dso *self);
149
struct symbol *dso__find_symbol(struct dso *self, enum map_type type, u64 addr);
150 151
struct symbol *dso__find_symbol_by_name(struct dso *self, enum map_type type,
					const char *name);
152

153
int filename__read_build_id(const char *filename, void *bf, size_t size);
154
int sysfs__read_build_id(const char *filename, void *bf, size_t size);
155
bool dsos__read_build_ids(void);
156
int build_id__sprintf(const u8 *self, int len, char *bf);
157 158 159
int kallsyms__parse(const char *filename, void *arg,
		    int (*process_symbol)(void *arg, const char *name,
					  char type, u64 start));
160

161
int symbol__init(void);
162 163
bool symbol_type__is_a(char symbol_type, enum map_type map_type);

164
extern struct dso *vdso;
165
#endif /* __PERF_SYMBOL */