Merge remote-tracking branch 'asoc/topic/cs42xx8' into asoc-next
[linux-2.6-block.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;
743eb868 21struct ip_callchain;
9de89fe7
ACM
22struct ref_reloc_sym;
23struct map_groups;
23346f21 24struct machine;
743eb868 25struct perf_evsel;
4a58e611
ACM
26
27struct map {
28 union {
29 struct rb_node rb_node;
30 struct list_head node;
31 };
32 u64 start;
33 u64 end;
0a1eae39
ACM
34 u8 /* enum map_type */ type;
35 bool referenced;
31d68e7b 36 bool erange_warned;
5c0541d5 37 u32 priv;
4a58e611 38 u64 pgoff;
9176753d 39 u64 reloc;
5c5e854b
SE
40 u32 maj, min; /* only valid for MMAP2 record */
41 u64 ino; /* only valid for MMAP2 record */
42 u64 ino_generation;/* only valid for MMAP2 record */
7a2b6209
KS
43
44 /* ip -> dso rip */
4a58e611 45 u64 (*map_ip)(struct map *, u64);
7a2b6209 46 /* dso rip -> ip */
4a58e611 47 u64 (*unmap_ip)(struct map *, u64);
7a2b6209 48
4a58e611 49 struct dso *dso;
a1645ce1 50 struct map_groups *groups;
4a58e611
ACM
51};
52
9de89fe7
ACM
53struct kmap {
54 struct ref_reloc_sym *ref_reloc_sym;
55 struct map_groups *kmaps;
56};
57
a1645ce1 58struct map_groups {
23346f21
ACM
59 struct rb_root maps[MAP__NR_TYPES];
60 struct list_head removed_maps[MAP__NR_TYPES];
61 struct machine *machine;
a1645ce1
ZY
62};
63
237a7e04 64static inline struct kmap *map__kmap(struct map *map)
9de89fe7 65{
237a7e04 66 return (struct kmap *)(map + 1);
9de89fe7
ACM
67}
68
4a58e611
ACM
69static inline u64 map__map_ip(struct map *map, u64 ip)
70{
71 return ip - map->start + map->pgoff;
72}
73
74static inline u64 map__unmap_ip(struct map *map, u64 ip)
75{
76 return ip + map->start - map->pgoff;
77}
78
1d037ca1 79static inline u64 identity__map_ip(struct map *map __maybe_unused, u64 ip)
4a58e611
ACM
80{
81 return ip;
82}
83
7a2b6209 84
ee11b90b 85/* rip/ip <-> addr suitable for passing to `objdump --start-address=` */
7a2b6209 86u64 map__rip_2objdump(struct map *map, u64 rip);
7a2b6209 87
1d5077bd
AH
88/* objdump address -> memory address */
89u64 map__objdump_2mem(struct map *map, u64 ip);
90
4a58e611 91struct symbol;
4a58e611
ACM
92
93typedef int (*symbol_filter_t)(struct map *map, struct symbol *sym);
94
237a7e04 95void map__init(struct map *map, enum map_type type,
4a58e611 96 u64 start, u64 end, u64 pgoff, struct dso *dso);
a1645ce1 97struct map *map__new(struct list_head *dsos__list, u64 start, u64 len,
5c5e854b
SE
98 u64 pgoff, u32 pid, u32 d_maj, u32 d_min, u64 ino,
99 u64 ino_gen,
100 char *filename, enum map_type type);
e5a1845f 101struct map *map__new2(u64 start, struct dso *dso, enum map_type type);
237a7e04
ACM
102void map__delete(struct map *map);
103struct map *map__clone(struct map *map);
4a58e611 104int map__overlap(struct map *l, struct map *r);
237a7e04 105size_t map__fprintf(struct map *map, FILE *fp);
547a92e0 106size_t map__fprintf_dsoname(struct map *map, FILE *fp);
cc8fae1d
AH
107int map__fprintf_srcline(struct map *map, u64 addr, const char *prefix,
108 FILE *fp);
4a58e611 109
237a7e04
ACM
110int map__load(struct map *map, symbol_filter_t filter);
111struct symbol *map__find_symbol(struct map *map,
4a58e611 112 u64 addr, symbol_filter_t filter);
237a7e04 113struct symbol *map__find_symbol_by_name(struct map *map, const char *name,
4a58e611 114 symbol_filter_t filter);
237a7e04
ACM
115void map__fixup_start(struct map *map);
116void map__fixup_end(struct map *map);
4a58e611 117
237a7e04 118void map__reloc_vmlinux(struct map *map);
9de89fe7 119
98dfd55d 120size_t __map_groups__fprintf_maps(struct map_groups *mg,
c6e718ff 121 enum map_type type, int verbose, FILE *fp);
4b8cf846 122void maps__insert(struct rb_root *maps, struct map *map);
98dfd55d 123void maps__remove(struct rb_root *maps, struct map *map);
4b8cf846 124struct map *maps__find(struct rb_root *maps, u64 addr);
8e0cf965
AH
125struct map *maps__first(struct rb_root *maps);
126struct map *maps__next(struct map *map);
98dfd55d
ACM
127void map_groups__init(struct map_groups *mg);
128void map_groups__exit(struct map_groups *mg);
129int map_groups__clone(struct map_groups *mg,
c6e718ff 130 struct map_groups *parent, enum map_type type);
98dfd55d
ACM
131size_t map_groups__fprintf(struct map_groups *mg, int verbose, FILE *fp);
132size_t map_groups__fprintf_maps(struct map_groups *mg, int verbose, FILE *fp);
4b8cf846 133
743eb868
ACM
134int maps__set_kallsyms_ref_reloc_sym(struct map **maps, const char *symbol_name,
135 u64 addr);
136
98dfd55d 137static inline void map_groups__insert(struct map_groups *mg, struct map *map)
4b8cf846 138{
98dfd55d
ACM
139 maps__insert(&mg->maps[map->type], map);
140 map->groups = mg;
4b8cf846
ACM
141}
142
98dfd55d 143static inline void map_groups__remove(struct map_groups *mg, struct map *map)
076c6e45 144{
98dfd55d 145 maps__remove(&mg->maps[map->type], map);
076c6e45
ACM
146}
147
98dfd55d 148static inline struct map *map_groups__find(struct map_groups *mg,
4b8cf846
ACM
149 enum map_type type, u64 addr)
150{
98dfd55d 151 return maps__find(&mg->maps[type], addr);
4b8cf846
ACM
152}
153
8e0cf965
AH
154static inline struct map *map_groups__first(struct map_groups *mg,
155 enum map_type type)
156{
157 return maps__first(&mg->maps[type]);
158}
159
160static inline struct map *map_groups__next(struct map *map)
161{
162 return maps__next(map);
163}
164
98dfd55d 165struct symbol *map_groups__find_symbol(struct map_groups *mg,
4b8cf846 166 enum map_type type, u64 addr,
7e5e1b14 167 struct map **mapp,
4b8cf846
ACM
168 symbol_filter_t filter);
169
98dfd55d 170struct symbol *map_groups__find_symbol_by_name(struct map_groups *mg,
7e5e1b14
ACM
171 enum map_type type,
172 const char *name,
173 struct map **mapp,
174 symbol_filter_t filter);
175
4e987712
ACM
176struct addr_map_symbol;
177
178int map_groups__find_ams(struct addr_map_symbol *ams, symbol_filter_t filter);
179
7e5e1b14 180static inline
98dfd55d 181struct symbol *map_groups__find_function_by_name(struct map_groups *mg,
7e5e1b14
ACM
182 const char *name, struct map **mapp,
183 symbol_filter_t filter)
4b8cf846 184{
98dfd55d 185 return map_groups__find_symbol_by_name(mg, MAP__FUNCTION, name, mapp, filter);
4b8cf846
ACM
186}
187
98dfd55d 188int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
c6e718ff
ACM
189 int verbose, FILE *fp);
190
98dfd55d 191struct map *map_groups__find_by_name(struct map_groups *mg,
4b8cf846 192 enum map_type type, const char *name);
a1645ce1 193
98dfd55d 194void map_groups__flush(struct map_groups *mg);
4b8cf846 195
4a58e611 196#endif /* __PERF_MAP_H */