blob: 5dd7efb192ce962b3b56995aa707c429f5d01c71 [file] [log] [blame]
Arnaldo Carvalho de Meloa43783a2017-04-18 10:46:11 -03001#include <errno.h>
Arnaldo Carvalho de Melofd20e812017-04-17 15:23:08 -03002#include <inttypes.h>
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +03003#include <stdio.h>
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +03004#include <unistd.h>
Borislav Petkovd944c4e2014-04-25 21:31:02 +02005#include <linux/types.h>
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +03006#include <sys/prctl.h>
7
8#include "parse-events.h"
9#include "evlist.h"
10#include "evsel.h"
11#include "thread_map.h"
12#include "cpumap.h"
Adrian Hunter0b437862014-07-14 13:03:03 +030013#include "tsc.h"
Matt Flemingd8b167f2015-10-05 15:40:20 +010014#include "tests/tests.h"
15
16#include "arch-tests.h"
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +030017
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +030018#define CHECK__(x) { \
19 while ((x) < 0) { \
20 pr_debug(#x " failed!\n"); \
21 goto out_err; \
22 } \
23}
24
25#define CHECK_NOT_NULL__(x) { \
26 while ((x) == NULL) { \
27 pr_debug(#x " failed!\n"); \
28 goto out_err; \
29 } \
30}
31
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +030032/**
33 * test__perf_time_to_tsc - test converting perf time to TSC.
34 *
35 * This function implements a test that checks that the conversion of perf time
36 * to and from TSC is consistent with the order of events. If the test passes
37 * %0 is returned, otherwise %-1 is returned. If TSC conversion is not
38 * supported then then the test passes but " (not supported)" is printed.
39 */
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -030040int test__perf_time_to_tsc(struct test *test __maybe_unused, int subtest __maybe_unused)
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +030041{
Arnaldo Carvalho de Melob4006792013-12-19 14:43:45 -030042 struct record_opts opts = {
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +030043 .mmap_pages = UINT_MAX,
44 .user_freq = UINT_MAX,
45 .user_interval = ULLONG_MAX,
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +030046 .target = {
47 .uses_mmap = true,
48 },
49 .sample_time = true,
50 };
51 struct thread_map *threads = NULL;
52 struct cpu_map *cpus = NULL;
53 struct perf_evlist *evlist = NULL;
54 struct perf_evsel *evsel = NULL;
55 int err = -1, ret, i;
56 const char *comm1, *comm2;
57 struct perf_tsc_conversion tc;
58 struct perf_event_mmap_page *pc;
59 union perf_event *event;
60 u64 test_tsc, comm1_tsc, comm2_tsc;
61 u64 test_time, comm1_time = 0, comm2_time = 0;
62
63 threads = thread_map__new(-1, getpid(), UINT_MAX);
64 CHECK_NOT_NULL__(threads);
65
66 cpus = cpu_map__new(NULL);
67 CHECK_NOT_NULL__(cpus);
68
69 evlist = perf_evlist__new();
70 CHECK_NOT_NULL__(evlist);
71
72 perf_evlist__set_maps(evlist, cpus, threads);
73
Jiri Olsab39b8392015-04-22 21:10:16 +020074 CHECK__(parse_events(evlist, "cycles:u", NULL));
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +030075
Arnaldo Carvalho de Meloe68ae9c2016-04-11 18:15:29 -030076 perf_evlist__config(evlist, &opts, NULL);
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +030077
78 evsel = perf_evlist__first(evlist);
79
80 evsel->attr.comm = 1;
81 evsel->attr.disabled = 1;
82 evsel->attr.enable_on_exec = 0;
83
84 CHECK__(perf_evlist__open(evlist));
85
86 CHECK__(perf_evlist__mmap(evlist, UINT_MAX, false));
87
88 pc = evlist->mmap[0].base;
89 ret = perf_read_tsc_conversion(pc, &tc);
90 if (ret) {
91 if (ret == -EOPNOTSUPP) {
92 fprintf(stderr, " (not supported)");
93 return 0;
94 }
95 goto out_err;
96 }
97
98 perf_evlist__enable(evlist);
99
100 comm1 = "Test COMM 1";
101 CHECK__(prctl(PR_SET_NAME, (unsigned long)comm1, 0, 0, 0));
102
103 test_tsc = rdtsc();
104
105 comm2 = "Test COMM 2";
106 CHECK__(prctl(PR_SET_NAME, (unsigned long)comm2, 0, 0, 0));
107
108 perf_evlist__disable(evlist);
109
110 for (i = 0; i < evlist->nr_mmaps; i++) {
111 while ((event = perf_evlist__mmap_read(evlist, i)) != NULL) {
112 struct perf_sample sample;
113
114 if (event->header.type != PERF_RECORD_COMM ||
115 (pid_t)event->comm.pid != getpid() ||
116 (pid_t)event->comm.tid != getpid())
Zhouyi Zhou8e50d382013-10-24 15:43:33 +0800117 goto next_event;
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +0300118
119 if (strcmp(event->comm.comm, comm1) == 0) {
120 CHECK__(perf_evsel__parse_sample(evsel, event,
121 &sample));
122 comm1_time = sample.time;
123 }
124 if (strcmp(event->comm.comm, comm2) == 0) {
125 CHECK__(perf_evsel__parse_sample(evsel, event,
126 &sample));
127 comm2_time = sample.time;
128 }
Zhouyi Zhou8e50d382013-10-24 15:43:33 +0800129next_event:
130 perf_evlist__mmap_consume(evlist, i);
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +0300131 }
132 }
133
134 if (!comm1_time || !comm2_time)
135 goto out_err;
136
137 test_time = tsc_to_perf_time(test_tsc, &tc);
138 comm1_tsc = perf_time_to_tsc(comm1_time, &tc);
139 comm2_tsc = perf_time_to_tsc(comm2_time, &tc);
140
141 pr_debug("1st event perf time %"PRIu64" tsc %"PRIu64"\n",
142 comm1_time, comm1_tsc);
143 pr_debug("rdtsc time %"PRIu64" tsc %"PRIu64"\n",
144 test_time, test_tsc);
145 pr_debug("2nd event perf time %"PRIu64" tsc %"PRIu64"\n",
146 comm2_time, comm2_tsc);
147
148 if (test_time <= comm1_time ||
149 test_time >= comm2_time)
150 goto out_err;
151
152 if (test_tsc <= comm1_tsc ||
153 test_tsc >= comm2_tsc)
154 goto out_err;
155
156 err = 0;
157
158out_err:
Arnaldo Carvalho de Melo61b3f662016-06-22 10:10:52 -0300159 perf_evlist__delete(evlist);
Adrian Hunter3bd5a5f2013-06-28 16:22:19 +0300160 return err;
161}