4 #include <linux/atomic.h>
5 #include <linux/compiler.h>
6 #include <linux/list.h>
7 #include <linux/rbtree.h>
11 #include <linux/types.h>
18 #define MAP__NR_TYPES (MAP__VARIABLE + 1)
20 extern const char *map_type__name
[MAP__NR_TYPES
];
31 struct rb_node rb_node
;
32 struct list_head node
;
36 u8
/* enum map_type */ type
;
43 u32 maj
, min
; /* only valid for MMAP2 record */
44 u64 ino
; /* only valid for MMAP2 record */
45 u64 ino_generation
;/* only valid for MMAP2 record */
48 u64 (*map_ip
)(struct map
*, u64
);
50 u64 (*unmap_ip
)(struct map
*, u64
);
53 struct map_groups
*groups
;
58 struct ref_reloc_sym
*ref_reloc_sym
;
59 struct map_groups
*kmaps
;
63 struct rb_root entries
;
64 pthread_rwlock_t lock
;
68 struct maps maps
[MAP__NR_TYPES
];
69 struct machine
*machine
;
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
);
77 static inline struct map_groups
*map_groups__get(struct map_groups
*mg
)
80 atomic_inc(&mg
->refcnt
);
84 void map_groups__put(struct map_groups
*mg
);
86 struct kmap
*map__kmap(struct map
*map
);
87 struct map_groups
*map__kmaps(struct map
*map
);
89 static inline u64
map__map_ip(struct map
*map
, u64 ip
)
91 return ip
- map
->start
+ map
->pgoff
;
94 static inline u64
map__unmap_ip(struct map
*map
, u64 ip
)
96 return ip
+ map
->start
- map
->pgoff
;
99 static inline u64
identity__map_ip(struct map
*map __maybe_unused
, u64 ip
)
105 /* rip/ip <-> addr suitable for passing to `objdump --start-address=` */
106 u64
map__rip_2objdump(struct map
*map
, u64 rip
);
108 /* objdump address -> memory address */
109 u64
map__objdump_2mem(struct map
*map
, u64 ip
);
114 /* map__for_each_symbol - iterate over the symbols in the given map
116 * @map: the 'struct map *' in which symbols itereated
117 * @pos: the 'struct symbol *' to use as a loop cursor
118 * @n: the 'struct rb_node *' to use as a temporary storage
119 * Note: caller must ensure map->dso is not NULL (map is loaded).
121 #define map__for_each_symbol(map, pos, n) \
122 dso__for_each_symbol(map->dso, pos, n, map->type)
124 /* map__for_each_symbol_with_name - iterate over the symbols in the given map
125 * that have the given name
127 * @map: the 'struct map *' in which symbols itereated
128 * @sym_name: the symbol name
129 * @pos: the 'struct symbol *' to use as a loop cursor
130 * @filter: to use when loading the DSO
132 #define __map__for_each_symbol_by_name(map, sym_name, pos, filter) \
133 for (pos = map__find_symbol_by_name(map, sym_name, filter); \
134 pos && arch__compare_symbol_names(pos->name, sym_name) == 0; \
135 pos = symbol__next_by_name(pos))
137 #define map__for_each_symbol_by_name(map, sym_name, pos) \
138 __map__for_each_symbol_by_name(map, sym_name, (pos), NULL)
140 typedef int (*symbol_filter_t
)(struct map
*map
, struct symbol
*sym
);
142 int arch__compare_symbol_names(const char *namea
, const char *nameb
);
143 void map__init(struct map
*map
, enum map_type type
,
144 u64 start
, u64 end
, u64 pgoff
, struct dso
*dso
);
145 struct map
*map__new(struct machine
*machine
, u64 start
, u64 len
,
146 u64 pgoff
, u32 pid
, u32 d_maj
, u32 d_min
, u64 ino
,
147 u64 ino_gen
, u32 prot
, u32 flags
,
148 char *filename
, enum map_type type
, struct thread
*thread
);
149 struct map
*map__new2(u64 start
, struct dso
*dso
, enum map_type type
);
150 void map__delete(struct map
*map
);
151 struct map
*map__clone(struct map
*map
);
153 static inline struct map
*map__get(struct map
*map
)
156 atomic_inc(&map
->refcnt
);
160 void map__put(struct map
*map
);
162 static inline void __map__zput(struct map
**map
)
168 #define map__zput(map) __map__zput(&map)
170 int map__overlap(struct map
*l
, struct map
*r
);
171 size_t map__fprintf(struct map
*map
, FILE *fp
);
172 size_t map__fprintf_dsoname(struct map
*map
, FILE *fp
);
173 int map__fprintf_srcline(struct map
*map
, u64 addr
, const char *prefix
,
176 int map__load(struct map
*map
, symbol_filter_t filter
);
177 struct symbol
*map__find_symbol(struct map
*map
,
178 u64 addr
, symbol_filter_t filter
);
179 struct symbol
*map__find_symbol_by_name(struct map
*map
, const char *name
,
180 symbol_filter_t filter
);
181 void map__fixup_start(struct map
*map
);
182 void map__fixup_end(struct map
*map
);
184 void map__reloc_vmlinux(struct map
*map
);
186 size_t __map_groups__fprintf_maps(struct map_groups
*mg
, enum map_type type
,
188 void maps__insert(struct maps
*maps
, struct map
*map
);
189 void maps__remove(struct maps
*maps
, struct map
*map
);
190 struct map
*maps__find(struct maps
*maps
, u64 addr
);
191 struct map
*maps__first(struct maps
*maps
);
192 struct map
*map__next(struct map
*map
);
193 struct symbol
*maps__find_symbol_by_name(struct maps
*maps
, const char *name
,
194 struct map
**mapp
, symbol_filter_t filter
);
195 void map_groups__init(struct map_groups
*mg
, struct machine
*machine
);
196 void map_groups__exit(struct map_groups
*mg
);
197 int map_groups__clone(struct map_groups
*mg
,
198 struct map_groups
*parent
, enum map_type type
);
199 size_t map_groups__fprintf(struct map_groups
*mg
, FILE *fp
);
201 int maps__set_kallsyms_ref_reloc_sym(struct map
**maps
, const char *symbol_name
,
204 static inline void map_groups__insert(struct map_groups
*mg
, struct map
*map
)
206 maps__insert(&mg
->maps
[map
->type
], map
);
210 static inline void map_groups__remove(struct map_groups
*mg
, struct map
*map
)
212 maps__remove(&mg
->maps
[map
->type
], map
);
215 static inline struct map
*map_groups__find(struct map_groups
*mg
,
216 enum map_type type
, u64 addr
)
218 return maps__find(&mg
->maps
[type
], addr
);
221 static inline struct map
*map_groups__first(struct map_groups
*mg
,
224 return maps__first(&mg
->maps
[type
]);
227 static inline struct map
*map_groups__next(struct map
*map
)
229 return map__next(map
);
232 struct symbol
*map_groups__find_symbol(struct map_groups
*mg
,
233 enum map_type type
, u64 addr
,
235 symbol_filter_t filter
);
237 struct symbol
*map_groups__find_symbol_by_name(struct map_groups
*mg
,
241 symbol_filter_t filter
);
243 struct addr_map_symbol
;
245 int map_groups__find_ams(struct addr_map_symbol
*ams
, symbol_filter_t filter
);
248 struct symbol
*map_groups__find_function_by_name(struct map_groups
*mg
,
249 const char *name
, struct map
**mapp
,
250 symbol_filter_t filter
)
252 return map_groups__find_symbol_by_name(mg
, MAP__FUNCTION
, name
, mapp
, filter
);
255 int map_groups__fixup_overlappings(struct map_groups
*mg
, struct map
*map
,
258 struct map
*map_groups__find_by_name(struct map_groups
*mg
,
259 enum map_type type
, const char *name
);
261 bool __map__is_kernel(const struct map
*map
);
263 static inline bool __map__is_kmodule(const struct map
*map
)
265 return !__map__is_kernel(map
);
268 #endif /* __PERF_MAP_H */