symbol.h 4.6 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
void symbol__delete(struct symbol *self);

56 57
struct strlist;

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

78
extern struct symbol_conf symbol_conf;
79 80 81

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

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

91 92 93 94 95
struct map_symbol {
	struct map    *map;
	struct symbol *sym;
};

96 97 98 99 100 101
struct addr_location {
	struct thread *thread;
	struct map    *map;
	struct symbol *sym;
	u64	      addr;
	char	      level;
102
	bool	      filtered;
103 104
};

105 106
struct dso {
	struct list_head node;
107
	struct rb_root	 symbols[MAP__NR_TYPES];
108
	struct rb_root	 symbol_names[MAP__NR_TYPES];
109 110 111
	u8		 adjust_symbols:1;
	u8		 slen_calculated:1;
	u8		 has_build_id:1;
112
	u8		 kernel:1;
113
	u8		 hit:1;
114
	u8		 annotate_warned:1;
115
	unsigned char	 origin;
116
	u8		 sorted_by_name;
117
	u8		 loaded;
118
	u8		 build_id[BUILD_ID_SIZE];
119 120
	const char	 *short_name;
	char	 	 *long_name;
121 122
	u16		 long_name_len;
	u16		 short_name_len;
123 124 125
	char		 name[0];
};

126
struct dso *dso__new(const char *name);
127
struct dso *dso__new_kernel(const char *name);
128 129
void dso__delete(struct dso *self);

130
bool dso__loaded(const struct dso *self, enum map_type type);
131 132
bool dso__sorted_by_name(const struct dso *self, enum map_type type);

133 134 135 136 137
static inline void dso__set_loaded(struct dso *self, enum map_type type)
{
	self->loaded |= (1 << type);
}

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

140 141 142 143 144 145 146 147 148
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);
}

149
int dso__load(struct dso *self, struct map *map, symbol_filter_t filter);
150
int dso__load_vmlinux_path(struct dso *self, struct map *map,
151 152 153
			   symbol_filter_t filter);
int dso__load_kallsyms(struct dso *self, const char *filename, struct map *map,
		       symbol_filter_t filter);
154
void dsos__fprintf(FILE *fp);
155
size_t dsos__fprintf_buildid(FILE *fp, bool with_hits);
156

157
size_t dso__fprintf_buildid(struct dso *self, FILE *fp);
158
size_t dso__fprintf(struct dso *self, enum map_type type, FILE *fp);
159 160 161 162 163 164 165 166 167 168 169 170 171

enum dso_origin {
	DSO__ORIG_KERNEL = 0,
	DSO__ORIG_JAVA_JIT,
	DSO__ORIG_BUILD_ID_CACHE,
	DSO__ORIG_FEDORA,
	DSO__ORIG_UBUNTU,
	DSO__ORIG_BUILDID,
	DSO__ORIG_DSO,
	DSO__ORIG_KMODULE,
	DSO__ORIG_NOT_FOUND,
};

172
char dso__symtab_origin(const struct dso *self);
173
void dso__set_long_name(struct dso *self, char *name);
174
void dso__set_build_id(struct dso *self, void *build_id);
175
void dso__read_running_kernel_build_id(struct dso *self);
176
struct symbol *dso__find_symbol(struct dso *self, enum map_type type, u64 addr);
177 178
struct symbol *dso__find_symbol_by_name(struct dso *self, enum map_type type,
					const char *name);
179

180
int filename__read_build_id(const char *filename, void *bf, size_t size);
181
int sysfs__read_build_id(const char *filename, void *bf, size_t size);
182
bool dsos__read_build_ids(bool with_hits);
183
int build_id__sprintf(const u8 *self, int len, char *bf);
184 185 186
int kallsyms__parse(const char *filename, void *arg,
		    int (*process_symbol)(void *arg, const char *name,
					  char type, u64 start));
187

188
int symbol__init(void);
189 190
bool symbol_type__is_a(char symbol_type, enum map_type map_type);

191 192
size_t vmlinux_path__fprintf(FILE *fp);

193
#endif /* __PERF_SYMBOL */