map.h 6.9 KB
Newer Older
1 2 3
#ifndef __PERF_MAP_H
#define __PERF_MAP_H

4
#include <linux/refcount.h>
5 6 7
#include <linux/compiler.h>
#include <linux/list.h>
#include <linux/rbtree.h>
8
#include <pthread.h>
9
#include <stdio.h>
10
#include <stdbool.h>
B
Borislav Petkov 已提交
11
#include <linux/types.h>
12 13 14 15 16 17 18 19

enum map_type {
	MAP__FUNCTION = 0,
	MAP__VARIABLE,
};

#define MAP__NR_TYPES (MAP__VARIABLE + 1)

20 21
extern const char *map_type__name[MAP__NR_TYPES];

22
struct dso;
23
struct ip_callchain;
24 25
struct ref_reloc_sym;
struct map_groups;
26
struct machine;
27
struct perf_evsel;
28 29 30 31 32 33 34 35

struct map {
	union {
		struct rb_node	rb_node;
		struct list_head node;
	};
	u64			start;
	u64			end;
36
	u8 /* enum map_type */	type;
37
	bool			erange_warned;
38
	u32			priv;
39 40
	u32			prot;
	u32			flags;
41
	u64			pgoff;
42
	u64			reloc;
43 44 45
	u32			maj, min; /* only valid for MMAP2 record */
	u64			ino;      /* only valid for MMAP2 record */
	u64			ino_generation;/* only valid for MMAP2 record */
46 47

	/* ip -> dso rip */
48
	u64			(*map_ip)(struct map *, u64);
49
	/* dso rip -> ip */
50
	u64			(*unmap_ip)(struct map *, u64);
51

52
	struct dso		*dso;
53
	struct map_groups	*groups;
54
	refcount_t		refcnt;
55 56
};

57 58 59 60 61
struct kmap {
	struct ref_reloc_sym	*ref_reloc_sym;
	struct map_groups	*kmaps;
};

62 63
struct maps {
	struct rb_root	 entries;
64
	pthread_rwlock_t lock;
65 66
};

67
struct map_groups {
68
	struct maps	 maps[MAP__NR_TYPES];
69
	struct machine	 *machine;
70
	refcount_t	 refcnt;
71 72
};

73
struct map_groups *map_groups__new(struct machine *machine);
74
void map_groups__delete(struct map_groups *mg);
75
bool map_groups__empty(struct map_groups *mg);
76

77 78
static inline struct map_groups *map_groups__get(struct map_groups *mg)
{
79
	if (mg)
80
		refcount_inc(&mg->refcnt);
81 82 83 84 85
	return mg;
}

void map_groups__put(struct map_groups *mg);

86 87
struct kmap *map__kmap(struct map *map);
struct map_groups *map__kmaps(struct map *map);
88

89 90 91 92 93 94 95 96 97 98
static inline u64 map__map_ip(struct map *map, u64 ip)
{
	return ip - map->start + map->pgoff;
}

static inline u64 map__unmap_ip(struct map *map, u64 ip)
{
	return ip + map->start - map->pgoff;
}

99
static inline u64 identity__map_ip(struct map *map __maybe_unused, u64 ip)
100 101 102 103
{
	return ip;
}

104

105
/* rip/ip <-> addr suitable for passing to `objdump --start-address=` */
106 107
u64 map__rip_2objdump(struct map *map, u64 rip);

108 109 110
/* objdump address -> memory address */
u64 map__objdump_2mem(struct map *map, u64 ip);

111
struct symbol;
112
struct thread;
113

114 115 116 117 118 119 120 121 122 123
/* map__for_each_symbol - iterate over the symbols in the given map
 *
 * @map: the 'struct map *' in which symbols itereated
 * @pos: the 'struct symbol *' to use as a loop cursor
 * @n: the 'struct rb_node *' to use as a temporary storage
 * Note: caller must ensure map->dso is not NULL (map is loaded).
 */
#define map__for_each_symbol(map, pos, n)	\
	dso__for_each_symbol(map->dso, pos, n, map->type)

124 125 126 127 128 129 130
/* map__for_each_symbol_with_name - iterate over the symbols in the given map
 *                                  that have the given name
 *
 * @map: the 'struct map *' in which symbols itereated
 * @sym_name: the symbol name
 * @pos: the 'struct symbol *' to use as a loop cursor
 */
131 132
#define __map__for_each_symbol_by_name(map, sym_name, pos)	\
	for (pos = map__find_symbol_by_name(map, sym_name);	\
133 134 135
	     pos &&						\
	     !symbol__match_symbol_name(pos->name, sym_name,	\
					SYMBOL_TAG_INCLUDE__DEFAULT_ONLY); \
136 137 138
	     pos = symbol__next_by_name(pos))

#define map__for_each_symbol_by_name(map, sym_name, pos)		\
139
	__map__for_each_symbol_by_name(map, sym_name, (pos))
140

141
void map__init(struct map *map, enum map_type type,
142
	       u64 start, u64 end, u64 pgoff, struct dso *dso);
143
struct map *map__new(struct machine *machine, u64 start, u64 len,
144
		     u64 pgoff, u32 d_maj, u32 d_min, u64 ino,
145
		     u64 ino_gen, u32 prot, u32 flags,
146
		     char *filename, enum map_type type, struct thread *thread);
147
struct map *map__new2(u64 start, struct dso *dso, enum map_type type);
148 149
void map__delete(struct map *map);
struct map *map__clone(struct map *map);
150 151 152 153

static inline struct map *map__get(struct map *map)
{
	if (map)
154
		refcount_inc(&map->refcnt);
155 156 157 158 159
	return map;
}

void map__put(struct map *map);

160 161 162 163 164 165 166 167
static inline void __map__zput(struct map **map)
{
	map__put(*map);
	*map = NULL;
}

#define map__zput(map) __map__zput(&map)

168
int map__overlap(struct map *l, struct map *r);
169
size_t map__fprintf(struct map *map, FILE *fp);
170
size_t map__fprintf_dsoname(struct map *map, FILE *fp);
171 172
int map__fprintf_srcline(struct map *map, u64 addr, const char *prefix,
			 FILE *fp);
173

174 175 176
int map__load(struct map *map);
struct symbol *map__find_symbol(struct map *map, u64 addr);
struct symbol *map__find_symbol_by_name(struct map *map, const char *name);
177 178
void map__fixup_start(struct map *map);
void map__fixup_end(struct map *map);
179

180
void map__reloc_vmlinux(struct map *map);
181

182 183
size_t __map_groups__fprintf_maps(struct map_groups *mg, enum map_type type,
				  FILE *fp);
184 185 186 187
void maps__insert(struct maps *maps, struct map *map);
void maps__remove(struct maps *maps, struct map *map);
struct map *maps__find(struct maps *maps, u64 addr);
struct map *maps__first(struct maps *maps);
188
struct map *map__next(struct map *map);
189
struct symbol *maps__find_symbol_by_name(struct maps *maps, const char *name,
190
                                         struct map **mapp);
191
void map_groups__init(struct map_groups *mg, struct machine *machine);
192
void map_groups__exit(struct map_groups *mg);
193
int map_groups__clone(struct thread *thread,
194
		      struct map_groups *parent, enum map_type type);
195
size_t map_groups__fprintf(struct map_groups *mg, FILE *fp);
196

197 198 199
int maps__set_kallsyms_ref_reloc_sym(struct map **maps, const char *symbol_name,
				     u64 addr);

200
static inline void map_groups__insert(struct map_groups *mg, struct map *map)
201
{
202 203
	maps__insert(&mg->maps[map->type], map);
	map->groups = mg;
204 205
}

206
static inline void map_groups__remove(struct map_groups *mg, struct map *map)
207
{
208
	maps__remove(&mg->maps[map->type], map);
209 210
}

211
static inline struct map *map_groups__find(struct map_groups *mg,
212 213
					   enum map_type type, u64 addr)
{
214
	return maps__find(&mg->maps[type], addr);
215 216
}

217 218 219 220 221 222 223 224
static inline struct map *map_groups__first(struct map_groups *mg,
					    enum map_type type)
{
	return maps__first(&mg->maps[type]);
}

static inline struct map *map_groups__next(struct map *map)
{
225
	return map__next(map);
226 227
}

228
struct symbol *map_groups__find_symbol(struct map_groups *mg,
229
				       enum map_type type, u64 addr,
230
				       struct map **mapp);
231

232
struct symbol *map_groups__find_symbol_by_name(struct map_groups *mg,
233 234
					       enum map_type type,
					       const char *name,
235
					       struct map **mapp);
236

237 238
struct addr_map_symbol;

239
int map_groups__find_ams(struct addr_map_symbol *ams);
240

241
static inline
242
struct symbol *map_groups__find_function_by_name(struct map_groups *mg,
243
						 const char *name, struct map **mapp)
244
{
245
	return map_groups__find_symbol_by_name(mg, MAP__FUNCTION, name, mapp);
246 247
}

248
int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
249
				   FILE *fp);
250

251
struct map *map_groups__find_by_name(struct map_groups *mg,
252
				     enum map_type type, const char *name);
253

254 255 256 257 258 259 260
bool __map__is_kernel(const struct map *map);

static inline bool __map__is_kmodule(const struct map *map)
{
	return !__map__is_kernel(map);
}

261
#endif /* __PERF_MAP_H */