xref: /linux/tools/perf/util/print_insn.h (revision 1e525507)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef PERF_PRINT_INSN_H
3 #define PERF_PRINT_INSN_H
4 
5 #include <stddef.h>
6 #include <stdio.h>
7 
8 struct perf_sample;
9 struct thread;
10 struct machine;
11 
12 size_t sample__fprintf_insn_asm(struct perf_sample *sample, struct thread *thread,
13 				struct machine *machine, FILE *fp);
14 size_t sample__fprintf_insn_raw(struct perf_sample *sample, FILE *fp);
15 
16 #endif /* PERF_PRINT_INSN_H */
17