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