perf-time-to-tsc.c 3.9 KB

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