Merge tag 'powerpc-5.11-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux/fpc-iii.git] / tools / perf / arch / x86 / include / arch-tests.h
blob6a54b94f1c25b4c2798861e9662e0c957b4d5ce9
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef ARCH_TESTS_H
3 #define ARCH_TESTS_H
5 #include <linux/compiler.h>
6 struct test;
8 /* Tests */
9 int test__rdpmc(struct test *test __maybe_unused, int subtest);
10 int test__insn_x86(struct test *test __maybe_unused, int subtest);
11 int test__intel_pt_pkt_decoder(struct test *test, int subtest);
12 int test__bp_modify(struct test *test, int subtest);
14 #ifdef HAVE_DWARF_UNWIND_SUPPORT
15 struct thread;
16 struct perf_sample;
17 int test__arch_unwind_sample(struct perf_sample *sample,
18 struct thread *thread);
19 #endif
21 extern struct test arch_tests[];
23 #endif