2010-02-04 02:52:04 +08:00
|
|
|
#ifndef PERF_BUILD_ID_H_
|
|
|
|
#define PERF_BUILD_ID_H_ 1
|
|
|
|
|
2012-10-28 05:18:29 +08:00
|
|
|
#define BUILD_ID_SIZE 20
|
|
|
|
|
|
|
|
#include "tool.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);
|
2013-12-11 02:46:29 +08:00
|
|
|
char *dso__build_id_filename(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);
|
|
|
|
|
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
|