perf-time-to-tsc.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <errno.h>
  3. #include <inttypes.h>
  4. #include <stdio.h>
  5. #include <unistd.h>
  6. #include <linux/types.h>
  7. #include <sys/prctl.h>
  8. #include "parse-events.h"
  9. #include "evlist.h"
  10. #include "evsel.h"
  11. #include "thread_map.h"
  12. #include "cpumap.h"
  13. #include "tsc.h"
  14. #include "tests/tests.h"
  15. #include "arch-tests.h"
  16. #define CHECK__(x) { \
  17. while ((x) < 0) { \
  18. pr_debug(#x " failed!\n"); \
  19. goto out_err; \
  20. } \
  21. }
  22. #define CHECK_NOT_NULL__(x) { \
  23. while ((x) == NULL) { \
  24. pr_debug(#x " failed!\n"); \
  25. goto out_err; \
  26. } \
  27. }
  28. /**
  29. * test__perf_time_to_tsc - test converting perf time to TSC.
  30. *
  31. * This function implements a test that checks that the conversion of perf time
  32. * to and from TSC is consistent with the order of events. If the test passes
  33. * %0 is returned, otherwise %-1 is returned. If TSC conversion is not
  34. * supported then then the test passes but " (not supported)" is printed.
  35. */
  36. int test__perf_time_to_tsc(struct test *test __maybe_unused, int subtest __maybe_unused)
  37. {
  38. struct record_opts opts = {
  39. .mmap_pages = UINT_MAX,
  40. .user_freq = UINT_MAX,
  41. .user_interval = ULLONG_MAX,
  42. .target = {
  43. .uses_mmap = true,
  44. },
  45. .sample_time = true,
  46. };
  47. struct thread_map *threads = NULL;
  48. struct cpu_map *cpus = NULL;
  49. struct perf_evlist *evlist = NULL;
  50. struct perf_evsel *evsel = NULL;
  51. int err = -1, ret, i;
  52. const char *comm1, *comm2;
  53. struct perf_tsc_conversion tc;
  54. struct perf_event_mmap_page *pc;
  55. union perf_event *event;
  56. u64 test_tsc, comm1_tsc, comm2_tsc;
  57. u64 test_time, comm1_time = 0, comm2_time = 0;
  58. struct perf_mmap *md;
  59. threads = thread_map__new(-1, getpid(), UINT_MAX);
  60. CHECK_NOT_NULL__(threads);
  61. cpus = cpu_map__new(NULL);
  62. CHECK_NOT_NULL__(cpus);
  63. evlist = perf_evlist__new();
  64. CHECK_NOT_NULL__(evlist);
  65. perf_evlist__set_maps(evlist, cpus, threads);
  66. CHECK__(parse_events(evlist, "cycles:u", NULL));
  67. perf_evlist__config(evlist, &opts, NULL);
  68. evsel = perf_evlist__first(evlist);
  69. evsel->attr.comm = 1;
  70. evsel->attr.disabled = 1;
  71. evsel->attr.enable_on_exec = 0;
  72. CHECK__(perf_evlist__open(evlist));
  73. CHECK__(perf_evlist__mmap(evlist, UINT_MAX));
  74. pc = evlist->mmap[0].base;
  75. ret = perf_read_tsc_conversion(pc, &tc);
  76. if (ret) {
  77. if (ret == -EOPNOTSUPP) {
  78. fprintf(stderr, " (not supported)");
  79. return 0;
  80. }
  81. goto out_err;
  82. }
  83. perf_evlist__enable(evlist);
  84. comm1 = "Test COMM 1";
  85. CHECK__(prctl(PR_SET_NAME, (unsigned long)comm1, 0, 0, 0));
  86. test_tsc = rdtsc();
  87. comm2 = "Test COMM 2";
  88. CHECK__(prctl(PR_SET_NAME, (unsigned long)comm2, 0, 0, 0));
  89. perf_evlist__disable(evlist);
  90. for (i = 0; i < evlist->nr_mmaps; i++) {
  91. md = &evlist->mmap[i];
  92. if (perf_mmap__read_init(md) < 0)
  93. continue;
  94. while ((event = perf_mmap__read_event(md)) != NULL) {
  95. struct perf_sample sample;
  96. if (event->header.type != PERF_RECORD_COMM ||
  97. (pid_t)event->comm.pid != getpid() ||
  98. (pid_t)event->comm.tid != getpid())
  99. goto next_event;
  100. if (strcmp(event->comm.comm, comm1) == 0) {
  101. CHECK__(perf_evsel__parse_sample(evsel, event,
  102. &sample));
  103. comm1_time = sample.time;
  104. }
  105. if (strcmp(event->comm.comm, comm2) == 0) {
  106. CHECK__(perf_evsel__parse_sample(evsel, event,
  107. &sample));
  108. comm2_time = sample.time;
  109. }
  110. next_event:
  111. perf_mmap__consume(md);
  112. }
  113. perf_mmap__read_done(md);
  114. }
  115. if (!comm1_time || !comm2_time)
  116. goto out_err;
  117. test_time = tsc_to_perf_time(test_tsc, &tc);
  118. comm1_tsc = perf_time_to_tsc(comm1_time, &tc);
  119. comm2_tsc = perf_time_to_tsc(comm2_time, &tc);
  120. pr_debug("1st event perf time %"PRIu64" tsc %"PRIu64"\n",
  121. comm1_time, comm1_tsc);
  122. pr_debug("rdtsc time %"PRIu64" tsc %"PRIu64"\n",
  123. test_time, test_tsc);
  124. pr_debug("2nd event perf time %"PRIu64" tsc %"PRIu64"\n",
  125. comm2_time, comm2_tsc);
  126. if (test_time <= comm1_time ||
  127. test_time >= comm2_time)
  128. goto out_err;
  129. if (test_tsc <= comm1_tsc ||
  130. test_tsc >= comm2_tsc)
  131. goto out_err;
  132. err = 0;
  133. out_err:
  134. perf_evlist__delete(evlist);
  135. return err;
  136. }