xref: /linux/tools/perf/util/arm64-frame-pointer-unwind-support.h (revision b2128290c29902315e632ea59e0504d6bc9e9b42)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_ARM_FRAME_POINTER_UNWIND_SUPPORT_H
3 #define __PERF_ARM_FRAME_POINTER_UNWIND_SUPPORT_H
4 
5 #include <linux/types.h>
6 
7 struct perf_sample;
8 struct record_opts;
9 struct thread;
10 
11 void add_leaf_frame_caller_opts_aarch64(struct record_opts *opts);
12 u64 get_leaf_frame_caller_aarch64(struct perf_sample *sample, struct thread *thread, int user_idx);
13 
14 #endif /* __PERF_ARM_FRAME_POINTER_UNWIND_SUPPORT_H */
15