symbol.h 4.2 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 addr_location {
	struct thread *thread;
	struct map    *map;
	struct symbol *sym;
	u64	      addr;
	char	      level;
89
	bool	      filtered;
90 91
};

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

111
struct dso *dso__new(const char *name);
112
struct dso *dso__new_kernel(const char *name);
113 114
void dso__delete(struct dso *self);

115
bool dso__loaded(const struct dso *self, enum map_type type);
116 117 118
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);
119

120 121 122 123 124 125 126 127 128
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);
}

129 130 131 132
struct perf_session;

int dso__load(struct dso *self, struct map *map, struct perf_session *session,
	      symbol_filter_t filter);
133 134
int dso__load_vmlinux_path(struct dso *self, struct map *map,
			   struct perf_session *session, symbol_filter_t filter);
135
void dsos__fprintf(FILE *fp);
136
size_t dsos__fprintf_buildid(FILE *fp, bool with_hits);
137

138
size_t dso__fprintf_buildid(struct dso *self, FILE *fp);
139
size_t dso__fprintf(struct dso *self, enum map_type type, FILE *fp);
140
char dso__symtab_origin(const struct dso *self);
141
void dso__set_long_name(struct dso *self, char *name);
142
void dso__set_build_id(struct dso *self, void *build_id);
143
void dso__read_running_kernel_build_id(struct dso *self);
144
struct symbol *dso__find_symbol(struct dso *self, enum map_type type, u64 addr);
145 146
struct symbol *dso__find_symbol_by_name(struct dso *self, enum map_type type,
					const char *name);
147

148
int filename__read_build_id(const char *filename, void *bf, size_t size);
149
int sysfs__read_build_id(const char *filename, void *bf, size_t size);
150
bool dsos__read_build_ids(void);
151
int build_id__sprintf(const u8 *self, int len, char *bf);
152 153 154
int kallsyms__parse(const char *filename, void *arg,
		    int (*process_symbol)(void *arg, const char *name,
					  char type, u64 start));
155

156
int symbol__init(void);
157 158
bool symbol_type__is_a(char symbol_type, enum map_type map_type);

159
int perf_session__create_kernel_maps(struct perf_session *self);
160

161 162
struct map *perf_session__new_module_map(struct perf_session *self, u64 start,
					 const char *filename);
163
extern struct dso *vdso;
164
#endif /* __PERF_SYMBOL */