2010-02-04 02:52:04 +08:00
|
|
|
#ifndef PERF_BUILD_ID_H_
|
|
|
|
#define PERF_BUILD_ID_H_ 1
|
|
|
|
|
2015-07-15 17:14:28 +08:00
|
|
|
#define BUILD_ID_SIZE 20
|
|
|
|
#define SBUILD_ID_SIZE (BUILD_ID_SIZE * 2 + 1)
|
2012-10-28 05:18:29 +08:00
|
|
|
|
|
|
|
#include "tool.h"
|
2015-02-27 12:50:26 +08:00
|
|
|
#include "strlist.h"
|
2014-04-26 03:31:02 +08:00
|
|
|
#include <linux/types.h>
|
2010-02-04 02:52:04 +08:00
|
|
|
|
2011-11-28 18:30:20 +08:00
|
|
|
extern struct perf_tool build_id__mark_dso_hit_ops;
|
2012-10-28 05:18:29 +08:00
|
|
|
struct dso;
|
2010-02-04 02:52:04 +08:00
|
|
|
|
2012-10-28 05:18:28 +08:00
|
|
|
int build_id__sprintf(const u8 *build_id, int len, char *bf);
|
2015-08-15 19:42:59 +08:00
|
|
|
int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id);
|
|
|
|
int filename__sprintf_build_id(const char *pathname, char *sbuild_id);
|
2016-05-28 23:15:37 +08:00
|
|
|
char *build_id_cache__kallsyms_path(const char *sbuild_id, char *bf,
|
|
|
|
size_t size);
|
2015-08-15 19:42:59 +08:00
|
|
|
|
2013-12-11 02:46:29 +08:00
|
|
|
char *dso__build_id_filename(const struct dso *dso, char *bf, size_t size);
|
2016-02-05 22:01:27 +08:00
|
|
|
bool dso__build_id_is_kmod(const struct dso *dso, char *bf, size_t size);
|
2010-05-20 23:15:33 +08:00
|
|
|
|
2012-08-07 20:56:05 +08:00
|
|
|
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);
|
2014-11-04 09:14:30 +08:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2016-06-08 17:29:30 +08:00
|
|
|
char *build_id_cache__cachedir(const char *sbuild_id, const char *name,
|
|
|
|
bool is_kallsyms, bool is_vdso);
|
2015-02-27 12:50:26 +08:00
|
|
|
int build_id_cache__list_build_ids(const char *pathname,
|
|
|
|
struct strlist **result);
|
2015-02-26 14:54:40 +08:00
|
|
|
bool build_id_cache__cached(const char *sbuild_id);
|
2015-02-10 17:18:51 +08:00
|
|
|
int build_id_cache__add_s(const char *sbuild_id,
|
2014-11-04 09:14:30 +08:00
|
|
|
const char *name, bool is_kallsyms, bool is_vdso);
|
2015-02-10 17:18:51 +08:00
|
|
|
int build_id_cache__remove_s(const char *sbuild_id);
|
2014-11-07 21:57:56 +08:00
|
|
|
void disable_buildid_cache(void);
|
2014-11-04 09:14:30 +08:00
|
|
|
|
2010-02-04 02:52:04 +08:00
|
|
|
#endif
|