Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __PERF_LLVM_H
3#define __PERF_LLVM_H
4
5#include <stdbool.h>
6#include <linux/types.h>
7
8struct annotate_args;
9struct dso;
10struct inline_node;
11struct symbol;
12
13int llvm__addr2line(const char *dso_name, u64 addr,
14 char **file, unsigned int *line, struct dso *dso,
15 bool unwind_inlines, struct inline_node *node,
16 struct symbol *sym);
17
18int symbol__disassemble_llvm(const char *filename, struct symbol *sym,
19 struct annotate_args *args);
20
21#endif /* __PERF_LLVM_H */