]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/util/map.h
Merge commit 'v2.6.35' into perf/core
[mirror_ubuntu-artful-kernel.git] / tools / perf / util / map.h
CommitLineData
4a58e611
ACM
1#ifndef __PERF_MAP_H
2#define __PERF_MAP_H
3
4#include <linux/compiler.h>
5#include <linux/list.h>
6#include <linux/rbtree.h>
4b8cf846 7#include <stdio.h>
23346f21 8#include <stdbool.h>
4b8cf846 9#include "types.h"
4a58e611
ACM
10
11enum map_type {
12 MAP__FUNCTION = 0,
13 MAP__VARIABLE,
14};
15
16#define MAP__NR_TYPES (MAP__VARIABLE + 1)
17
3846df2e
ACM
18extern const char *map_type__name[MAP__NR_TYPES];
19
4a58e611 20struct dso;
9de89fe7
ACM
21struct ref_reloc_sym;
22struct map_groups;
23346f21 23struct machine;
4a58e611
ACM
24
25struct map {
26 union {
27 struct rb_node rb_node;
28 struct list_head node;
29 };
30 u64 start;
31 u64 end;
32 enum map_type type;
5c0541d5 33 u32 priv;
4a58e611 34 u64 pgoff;
7a2b6209
KS
35
36 /* ip -> dso rip */
4a58e611 37 u64 (*map_ip)(struct map *, u64);
7a2b6209 38 /* dso rip -> ip */
4a58e611 39 u64 (*unmap_ip)(struct map *, u64);
7a2b6209 40
4a58e611 41 struct dso *dso;
a1645ce1 42 struct map_groups *groups;
4a58e611
ACM
43};
44
9de89fe7
ACM
45struct kmap {
46 struct ref_reloc_sym *ref_reloc_sym;
47 struct map_groups *kmaps;
48};
49
a1645ce1 50struct map_groups {
23346f21
ACM
51 struct rb_root maps[MAP__NR_TYPES];
52 struct list_head removed_maps[MAP__NR_TYPES];
53 struct machine *machine;
a1645ce1
ZY
54};
55
23346f21 56/* Native host kernel uses -1 as pid index in machine */
a1645ce1
ZY
57#define HOST_KERNEL_ID (-1)
58#define DEFAULT_GUEST_KERNEL_ID (0)
59
23346f21
ACM
60struct machine {
61 struct rb_node rb_node;
62 pid_t pid;
63 char *root_dir;
64 struct list_head user_dsos;
65 struct list_head kernel_dsos;
a1645ce1 66 struct map_groups kmaps;
23346f21 67 struct map *vmlinux_maps[MAP__NR_TYPES];
a1645ce1
ZY
68};
69
5c0541d5
ACM
70static inline
71struct map *machine__kernel_map(struct machine *self, enum map_type type)
72{
73 return self->vmlinux_maps[type];
74}
75
9de89fe7
ACM
76static inline struct kmap *map__kmap(struct map *self)
77{
78 return (struct kmap *)(self + 1);
79}
80
4a58e611
ACM
81static inline u64 map__map_ip(struct map *map, u64 ip)
82{
83 return ip - map->start + map->pgoff;
84}
85
86static inline u64 map__unmap_ip(struct map *map, u64 ip)
87{
88 return ip + map->start - map->pgoff;
89}
90
91static inline u64 identity__map_ip(struct map *map __used, u64 ip)
92{
93 return ip;
94}
95
7a2b6209 96
ee11b90b 97/* rip/ip <-> addr suitable for passing to `objdump --start-address=` */
7a2b6209 98u64 map__rip_2objdump(struct map *map, u64 rip);
ee11b90b 99u64 map__objdump_2ip(struct map *map, u64 addr);
7a2b6209 100
4a58e611 101struct symbol;
4a58e611
ACM
102
103typedef int (*symbol_filter_t)(struct map *map, struct symbol *sym);
104
105void map__init(struct map *self, enum map_type type,
106 u64 start, u64 end, u64 pgoff, struct dso *dso);
a1645ce1
ZY
107struct map *map__new(struct list_head *dsos__list, u64 start, u64 len,
108 u64 pgoff, u32 pid, char *filename,
361d1346 109 enum map_type type);
4a58e611
ACM
110void map__delete(struct map *self);
111struct map *map__clone(struct map *self);
112int map__overlap(struct map *l, struct map *r);
113size_t map__fprintf(struct map *self, FILE *fp);
114
9de89fe7
ACM
115int map__load(struct map *self, symbol_filter_t filter);
116struct symbol *map__find_symbol(struct map *self,
4a58e611
ACM
117 u64 addr, symbol_filter_t filter);
118struct symbol *map__find_symbol_by_name(struct map *self, const char *name,
4a58e611
ACM
119 symbol_filter_t filter);
120void map__fixup_start(struct map *self);
121void map__fixup_end(struct map *self);
122
9de89fe7
ACM
123void map__reloc_vmlinux(struct map *self);
124
4b8cf846 125size_t __map_groups__fprintf_maps(struct map_groups *self,
c6e718ff 126 enum map_type type, int verbose, FILE *fp);
4b8cf846
ACM
127void maps__insert(struct rb_root *maps, struct map *map);
128struct map *maps__find(struct rb_root *maps, u64 addr);
129void map_groups__init(struct map_groups *self);
591765fd 130void map_groups__exit(struct map_groups *self);
c6e718ff
ACM
131int map_groups__clone(struct map_groups *self,
132 struct map_groups *parent, enum map_type type);
133size_t map_groups__fprintf(struct map_groups *self, int verbose, FILE *fp);
134size_t map_groups__fprintf_maps(struct map_groups *self, int verbose, FILE *fp);
4b8cf846 135
23346f21
ACM
136typedef void (*machine__process_t)(struct machine *self, void *data);
137
138void machines__process(struct rb_root *self, machine__process_t process, void *data);
139struct machine *machines__add(struct rb_root *self, pid_t pid,
140 const char *root_dir);
141struct machine *machines__find_host(struct rb_root *self);
142struct machine *machines__find(struct rb_root *self, pid_t pid);
143struct machine *machines__findnew(struct rb_root *self, pid_t pid);
48ea8f54 144char *machine__mmap_name(struct machine *self, char *bf, size_t size);
d28c6223 145int machine__init(struct machine *self, const char *root_dir, pid_t pid);
d65a458b 146void machine__exit(struct machine *self);
a1645ce1
ZY
147
148/*
149 * Default guest kernel is defined by parameter --guestkallsyms
150 * and --guestmodules
151 */
23346f21 152static inline bool machine__is_default_guest(struct machine *self)
a1645ce1 153{
23346f21 154 return self ? self->pid == DEFAULT_GUEST_KERNEL_ID : false;
a1645ce1
ZY
155}
156
23346f21 157static inline bool machine__is_host(struct machine *self)
a1645ce1 158{
23346f21 159 return self ? self->pid == HOST_KERNEL_ID : false;
a1645ce1
ZY
160}
161
4b8cf846
ACM
162static inline void map_groups__insert(struct map_groups *self, struct map *map)
163{
a1645ce1
ZY
164 maps__insert(&self->maps[map->type], map);
165 map->groups = self;
4b8cf846
ACM
166}
167
168static inline struct map *map_groups__find(struct map_groups *self,
169 enum map_type type, u64 addr)
170{
171 return maps__find(&self->maps[type], addr);
172}
173
174struct symbol *map_groups__find_symbol(struct map_groups *self,
175 enum map_type type, u64 addr,
7e5e1b14 176 struct map **mapp,
4b8cf846
ACM
177 symbol_filter_t filter);
178
7e5e1b14
ACM
179struct symbol *map_groups__find_symbol_by_name(struct map_groups *self,
180 enum map_type type,
181 const char *name,
182 struct map **mapp,
183 symbol_filter_t filter);
184
5c0541d5
ACM
185static inline
186struct symbol *machine__find_kernel_symbol(struct machine *self,
187 enum map_type type, u64 addr,
188 struct map **mapp,
189 symbol_filter_t filter)
190{
191 return map_groups__find_symbol(&self->kmaps, type, addr, mapp, filter);
192}
193
194static inline
195struct symbol *machine__find_kernel_function(struct machine *self, u64 addr,
196 struct map **mapp,
197 symbol_filter_t filter)
7e5e1b14 198{
5c0541d5 199 return machine__find_kernel_symbol(self, MAP__FUNCTION, addr, mapp, filter);
7e5e1b14
ACM
200}
201
202static inline
203struct symbol *map_groups__find_function_by_name(struct map_groups *self,
204 const char *name, struct map **mapp,
205 symbol_filter_t filter)
4b8cf846 206{
7e5e1b14 207 return map_groups__find_symbol_by_name(self, MAP__FUNCTION, name, mapp, filter);
4b8cf846
ACM
208}
209
c6e718ff
ACM
210int map_groups__fixup_overlappings(struct map_groups *self, struct map *map,
211 int verbose, FILE *fp);
212
4b8cf846
ACM
213struct map *map_groups__find_by_name(struct map_groups *self,
214 enum map_type type, const char *name);
d28c6223 215struct map *machine__new_module(struct machine *self, u64 start, const char *filename);
a1645ce1 216
c6e718ff 217void map_groups__flush(struct map_groups *self);
4b8cf846 218
4a58e611 219#endif /* __PERF_MAP_H */