1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * builtin-stat.c 4 * 5 * Builtin stat command: Give a precise performance counters summary 6 * overview about any workload, CPU or specific PID. 7 * 8 * Sample output: 9 10 $ perf stat ./hackbench 10 11 12 Time: 0.118 13 14 Performance counter stats for './hackbench 10': 15 16 1708.761321 task-clock # 11.037 CPUs utilized 17 41,190 context-switches # 0.024 M/sec 18 6,735 CPU-migrations # 0.004 M/sec 19 17,318 page-faults # 0.010 M/sec 20 5,205,202,243 cycles # 3.046 GHz 21 3,856,436,920 stalled-cycles-frontend # 74.09% frontend cycles idle 22 1,600,790,871 stalled-cycles-backend # 30.75% backend cycles idle 23 2,603,501,247 instructions # 0.50 insns per cycle 24 # 1.48 stalled cycles per insn 25 484,357,498 branches # 283.455 M/sec 26 6,388,934 branch-misses # 1.32% of all branches 27 28 0.154822978 seconds time elapsed 29 30 * 31 * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com> 32 * 33 * Improvements and fixes by: 34 * 35 * Arjan van de Ven <arjan@linux.intel.com> 36 * Yanmin Zhang <yanmin.zhang@intel.com> 37 * Wu Fengguang <fengguang.wu@intel.com> 38 * Mike Galbraith <efault@gmx.de> 39 * Paul Mackerras <paulus@samba.org> 40 * Jaswinder Singh Rajput <jaswinder@kernel.org> 41 */ 42 43 #include "builtin.h" 44 #include "util/cgroup.h" 45 #include <subcmd/parse-options.h> 46 #include "util/parse-events.h" 47 #include "util/pmus.h" 48 #include "util/pmu.h" 49 #include "util/event.h" 50 #include "util/evlist.h" 51 #include "util/evsel.h" 52 #include "util/debug.h" 53 #include "util/color.h" 54 #include "util/stat.h" 55 #include "util/header.h" 56 #include "util/cpumap.h" 57 #include "util/thread_map.h" 58 #include "util/counts.h" 59 #include "util/topdown.h" 60 #include "util/session.h" 61 #include "util/tool.h" 62 #include "util/string2.h" 63 #include "util/metricgroup.h" 64 #include "util/synthetic-events.h" 65 #include "util/target.h" 66 #include "util/time-utils.h" 67 #include "util/top.h" 68 #include "util/affinity.h" 69 #include "util/pfm.h" 70 #include "util/bpf_counter.h" 71 #include "util/iostat.h" 72 #include "util/util.h" 73 #include "util/intel-tpebs.h" 74 #include "asm/bug.h" 75 76 #include <linux/time64.h> 77 #include <linux/zalloc.h> 78 #include <api/fs/fs.h> 79 #include <errno.h> 80 #include <signal.h> 81 #include <stdlib.h> 82 #include <sys/prctl.h> 83 #include <inttypes.h> 84 #include <locale.h> 85 #include <math.h> 86 #include <sys/types.h> 87 #include <sys/stat.h> 88 #include <sys/wait.h> 89 #include <unistd.h> 90 #include <sys/time.h> 91 #include <sys/resource.h> 92 #include <linux/err.h> 93 94 #include <linux/ctype.h> 95 #include <perf/evlist.h> 96 #include <internal/threadmap.h> 97 98 #define DEFAULT_SEPARATOR " " 99 #define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi" 100 101 static void print_counters(struct timespec *ts, int argc, const char **argv); 102 103 static struct evlist *evsel_list; 104 static struct parse_events_option_args parse_events_option_args = { 105 .evlistp = &evsel_list, 106 }; 107 108 static bool all_counters_use_bpf = true; 109 110 static struct target target = { 111 .uid = UINT_MAX, 112 }; 113 114 #define METRIC_ONLY_LEN 20 115 116 static volatile sig_atomic_t child_pid = -1; 117 static int detailed_run = 0; 118 static bool transaction_run; 119 static bool topdown_run = false; 120 static bool smi_cost = false; 121 static bool smi_reset = false; 122 static int big_num_opt = -1; 123 static const char *pre_cmd = NULL; 124 static const char *post_cmd = NULL; 125 static bool sync_run = false; 126 static bool forever = false; 127 static bool force_metric_only = false; 128 static struct timespec ref_time; 129 static bool append_file; 130 static bool interval_count; 131 static const char *output_name; 132 static int output_fd; 133 static char *metrics; 134 135 struct perf_stat { 136 bool record; 137 struct perf_data data; 138 struct perf_session *session; 139 u64 bytes_written; 140 struct perf_tool tool; 141 bool maps_allocated; 142 struct perf_cpu_map *cpus; 143 struct perf_thread_map *threads; 144 enum aggr_mode aggr_mode; 145 u32 aggr_level; 146 }; 147 148 static struct perf_stat perf_stat; 149 #define STAT_RECORD perf_stat.record 150 151 static volatile sig_atomic_t done = 0; 152 153 static struct perf_stat_config stat_config = { 154 .aggr_mode = AGGR_GLOBAL, 155 .aggr_level = MAX_CACHE_LVL + 1, 156 .scale = true, 157 .unit_width = 4, /* strlen("unit") */ 158 .run_count = 1, 159 .metric_only_len = METRIC_ONLY_LEN, 160 .walltime_nsecs_stats = &walltime_nsecs_stats, 161 .ru_stats = &ru_stats, 162 .big_num = true, 163 .ctl_fd = -1, 164 .ctl_fd_ack = -1, 165 .iostat_run = false, 166 }; 167 168 /* Options set from the command line. */ 169 struct opt_aggr_mode { 170 bool node, socket, die, cluster, cache, core, thread, no_aggr; 171 }; 172 173 /* Turn command line option into most generic aggregation mode setting. */ 174 static enum aggr_mode opt_aggr_mode_to_aggr_mode(struct opt_aggr_mode *opt_mode) 175 { 176 enum aggr_mode mode = AGGR_GLOBAL; 177 178 if (opt_mode->node) 179 mode = AGGR_NODE; 180 if (opt_mode->socket) 181 mode = AGGR_SOCKET; 182 if (opt_mode->die) 183 mode = AGGR_DIE; 184 if (opt_mode->cluster) 185 mode = AGGR_CLUSTER; 186 if (opt_mode->cache) 187 mode = AGGR_CACHE; 188 if (opt_mode->core) 189 mode = AGGR_CORE; 190 if (opt_mode->thread) 191 mode = AGGR_THREAD; 192 if (opt_mode->no_aggr) 193 mode = AGGR_NONE; 194 return mode; 195 } 196 197 static void evlist__check_cpu_maps(struct evlist *evlist) 198 { 199 struct evsel *evsel, *warned_leader = NULL; 200 201 evlist__for_each_entry(evlist, evsel) { 202 struct evsel *leader = evsel__leader(evsel); 203 204 /* Check that leader matches cpus with each member. */ 205 if (leader == evsel) 206 continue; 207 if (perf_cpu_map__equal(leader->core.cpus, evsel->core.cpus)) 208 continue; 209 210 /* If there's mismatch disable the group and warn user. */ 211 if (warned_leader != leader) { 212 char buf[200]; 213 214 pr_warning("WARNING: grouped events cpus do not match.\n" 215 "Events with CPUs not matching the leader will " 216 "be removed from the group.\n"); 217 evsel__group_desc(leader, buf, sizeof(buf)); 218 pr_warning(" %s\n", buf); 219 warned_leader = leader; 220 } 221 if (verbose > 0) { 222 char buf[200]; 223 224 cpu_map__snprint(leader->core.cpus, buf, sizeof(buf)); 225 pr_warning(" %s: %s\n", leader->name, buf); 226 cpu_map__snprint(evsel->core.cpus, buf, sizeof(buf)); 227 pr_warning(" %s: %s\n", evsel->name, buf); 228 } 229 230 evsel__remove_from_group(evsel, leader); 231 } 232 } 233 234 static inline void diff_timespec(struct timespec *r, struct timespec *a, 235 struct timespec *b) 236 { 237 r->tv_sec = a->tv_sec - b->tv_sec; 238 if (a->tv_nsec < b->tv_nsec) { 239 r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec; 240 r->tv_sec--; 241 } else { 242 r->tv_nsec = a->tv_nsec - b->tv_nsec ; 243 } 244 } 245 246 static void perf_stat__reset_stats(void) 247 { 248 evlist__reset_stats(evsel_list); 249 perf_stat__reset_shadow_stats(); 250 } 251 252 static int process_synthesized_event(const struct perf_tool *tool __maybe_unused, 253 union perf_event *event, 254 struct perf_sample *sample __maybe_unused, 255 struct machine *machine __maybe_unused) 256 { 257 if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) { 258 pr_err("failed to write perf data, error: %m\n"); 259 return -1; 260 } 261 262 perf_stat.bytes_written += event->header.size; 263 return 0; 264 } 265 266 static int write_stat_round_event(u64 tm, u64 type) 267 { 268 return perf_event__synthesize_stat_round(NULL, tm, type, 269 process_synthesized_event, 270 NULL); 271 } 272 273 #define WRITE_STAT_ROUND_EVENT(time, interval) \ 274 write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval) 275 276 #define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y) 277 278 static int evsel__write_stat_event(struct evsel *counter, int cpu_map_idx, u32 thread, 279 struct perf_counts_values *count) 280 { 281 struct perf_sample_id *sid = SID(counter, cpu_map_idx, thread); 282 struct perf_cpu cpu = perf_cpu_map__cpu(evsel__cpus(counter), cpu_map_idx); 283 284 return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count, 285 process_synthesized_event, NULL); 286 } 287 288 static int read_single_counter(struct evsel *counter, int cpu_map_idx, int thread) 289 { 290 int err = evsel__read_counter(counter, cpu_map_idx, thread); 291 292 /* 293 * Reading user and system time will fail when the process 294 * terminates. Use the wait4 values in that case. 295 */ 296 if (err && cpu_map_idx == 0 && 297 (evsel__tool_event(counter) == PERF_TOOL_USER_TIME || 298 evsel__tool_event(counter) == PERF_TOOL_SYSTEM_TIME)) { 299 u64 val, *start_time; 300 struct perf_counts_values *count = 301 perf_counts(counter->counts, cpu_map_idx, thread); 302 303 start_time = xyarray__entry(counter->start_times, cpu_map_idx, thread); 304 if (evsel__tool_event(counter) == PERF_TOOL_USER_TIME) 305 val = ru_stats.ru_utime_usec_stat.mean; 306 else 307 val = ru_stats.ru_stime_usec_stat.mean; 308 count->ena = count->run = *start_time + val; 309 count->val = val; 310 return 0; 311 } 312 return err; 313 } 314 315 /* 316 * Read out the results of a single counter: 317 * do not aggregate counts across CPUs in system-wide mode 318 */ 319 static int read_counter_cpu(struct evsel *counter, int cpu_map_idx) 320 { 321 int nthreads = perf_thread_map__nr(evsel_list->core.threads); 322 int thread; 323 324 if (!counter->supported) 325 return -ENOENT; 326 327 for (thread = 0; thread < nthreads; thread++) { 328 struct perf_counts_values *count; 329 330 count = perf_counts(counter->counts, cpu_map_idx, thread); 331 332 /* 333 * The leader's group read loads data into its group members 334 * (via evsel__read_counter()) and sets their count->loaded. 335 */ 336 if (!perf_counts__is_loaded(counter->counts, cpu_map_idx, thread) && 337 read_single_counter(counter, cpu_map_idx, thread)) { 338 counter->counts->scaled = -1; 339 perf_counts(counter->counts, cpu_map_idx, thread)->ena = 0; 340 perf_counts(counter->counts, cpu_map_idx, thread)->run = 0; 341 return -1; 342 } 343 344 perf_counts__set_loaded(counter->counts, cpu_map_idx, thread, false); 345 346 if (STAT_RECORD) { 347 if (evsel__write_stat_event(counter, cpu_map_idx, thread, count)) { 348 pr_err("failed to write stat event\n"); 349 return -1; 350 } 351 } 352 353 if (verbose > 1) { 354 fprintf(stat_config.output, 355 "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n", 356 evsel__name(counter), 357 perf_cpu_map__cpu(evsel__cpus(counter), 358 cpu_map_idx).cpu, 359 count->val, count->ena, count->run); 360 } 361 } 362 363 return 0; 364 } 365 366 static int read_affinity_counters(void) 367 { 368 struct evlist_cpu_iterator evlist_cpu_itr; 369 struct affinity saved_affinity, *affinity; 370 371 if (all_counters_use_bpf) 372 return 0; 373 374 if (!target__has_cpu(&target) || target__has_per_thread(&target)) 375 affinity = NULL; 376 else if (affinity__setup(&saved_affinity) < 0) 377 return -1; 378 else 379 affinity = &saved_affinity; 380 381 evlist__for_each_cpu(evlist_cpu_itr, evsel_list, affinity) { 382 struct evsel *counter = evlist_cpu_itr.evsel; 383 384 if (evsel__is_bpf(counter)) 385 continue; 386 387 if (!counter->err) 388 counter->err = read_counter_cpu(counter, evlist_cpu_itr.cpu_map_idx); 389 } 390 if (affinity) 391 affinity__cleanup(&saved_affinity); 392 393 return 0; 394 } 395 396 static int read_bpf_map_counters(void) 397 { 398 struct evsel *counter; 399 int err; 400 401 evlist__for_each_entry(evsel_list, counter) { 402 if (!evsel__is_bpf(counter)) 403 continue; 404 405 err = bpf_counter__read(counter); 406 if (err) 407 return err; 408 } 409 return 0; 410 } 411 412 static int read_counters(void) 413 { 414 if (!stat_config.stop_read_counter) { 415 if (read_bpf_map_counters() || 416 read_affinity_counters()) 417 return -1; 418 } 419 return 0; 420 } 421 422 static void process_counters(void) 423 { 424 struct evsel *counter; 425 426 evlist__for_each_entry(evsel_list, counter) { 427 if (counter->err) 428 pr_debug("failed to read counter %s\n", counter->name); 429 if (counter->err == 0 && perf_stat_process_counter(&stat_config, counter)) 430 pr_warning("failed to process counter %s\n", counter->name); 431 counter->err = 0; 432 } 433 434 perf_stat_merge_counters(&stat_config, evsel_list); 435 perf_stat_process_percore(&stat_config, evsel_list); 436 } 437 438 static void process_interval(void) 439 { 440 struct timespec ts, rs; 441 442 clock_gettime(CLOCK_MONOTONIC, &ts); 443 diff_timespec(&rs, &ts, &ref_time); 444 445 evlist__reset_aggr_stats(evsel_list); 446 447 if (read_counters() == 0) 448 process_counters(); 449 450 if (STAT_RECORD) { 451 if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL)) 452 pr_err("failed to write stat round event\n"); 453 } 454 455 init_stats(&walltime_nsecs_stats); 456 update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000ULL); 457 print_counters(&rs, 0, NULL); 458 } 459 460 static bool handle_interval(unsigned int interval, int *times) 461 { 462 if (interval) { 463 process_interval(); 464 if (interval_count && !(--(*times))) 465 return true; 466 } 467 return false; 468 } 469 470 static int enable_counters(void) 471 { 472 struct evsel *evsel; 473 int err; 474 475 evlist__for_each_entry(evsel_list, evsel) { 476 if (!evsel__is_bpf(evsel)) 477 continue; 478 479 err = bpf_counter__enable(evsel); 480 if (err) 481 return err; 482 } 483 484 if (!target__enable_on_exec(&target)) { 485 if (!all_counters_use_bpf) 486 evlist__enable(evsel_list); 487 } 488 return 0; 489 } 490 491 static void disable_counters(void) 492 { 493 struct evsel *counter; 494 495 /* 496 * If we don't have tracee (attaching to task or cpu), counters may 497 * still be running. To get accurate group ratios, we must stop groups 498 * from counting before reading their constituent counters. 499 */ 500 if (!target__none(&target)) { 501 evlist__for_each_entry(evsel_list, counter) 502 bpf_counter__disable(counter); 503 if (!all_counters_use_bpf) 504 evlist__disable(evsel_list); 505 } 506 } 507 508 static volatile sig_atomic_t workload_exec_errno; 509 510 /* 511 * evlist__prepare_workload will send a SIGUSR1 512 * if the fork fails, since we asked by setting its 513 * want_signal to true. 514 */ 515 static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info, 516 void *ucontext __maybe_unused) 517 { 518 workload_exec_errno = info->si_value.sival_int; 519 } 520 521 static bool evsel__should_store_id(struct evsel *counter) 522 { 523 return STAT_RECORD || counter->core.attr.read_format & PERF_FORMAT_ID; 524 } 525 526 static bool is_target_alive(struct target *_target, 527 struct perf_thread_map *threads) 528 { 529 struct stat st; 530 int i; 531 532 if (!target__has_task(_target)) 533 return true; 534 535 for (i = 0; i < threads->nr; i++) { 536 char path[PATH_MAX]; 537 538 scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(), 539 threads->map[i].pid); 540 541 if (!stat(path, &st)) 542 return true; 543 } 544 545 return false; 546 } 547 548 static void process_evlist(struct evlist *evlist, unsigned int interval) 549 { 550 enum evlist_ctl_cmd cmd = EVLIST_CTL_CMD_UNSUPPORTED; 551 552 if (evlist__ctlfd_process(evlist, &cmd) > 0) { 553 switch (cmd) { 554 case EVLIST_CTL_CMD_ENABLE: 555 fallthrough; 556 case EVLIST_CTL_CMD_DISABLE: 557 if (interval) 558 process_interval(); 559 break; 560 case EVLIST_CTL_CMD_SNAPSHOT: 561 case EVLIST_CTL_CMD_ACK: 562 case EVLIST_CTL_CMD_UNSUPPORTED: 563 case EVLIST_CTL_CMD_EVLIST: 564 case EVLIST_CTL_CMD_STOP: 565 case EVLIST_CTL_CMD_PING: 566 default: 567 break; 568 } 569 } 570 } 571 572 static void compute_tts(struct timespec *time_start, struct timespec *time_stop, 573 int *time_to_sleep) 574 { 575 int tts = *time_to_sleep; 576 struct timespec time_diff; 577 578 diff_timespec(&time_diff, time_stop, time_start); 579 580 tts -= time_diff.tv_sec * MSEC_PER_SEC + 581 time_diff.tv_nsec / NSEC_PER_MSEC; 582 583 if (tts < 0) 584 tts = 0; 585 586 *time_to_sleep = tts; 587 } 588 589 static int dispatch_events(bool forks, int timeout, int interval, int *times) 590 { 591 int child_exited = 0, status = 0; 592 int time_to_sleep, sleep_time; 593 struct timespec time_start, time_stop; 594 595 if (interval) 596 sleep_time = interval; 597 else if (timeout) 598 sleep_time = timeout; 599 else 600 sleep_time = 1000; 601 602 time_to_sleep = sleep_time; 603 604 while (!done) { 605 if (forks) 606 child_exited = waitpid(child_pid, &status, WNOHANG); 607 else 608 child_exited = !is_target_alive(&target, evsel_list->core.threads) ? 1 : 0; 609 610 if (child_exited) 611 break; 612 613 clock_gettime(CLOCK_MONOTONIC, &time_start); 614 if (!(evlist__poll(evsel_list, time_to_sleep) > 0)) { /* poll timeout or EINTR */ 615 if (timeout || handle_interval(interval, times)) 616 break; 617 time_to_sleep = sleep_time; 618 } else { /* fd revent */ 619 process_evlist(evsel_list, interval); 620 clock_gettime(CLOCK_MONOTONIC, &time_stop); 621 compute_tts(&time_start, &time_stop, &time_to_sleep); 622 } 623 } 624 625 return status; 626 } 627 628 enum counter_recovery { 629 COUNTER_SKIP, 630 COUNTER_RETRY, 631 COUNTER_FATAL, 632 }; 633 634 static enum counter_recovery stat_handle_error(struct evsel *counter) 635 { 636 char msg[BUFSIZ]; 637 /* 638 * PPC returns ENXIO for HW counters until 2.6.37 639 * (behavior changed with commit b0a873e). 640 */ 641 if (errno == EINVAL || errno == ENOSYS || 642 errno == ENOENT || errno == EOPNOTSUPP || 643 errno == ENXIO) { 644 if (verbose > 0) 645 ui__warning("%s event is not supported by the kernel.\n", 646 evsel__name(counter)); 647 counter->supported = false; 648 /* 649 * errored is a sticky flag that means one of the counter's 650 * cpu event had a problem and needs to be reexamined. 651 */ 652 counter->errored = true; 653 654 if ((evsel__leader(counter) != counter) || 655 !(counter->core.leader->nr_members > 1)) 656 return COUNTER_SKIP; 657 } else if (evsel__fallback(counter, &target, errno, msg, sizeof(msg))) { 658 if (verbose > 0) 659 ui__warning("%s\n", msg); 660 return COUNTER_RETRY; 661 } else if (target__has_per_thread(&target) && 662 evsel_list->core.threads && 663 evsel_list->core.threads->err_thread != -1) { 664 /* 665 * For global --per-thread case, skip current 666 * error thread. 667 */ 668 if (!thread_map__remove(evsel_list->core.threads, 669 evsel_list->core.threads->err_thread)) { 670 evsel_list->core.threads->err_thread = -1; 671 return COUNTER_RETRY; 672 } 673 } else if (counter->skippable) { 674 if (verbose > 0) 675 ui__warning("skipping event %s that kernel failed to open .\n", 676 evsel__name(counter)); 677 counter->supported = false; 678 counter->errored = true; 679 return COUNTER_SKIP; 680 } 681 682 evsel__open_strerror(counter, &target, errno, msg, sizeof(msg)); 683 ui__error("%s\n", msg); 684 685 if (child_pid != -1) 686 kill(child_pid, SIGTERM); 687 688 tpebs_delete(); 689 690 return COUNTER_FATAL; 691 } 692 693 static int __run_perf_stat(int argc, const char **argv, int run_idx) 694 { 695 int interval = stat_config.interval; 696 int times = stat_config.times; 697 int timeout = stat_config.timeout; 698 char msg[BUFSIZ]; 699 unsigned long long t0, t1; 700 struct evsel *counter; 701 size_t l; 702 int status = 0; 703 const bool forks = (argc > 0); 704 bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false; 705 struct evlist_cpu_iterator evlist_cpu_itr; 706 struct affinity saved_affinity, *affinity = NULL; 707 int err; 708 bool second_pass = false; 709 710 if (forks) { 711 if (evlist__prepare_workload(evsel_list, &target, argv, is_pipe, workload_exec_failed_signal) < 0) { 712 perror("failed to prepare workload"); 713 return -1; 714 } 715 child_pid = evsel_list->workload.pid; 716 } 717 718 if (!cpu_map__is_dummy(evsel_list->core.user_requested_cpus)) { 719 if (affinity__setup(&saved_affinity) < 0) { 720 err = -1; 721 goto err_out; 722 } 723 affinity = &saved_affinity; 724 } 725 726 evlist__for_each_entry(evsel_list, counter) { 727 counter->reset_group = false; 728 if (bpf_counter__load(counter, &target)) { 729 err = -1; 730 goto err_out; 731 } 732 if (!(evsel__is_bperf(counter))) 733 all_counters_use_bpf = false; 734 } 735 736 evlist__reset_aggr_stats(evsel_list); 737 738 evlist__for_each_cpu(evlist_cpu_itr, evsel_list, affinity) { 739 counter = evlist_cpu_itr.evsel; 740 741 /* 742 * bperf calls evsel__open_per_cpu() in bperf__load(), so 743 * no need to call it again here. 744 */ 745 if (target.use_bpf) 746 break; 747 748 if (counter->reset_group || counter->errored) 749 continue; 750 if (evsel__is_bperf(counter)) 751 continue; 752 try_again: 753 if (create_perf_stat_counter(counter, &stat_config, &target, 754 evlist_cpu_itr.cpu_map_idx) < 0) { 755 756 /* 757 * Weak group failed. We cannot just undo this here 758 * because earlier CPUs might be in group mode, and the kernel 759 * doesn't support mixing group and non group reads. Defer 760 * it to later. 761 * Don't close here because we're in the wrong affinity. 762 */ 763 if ((errno == EINVAL || errno == EBADF) && 764 evsel__leader(counter) != counter && 765 counter->weak_group) { 766 evlist__reset_weak_group(evsel_list, counter, false); 767 assert(counter->reset_group); 768 second_pass = true; 769 continue; 770 } 771 772 switch (stat_handle_error(counter)) { 773 case COUNTER_FATAL: 774 err = -1; 775 goto err_out; 776 case COUNTER_RETRY: 777 goto try_again; 778 case COUNTER_SKIP: 779 continue; 780 default: 781 break; 782 } 783 784 } 785 counter->supported = true; 786 } 787 788 if (second_pass) { 789 /* 790 * Now redo all the weak group after closing them, 791 * and also close errored counters. 792 */ 793 794 /* First close errored or weak retry */ 795 evlist__for_each_cpu(evlist_cpu_itr, evsel_list, affinity) { 796 counter = evlist_cpu_itr.evsel; 797 798 if (!counter->reset_group && !counter->errored) 799 continue; 800 801 perf_evsel__close_cpu(&counter->core, evlist_cpu_itr.cpu_map_idx); 802 } 803 /* Now reopen weak */ 804 evlist__for_each_cpu(evlist_cpu_itr, evsel_list, affinity) { 805 counter = evlist_cpu_itr.evsel; 806 807 if (!counter->reset_group) 808 continue; 809 try_again_reset: 810 pr_debug2("reopening weak %s\n", evsel__name(counter)); 811 if (create_perf_stat_counter(counter, &stat_config, &target, 812 evlist_cpu_itr.cpu_map_idx) < 0) { 813 814 switch (stat_handle_error(counter)) { 815 case COUNTER_FATAL: 816 err = -1; 817 goto err_out; 818 case COUNTER_RETRY: 819 goto try_again_reset; 820 case COUNTER_SKIP: 821 continue; 822 default: 823 break; 824 } 825 } 826 counter->supported = true; 827 } 828 } 829 affinity__cleanup(affinity); 830 831 evlist__for_each_entry(evsel_list, counter) { 832 if (!counter->supported) { 833 perf_evsel__free_fd(&counter->core); 834 continue; 835 } 836 837 l = strlen(counter->unit); 838 if (l > stat_config.unit_width) 839 stat_config.unit_width = l; 840 841 if (evsel__should_store_id(counter) && 842 evsel__store_ids(counter, evsel_list)) { 843 err = -1; 844 goto err_out; 845 } 846 } 847 848 if (evlist__apply_filters(evsel_list, &counter, &target)) { 849 pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n", 850 counter->filter, evsel__name(counter), errno, 851 str_error_r(errno, msg, sizeof(msg))); 852 return -1; 853 } 854 855 if (STAT_RECORD) { 856 int fd = perf_data__fd(&perf_stat.data); 857 858 if (is_pipe) { 859 err = perf_header__write_pipe(perf_data__fd(&perf_stat.data)); 860 } else { 861 err = perf_session__write_header(perf_stat.session, evsel_list, 862 fd, false); 863 } 864 865 if (err < 0) 866 goto err_out; 867 868 err = perf_event__synthesize_stat_events(&stat_config, NULL, evsel_list, 869 process_synthesized_event, is_pipe); 870 if (err < 0) 871 goto err_out; 872 873 } 874 875 if (target.initial_delay) { 876 pr_info(EVLIST_DISABLED_MSG); 877 } else { 878 err = enable_counters(); 879 if (err) { 880 err = -1; 881 goto err_out; 882 } 883 } 884 885 /* Exec the command, if any */ 886 if (forks) 887 evlist__start_workload(evsel_list); 888 889 if (target.initial_delay > 0) { 890 usleep(target.initial_delay * USEC_PER_MSEC); 891 err = enable_counters(); 892 if (err) { 893 err = -1; 894 goto err_out; 895 } 896 897 pr_info(EVLIST_ENABLED_MSG); 898 } 899 900 t0 = rdclock(); 901 clock_gettime(CLOCK_MONOTONIC, &ref_time); 902 903 if (forks) { 904 if (interval || timeout || evlist__ctlfd_initialized(evsel_list)) 905 status = dispatch_events(forks, timeout, interval, ×); 906 if (child_pid != -1) { 907 if (timeout) 908 kill(child_pid, SIGTERM); 909 wait4(child_pid, &status, 0, &stat_config.ru_data); 910 } 911 912 if (workload_exec_errno) { 913 const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg)); 914 pr_err("Workload failed: %s\n", emsg); 915 err = -1; 916 goto err_out; 917 } 918 919 if (WIFSIGNALED(status)) 920 psignal(WTERMSIG(status), argv[0]); 921 } else { 922 status = dispatch_events(forks, timeout, interval, ×); 923 } 924 925 disable_counters(); 926 927 t1 = rdclock(); 928 929 if (stat_config.walltime_run_table) 930 stat_config.walltime_run[run_idx] = t1 - t0; 931 932 if (interval && stat_config.summary) { 933 stat_config.interval = 0; 934 stat_config.stop_read_counter = true; 935 init_stats(&walltime_nsecs_stats); 936 update_stats(&walltime_nsecs_stats, t1 - t0); 937 938 evlist__copy_prev_raw_counts(evsel_list); 939 evlist__reset_prev_raw_counts(evsel_list); 940 evlist__reset_aggr_stats(evsel_list); 941 } else { 942 update_stats(&walltime_nsecs_stats, t1 - t0); 943 update_rusage_stats(&ru_stats, &stat_config.ru_data); 944 } 945 946 /* 947 * Closing a group leader splits the group, and as we only disable 948 * group leaders, results in remaining events becoming enabled. To 949 * avoid arbitrary skew, we must read all counters before closing any 950 * group leaders. 951 */ 952 if (read_counters() == 0) 953 process_counters(); 954 955 /* 956 * We need to keep evsel_list alive, because it's processed 957 * later the evsel_list will be closed after. 958 */ 959 if (!STAT_RECORD) 960 evlist__close(evsel_list); 961 962 return WEXITSTATUS(status); 963 964 err_out: 965 if (forks) 966 evlist__cancel_workload(evsel_list); 967 968 return err; 969 } 970 971 /* 972 * Returns -1 for fatal errors which signifies to not continue 973 * when in repeat mode. 974 * 975 * Returns < -1 error codes when stat record is used. These 976 * result in the stat information being displayed, but writing 977 * to the file fails and is non fatal. 978 */ 979 static int run_perf_stat(int argc, const char **argv, int run_idx) 980 { 981 int ret; 982 983 if (pre_cmd) { 984 ret = system(pre_cmd); 985 if (ret) 986 return ret; 987 } 988 989 if (sync_run) 990 sync(); 991 992 ret = __run_perf_stat(argc, argv, run_idx); 993 if (ret) 994 return ret; 995 996 if (post_cmd) { 997 ret = system(post_cmd); 998 if (ret) 999 return ret; 1000 } 1001 1002 return ret; 1003 } 1004 1005 static void print_counters(struct timespec *ts, int argc, const char **argv) 1006 { 1007 /* Do not print anything if we record to the pipe. */ 1008 if (STAT_RECORD && perf_stat.data.is_pipe) 1009 return; 1010 if (quiet) 1011 return; 1012 1013 evlist__print_counters(evsel_list, &stat_config, &target, ts, argc, argv); 1014 } 1015 1016 static volatile sig_atomic_t signr = -1; 1017 1018 static void skip_signal(int signo) 1019 { 1020 if ((child_pid == -1) || stat_config.interval) 1021 done = 1; 1022 1023 signr = signo; 1024 /* 1025 * render child_pid harmless 1026 * won't send SIGTERM to a random 1027 * process in case of race condition 1028 * and fast PID recycling 1029 */ 1030 child_pid = -1; 1031 } 1032 1033 static void sig_atexit(void) 1034 { 1035 sigset_t set, oset; 1036 1037 /* 1038 * avoid race condition with SIGCHLD handler 1039 * in skip_signal() which is modifying child_pid 1040 * goal is to avoid send SIGTERM to a random 1041 * process 1042 */ 1043 sigemptyset(&set); 1044 sigaddset(&set, SIGCHLD); 1045 sigprocmask(SIG_BLOCK, &set, &oset); 1046 1047 if (child_pid != -1) 1048 kill(child_pid, SIGTERM); 1049 1050 sigprocmask(SIG_SETMASK, &oset, NULL); 1051 1052 if (signr == -1) 1053 return; 1054 1055 signal(signr, SIG_DFL); 1056 kill(getpid(), signr); 1057 } 1058 1059 void perf_stat__set_big_num(int set) 1060 { 1061 stat_config.big_num = (set != 0); 1062 } 1063 1064 void perf_stat__set_no_csv_summary(int set) 1065 { 1066 stat_config.no_csv_summary = (set != 0); 1067 } 1068 1069 static int stat__set_big_num(const struct option *opt __maybe_unused, 1070 const char *s __maybe_unused, int unset) 1071 { 1072 big_num_opt = unset ? 0 : 1; 1073 perf_stat__set_big_num(!unset); 1074 return 0; 1075 } 1076 1077 static int enable_metric_only(const struct option *opt __maybe_unused, 1078 const char *s __maybe_unused, int unset) 1079 { 1080 force_metric_only = true; 1081 stat_config.metric_only = !unset; 1082 return 0; 1083 } 1084 1085 static int append_metric_groups(const struct option *opt __maybe_unused, 1086 const char *str, 1087 int unset __maybe_unused) 1088 { 1089 if (metrics) { 1090 char *tmp; 1091 1092 if (asprintf(&tmp, "%s,%s", metrics, str) < 0) 1093 return -ENOMEM; 1094 free(metrics); 1095 metrics = tmp; 1096 } else { 1097 metrics = strdup(str); 1098 if (!metrics) 1099 return -ENOMEM; 1100 } 1101 return 0; 1102 } 1103 1104 static int parse_control_option(const struct option *opt, 1105 const char *str, 1106 int unset __maybe_unused) 1107 { 1108 struct perf_stat_config *config = opt->value; 1109 1110 return evlist__parse_control(str, &config->ctl_fd, &config->ctl_fd_ack, &config->ctl_fd_close); 1111 } 1112 1113 static int parse_stat_cgroups(const struct option *opt, 1114 const char *str, int unset) 1115 { 1116 if (stat_config.cgroup_list) { 1117 pr_err("--cgroup and --for-each-cgroup cannot be used together\n"); 1118 return -1; 1119 } 1120 1121 return parse_cgroups(opt, str, unset); 1122 } 1123 1124 static int parse_cputype(const struct option *opt, 1125 const char *str, 1126 int unset __maybe_unused) 1127 { 1128 const struct perf_pmu *pmu; 1129 struct evlist *evlist = *(struct evlist **)opt->value; 1130 1131 if (!list_empty(&evlist->core.entries)) { 1132 fprintf(stderr, "Must define cputype before events/metrics\n"); 1133 return -1; 1134 } 1135 1136 pmu = perf_pmus__pmu_for_pmu_filter(str); 1137 if (!pmu) { 1138 fprintf(stderr, "--cputype %s is not supported!\n", str); 1139 return -1; 1140 } 1141 parse_events_option_args.pmu_filter = pmu->name; 1142 1143 return 0; 1144 } 1145 1146 static int parse_cache_level(const struct option *opt, 1147 const char *str, 1148 int unset __maybe_unused) 1149 { 1150 int level; 1151 struct opt_aggr_mode *opt_aggr_mode = (struct opt_aggr_mode *)opt->value; 1152 u32 *aggr_level = (u32 *)opt->data; 1153 1154 /* 1155 * If no string is specified, aggregate based on the topology of 1156 * Last Level Cache (LLC). Since the LLC level can change from 1157 * architecture to architecture, set level greater than 1158 * MAX_CACHE_LVL which will be interpreted as LLC. 1159 */ 1160 if (str == NULL) { 1161 level = MAX_CACHE_LVL + 1; 1162 goto out; 1163 } 1164 1165 /* 1166 * The format to specify cache level is LX or lX where X is the 1167 * cache level. 1168 */ 1169 if (strlen(str) != 2 || (str[0] != 'l' && str[0] != 'L')) { 1170 pr_err("Cache level must be of form L[1-%d], or l[1-%d]\n", 1171 MAX_CACHE_LVL, 1172 MAX_CACHE_LVL); 1173 return -EINVAL; 1174 } 1175 1176 level = atoi(&str[1]); 1177 if (level < 1) { 1178 pr_err("Cache level must be of form L[1-%d], or l[1-%d]\n", 1179 MAX_CACHE_LVL, 1180 MAX_CACHE_LVL); 1181 return -EINVAL; 1182 } 1183 1184 if (level > MAX_CACHE_LVL) { 1185 pr_err("perf only supports max cache level of %d.\n" 1186 "Consider increasing MAX_CACHE_LVL\n", MAX_CACHE_LVL); 1187 return -EINVAL; 1188 } 1189 out: 1190 opt_aggr_mode->cache = true; 1191 *aggr_level = level; 1192 return 0; 1193 } 1194 1195 /** 1196 * Calculate the cache instance ID from the map in 1197 * /sys/devices/system/cpu/cpuX/cache/indexY/shared_cpu_list 1198 * Cache instance ID is the first CPU reported in the shared_cpu_list file. 1199 */ 1200 static int cpu__get_cache_id_from_map(struct perf_cpu cpu, char *map) 1201 { 1202 int id; 1203 struct perf_cpu_map *cpu_map = perf_cpu_map__new(map); 1204 1205 /* 1206 * If the map contains no CPU, consider the current CPU to 1207 * be the first online CPU in the cache domain else use the 1208 * first online CPU of the cache domain as the ID. 1209 */ 1210 id = perf_cpu_map__min(cpu_map).cpu; 1211 if (id == -1) 1212 id = cpu.cpu; 1213 1214 /* Free the perf_cpu_map used to find the cache ID */ 1215 perf_cpu_map__put(cpu_map); 1216 1217 return id; 1218 } 1219 1220 /** 1221 * cpu__get_cache_id - Returns 0 if successful in populating the 1222 * cache level and cache id. Cache level is read from 1223 * /sys/devices/system/cpu/cpuX/cache/indexY/level where as cache instance ID 1224 * is the first CPU reported by 1225 * /sys/devices/system/cpu/cpuX/cache/indexY/shared_cpu_list 1226 */ 1227 static int cpu__get_cache_details(struct perf_cpu cpu, struct perf_cache *cache) 1228 { 1229 int ret = 0; 1230 u32 cache_level = stat_config.aggr_level; 1231 struct cpu_cache_level caches[MAX_CACHE_LVL]; 1232 u32 i = 0, caches_cnt = 0; 1233 1234 cache->cache_lvl = (cache_level > MAX_CACHE_LVL) ? 0 : cache_level; 1235 cache->cache = -1; 1236 1237 ret = build_caches_for_cpu(cpu.cpu, caches, &caches_cnt); 1238 if (ret) { 1239 /* 1240 * If caches_cnt is not 0, cpu_cache_level data 1241 * was allocated when building the topology. 1242 * Free the allocated data before returning. 1243 */ 1244 if (caches_cnt) 1245 goto free_caches; 1246 1247 return ret; 1248 } 1249 1250 if (!caches_cnt) 1251 return -1; 1252 1253 /* 1254 * Save the data for the highest level if no 1255 * level was specified by the user. 1256 */ 1257 if (cache_level > MAX_CACHE_LVL) { 1258 int max_level_index = 0; 1259 1260 for (i = 1; i < caches_cnt; ++i) { 1261 if (caches[i].level > caches[max_level_index].level) 1262 max_level_index = i; 1263 } 1264 1265 cache->cache_lvl = caches[max_level_index].level; 1266 cache->cache = cpu__get_cache_id_from_map(cpu, caches[max_level_index].map); 1267 1268 /* Reset i to 0 to free entire caches[] */ 1269 i = 0; 1270 goto free_caches; 1271 } 1272 1273 for (i = 0; i < caches_cnt; ++i) { 1274 if (caches[i].level == cache_level) { 1275 cache->cache_lvl = cache_level; 1276 cache->cache = cpu__get_cache_id_from_map(cpu, caches[i].map); 1277 } 1278 1279 cpu_cache_level__free(&caches[i]); 1280 } 1281 1282 free_caches: 1283 /* 1284 * Free all the allocated cpu_cache_level data. 1285 */ 1286 while (i < caches_cnt) 1287 cpu_cache_level__free(&caches[i++]); 1288 1289 return ret; 1290 } 1291 1292 /** 1293 * aggr_cpu_id__cache - Create an aggr_cpu_id with cache instache ID, cache 1294 * level, die and socket populated with the cache instache ID, cache level, 1295 * die and socket for cpu. The function signature is compatible with 1296 * aggr_cpu_id_get_t. 1297 */ 1298 static struct aggr_cpu_id aggr_cpu_id__cache(struct perf_cpu cpu, void *data) 1299 { 1300 int ret; 1301 struct aggr_cpu_id id; 1302 struct perf_cache cache; 1303 1304 id = aggr_cpu_id__die(cpu, data); 1305 if (aggr_cpu_id__is_empty(&id)) 1306 return id; 1307 1308 ret = cpu__get_cache_details(cpu, &cache); 1309 if (ret) 1310 return id; 1311 1312 id.cache_lvl = cache.cache_lvl; 1313 id.cache = cache.cache; 1314 return id; 1315 } 1316 1317 static const char *const aggr_mode__string[] = { 1318 [AGGR_CORE] = "core", 1319 [AGGR_CACHE] = "cache", 1320 [AGGR_CLUSTER] = "cluster", 1321 [AGGR_DIE] = "die", 1322 [AGGR_GLOBAL] = "global", 1323 [AGGR_NODE] = "node", 1324 [AGGR_NONE] = "none", 1325 [AGGR_SOCKET] = "socket", 1326 [AGGR_THREAD] = "thread", 1327 [AGGR_UNSET] = "unset", 1328 }; 1329 1330 static struct aggr_cpu_id perf_stat__get_socket(struct perf_stat_config *config __maybe_unused, 1331 struct perf_cpu cpu) 1332 { 1333 return aggr_cpu_id__socket(cpu, /*data=*/NULL); 1334 } 1335 1336 static struct aggr_cpu_id perf_stat__get_die(struct perf_stat_config *config __maybe_unused, 1337 struct perf_cpu cpu) 1338 { 1339 return aggr_cpu_id__die(cpu, /*data=*/NULL); 1340 } 1341 1342 static struct aggr_cpu_id perf_stat__get_cache_id(struct perf_stat_config *config __maybe_unused, 1343 struct perf_cpu cpu) 1344 { 1345 return aggr_cpu_id__cache(cpu, /*data=*/NULL); 1346 } 1347 1348 static struct aggr_cpu_id perf_stat__get_cluster(struct perf_stat_config *config __maybe_unused, 1349 struct perf_cpu cpu) 1350 { 1351 return aggr_cpu_id__cluster(cpu, /*data=*/NULL); 1352 } 1353 1354 static struct aggr_cpu_id perf_stat__get_core(struct perf_stat_config *config __maybe_unused, 1355 struct perf_cpu cpu) 1356 { 1357 return aggr_cpu_id__core(cpu, /*data=*/NULL); 1358 } 1359 1360 static struct aggr_cpu_id perf_stat__get_node(struct perf_stat_config *config __maybe_unused, 1361 struct perf_cpu cpu) 1362 { 1363 return aggr_cpu_id__node(cpu, /*data=*/NULL); 1364 } 1365 1366 static struct aggr_cpu_id perf_stat__get_global(struct perf_stat_config *config __maybe_unused, 1367 struct perf_cpu cpu) 1368 { 1369 return aggr_cpu_id__global(cpu, /*data=*/NULL); 1370 } 1371 1372 static struct aggr_cpu_id perf_stat__get_cpu(struct perf_stat_config *config __maybe_unused, 1373 struct perf_cpu cpu) 1374 { 1375 return aggr_cpu_id__cpu(cpu, /*data=*/NULL); 1376 } 1377 1378 static struct aggr_cpu_id perf_stat__get_aggr(struct perf_stat_config *config, 1379 aggr_get_id_t get_id, struct perf_cpu cpu) 1380 { 1381 struct aggr_cpu_id id; 1382 1383 /* per-process mode - should use global aggr mode */ 1384 if (cpu.cpu == -1) 1385 return get_id(config, cpu); 1386 1387 if (aggr_cpu_id__is_empty(&config->cpus_aggr_map->map[cpu.cpu])) 1388 config->cpus_aggr_map->map[cpu.cpu] = get_id(config, cpu); 1389 1390 id = config->cpus_aggr_map->map[cpu.cpu]; 1391 return id; 1392 } 1393 1394 static struct aggr_cpu_id perf_stat__get_socket_cached(struct perf_stat_config *config, 1395 struct perf_cpu cpu) 1396 { 1397 return perf_stat__get_aggr(config, perf_stat__get_socket, cpu); 1398 } 1399 1400 static struct aggr_cpu_id perf_stat__get_die_cached(struct perf_stat_config *config, 1401 struct perf_cpu cpu) 1402 { 1403 return perf_stat__get_aggr(config, perf_stat__get_die, cpu); 1404 } 1405 1406 static struct aggr_cpu_id perf_stat__get_cluster_cached(struct perf_stat_config *config, 1407 struct perf_cpu cpu) 1408 { 1409 return perf_stat__get_aggr(config, perf_stat__get_cluster, cpu); 1410 } 1411 1412 static struct aggr_cpu_id perf_stat__get_cache_id_cached(struct perf_stat_config *config, 1413 struct perf_cpu cpu) 1414 { 1415 return perf_stat__get_aggr(config, perf_stat__get_cache_id, cpu); 1416 } 1417 1418 static struct aggr_cpu_id perf_stat__get_core_cached(struct perf_stat_config *config, 1419 struct perf_cpu cpu) 1420 { 1421 return perf_stat__get_aggr(config, perf_stat__get_core, cpu); 1422 } 1423 1424 static struct aggr_cpu_id perf_stat__get_node_cached(struct perf_stat_config *config, 1425 struct perf_cpu cpu) 1426 { 1427 return perf_stat__get_aggr(config, perf_stat__get_node, cpu); 1428 } 1429 1430 static struct aggr_cpu_id perf_stat__get_global_cached(struct perf_stat_config *config, 1431 struct perf_cpu cpu) 1432 { 1433 return perf_stat__get_aggr(config, perf_stat__get_global, cpu); 1434 } 1435 1436 static struct aggr_cpu_id perf_stat__get_cpu_cached(struct perf_stat_config *config, 1437 struct perf_cpu cpu) 1438 { 1439 return perf_stat__get_aggr(config, perf_stat__get_cpu, cpu); 1440 } 1441 1442 static aggr_cpu_id_get_t aggr_mode__get_aggr(enum aggr_mode aggr_mode) 1443 { 1444 switch (aggr_mode) { 1445 case AGGR_SOCKET: 1446 return aggr_cpu_id__socket; 1447 case AGGR_DIE: 1448 return aggr_cpu_id__die; 1449 case AGGR_CLUSTER: 1450 return aggr_cpu_id__cluster; 1451 case AGGR_CACHE: 1452 return aggr_cpu_id__cache; 1453 case AGGR_CORE: 1454 return aggr_cpu_id__core; 1455 case AGGR_NODE: 1456 return aggr_cpu_id__node; 1457 case AGGR_NONE: 1458 return aggr_cpu_id__cpu; 1459 case AGGR_GLOBAL: 1460 return aggr_cpu_id__global; 1461 case AGGR_THREAD: 1462 case AGGR_UNSET: 1463 case AGGR_MAX: 1464 default: 1465 return NULL; 1466 } 1467 } 1468 1469 static aggr_get_id_t aggr_mode__get_id(enum aggr_mode aggr_mode) 1470 { 1471 switch (aggr_mode) { 1472 case AGGR_SOCKET: 1473 return perf_stat__get_socket_cached; 1474 case AGGR_DIE: 1475 return perf_stat__get_die_cached; 1476 case AGGR_CLUSTER: 1477 return perf_stat__get_cluster_cached; 1478 case AGGR_CACHE: 1479 return perf_stat__get_cache_id_cached; 1480 case AGGR_CORE: 1481 return perf_stat__get_core_cached; 1482 case AGGR_NODE: 1483 return perf_stat__get_node_cached; 1484 case AGGR_NONE: 1485 return perf_stat__get_cpu_cached; 1486 case AGGR_GLOBAL: 1487 return perf_stat__get_global_cached; 1488 case AGGR_THREAD: 1489 case AGGR_UNSET: 1490 case AGGR_MAX: 1491 default: 1492 return NULL; 1493 } 1494 } 1495 1496 static int perf_stat_init_aggr_mode(void) 1497 { 1498 int nr; 1499 aggr_cpu_id_get_t get_id = aggr_mode__get_aggr(stat_config.aggr_mode); 1500 1501 if (get_id) { 1502 bool needs_sort = stat_config.aggr_mode != AGGR_NONE; 1503 stat_config.aggr_map = cpu_aggr_map__new(evsel_list->core.user_requested_cpus, 1504 get_id, /*data=*/NULL, needs_sort); 1505 if (!stat_config.aggr_map) { 1506 pr_err("cannot build %s map\n", aggr_mode__string[stat_config.aggr_mode]); 1507 return -1; 1508 } 1509 stat_config.aggr_get_id = aggr_mode__get_id(stat_config.aggr_mode); 1510 } 1511 1512 if (stat_config.aggr_mode == AGGR_THREAD) { 1513 nr = perf_thread_map__nr(evsel_list->core.threads); 1514 stat_config.aggr_map = cpu_aggr_map__empty_new(nr); 1515 if (stat_config.aggr_map == NULL) 1516 return -ENOMEM; 1517 1518 for (int s = 0; s < nr; s++) { 1519 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1520 1521 id.thread_idx = s; 1522 stat_config.aggr_map->map[s] = id; 1523 } 1524 return 0; 1525 } 1526 1527 /* 1528 * The evsel_list->cpus is the base we operate on, 1529 * taking the highest cpu number to be the size of 1530 * the aggregation translate cpumap. 1531 */ 1532 if (!perf_cpu_map__is_any_cpu_or_is_empty(evsel_list->core.user_requested_cpus)) 1533 nr = perf_cpu_map__max(evsel_list->core.user_requested_cpus).cpu; 1534 else 1535 nr = 0; 1536 stat_config.cpus_aggr_map = cpu_aggr_map__empty_new(nr + 1); 1537 return stat_config.cpus_aggr_map ? 0 : -ENOMEM; 1538 } 1539 1540 static void cpu_aggr_map__delete(struct cpu_aggr_map *map) 1541 { 1542 free(map); 1543 } 1544 1545 static void perf_stat__exit_aggr_mode(void) 1546 { 1547 cpu_aggr_map__delete(stat_config.aggr_map); 1548 cpu_aggr_map__delete(stat_config.cpus_aggr_map); 1549 stat_config.aggr_map = NULL; 1550 stat_config.cpus_aggr_map = NULL; 1551 } 1552 1553 static struct aggr_cpu_id perf_env__get_socket_aggr_by_cpu(struct perf_cpu cpu, void *data) 1554 { 1555 struct perf_env *env = data; 1556 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1557 1558 if (cpu.cpu != -1) 1559 id.socket = env->cpu[cpu.cpu].socket_id; 1560 1561 return id; 1562 } 1563 1564 static struct aggr_cpu_id perf_env__get_die_aggr_by_cpu(struct perf_cpu cpu, void *data) 1565 { 1566 struct perf_env *env = data; 1567 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1568 1569 if (cpu.cpu != -1) { 1570 /* 1571 * die_id is relative to socket, so start 1572 * with the socket ID and then add die to 1573 * make a unique ID. 1574 */ 1575 id.socket = env->cpu[cpu.cpu].socket_id; 1576 id.die = env->cpu[cpu.cpu].die_id; 1577 } 1578 1579 return id; 1580 } 1581 1582 static void perf_env__get_cache_id_for_cpu(struct perf_cpu cpu, struct perf_env *env, 1583 u32 cache_level, struct aggr_cpu_id *id) 1584 { 1585 int i; 1586 int caches_cnt = env->caches_cnt; 1587 struct cpu_cache_level *caches = env->caches; 1588 1589 id->cache_lvl = (cache_level > MAX_CACHE_LVL) ? 0 : cache_level; 1590 id->cache = -1; 1591 1592 if (!caches_cnt) 1593 return; 1594 1595 for (i = caches_cnt - 1; i > -1; --i) { 1596 struct perf_cpu_map *cpu_map; 1597 int map_contains_cpu; 1598 1599 /* 1600 * If user has not specified a level, find the fist level with 1601 * the cpu in the map. Since building the map is expensive, do 1602 * this only if levels match. 1603 */ 1604 if (cache_level <= MAX_CACHE_LVL && caches[i].level != cache_level) 1605 continue; 1606 1607 cpu_map = perf_cpu_map__new(caches[i].map); 1608 map_contains_cpu = perf_cpu_map__idx(cpu_map, cpu); 1609 perf_cpu_map__put(cpu_map); 1610 1611 if (map_contains_cpu != -1) { 1612 id->cache_lvl = caches[i].level; 1613 id->cache = cpu__get_cache_id_from_map(cpu, caches[i].map); 1614 return; 1615 } 1616 } 1617 } 1618 1619 static struct aggr_cpu_id perf_env__get_cache_aggr_by_cpu(struct perf_cpu cpu, 1620 void *data) 1621 { 1622 struct perf_env *env = data; 1623 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1624 1625 if (cpu.cpu != -1) { 1626 u32 cache_level = (perf_stat.aggr_level) ?: stat_config.aggr_level; 1627 1628 id.socket = env->cpu[cpu.cpu].socket_id; 1629 id.die = env->cpu[cpu.cpu].die_id; 1630 perf_env__get_cache_id_for_cpu(cpu, env, cache_level, &id); 1631 } 1632 1633 return id; 1634 } 1635 1636 static struct aggr_cpu_id perf_env__get_cluster_aggr_by_cpu(struct perf_cpu cpu, 1637 void *data) 1638 { 1639 struct perf_env *env = data; 1640 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1641 1642 if (cpu.cpu != -1) { 1643 id.socket = env->cpu[cpu.cpu].socket_id; 1644 id.die = env->cpu[cpu.cpu].die_id; 1645 id.cluster = env->cpu[cpu.cpu].cluster_id; 1646 } 1647 1648 return id; 1649 } 1650 1651 static struct aggr_cpu_id perf_env__get_core_aggr_by_cpu(struct perf_cpu cpu, void *data) 1652 { 1653 struct perf_env *env = data; 1654 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1655 1656 if (cpu.cpu != -1) { 1657 /* 1658 * core_id is relative to socket, die and cluster, we need a 1659 * global id. So we set socket, die id, cluster id and core id. 1660 */ 1661 id.socket = env->cpu[cpu.cpu].socket_id; 1662 id.die = env->cpu[cpu.cpu].die_id; 1663 id.cluster = env->cpu[cpu.cpu].cluster_id; 1664 id.core = env->cpu[cpu.cpu].core_id; 1665 } 1666 1667 return id; 1668 } 1669 1670 static struct aggr_cpu_id perf_env__get_cpu_aggr_by_cpu(struct perf_cpu cpu, void *data) 1671 { 1672 struct perf_env *env = data; 1673 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1674 1675 if (cpu.cpu != -1) { 1676 /* 1677 * core_id is relative to socket and die, 1678 * we need a global id. So we set 1679 * socket, die id and core id 1680 */ 1681 id.socket = env->cpu[cpu.cpu].socket_id; 1682 id.die = env->cpu[cpu.cpu].die_id; 1683 id.core = env->cpu[cpu.cpu].core_id; 1684 id.cpu = cpu; 1685 } 1686 1687 return id; 1688 } 1689 1690 static struct aggr_cpu_id perf_env__get_node_aggr_by_cpu(struct perf_cpu cpu, void *data) 1691 { 1692 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1693 1694 id.node = perf_env__numa_node(data, cpu); 1695 return id; 1696 } 1697 1698 static struct aggr_cpu_id perf_env__get_global_aggr_by_cpu(struct perf_cpu cpu __maybe_unused, 1699 void *data __maybe_unused) 1700 { 1701 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1702 1703 /* it always aggregates to the cpu 0 */ 1704 id.cpu = (struct perf_cpu){ .cpu = 0 }; 1705 return id; 1706 } 1707 1708 static struct aggr_cpu_id perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused, 1709 struct perf_cpu cpu) 1710 { 1711 return perf_env__get_socket_aggr_by_cpu(cpu, &perf_stat.session->header.env); 1712 } 1713 static struct aggr_cpu_id perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused, 1714 struct perf_cpu cpu) 1715 { 1716 return perf_env__get_die_aggr_by_cpu(cpu, &perf_stat.session->header.env); 1717 } 1718 1719 static struct aggr_cpu_id perf_stat__get_cluster_file(struct perf_stat_config *config __maybe_unused, 1720 struct perf_cpu cpu) 1721 { 1722 return perf_env__get_cluster_aggr_by_cpu(cpu, &perf_stat.session->header.env); 1723 } 1724 1725 static struct aggr_cpu_id perf_stat__get_cache_file(struct perf_stat_config *config __maybe_unused, 1726 struct perf_cpu cpu) 1727 { 1728 return perf_env__get_cache_aggr_by_cpu(cpu, &perf_stat.session->header.env); 1729 } 1730 1731 static struct aggr_cpu_id perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused, 1732 struct perf_cpu cpu) 1733 { 1734 return perf_env__get_core_aggr_by_cpu(cpu, &perf_stat.session->header.env); 1735 } 1736 1737 static struct aggr_cpu_id perf_stat__get_cpu_file(struct perf_stat_config *config __maybe_unused, 1738 struct perf_cpu cpu) 1739 { 1740 return perf_env__get_cpu_aggr_by_cpu(cpu, &perf_stat.session->header.env); 1741 } 1742 1743 static struct aggr_cpu_id perf_stat__get_node_file(struct perf_stat_config *config __maybe_unused, 1744 struct perf_cpu cpu) 1745 { 1746 return perf_env__get_node_aggr_by_cpu(cpu, &perf_stat.session->header.env); 1747 } 1748 1749 static struct aggr_cpu_id perf_stat__get_global_file(struct perf_stat_config *config __maybe_unused, 1750 struct perf_cpu cpu) 1751 { 1752 return perf_env__get_global_aggr_by_cpu(cpu, &perf_stat.session->header.env); 1753 } 1754 1755 static aggr_cpu_id_get_t aggr_mode__get_aggr_file(enum aggr_mode aggr_mode) 1756 { 1757 switch (aggr_mode) { 1758 case AGGR_SOCKET: 1759 return perf_env__get_socket_aggr_by_cpu; 1760 case AGGR_DIE: 1761 return perf_env__get_die_aggr_by_cpu; 1762 case AGGR_CLUSTER: 1763 return perf_env__get_cluster_aggr_by_cpu; 1764 case AGGR_CACHE: 1765 return perf_env__get_cache_aggr_by_cpu; 1766 case AGGR_CORE: 1767 return perf_env__get_core_aggr_by_cpu; 1768 case AGGR_NODE: 1769 return perf_env__get_node_aggr_by_cpu; 1770 case AGGR_GLOBAL: 1771 return perf_env__get_global_aggr_by_cpu; 1772 case AGGR_NONE: 1773 return perf_env__get_cpu_aggr_by_cpu; 1774 case AGGR_THREAD: 1775 case AGGR_UNSET: 1776 case AGGR_MAX: 1777 default: 1778 return NULL; 1779 } 1780 } 1781 1782 static aggr_get_id_t aggr_mode__get_id_file(enum aggr_mode aggr_mode) 1783 { 1784 switch (aggr_mode) { 1785 case AGGR_SOCKET: 1786 return perf_stat__get_socket_file; 1787 case AGGR_DIE: 1788 return perf_stat__get_die_file; 1789 case AGGR_CLUSTER: 1790 return perf_stat__get_cluster_file; 1791 case AGGR_CACHE: 1792 return perf_stat__get_cache_file; 1793 case AGGR_CORE: 1794 return perf_stat__get_core_file; 1795 case AGGR_NODE: 1796 return perf_stat__get_node_file; 1797 case AGGR_GLOBAL: 1798 return perf_stat__get_global_file; 1799 case AGGR_NONE: 1800 return perf_stat__get_cpu_file; 1801 case AGGR_THREAD: 1802 case AGGR_UNSET: 1803 case AGGR_MAX: 1804 default: 1805 return NULL; 1806 } 1807 } 1808 1809 static int perf_stat_init_aggr_mode_file(struct perf_stat *st) 1810 { 1811 struct perf_env *env = &st->session->header.env; 1812 aggr_cpu_id_get_t get_id = aggr_mode__get_aggr_file(stat_config.aggr_mode); 1813 bool needs_sort = stat_config.aggr_mode != AGGR_NONE; 1814 1815 if (stat_config.aggr_mode == AGGR_THREAD) { 1816 int nr = perf_thread_map__nr(evsel_list->core.threads); 1817 1818 stat_config.aggr_map = cpu_aggr_map__empty_new(nr); 1819 if (stat_config.aggr_map == NULL) 1820 return -ENOMEM; 1821 1822 for (int s = 0; s < nr; s++) { 1823 struct aggr_cpu_id id = aggr_cpu_id__empty(); 1824 1825 id.thread_idx = s; 1826 stat_config.aggr_map->map[s] = id; 1827 } 1828 return 0; 1829 } 1830 1831 if (!get_id) 1832 return 0; 1833 1834 stat_config.aggr_map = cpu_aggr_map__new(evsel_list->core.user_requested_cpus, 1835 get_id, env, needs_sort); 1836 if (!stat_config.aggr_map) { 1837 pr_err("cannot build %s map\n", aggr_mode__string[stat_config.aggr_mode]); 1838 return -1; 1839 } 1840 stat_config.aggr_get_id = aggr_mode__get_id_file(stat_config.aggr_mode); 1841 return 0; 1842 } 1843 1844 /* 1845 * Add default events, if there were no attributes specified or 1846 * if -d/--detailed, -d -d or -d -d -d is used: 1847 */ 1848 static int add_default_events(void) 1849 { 1850 const char *pmu = parse_events_option_args.pmu_filter ?: "all"; 1851 struct parse_events_error err; 1852 struct evlist *evlist = evlist__new(); 1853 struct evsel *evsel; 1854 int ret = 0; 1855 1856 if (!evlist) 1857 return -ENOMEM; 1858 1859 parse_events_error__init(&err); 1860 1861 /* Set attrs if no event is selected and !null_run: */ 1862 if (stat_config.null_run) 1863 goto out; 1864 1865 if (transaction_run) { 1866 /* Handle -T as -M transaction. Once platform specific metrics 1867 * support has been added to the json files, all architectures 1868 * will use this approach. To determine transaction support 1869 * on an architecture test for such a metric name. 1870 */ 1871 if (!metricgroup__has_metric(pmu, "transaction")) { 1872 pr_err("Missing transaction metrics\n"); 1873 ret = -1; 1874 goto out; 1875 } 1876 ret = metricgroup__parse_groups(evlist, pmu, "transaction", 1877 stat_config.metric_no_group, 1878 stat_config.metric_no_merge, 1879 stat_config.metric_no_threshold, 1880 stat_config.user_requested_cpu_list, 1881 stat_config.system_wide, 1882 stat_config.hardware_aware_grouping, 1883 &stat_config.metric_events); 1884 goto out; 1885 } 1886 1887 if (smi_cost) { 1888 int smi; 1889 1890 if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) { 1891 pr_err("freeze_on_smi is not supported.\n"); 1892 ret = -1; 1893 goto out; 1894 } 1895 1896 if (!smi) { 1897 if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) { 1898 pr_err("Failed to set freeze_on_smi.\n"); 1899 ret = -1; 1900 goto out; 1901 } 1902 smi_reset = true; 1903 } 1904 1905 if (!metricgroup__has_metric(pmu, "smi")) { 1906 pr_err("Missing smi metrics\n"); 1907 ret = -1; 1908 goto out; 1909 } 1910 1911 if (!force_metric_only) 1912 stat_config.metric_only = true; 1913 1914 ret = metricgroup__parse_groups(evlist, pmu, "smi", 1915 stat_config.metric_no_group, 1916 stat_config.metric_no_merge, 1917 stat_config.metric_no_threshold, 1918 stat_config.user_requested_cpu_list, 1919 stat_config.system_wide, 1920 stat_config.hardware_aware_grouping, 1921 &stat_config.metric_events); 1922 goto out; 1923 } 1924 1925 if (topdown_run) { 1926 unsigned int max_level = metricgroups__topdown_max_level(); 1927 char str[] = "TopdownL1"; 1928 1929 if (!force_metric_only) 1930 stat_config.metric_only = true; 1931 1932 if (!max_level) { 1933 pr_err("Topdown requested but the topdown metric groups aren't present.\n" 1934 "(See perf list the metric groups have names like TopdownL1)\n"); 1935 ret = -1; 1936 goto out; 1937 } 1938 if (stat_config.topdown_level > max_level) { 1939 pr_err("Invalid top-down metrics level. The max level is %u.\n", max_level); 1940 ret = -1; 1941 goto out; 1942 } else if (!stat_config.topdown_level) { 1943 stat_config.topdown_level = 1; 1944 } 1945 if (!stat_config.interval && !stat_config.metric_only) { 1946 fprintf(stat_config.output, 1947 "Topdown accuracy may decrease when measuring long periods.\n" 1948 "Please print the result regularly, e.g. -I1000\n"); 1949 } 1950 str[8] = stat_config.topdown_level + '0'; 1951 if (metricgroup__parse_groups(evlist, 1952 pmu, str, 1953 /*metric_no_group=*/false, 1954 /*metric_no_merge=*/false, 1955 /*metric_no_threshold=*/true, 1956 stat_config.user_requested_cpu_list, 1957 stat_config.system_wide, 1958 stat_config.hardware_aware_grouping, 1959 &stat_config.metric_events) < 0) { 1960 ret = -1; 1961 goto out; 1962 } 1963 } 1964 1965 if (!stat_config.topdown_level) 1966 stat_config.topdown_level = 1; 1967 1968 if (!evlist->core.nr_entries && !evsel_list->core.nr_entries) { 1969 /* No events so add defaults. */ 1970 if (target__has_cpu(&target)) 1971 ret = parse_events(evlist, "cpu-clock", &err); 1972 else 1973 ret = parse_events(evlist, "task-clock", &err); 1974 if (ret) 1975 goto out; 1976 1977 ret = parse_events(evlist, 1978 "context-switches," 1979 "cpu-migrations," 1980 "page-faults," 1981 "instructions," 1982 "cycles," 1983 "stalled-cycles-frontend," 1984 "stalled-cycles-backend," 1985 "branches," 1986 "branch-misses", 1987 &err); 1988 if (ret) 1989 goto out; 1990 1991 /* 1992 * Add TopdownL1 metrics if they exist. To minimize 1993 * multiplexing, don't request threshold computation. 1994 */ 1995 if (metricgroup__has_metric(pmu, "Default")) { 1996 struct evlist *metric_evlist = evlist__new(); 1997 1998 if (!metric_evlist) { 1999 ret = -ENOMEM; 2000 goto out; 2001 } 2002 if (metricgroup__parse_groups(metric_evlist, pmu, "Default", 2003 /*metric_no_group=*/false, 2004 /*metric_no_merge=*/false, 2005 /*metric_no_threshold=*/true, 2006 stat_config.user_requested_cpu_list, 2007 stat_config.system_wide, 2008 stat_config.hardware_aware_grouping, 2009 &stat_config.metric_events) < 0) { 2010 ret = -1; 2011 goto out; 2012 } 2013 2014 evlist__for_each_entry(metric_evlist, evsel) 2015 evsel->default_metricgroup = true; 2016 2017 evlist__splice_list_tail(evlist, &metric_evlist->core.entries); 2018 evlist__delete(metric_evlist); 2019 } 2020 } 2021 2022 /* Detailed events get appended to the event list: */ 2023 2024 if (!ret && detailed_run >= 1) { 2025 /* 2026 * Detailed stats (-d), covering the L1 and last level data 2027 * caches: 2028 */ 2029 ret = parse_events(evlist, 2030 "L1-dcache-loads," 2031 "L1-dcache-load-misses," 2032 "LLC-loads," 2033 "LLC-load-misses", 2034 &err); 2035 } 2036 if (!ret && detailed_run >= 2) { 2037 /* 2038 * Very detailed stats (-d -d), covering the instruction cache 2039 * and the TLB caches: 2040 */ 2041 ret = parse_events(evlist, 2042 "L1-icache-loads," 2043 "L1-icache-load-misses," 2044 "dTLB-loads," 2045 "dTLB-load-misses," 2046 "iTLB-loads," 2047 "iTLB-load-misses", 2048 &err); 2049 } 2050 if (!ret && detailed_run >= 3) { 2051 /* 2052 * Very, very detailed stats (-d -d -d), adding prefetch events: 2053 */ 2054 ret = parse_events(evlist, 2055 "L1-dcache-prefetches," 2056 "L1-dcache-prefetch-misses", 2057 &err); 2058 } 2059 out: 2060 if (!ret) { 2061 evlist__for_each_entry(evlist, evsel) { 2062 /* 2063 * Make at least one event non-skippable so fatal errors are visible. 2064 * 'cycles' always used to be default and non-skippable, so use that. 2065 */ 2066 if (strcmp("cycles", evsel__name(evsel))) 2067 evsel->skippable = true; 2068 } 2069 } 2070 parse_events_error__exit(&err); 2071 evlist__splice_list_tail(evsel_list, &evlist->core.entries); 2072 evlist__delete(evlist); 2073 return ret; 2074 } 2075 2076 static const char * const stat_record_usage[] = { 2077 "perf stat record [<options>]", 2078 NULL, 2079 }; 2080 2081 static void init_features(struct perf_session *session) 2082 { 2083 int feat; 2084 2085 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++) 2086 perf_header__set_feat(&session->header, feat); 2087 2088 perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT); 2089 perf_header__clear_feat(&session->header, HEADER_BUILD_ID); 2090 perf_header__clear_feat(&session->header, HEADER_TRACING_DATA); 2091 perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK); 2092 perf_header__clear_feat(&session->header, HEADER_AUXTRACE); 2093 } 2094 2095 static int __cmd_record(const struct option stat_options[], struct opt_aggr_mode *opt_mode, 2096 int argc, const char **argv) 2097 { 2098 struct perf_session *session; 2099 struct perf_data *data = &perf_stat.data; 2100 2101 argc = parse_options(argc, argv, stat_options, stat_record_usage, 2102 PARSE_OPT_STOP_AT_NON_OPTION); 2103 stat_config.aggr_mode = opt_aggr_mode_to_aggr_mode(opt_mode); 2104 2105 if (output_name) 2106 data->path = output_name; 2107 2108 if (stat_config.run_count != 1 || forever) { 2109 pr_err("Cannot use -r option with perf stat record.\n"); 2110 return -1; 2111 } 2112 2113 session = perf_session__new(data, NULL); 2114 if (IS_ERR(session)) { 2115 pr_err("Perf session creation failed\n"); 2116 return PTR_ERR(session); 2117 } 2118 2119 init_features(session); 2120 2121 session->evlist = evsel_list; 2122 perf_stat.session = session; 2123 perf_stat.record = true; 2124 return argc; 2125 } 2126 2127 static int process_stat_round_event(struct perf_session *session, 2128 union perf_event *event) 2129 { 2130 struct perf_record_stat_round *stat_round = &event->stat_round; 2131 struct timespec tsh, *ts = NULL; 2132 const char **argv = session->header.env.cmdline_argv; 2133 int argc = session->header.env.nr_cmdline; 2134 2135 process_counters(); 2136 2137 if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL) 2138 update_stats(&walltime_nsecs_stats, stat_round->time); 2139 2140 if (stat_config.interval && stat_round->time) { 2141 tsh.tv_sec = stat_round->time / NSEC_PER_SEC; 2142 tsh.tv_nsec = stat_round->time % NSEC_PER_SEC; 2143 ts = &tsh; 2144 } 2145 2146 print_counters(ts, argc, argv); 2147 return 0; 2148 } 2149 2150 static 2151 int process_stat_config_event(struct perf_session *session, 2152 union perf_event *event) 2153 { 2154 const struct perf_tool *tool = session->tool; 2155 struct perf_stat *st = container_of(tool, struct perf_stat, tool); 2156 2157 perf_event__read_stat_config(&stat_config, &event->stat_config); 2158 2159 if (perf_cpu_map__is_empty(st->cpus)) { 2160 if (st->aggr_mode != AGGR_UNSET) 2161 pr_warning("warning: processing task data, aggregation mode not set\n"); 2162 } else if (st->aggr_mode != AGGR_UNSET) { 2163 stat_config.aggr_mode = st->aggr_mode; 2164 } 2165 2166 if (perf_stat.data.is_pipe) 2167 perf_stat_init_aggr_mode(); 2168 else 2169 perf_stat_init_aggr_mode_file(st); 2170 2171 if (stat_config.aggr_map) { 2172 int nr_aggr = stat_config.aggr_map->nr; 2173 2174 if (evlist__alloc_aggr_stats(session->evlist, nr_aggr) < 0) { 2175 pr_err("cannot allocate aggr counts\n"); 2176 return -1; 2177 } 2178 } 2179 return 0; 2180 } 2181 2182 static int set_maps(struct perf_stat *st) 2183 { 2184 if (!st->cpus || !st->threads) 2185 return 0; 2186 2187 if (WARN_ONCE(st->maps_allocated, "stats double allocation\n")) 2188 return -EINVAL; 2189 2190 perf_evlist__set_maps(&evsel_list->core, st->cpus, st->threads); 2191 2192 if (evlist__alloc_stats(&stat_config, evsel_list, /*alloc_raw=*/true)) 2193 return -ENOMEM; 2194 2195 st->maps_allocated = true; 2196 return 0; 2197 } 2198 2199 static 2200 int process_thread_map_event(struct perf_session *session, 2201 union perf_event *event) 2202 { 2203 const struct perf_tool *tool = session->tool; 2204 struct perf_stat *st = container_of(tool, struct perf_stat, tool); 2205 2206 if (st->threads) { 2207 pr_warning("Extra thread map event, ignoring.\n"); 2208 return 0; 2209 } 2210 2211 st->threads = thread_map__new_event(&event->thread_map); 2212 if (!st->threads) 2213 return -ENOMEM; 2214 2215 return set_maps(st); 2216 } 2217 2218 static 2219 int process_cpu_map_event(struct perf_session *session, 2220 union perf_event *event) 2221 { 2222 const struct perf_tool *tool = session->tool; 2223 struct perf_stat *st = container_of(tool, struct perf_stat, tool); 2224 struct perf_cpu_map *cpus; 2225 2226 if (st->cpus) { 2227 pr_warning("Extra cpu map event, ignoring.\n"); 2228 return 0; 2229 } 2230 2231 cpus = cpu_map__new_data(&event->cpu_map.data); 2232 if (!cpus) 2233 return -ENOMEM; 2234 2235 st->cpus = cpus; 2236 return set_maps(st); 2237 } 2238 2239 static const char * const stat_report_usage[] = { 2240 "perf stat report [<options>]", 2241 NULL, 2242 }; 2243 2244 static struct perf_stat perf_stat = { 2245 .aggr_mode = AGGR_UNSET, 2246 .aggr_level = 0, 2247 }; 2248 2249 static int __cmd_report(int argc, const char **argv) 2250 { 2251 struct perf_session *session; 2252 const struct option options[] = { 2253 OPT_STRING('i', "input", &input_name, "file", "input file name"), 2254 OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode, 2255 "aggregate counts per processor socket", AGGR_SOCKET), 2256 OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode, 2257 "aggregate counts per processor die", AGGR_DIE), 2258 OPT_SET_UINT(0, "per-cluster", &perf_stat.aggr_mode, 2259 "aggregate counts perf processor cluster", AGGR_CLUSTER), 2260 OPT_CALLBACK_OPTARG(0, "per-cache", &perf_stat.aggr_mode, &perf_stat.aggr_level, 2261 "cache level", 2262 "aggregate count at this cache level (Default: LLC)", 2263 parse_cache_level), 2264 OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode, 2265 "aggregate counts per physical processor core", AGGR_CORE), 2266 OPT_SET_UINT(0, "per-node", &perf_stat.aggr_mode, 2267 "aggregate counts per numa node", AGGR_NODE), 2268 OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode, 2269 "disable CPU count aggregation", AGGR_NONE), 2270 OPT_END() 2271 }; 2272 struct stat st; 2273 int ret; 2274 2275 argc = parse_options(argc, argv, options, stat_report_usage, 0); 2276 2277 if (!input_name || !strlen(input_name)) { 2278 if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode)) 2279 input_name = "-"; 2280 else 2281 input_name = "perf.data"; 2282 } 2283 2284 perf_stat.data.path = input_name; 2285 perf_stat.data.mode = PERF_DATA_MODE_READ; 2286 2287 perf_tool__init(&perf_stat.tool, /*ordered_events=*/false); 2288 perf_stat.tool.attr = perf_event__process_attr; 2289 perf_stat.tool.event_update = perf_event__process_event_update; 2290 perf_stat.tool.thread_map = process_thread_map_event; 2291 perf_stat.tool.cpu_map = process_cpu_map_event; 2292 perf_stat.tool.stat_config = process_stat_config_event; 2293 perf_stat.tool.stat = perf_event__process_stat_event; 2294 perf_stat.tool.stat_round = process_stat_round_event; 2295 2296 session = perf_session__new(&perf_stat.data, &perf_stat.tool); 2297 if (IS_ERR(session)) 2298 return PTR_ERR(session); 2299 2300 perf_stat.session = session; 2301 stat_config.output = stderr; 2302 evlist__delete(evsel_list); 2303 evsel_list = session->evlist; 2304 2305 ret = perf_session__process_events(session); 2306 if (ret) 2307 return ret; 2308 2309 perf_session__delete(session); 2310 return 0; 2311 } 2312 2313 static void setup_system_wide(int forks) 2314 { 2315 /* 2316 * Make system wide (-a) the default target if 2317 * no target was specified and one of following 2318 * conditions is met: 2319 * 2320 * - there's no workload specified 2321 * - there is workload specified but all requested 2322 * events are system wide events 2323 */ 2324 if (!target__none(&target)) 2325 return; 2326 2327 if (!forks) 2328 target.system_wide = true; 2329 else { 2330 struct evsel *counter; 2331 2332 evlist__for_each_entry(evsel_list, counter) { 2333 if (!counter->core.requires_cpu && 2334 !evsel__name_is(counter, "duration_time")) { 2335 return; 2336 } 2337 } 2338 2339 if (evsel_list->core.nr_entries) 2340 target.system_wide = true; 2341 } 2342 } 2343 2344 int cmd_stat(int argc, const char **argv) 2345 { 2346 struct opt_aggr_mode opt_mode = {}; 2347 struct option stat_options[] = { 2348 OPT_BOOLEAN('T', "transaction", &transaction_run, 2349 "hardware transaction statistics"), 2350 OPT_CALLBACK('e', "event", &parse_events_option_args, "event", 2351 "event selector. use 'perf list' to list available events", 2352 parse_events_option), 2353 OPT_CALLBACK(0, "filter", &evsel_list, "filter", 2354 "event filter", parse_filter), 2355 OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit, 2356 "child tasks do not inherit counters"), 2357 OPT_STRING('p', "pid", &target.pid, "pid", 2358 "stat events on existing process id"), 2359 OPT_STRING('t', "tid", &target.tid, "tid", 2360 "stat events on existing thread id"), 2361 #ifdef HAVE_BPF_SKEL 2362 OPT_STRING('b', "bpf-prog", &target.bpf_str, "bpf-prog-id", 2363 "stat events on existing bpf program id"), 2364 OPT_BOOLEAN(0, "bpf-counters", &target.use_bpf, 2365 "use bpf program to count events"), 2366 OPT_STRING(0, "bpf-attr-map", &target.attr_map, "attr-map-path", 2367 "path to perf_event_attr map"), 2368 #endif 2369 OPT_BOOLEAN('a', "all-cpus", &target.system_wide, 2370 "system-wide collection from all CPUs"), 2371 OPT_BOOLEAN(0, "scale", &stat_config.scale, 2372 "Use --no-scale to disable counter scaling for multiplexing"), 2373 OPT_INCR('v', "verbose", &verbose, 2374 "be more verbose (show counter open errors, etc)"), 2375 OPT_INTEGER('r', "repeat", &stat_config.run_count, 2376 "repeat command and print average + stddev (max: 100, forever: 0)"), 2377 OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table, 2378 "display details about each run (only with -r option)"), 2379 OPT_BOOLEAN('n', "null", &stat_config.null_run, 2380 "null run - dont start any counters"), 2381 OPT_INCR('d', "detailed", &detailed_run, 2382 "detailed run - start a lot of events"), 2383 OPT_BOOLEAN('S', "sync", &sync_run, 2384 "call sync() before starting a run"), 2385 OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL, 2386 "print large numbers with thousands\' separators", 2387 stat__set_big_num), 2388 OPT_STRING('C', "cpu", &target.cpu_list, "cpu", 2389 "list of cpus to monitor in system-wide"), 2390 OPT_BOOLEAN('A', "no-aggr", &opt_mode.no_aggr, 2391 "disable aggregation across CPUs or PMUs"), 2392 OPT_BOOLEAN(0, "no-merge", &opt_mode.no_aggr, 2393 "disable aggregation the same as -A or -no-aggr"), 2394 OPT_BOOLEAN(0, "hybrid-merge", &stat_config.hybrid_merge, 2395 "Merge identical named hybrid events"), 2396 OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator", 2397 "print counts with custom separator"), 2398 OPT_BOOLEAN('j', "json-output", &stat_config.json_output, 2399 "print counts in JSON format"), 2400 OPT_CALLBACK('G', "cgroup", &evsel_list, "name", 2401 "monitor event in cgroup name only", parse_stat_cgroups), 2402 OPT_STRING(0, "for-each-cgroup", &stat_config.cgroup_list, "name", 2403 "expand events for each cgroup"), 2404 OPT_STRING('o', "output", &output_name, "file", "output file name"), 2405 OPT_BOOLEAN(0, "append", &append_file, "append to the output file"), 2406 OPT_INTEGER(0, "log-fd", &output_fd, 2407 "log output to fd, instead of stderr"), 2408 OPT_STRING(0, "pre", &pre_cmd, "command", 2409 "command to run prior to the measured command"), 2410 OPT_STRING(0, "post", &post_cmd, "command", 2411 "command to run after to the measured command"), 2412 OPT_UINTEGER('I', "interval-print", &stat_config.interval, 2413 "print counts at regular interval in ms " 2414 "(overhead is possible for values <= 100ms)"), 2415 OPT_INTEGER(0, "interval-count", &stat_config.times, 2416 "print counts for fixed number of times"), 2417 OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear, 2418 "clear screen in between new interval"), 2419 OPT_UINTEGER(0, "timeout", &stat_config.timeout, 2420 "stop workload and print counts after a timeout period in ms (>= 10ms)"), 2421 OPT_BOOLEAN(0, "per-socket", &opt_mode.socket, 2422 "aggregate counts per processor socket"), 2423 OPT_BOOLEAN(0, "per-die", &opt_mode.die, "aggregate counts per processor die"), 2424 OPT_BOOLEAN(0, "per-cluster", &opt_mode.cluster, 2425 "aggregate counts per processor cluster"), 2426 OPT_CALLBACK_OPTARG(0, "per-cache", &opt_mode, &stat_config.aggr_level, 2427 "cache level", "aggregate count at this cache level (Default: LLC)", 2428 parse_cache_level), 2429 OPT_BOOLEAN(0, "per-core", &opt_mode.core, 2430 "aggregate counts per physical processor core"), 2431 OPT_BOOLEAN(0, "per-thread", &opt_mode.thread, "aggregate counts per thread"), 2432 OPT_BOOLEAN(0, "per-node", &opt_mode.node, "aggregate counts per numa node"), 2433 OPT_INTEGER('D', "delay", &target.initial_delay, 2434 "ms to wait before starting measurement after program start (-1: start with events disabled)"), 2435 OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL, 2436 "Only print computed metrics. No raw values", enable_metric_only), 2437 OPT_BOOLEAN(0, "metric-no-group", &stat_config.metric_no_group, 2438 "don't group metric events, impacts multiplexing"), 2439 OPT_BOOLEAN(0, "metric-no-merge", &stat_config.metric_no_merge, 2440 "don't try to share events between metrics in a group"), 2441 OPT_BOOLEAN(0, "metric-no-threshold", &stat_config.metric_no_threshold, 2442 "disable adding events for the metric threshold calculation"), 2443 OPT_BOOLEAN(0, "topdown", &topdown_run, 2444 "measure top-down statistics"), 2445 #ifdef HAVE_ARCH_X86_64_SUPPORT 2446 OPT_BOOLEAN(0, "record-tpebs", &tpebs_recording, 2447 "enable recording for tpebs when retire_latency required"), 2448 #endif 2449 OPT_UINTEGER(0, "td-level", &stat_config.topdown_level, 2450 "Set the metrics level for the top-down statistics (0: max level)"), 2451 OPT_BOOLEAN(0, "smi-cost", &smi_cost, 2452 "measure SMI cost"), 2453 OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list", 2454 "monitor specified metrics or metric groups (separated by ,)", 2455 append_metric_groups), 2456 OPT_BOOLEAN_FLAG(0, "all-kernel", &stat_config.all_kernel, 2457 "Configure all used events to run in kernel space.", 2458 PARSE_OPT_EXCLUSIVE), 2459 OPT_BOOLEAN_FLAG(0, "all-user", &stat_config.all_user, 2460 "Configure all used events to run in user space.", 2461 PARSE_OPT_EXCLUSIVE), 2462 OPT_BOOLEAN(0, "percore-show-thread", &stat_config.percore_show_thread, 2463 "Use with 'percore' event qualifier to show the event " 2464 "counts of one hardware thread by sum up total hardware " 2465 "threads of same physical core"), 2466 OPT_BOOLEAN(0, "summary", &stat_config.summary, 2467 "print summary for interval mode"), 2468 OPT_BOOLEAN(0, "no-csv-summary", &stat_config.no_csv_summary, 2469 "don't print 'summary' for CSV summary output"), 2470 OPT_BOOLEAN(0, "quiet", &quiet, 2471 "don't print any output, messages or warnings (useful with record)"), 2472 OPT_CALLBACK(0, "cputype", &evsel_list, "hybrid cpu type", 2473 "Only enable events on applying cpu with this type " 2474 "for hybrid platform (e.g. core or atom)", 2475 parse_cputype), 2476 #ifdef HAVE_LIBPFM 2477 OPT_CALLBACK(0, "pfm-events", &evsel_list, "event", 2478 "libpfm4 event selector. use 'perf list' to list available events", 2479 parse_libpfm_events_option), 2480 #endif 2481 OPT_CALLBACK(0, "control", &stat_config, "fd:ctl-fd[,ack-fd] or fifo:ctl-fifo[,ack-fifo]", 2482 "Listen on ctl-fd descriptor for command to control measurement ('enable': enable events, 'disable': disable events).\n" 2483 "\t\t\t Optionally send control command completion ('ack\\n') to ack-fd descriptor.\n" 2484 "\t\t\t Alternatively, ctl-fifo / ack-fifo will be opened and used as ctl-fd / ack-fd.", 2485 parse_control_option), 2486 OPT_CALLBACK_OPTARG(0, "iostat", &evsel_list, &stat_config, "default", 2487 "measure I/O performance metrics provided by arch/platform", 2488 iostat_parse), 2489 OPT_END() 2490 }; 2491 const char * const stat_usage[] = { 2492 "perf stat [<options>] [<command>]", 2493 NULL 2494 }; 2495 int status = -EINVAL, run_idx, err; 2496 const char *mode; 2497 FILE *output = stderr; 2498 unsigned int interval, timeout; 2499 const char * const stat_subcommands[] = { "record", "report" }; 2500 char errbuf[BUFSIZ]; 2501 2502 setlocale(LC_ALL, ""); 2503 2504 evsel_list = evlist__new(); 2505 if (evsel_list == NULL) 2506 return -ENOMEM; 2507 2508 parse_events__shrink_config_terms(); 2509 2510 /* String-parsing callback-based options would segfault when negated */ 2511 set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG); 2512 set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG); 2513 set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG); 2514 2515 argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands, 2516 (const char **) stat_usage, 2517 PARSE_OPT_STOP_AT_NON_OPTION); 2518 2519 stat_config.aggr_mode = opt_aggr_mode_to_aggr_mode(&opt_mode); 2520 2521 if (stat_config.csv_sep) { 2522 stat_config.csv_output = true; 2523 if (!strcmp(stat_config.csv_sep, "\\t")) 2524 stat_config.csv_sep = "\t"; 2525 } else 2526 stat_config.csv_sep = DEFAULT_SEPARATOR; 2527 2528 if (argc && strlen(argv[0]) > 2 && strstarts("record", argv[0])) { 2529 argc = __cmd_record(stat_options, &opt_mode, argc, argv); 2530 if (argc < 0) 2531 return -1; 2532 } else if (argc && strlen(argv[0]) > 2 && strstarts("report", argv[0])) 2533 return __cmd_report(argc, argv); 2534 2535 interval = stat_config.interval; 2536 timeout = stat_config.timeout; 2537 2538 /* 2539 * For record command the -o is already taken care of. 2540 */ 2541 if (!STAT_RECORD && output_name && strcmp(output_name, "-")) 2542 output = NULL; 2543 2544 if (output_name && output_fd) { 2545 fprintf(stderr, "cannot use both --output and --log-fd\n"); 2546 parse_options_usage(stat_usage, stat_options, "o", 1); 2547 parse_options_usage(NULL, stat_options, "log-fd", 0); 2548 goto out; 2549 } 2550 2551 if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) { 2552 fprintf(stderr, "--metric-only is not supported with --per-thread\n"); 2553 goto out; 2554 } 2555 2556 if (stat_config.metric_only && stat_config.run_count > 1) { 2557 fprintf(stderr, "--metric-only is not supported with -r\n"); 2558 goto out; 2559 } 2560 2561 if (stat_config.walltime_run_table && stat_config.run_count <= 1) { 2562 fprintf(stderr, "--table is only supported with -r\n"); 2563 parse_options_usage(stat_usage, stat_options, "r", 1); 2564 parse_options_usage(NULL, stat_options, "table", 0); 2565 goto out; 2566 } 2567 2568 if (output_fd < 0) { 2569 fprintf(stderr, "argument to --log-fd must be a > 0\n"); 2570 parse_options_usage(stat_usage, stat_options, "log-fd", 0); 2571 goto out; 2572 } 2573 2574 if (!output && !quiet) { 2575 struct timespec tm; 2576 mode = append_file ? "a" : "w"; 2577 2578 output = fopen(output_name, mode); 2579 if (!output) { 2580 perror("failed to create output file"); 2581 return -1; 2582 } 2583 if (!stat_config.json_output) { 2584 clock_gettime(CLOCK_REALTIME, &tm); 2585 fprintf(output, "# started on %s\n", ctime(&tm.tv_sec)); 2586 } 2587 } else if (output_fd > 0) { 2588 mode = append_file ? "a" : "w"; 2589 output = fdopen(output_fd, mode); 2590 if (!output) { 2591 perror("Failed opening logfd"); 2592 return -errno; 2593 } 2594 } 2595 2596 if (stat_config.interval_clear && !isatty(fileno(output))) { 2597 fprintf(stderr, "--interval-clear does not work with output\n"); 2598 parse_options_usage(stat_usage, stat_options, "o", 1); 2599 parse_options_usage(NULL, stat_options, "log-fd", 0); 2600 parse_options_usage(NULL, stat_options, "interval-clear", 0); 2601 return -1; 2602 } 2603 2604 stat_config.output = output; 2605 2606 /* 2607 * let the spreadsheet do the pretty-printing 2608 */ 2609 if (stat_config.csv_output) { 2610 /* User explicitly passed -B? */ 2611 if (big_num_opt == 1) { 2612 fprintf(stderr, "-B option not supported with -x\n"); 2613 parse_options_usage(stat_usage, stat_options, "B", 1); 2614 parse_options_usage(NULL, stat_options, "x", 1); 2615 goto out; 2616 } else /* Nope, so disable big number formatting */ 2617 stat_config.big_num = false; 2618 } else if (big_num_opt == 0) /* User passed --no-big-num */ 2619 stat_config.big_num = false; 2620 2621 err = target__validate(&target); 2622 if (err) { 2623 target__strerror(&target, err, errbuf, BUFSIZ); 2624 pr_warning("%s\n", errbuf); 2625 } 2626 2627 setup_system_wide(argc); 2628 2629 /* 2630 * Display user/system times only for single 2631 * run and when there's specified tracee. 2632 */ 2633 if ((stat_config.run_count == 1) && target__none(&target)) 2634 stat_config.ru_display = true; 2635 2636 if (stat_config.run_count < 0) { 2637 pr_err("Run count must be a positive number\n"); 2638 parse_options_usage(stat_usage, stat_options, "r", 1); 2639 goto out; 2640 } else if (stat_config.run_count == 0) { 2641 forever = true; 2642 stat_config.run_count = 1; 2643 } 2644 2645 if (stat_config.walltime_run_table) { 2646 stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0])); 2647 if (!stat_config.walltime_run) { 2648 pr_err("failed to setup -r option"); 2649 goto out; 2650 } 2651 } 2652 2653 if ((stat_config.aggr_mode == AGGR_THREAD) && 2654 !target__has_task(&target)) { 2655 if (!target.system_wide || target.cpu_list) { 2656 fprintf(stderr, "The --per-thread option is only " 2657 "available when monitoring via -p -t -a " 2658 "options or only --per-thread.\n"); 2659 parse_options_usage(NULL, stat_options, "p", 1); 2660 parse_options_usage(NULL, stat_options, "t", 1); 2661 goto out; 2662 } 2663 } 2664 2665 /* 2666 * no_aggr, cgroup are for system-wide only 2667 * --per-thread is aggregated per thread, we dont mix it with cpu mode 2668 */ 2669 if (((stat_config.aggr_mode != AGGR_GLOBAL && 2670 stat_config.aggr_mode != AGGR_THREAD) || 2671 (nr_cgroups || stat_config.cgroup_list)) && 2672 !target__has_cpu(&target)) { 2673 fprintf(stderr, "both cgroup and no-aggregation " 2674 "modes only available in system-wide mode\n"); 2675 2676 parse_options_usage(stat_usage, stat_options, "G", 1); 2677 parse_options_usage(NULL, stat_options, "A", 1); 2678 parse_options_usage(NULL, stat_options, "a", 1); 2679 parse_options_usage(NULL, stat_options, "for-each-cgroup", 0); 2680 goto out; 2681 } 2682 2683 if (stat_config.iostat_run) { 2684 status = iostat_prepare(evsel_list, &stat_config); 2685 if (status) 2686 goto out; 2687 if (iostat_mode == IOSTAT_LIST) { 2688 iostat_list(evsel_list, &stat_config); 2689 goto out; 2690 } else if (verbose > 0) 2691 iostat_list(evsel_list, &stat_config); 2692 if (iostat_mode == IOSTAT_RUN && !target__has_cpu(&target)) 2693 target.system_wide = true; 2694 } 2695 2696 if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide)) 2697 target.per_thread = true; 2698 2699 stat_config.system_wide = target.system_wide; 2700 if (target.cpu_list) { 2701 stat_config.user_requested_cpu_list = strdup(target.cpu_list); 2702 if (!stat_config.user_requested_cpu_list) { 2703 status = -ENOMEM; 2704 goto out; 2705 } 2706 } 2707 2708 /* 2709 * Metric parsing needs to be delayed as metrics may optimize events 2710 * knowing the target is system-wide. 2711 */ 2712 if (metrics) { 2713 const char *pmu = parse_events_option_args.pmu_filter ?: "all"; 2714 int ret = metricgroup__parse_groups(evsel_list, pmu, metrics, 2715 stat_config.metric_no_group, 2716 stat_config.metric_no_merge, 2717 stat_config.metric_no_threshold, 2718 stat_config.user_requested_cpu_list, 2719 stat_config.system_wide, 2720 stat_config.hardware_aware_grouping, 2721 &stat_config.metric_events); 2722 2723 zfree(&metrics); 2724 if (ret) { 2725 status = ret; 2726 goto out; 2727 } 2728 } 2729 2730 if (add_default_events()) 2731 goto out; 2732 2733 if (stat_config.cgroup_list) { 2734 if (nr_cgroups > 0) { 2735 pr_err("--cgroup and --for-each-cgroup cannot be used together\n"); 2736 parse_options_usage(stat_usage, stat_options, "G", 1); 2737 parse_options_usage(NULL, stat_options, "for-each-cgroup", 0); 2738 goto out; 2739 } 2740 2741 if (evlist__expand_cgroup(evsel_list, stat_config.cgroup_list, 2742 &stat_config.metric_events, true) < 0) { 2743 parse_options_usage(stat_usage, stat_options, 2744 "for-each-cgroup", 0); 2745 goto out; 2746 } 2747 } 2748 2749 evlist__warn_user_requested_cpus(evsel_list, target.cpu_list); 2750 2751 if (evlist__create_maps(evsel_list, &target) < 0) { 2752 if (target__has_task(&target)) { 2753 pr_err("Problems finding threads of monitor\n"); 2754 parse_options_usage(stat_usage, stat_options, "p", 1); 2755 parse_options_usage(NULL, stat_options, "t", 1); 2756 } else if (target__has_cpu(&target)) { 2757 perror("failed to parse CPUs map"); 2758 parse_options_usage(stat_usage, stat_options, "C", 1); 2759 parse_options_usage(NULL, stat_options, "a", 1); 2760 } 2761 goto out; 2762 } 2763 2764 evlist__check_cpu_maps(evsel_list); 2765 2766 /* 2767 * Initialize thread_map with comm names, 2768 * so we could print it out on output. 2769 */ 2770 if (stat_config.aggr_mode == AGGR_THREAD) { 2771 thread_map__read_comms(evsel_list->core.threads); 2772 } 2773 2774 if (stat_config.aggr_mode == AGGR_NODE) 2775 cpu__setup_cpunode_map(); 2776 2777 if (stat_config.times && interval) 2778 interval_count = true; 2779 else if (stat_config.times && !interval) { 2780 pr_err("interval-count option should be used together with " 2781 "interval-print.\n"); 2782 parse_options_usage(stat_usage, stat_options, "interval-count", 0); 2783 parse_options_usage(stat_usage, stat_options, "I", 1); 2784 goto out; 2785 } 2786 2787 if (timeout && timeout < 100) { 2788 if (timeout < 10) { 2789 pr_err("timeout must be >= 10ms.\n"); 2790 parse_options_usage(stat_usage, stat_options, "timeout", 0); 2791 goto out; 2792 } else 2793 pr_warning("timeout < 100ms. " 2794 "The overhead percentage could be high in some cases. " 2795 "Please proceed with caution.\n"); 2796 } 2797 if (timeout && interval) { 2798 pr_err("timeout option is not supported with interval-print.\n"); 2799 parse_options_usage(stat_usage, stat_options, "timeout", 0); 2800 parse_options_usage(stat_usage, stat_options, "I", 1); 2801 goto out; 2802 } 2803 2804 if (perf_stat_init_aggr_mode()) 2805 goto out; 2806 2807 if (evlist__alloc_stats(&stat_config, evsel_list, interval)) 2808 goto out; 2809 2810 /* 2811 * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless 2812 * while avoiding that older tools show confusing messages. 2813 * 2814 * However for pipe sessions we need to keep it zero, 2815 * because script's perf_evsel__check_attr is triggered 2816 * by attr->sample_type != 0, and we can't run it on 2817 * stat sessions. 2818 */ 2819 stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe); 2820 2821 /* 2822 * We dont want to block the signals - that would cause 2823 * child tasks to inherit that and Ctrl-C would not work. 2824 * What we want is for Ctrl-C to work in the exec()-ed 2825 * task, but being ignored by perf stat itself: 2826 */ 2827 atexit(sig_atexit); 2828 if (!forever) 2829 signal(SIGINT, skip_signal); 2830 signal(SIGCHLD, skip_signal); 2831 signal(SIGALRM, skip_signal); 2832 signal(SIGABRT, skip_signal); 2833 2834 if (evlist__initialize_ctlfd(evsel_list, stat_config.ctl_fd, stat_config.ctl_fd_ack)) 2835 goto out; 2836 2837 /* Enable ignoring missing threads when -p option is defined. */ 2838 evlist__first(evsel_list)->ignore_missing_thread = target.pid; 2839 status = 0; 2840 for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) { 2841 if (stat_config.run_count != 1 && verbose > 0) 2842 fprintf(output, "[ perf stat: executing run #%d ... ]\n", 2843 run_idx + 1); 2844 2845 if (run_idx != 0) 2846 evlist__reset_prev_raw_counts(evsel_list); 2847 2848 status = run_perf_stat(argc, argv, run_idx); 2849 if (status == -1) 2850 break; 2851 2852 if (forever && !interval) { 2853 print_counters(NULL, argc, argv); 2854 perf_stat__reset_stats(); 2855 } 2856 } 2857 2858 if (!forever && status != -1 && (!interval || stat_config.summary)) { 2859 if (stat_config.run_count > 1) 2860 evlist__copy_res_stats(&stat_config, evsel_list); 2861 print_counters(NULL, argc, argv); 2862 } 2863 2864 evlist__finalize_ctlfd(evsel_list); 2865 2866 if (STAT_RECORD) { 2867 /* 2868 * We synthesize the kernel mmap record just so that older tools 2869 * don't emit warnings about not being able to resolve symbols 2870 * due to /proc/sys/kernel/kptr_restrict settings and instead provide 2871 * a saner message about no samples being in the perf.data file. 2872 * 2873 * This also serves to suppress a warning about f_header.data.size == 0 2874 * in header.c at the moment 'perf stat record' gets introduced, which 2875 * is not really needed once we start adding the stat specific PERF_RECORD_ 2876 * records, but the need to suppress the kptr_restrict messages in older 2877 * tools remain -acme 2878 */ 2879 int fd = perf_data__fd(&perf_stat.data); 2880 2881 err = perf_event__synthesize_kernel_mmap((void *)&perf_stat, 2882 process_synthesized_event, 2883 &perf_stat.session->machines.host); 2884 if (err) { 2885 pr_warning("Couldn't synthesize the kernel mmap record, harmless, " 2886 "older tools may produce warnings about this file\n."); 2887 } 2888 2889 if (!interval) { 2890 if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL)) 2891 pr_err("failed to write stat round event\n"); 2892 } 2893 2894 if (!perf_stat.data.is_pipe) { 2895 perf_stat.session->header.data_size += perf_stat.bytes_written; 2896 perf_session__write_header(perf_stat.session, evsel_list, fd, true); 2897 } 2898 2899 evlist__close(evsel_list); 2900 perf_session__delete(perf_stat.session); 2901 } 2902 2903 perf_stat__exit_aggr_mode(); 2904 evlist__free_stats(evsel_list); 2905 out: 2906 if (stat_config.iostat_run) 2907 iostat_release(evsel_list); 2908 2909 zfree(&stat_config.walltime_run); 2910 zfree(&stat_config.user_requested_cpu_list); 2911 2912 if (smi_cost && smi_reset) 2913 sysfs__write_int(FREEZE_ON_SMI_PATH, 0); 2914 2915 evlist__delete(evsel_list); 2916 2917 metricgroup__rblist_exit(&stat_config.metric_events); 2918 evlist__close_control(stat_config.ctl_fd, stat_config.ctl_fd_ack, &stat_config.ctl_fd_close); 2919 2920 return status; 2921 } 2922