3 #include <linux/types.h>
6 #include "parse-events.h"
9 #include "thread_map.h"
12 #include "tests/tests.h"
14 #include "arch-tests.h"
16 #define CHECK__(x) { \
18 pr_debug(#x " failed!\n"); \
23 #define CHECK_NOT_NULL__(x) { \
24 while ((x) == NULL) { \
25 pr_debug(#x " failed!\n"); \
31 * test__perf_time_to_tsc - test converting perf time to TSC.
33 * This function implements a test that checks that the conversion of perf time
34 * to and from TSC is consistent with the order of events. If the test passes
35 * %0 is returned, otherwise %-1 is returned. If TSC conversion is not
36 * supported then then the test passes but " (not supported)" is printed.
38 int test__perf_time_to_tsc(int subtest __maybe_unused
)
40 struct record_opts opts
= {
41 .mmap_pages
= UINT_MAX
,
42 .user_freq
= UINT_MAX
,
43 .user_interval
= ULLONG_MAX
,
49 struct thread_map
*threads
= NULL
;
50 struct cpu_map
*cpus
= NULL
;
51 struct perf_evlist
*evlist
= NULL
;
52 struct perf_evsel
*evsel
= NULL
;
54 const char *comm1
, *comm2
;
55 struct perf_tsc_conversion tc
;
56 struct perf_event_mmap_page
*pc
;
57 union perf_event
*event
;
58 u64 test_tsc
, comm1_tsc
, comm2_tsc
;
59 u64 test_time
, comm1_time
= 0, comm2_time
= 0;
61 threads
= thread_map__new(-1, getpid(), UINT_MAX
);
62 CHECK_NOT_NULL__(threads
);
64 cpus
= cpu_map__new(NULL
);
65 CHECK_NOT_NULL__(cpus
);
67 evlist
= perf_evlist__new();
68 CHECK_NOT_NULL__(evlist
);
70 perf_evlist__set_maps(evlist
, cpus
, threads
);
72 CHECK__(parse_events(evlist
, "cycles:u", NULL
));
74 perf_evlist__config(evlist
, &opts
);
76 evsel
= perf_evlist__first(evlist
);
79 evsel
->attr
.disabled
= 1;
80 evsel
->attr
.enable_on_exec
= 0;
82 CHECK__(perf_evlist__open(evlist
));
84 CHECK__(perf_evlist__mmap(evlist
, UINT_MAX
, false));
86 pc
= evlist
->mmap
[0].base
;
87 ret
= perf_read_tsc_conversion(pc
, &tc
);
89 if (ret
== -EOPNOTSUPP
) {
90 fprintf(stderr
, " (not supported)");
96 perf_evlist__enable(evlist
);
98 comm1
= "Test COMM 1";
99 CHECK__(prctl(PR_SET_NAME
, (unsigned long)comm1
, 0, 0, 0));
103 comm2
= "Test COMM 2";
104 CHECK__(prctl(PR_SET_NAME
, (unsigned long)comm2
, 0, 0, 0));
106 perf_evlist__disable(evlist
);
108 for (i
= 0; i
< evlist
->nr_mmaps
; i
++) {
109 while ((event
= perf_evlist__mmap_read(evlist
, i
)) != NULL
) {
110 struct perf_sample sample
;
112 if (event
->header
.type
!= PERF_RECORD_COMM
||
113 (pid_t
)event
->comm
.pid
!= getpid() ||
114 (pid_t
)event
->comm
.tid
!= getpid())
117 if (strcmp(event
->comm
.comm
, comm1
) == 0) {
118 CHECK__(perf_evsel__parse_sample(evsel
, event
,
120 comm1_time
= sample
.time
;
122 if (strcmp(event
->comm
.comm
, comm2
) == 0) {
123 CHECK__(perf_evsel__parse_sample(evsel
, event
,
125 comm2_time
= sample
.time
;
128 perf_evlist__mmap_consume(evlist
, i
);
132 if (!comm1_time
|| !comm2_time
)
135 test_time
= tsc_to_perf_time(test_tsc
, &tc
);
136 comm1_tsc
= perf_time_to_tsc(comm1_time
, &tc
);
137 comm2_tsc
= perf_time_to_tsc(comm2_time
, &tc
);
139 pr_debug("1st event perf time %"PRIu64
" tsc %"PRIu64
"\n",
140 comm1_time
, comm1_tsc
);
141 pr_debug("rdtsc time %"PRIu64
" tsc %"PRIu64
"\n",
142 test_time
, test_tsc
);
143 pr_debug("2nd event perf time %"PRIu64
" tsc %"PRIu64
"\n",
144 comm2_time
, comm2_tsc
);
146 if (test_time
<= comm1_time
||
147 test_time
>= comm2_time
)
150 if (test_tsc
<= comm1_tsc
||
151 test_tsc
>= comm2_tsc
)
158 perf_evlist__disable(evlist
);
159 perf_evlist__delete(evlist
);