xref: /linux/tools/perf/arch/x86/include/arch-tests.h (revision c0c914eca7f251c70facc37dfebeaf176601918d)
1 #ifndef ARCH_TESTS_H
2 #define ARCH_TESTS_H
3 
4 /* Tests */
5 int test__rdpmc(int subtest);
6 int test__perf_time_to_tsc(int subtest);
7 int test__insn_x86(int subtest);
8 int test__intel_cqm_count_nmi_context(int subtest);
9 
10 #ifdef HAVE_DWARF_UNWIND_SUPPORT
11 struct thread;
12 struct perf_sample;
13 int test__arch_unwind_sample(struct perf_sample *sample,
14 			     struct thread *thread);
15 #endif
16 
17 extern struct test arch_tests[];
18 
19 #endif
20