build-id.h 1.4 KB
Newer Older
1 2 3
#ifndef PERF_BUILD_ID_H_
#define PERF_BUILD_ID_H_ 1

4 5
#define BUILD_ID_SIZE	20
#define SBUILD_ID_SIZE	(BUILD_ID_SIZE * 2 + 1)
6 7

#include "tool.h"
8
#include "strlist.h"
B
Borislav Petkov 已提交
9
#include <linux/types.h>
10

11
extern struct perf_tool build_id__mark_dso_hit_ops;
12
struct dso;
13

14
int build_id__sprintf(const u8 *build_id, int len, char *bf);
15 16 17
int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id);
int filename__sprintf_build_id(const char *pathname, char *sbuild_id);

18
char *dso__build_id_filename(const struct dso *dso, char *bf, size_t size);
19
bool dso__build_id_is_kmod(const struct dso *dso, char *bf, size_t size);
20

21 22 23
int build_id__mark_dso_hit(struct perf_tool *tool, union perf_event *event,
			   struct perf_sample *sample, struct perf_evsel *evsel,
			   struct machine *machine);
24 25 26 27 28 29 30

int dsos__hit_all(struct perf_session *session);

bool perf_session__read_build_ids(struct perf_session *session, bool with_hits);
int perf_session__write_buildid_table(struct perf_session *session, int fd);
int perf_session__cache_build_ids(struct perf_session *session);

31 32
int build_id_cache__list_build_ids(const char *pathname,
				   struct strlist **result);
33
bool build_id_cache__cached(const char *sbuild_id);
34
int build_id_cache__add_s(const char *sbuild_id,
35
			  const char *name, bool is_kallsyms, bool is_vdso);
36
int build_id_cache__remove_s(const char *sbuild_id);
37
void disable_buildid_cache(void);
38

39
#endif