perf symbols: Cleanup the code flow of dso__find_kallsyms
[linux-2.6-block.git] / tools / perf / util / build-id.h
CommitLineData
7b2567c1
ACM
1#ifndef PERF_BUILD_ID_H_
2#define PERF_BUILD_ID_H_ 1
3
d77fac7f
MH
4#define BUILD_ID_SIZE 20
5#define SBUILD_ID_SIZE (BUILD_ID_SIZE * 2 + 1)
4383db88
JO
6
7#include "tool.h"
8d8c8e4c 8#include "strlist.h"
d944c4ee 9#include <linux/types.h>
7b2567c1 10
45694aa7 11extern struct perf_tool build_id__mark_dso_hit_ops;
4383db88 12struct dso;
7b2567c1 13
ebb296c2 14int build_id__sprintf(const u8 *build_id, int len, char *bf);
0b5a7935
MH
15int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id);
16int filename__sprintf_build_id(const char *pathname, char *sbuild_id);
17
3344996e 18char *dso__build_id_filename(const struct dso *dso, char *bf, size_t size);
e7ee4047 19bool dso__build_id_is_kmod(const struct dso *dso, char *bf, size_t size);
b36f19d5 20
54a3cf59
AV
21int build_id__mark_dso_hit(struct perf_tool *tool, union perf_event *event,
22 struct perf_sample *sample, struct perf_evsel *evsel,
23 struct machine *machine);
e195fac8
NK
24
25int dsos__hit_all(struct perf_session *session);
26
27bool perf_session__read_build_ids(struct perf_session *session, bool with_hits);
28int perf_session__write_buildid_table(struct perf_session *session, int fd);
29int perf_session__cache_build_ids(struct perf_session *session);
30
8d8c8e4c
MH
31int build_id_cache__list_build_ids(const char *pathname,
32 struct strlist **result);
a50d11a1 33bool build_id_cache__cached(const char *sbuild_id);
e35f7362 34int build_id_cache__add_s(const char *sbuild_id,
e195fac8 35 const char *name, bool is_kallsyms, bool is_vdso);
e35f7362 36int build_id_cache__remove_s(const char *sbuild_id);
73c5d224 37void disable_buildid_cache(void);
e195fac8 38
7b2567c1 39#endif