mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-11 21:14:07 +08:00
83acca9f90
Move functions from machine and build-id to dsos. Pass 'struct dsos' rather than internal state. Rename some functions to better represent which data structure they operate on. Signed-off-by: Ian Rogers <irogers@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Anne Macedo <retpolanne@posteo.net> Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com> Cc: Ben Gainey <ben.gainey@arm.com> Cc: Changbin Du <changbin.du@huawei.com> Cc: Chengen Du <chengen.du@canonical.com> Cc: Colin Ian King <colin.i.king@gmail.com> Cc: Ilkka Koskinen <ilkka@os.amperecomputing.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: James Clark <james.clark@arm.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: K Prateek Nayak <kprateek.nayak@amd.com> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Leo Yan <leo.yan@linux.dev> Cc: Li Dong <lidong@vivo.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Markus Elfring <Markus.Elfring@web.de> Cc: Masami Hiramatsu <mhiramat@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paran Lee <p4ranlee@gmail.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Ravi Bangoria <ravi.bangoria@amd.com> Cc: Song Liu <song@kernel.org> Cc: Sun Haiyong <sunhaiyong@loongson.cn> Cc: Thomas Richter <tmricht@linux.ibm.com> Cc: Yang Jihong <yangjihong1@huawei.com> Cc: Yanteng Si <siyanteng@loongson.cn> Cc: Yicong Yang <yangyicong@hisilicon.com> Cc: zhaimingbing <zhaimingbing@cmss.chinamobile.com> Link: https://lore.kernel.org/r/20240410064214.2755936-2-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
87 lines
3.2 KiB
C
87 lines
3.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef PERF_BUILD_ID_H_
|
|
#define PERF_BUILD_ID_H_ 1
|
|
|
|
#define BUILD_ID_SIZE 20 /* SHA-1 length in bytes */
|
|
#define BUILD_ID_MIN_SIZE 16 /* MD5/UUID/GUID length in bytes */
|
|
#define SBUILD_ID_SIZE (BUILD_ID_SIZE * 2 + 1)
|
|
#define SBUILD_ID_MIN_SIZE (BUILD_ID_MIN_SIZE * 2 + 1)
|
|
|
|
#include "machine.h"
|
|
#include "tool.h"
|
|
#include <linux/types.h>
|
|
|
|
struct build_id {
|
|
u8 data[BUILD_ID_SIZE];
|
|
size_t size;
|
|
};
|
|
|
|
struct nsinfo;
|
|
|
|
extern struct perf_tool build_id__mark_dso_hit_ops;
|
|
struct dso;
|
|
struct feat_fd;
|
|
|
|
void build_id__init(struct build_id *bid, const u8 *data, size_t size);
|
|
int build_id__sprintf(const struct build_id *build_id, char *bf);
|
|
bool build_id__is_defined(const struct build_id *bid);
|
|
int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id);
|
|
int filename__sprintf_build_id(const char *pathname, char *sbuild_id);
|
|
char *build_id_cache__kallsyms_path(const char *sbuild_id, char *bf,
|
|
size_t size);
|
|
|
|
char *dso__build_id_filename(const struct dso *dso, char *bf, size_t size,
|
|
bool is_debug);
|
|
char *__dso__build_id_filename(const struct dso *dso, char *bf, size_t size,
|
|
bool is_debug, bool is_kallsyms);
|
|
|
|
int build_id__mark_dso_hit(struct perf_tool *tool, union perf_event *event,
|
|
struct perf_sample *sample, struct evsel *evsel,
|
|
struct machine *machine);
|
|
|
|
int perf_event__inject_buildid(struct perf_tool *tool, union perf_event *event,
|
|
struct perf_sample *sample, struct evsel *evsel,
|
|
struct machine *machine);
|
|
|
|
bool perf_session__read_build_ids(struct perf_session *session, bool with_hits);
|
|
int perf_session__write_buildid_table(struct perf_session *session,
|
|
struct feat_fd *fd);
|
|
int perf_session__cache_build_ids(struct perf_session *session);
|
|
int __perf_session__cache_build_ids(struct perf_session *session,
|
|
machine__dso_t fn, void *priv);
|
|
|
|
char *build_id_cache__origname(const char *sbuild_id);
|
|
char *build_id_cache__linkname(const char *sbuild_id, char *bf, size_t size);
|
|
char *build_id_cache__cachedir(const char *sbuild_id, const char *name,
|
|
struct nsinfo *nsi, bool is_kallsyms,
|
|
bool is_vdso);
|
|
|
|
struct strlist;
|
|
|
|
struct strlist *build_id_cache__list_all(bool validonly);
|
|
char *build_id_cache__complement(const char *incomplete_sbuild_id);
|
|
int build_id_cache__list_build_ids(const char *pathname, struct nsinfo *nsi,
|
|
struct strlist **result);
|
|
bool build_id_cache__cached(const char *sbuild_id);
|
|
int build_id_cache__add(const char *sbuild_id, const char *name, const char *realname,
|
|
struct nsinfo *nsi, bool is_kallsyms, bool is_vdso,
|
|
const char *proper_name, const char *root_dir);
|
|
int __build_id_cache__add_s(const char *sbuild_id,
|
|
const char *name, struct nsinfo *nsi,
|
|
bool is_kallsyms, bool is_vdso,
|
|
const char *proper_name, const char *root_dir);
|
|
static inline int build_id_cache__add_s(const char *sbuild_id,
|
|
const char *name, struct nsinfo *nsi,
|
|
bool is_kallsyms, bool is_vdso)
|
|
{
|
|
return __build_id_cache__add_s(sbuild_id, name, nsi, is_kallsyms, is_vdso, NULL, NULL);
|
|
}
|
|
int build_id_cache__remove_s(const char *sbuild_id);
|
|
|
|
extern char buildid_dir[];
|
|
|
|
void set_buildid_dir(const char *dir);
|
|
void disable_buildid_cache(void);
|
|
|
|
#endif
|