Thomas Gleixner | 9100704 | 2019-05-29 07:12:25 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 2 | /* |
Ingo Molnar | bf9e187 | 2009-06-02 23:37:05 +0200 | [diff] [blame] | 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: |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 9 | |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 10 | $ perf stat ./hackbench 10 |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 11 | |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 12 | Time: 0.118 |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 13 | |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 14 | Performance counter stats for './hackbench 10': |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 15 | |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 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 |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 29 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 30 | * |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 31 | * Copyright (C) 2008-2011, Red Hat Inc, Ingo Molnar <mingo@redhat.com> |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 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> |
Jaswinder Singh Rajput | 6e750a8f | 2009-06-27 03:02:07 +0530 | [diff] [blame] | 40 | * Jaswinder Singh Rajput <jaswinder@kernel.org> |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 41 | */ |
| 42 | |
Ingo Molnar | 16f762a | 2009-05-27 09:10:38 +0200 | [diff] [blame] | 43 | #include "builtin.h" |
Arnaldo Carvalho de Melo | c1a604d | 2019-08-29 15:20:59 -0300 | [diff] [blame] | 44 | #include "perf.h" |
Arnaldo Carvalho de Melo | f14d570 | 2014-10-17 12:17:40 -0300 | [diff] [blame] | 45 | #include "util/cgroup.h" |
Josh Poimboeuf | 4b6ab94 | 2015-12-15 09:39:39 -0600 | [diff] [blame] | 46 | #include <subcmd/parse-options.h> |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 47 | #include "util/parse-events.h" |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 48 | #include "util/pmu.h" |
Frederic Weisbecker | 8f28827 | 2009-08-16 22:05:48 +0200 | [diff] [blame] | 49 | #include "util/event.h" |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame] | 50 | #include "util/evlist.h" |
Jin Yao | 660e533 | 2021-04-27 15:01:29 +0800 | [diff] [blame] | 51 | #include "util/evlist-hybrid.h" |
Arnaldo Carvalho de Melo | 69aad6f | 2011-01-03 16:39:04 -0200 | [diff] [blame] | 52 | #include "util/evsel.h" |
Frederic Weisbecker | 8f28827 | 2009-08-16 22:05:48 +0200 | [diff] [blame] | 53 | #include "util/debug.h" |
Ingo Molnar | a5d243d | 2011-04-27 05:39:24 +0200 | [diff] [blame] | 54 | #include "util/color.h" |
Xiao Guangrong | 0007ece | 2012-09-17 16:31:14 +0800 | [diff] [blame] | 55 | #include "util/stat.h" |
Liming Wang | 60666c6 | 2009-12-31 16:05:50 +0800 | [diff] [blame] | 56 | #include "util/header.h" |
Paul Mackerras | a12b51c | 2010-03-10 20:36:09 +1100 | [diff] [blame] | 57 | #include "util/cpumap.h" |
Arnaldo Carvalho de Melo | fd78260 | 2011-01-18 15:15:24 -0200 | [diff] [blame] | 58 | #include "util/thread_map.h" |
Jiri Olsa | d809560 | 2015-08-07 12:51:03 +0200 | [diff] [blame] | 59 | #include "util/counts.h" |
Kan Liang | 687986b | 2020-09-11 07:48:05 -0700 | [diff] [blame] | 60 | #include "util/topdown.h" |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 61 | #include "util/session.h" |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 62 | #include "util/tool.h" |
Arnaldo Carvalho de Melo | a067558 | 2017-04-17 16:51:59 -0300 | [diff] [blame] | 63 | #include "util/string2.h" |
Andi Kleen | b18f3e3 | 2017-08-31 12:40:31 -0700 | [diff] [blame] | 64 | #include "util/metricgroup.h" |
Arnaldo Carvalho de Melo | ea49e01 | 2019-09-18 11:36:13 -0300 | [diff] [blame] | 65 | #include "util/synthetic-events.h" |
Arnaldo Carvalho de Melo | aeb00b1 | 2019-08-22 15:40:29 -0300 | [diff] [blame] | 66 | #include "util/target.h" |
Arnaldo Carvalho de Melo | f371102 | 2019-08-29 15:16:27 -0300 | [diff] [blame] | 67 | #include "util/time-utils.h" |
Jiri Olsa | 9660e08 | 2018-06-07 00:15:06 +0200 | [diff] [blame] | 68 | #include "util/top.h" |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 69 | #include "util/affinity.h" |
Stephane Eranian | 7094349 | 2020-05-05 11:29:43 -0700 | [diff] [blame] | 70 | #include "util/pfm.h" |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 71 | #include "util/bpf_counter.h" |
Alexander Antonov | f07952b | 2021-04-19 12:41:44 +0300 | [diff] [blame] | 72 | #include "util/iostat.h" |
Jin Yao | 1227942 | 2021-04-27 15:01:20 +0800 | [diff] [blame] | 73 | #include "util/pmu-hybrid.h" |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 74 | #include "asm/bug.h" |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 75 | |
Arnaldo Carvalho de Melo | bd48c63 | 2016-08-05 15:40:30 -0300 | [diff] [blame] | 76 | #include <linux/time64.h> |
Arnaldo Carvalho de Melo | 7f7c536 | 2019-07-04 11:32:27 -0300 | [diff] [blame] | 77 | #include <linux/zalloc.h> |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 78 | #include <api/fs/fs.h> |
Arnaldo Carvalho de Melo | a43783a | 2017-04-18 10:46:11 -0300 | [diff] [blame] | 79 | #include <errno.h> |
Arnaldo Carvalho de Melo | 9607ad3 | 2017-04-19 15:49:18 -0300 | [diff] [blame] | 80 | #include <signal.h> |
Peter Zijlstra | 1f16c57 | 2012-10-23 13:40:14 +0200 | [diff] [blame] | 81 | #include <stdlib.h> |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 82 | #include <sys/prctl.h> |
Arnaldo Carvalho de Melo | fd20e81 | 2017-04-17 15:23:08 -0300 | [diff] [blame] | 83 | #include <inttypes.h> |
Stephane Eranian | 5af52b5 | 2010-05-18 15:00:01 +0200 | [diff] [blame] | 84 | #include <locale.h> |
Andi Kleen | e3b03b6 | 2016-05-05 16:04:03 -0700 | [diff] [blame] | 85 | #include <math.h> |
Arnaldo Carvalho de Melo | 7a8ef4c | 2017-04-19 20:57:47 -0300 | [diff] [blame] | 86 | #include <sys/types.h> |
| 87 | #include <sys/stat.h> |
Arnaldo Carvalho de Melo | 4208735 | 2017-04-19 19:06:30 -0300 | [diff] [blame] | 88 | #include <sys/wait.h> |
Arnaldo Carvalho de Melo | 7a8ef4c | 2017-04-19 20:57:47 -0300 | [diff] [blame] | 89 | #include <unistd.h> |
Jiri Olsa | 0ce2da1 | 2018-06-05 14:13:13 +0200 | [diff] [blame] | 90 | #include <sys/time.h> |
| 91 | #include <sys/resource.h> |
Mamatha Inamdar | 6ef81c5 | 2019-08-22 12:50:49 +0530 | [diff] [blame] | 92 | #include <linux/err.h> |
Peter Zijlstra | 16c8a10 | 2009-05-05 17:50:27 +0200 | [diff] [blame] | 93 | |
Arnaldo Carvalho de Melo | 3052ba5 | 2019-06-25 17:27:31 -0300 | [diff] [blame] | 94 | #include <linux/ctype.h> |
Jiri Olsa | 453fa03 | 2019-07-21 13:24:43 +0200 | [diff] [blame] | 95 | #include <perf/evlist.h> |
Arnaldo Carvalho de Melo | 3d689ed | 2017-04-17 16:10:49 -0300 | [diff] [blame] | 96 | |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 97 | #define DEFAULT_SEPARATOR " " |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 98 | #define FREEZE_ON_SMI_PATH "devices/cpu/freeze_on_smi" |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 99 | |
Jiri Olsa | d4f63a4 | 2015-06-26 11:29:26 +0200 | [diff] [blame] | 100 | static void print_counters(struct timespec *ts, int argc, const char **argv); |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 101 | |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 102 | /* Default events used for perf stat -T */ |
Jiri Olsa | a454742 | 2015-06-03 16:25:53 +0200 | [diff] [blame] | 103 | static const char *transaction_attrs = { |
| 104 | "task-clock," |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 105 | "{" |
| 106 | "instructions," |
| 107 | "cycles," |
| 108 | "cpu/cycles-t/," |
| 109 | "cpu/tx-start/," |
| 110 | "cpu/el-start/," |
| 111 | "cpu/cycles-ct/" |
| 112 | "}" |
| 113 | }; |
| 114 | |
| 115 | /* More limited version when the CPU does not have all events. */ |
Jiri Olsa | a454742 | 2015-06-03 16:25:53 +0200 | [diff] [blame] | 116 | static const char * transaction_limited_attrs = { |
| 117 | "task-clock," |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 118 | "{" |
| 119 | "instructions," |
| 120 | "cycles," |
| 121 | "cpu/cycles-t/," |
| 122 | "cpu/tx-start/" |
| 123 | "}" |
| 124 | }; |
| 125 | |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 126 | static const char * topdown_attrs[] = { |
| 127 | "topdown-total-slots", |
| 128 | "topdown-slots-retired", |
| 129 | "topdown-recovery-bubbles", |
| 130 | "topdown-fetch-bubbles", |
| 131 | "topdown-slots-issued", |
| 132 | NULL, |
| 133 | }; |
| 134 | |
Andi Kleen | 55c36a9 | 2020-09-11 07:48:07 -0700 | [diff] [blame] | 135 | static const char *topdown_metric_attrs[] = { |
| 136 | "slots", |
| 137 | "topdown-retiring", |
| 138 | "topdown-bad-spec", |
| 139 | "topdown-fe-bound", |
| 140 | "topdown-be-bound", |
| 141 | NULL, |
| 142 | }; |
| 143 | |
Kan Liang | 63e39aa | 2021-02-02 12:09:12 -0800 | [diff] [blame] | 144 | static const char *topdown_metric_L2_attrs[] = { |
| 145 | "slots", |
| 146 | "topdown-retiring", |
| 147 | "topdown-bad-spec", |
| 148 | "topdown-fe-bound", |
| 149 | "topdown-be-bound", |
| 150 | "topdown-heavy-ops", |
| 151 | "topdown-br-mispredict", |
| 152 | "topdown-fetch-lat", |
| 153 | "topdown-mem-bound", |
| 154 | NULL, |
| 155 | }; |
| 156 | |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 157 | static const char *smi_cost_attrs = { |
| 158 | "{" |
| 159 | "msr/aperf/," |
| 160 | "msr/smi/," |
| 161 | "cycles" |
| 162 | "}" |
| 163 | }; |
| 164 | |
Jiri Olsa | 63503db | 2019-07-21 13:23:52 +0200 | [diff] [blame] | 165 | static struct evlist *evsel_list; |
Song Liu | 112cb56 | 2021-04-25 14:43:31 -0700 | [diff] [blame] | 166 | static bool all_counters_use_bpf = true; |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame] | 167 | |
Arnaldo Carvalho de Melo | 602ad87 | 2013-11-12 16:46:16 -0300 | [diff] [blame] | 168 | static struct target target = { |
Namhyung Kim | 77a6f01 | 2012-05-07 14:09:04 +0900 | [diff] [blame] | 169 | .uid = UINT_MAX, |
| 170 | }; |
Jaswinder Singh Rajput | 3d63259 | 2009-06-24 18:19:34 +0530 | [diff] [blame] | 171 | |
Jiri Olsa | c1a1f5d | 2018-06-07 00:15:09 +0200 | [diff] [blame] | 172 | #define METRIC_ONLY_LEN 20 |
| 173 | |
Stephane Eranian | d07f0b1 | 2013-06-04 17:44:26 +0200 | [diff] [blame] | 174 | static volatile pid_t child_pid = -1; |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 175 | static int detailed_run = 0; |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 176 | static bool transaction_run; |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 177 | static bool topdown_run = false; |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 178 | static bool smi_cost = false; |
| 179 | static bool smi_reset = false; |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 180 | static int big_num_opt = -1; |
Lin Ming | 43bece7 | 2011-08-17 18:42:07 +0800 | [diff] [blame] | 181 | static bool group = false; |
Peter Zijlstra | 1f16c57 | 2012-10-23 13:40:14 +0200 | [diff] [blame] | 182 | static const char *pre_cmd = NULL; |
| 183 | static const char *post_cmd = NULL; |
| 184 | static bool sync_run = false; |
Frederik Deweerdt | a7e191c | 2013-03-01 13:02:27 -0500 | [diff] [blame] | 185 | static bool forever = false; |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 186 | static bool force_metric_only = false; |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 187 | static struct timespec ref_time; |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 188 | static bool append_file; |
yuzhoujian | db06a26 | 2018-01-29 10:25:22 +0100 | [diff] [blame] | 189 | static bool interval_count; |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 190 | static const char *output_name; |
| 191 | static int output_fd; |
Stephane Eranian | 5af52b5 | 2010-05-18 15:00:01 +0200 | [diff] [blame] | 192 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 193 | struct perf_stat { |
| 194 | bool record; |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 195 | struct perf_data data; |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 196 | struct perf_session *session; |
| 197 | u64 bytes_written; |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 198 | struct perf_tool tool; |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 199 | bool maps_allocated; |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 200 | struct perf_cpu_map *cpus; |
Jiri Olsa | 9749b90 | 2019-07-21 13:23:50 +0200 | [diff] [blame] | 201 | struct perf_thread_map *threads; |
Jiri Olsa | 89af4e0 | 2015-11-05 15:41:02 +0100 | [diff] [blame] | 202 | enum aggr_mode aggr_mode; |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 203 | }; |
| 204 | |
| 205 | static struct perf_stat perf_stat; |
| 206 | #define STAT_RECORD perf_stat.record |
| 207 | |
Liming Wang | 60666c6 | 2009-12-31 16:05:50 +0800 | [diff] [blame] | 208 | static volatile int done = 0; |
| 209 | |
Jiri Olsa | 421a50f | 2015-07-21 14:31:22 +0200 | [diff] [blame] | 210 | static struct perf_stat_config stat_config = { |
Jiri Olsa | 26893a6 | 2018-08-30 08:32:40 +0200 | [diff] [blame] | 211 | .aggr_mode = AGGR_GLOBAL, |
| 212 | .scale = true, |
| 213 | .unit_width = 4, /* strlen("unit") */ |
| 214 | .run_count = 1, |
| 215 | .metric_only_len = METRIC_ONLY_LEN, |
| 216 | .walltime_nsecs_stats = &walltime_nsecs_stats, |
Jiri Olsa | 34ff086 | 2018-08-30 08:32:47 +0200 | [diff] [blame] | 217 | .big_num = true, |
Alexey Budankov | 27e9769 | 2020-07-17 10:05:41 +0300 | [diff] [blame] | 218 | .ctl_fd = -1, |
Alexander Antonov | f07952b | 2021-04-19 12:41:44 +0300 | [diff] [blame] | 219 | .ctl_fd_ack = -1, |
| 220 | .iostat_run = false, |
Jiri Olsa | 421a50f | 2015-07-21 14:31:22 +0200 | [diff] [blame] | 221 | }; |
| 222 | |
Jiri Olsa | a9a17902 | 2020-06-02 12:17:36 +0200 | [diff] [blame] | 223 | static bool cpus_map_matched(struct evsel *a, struct evsel *b) |
| 224 | { |
| 225 | if (!a->core.cpus && !b->core.cpus) |
| 226 | return true; |
| 227 | |
| 228 | if (!a->core.cpus || !b->core.cpus) |
| 229 | return false; |
| 230 | |
| 231 | if (a->core.cpus->nr != b->core.cpus->nr) |
| 232 | return false; |
| 233 | |
| 234 | for (int i = 0; i < a->core.cpus->nr; i++) { |
| 235 | if (a->core.cpus->map[i] != b->core.cpus->map[i]) |
| 236 | return false; |
| 237 | } |
| 238 | |
| 239 | return true; |
| 240 | } |
| 241 | |
| 242 | static void evlist__check_cpu_maps(struct evlist *evlist) |
| 243 | { |
| 244 | struct evsel *evsel, *pos, *leader; |
| 245 | char buf[1024]; |
| 246 | |
Jin Yao | 660e533 | 2021-04-27 15:01:29 +0800 | [diff] [blame] | 247 | if (evlist__has_hybrid(evlist)) |
| 248 | evlist__warn_hybrid_group(evlist); |
| 249 | |
Jiri Olsa | a9a17902 | 2020-06-02 12:17:36 +0200 | [diff] [blame] | 250 | evlist__for_each_entry(evlist, evsel) { |
| 251 | leader = evsel->leader; |
| 252 | |
| 253 | /* Check that leader matches cpus with each member. */ |
| 254 | if (leader == evsel) |
| 255 | continue; |
| 256 | if (cpus_map_matched(leader, evsel)) |
| 257 | continue; |
| 258 | |
| 259 | /* If there's mismatch disable the group and warn user. */ |
| 260 | WARN_ONCE(1, "WARNING: grouped events cpus do not match, disabling group:\n"); |
| 261 | evsel__group_desc(leader, buf, sizeof(buf)); |
| 262 | pr_warning(" %s\n", buf); |
| 263 | |
| 264 | if (verbose) { |
| 265 | cpu_map__snprint(leader->core.cpus, buf, sizeof(buf)); |
| 266 | pr_warning(" %s: %s\n", leader->name, buf); |
| 267 | cpu_map__snprint(evsel->core.cpus, buf, sizeof(buf)); |
| 268 | pr_warning(" %s: %s\n", evsel->name, buf); |
| 269 | } |
| 270 | |
| 271 | for_each_group_evsel(pos, leader) { |
| 272 | pos->leader = pos; |
| 273 | pos->core.nr_members = 0; |
| 274 | } |
| 275 | evsel->leader->core.nr_members = 0; |
| 276 | } |
| 277 | } |
| 278 | |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 279 | static inline void diff_timespec(struct timespec *r, struct timespec *a, |
| 280 | struct timespec *b) |
| 281 | { |
| 282 | r->tv_sec = a->tv_sec - b->tv_sec; |
| 283 | if (a->tv_nsec < b->tv_nsec) { |
Arnaldo Carvalho de Melo | 310ebb9 | 2016-08-08 14:57:04 -0300 | [diff] [blame] | 284 | r->tv_nsec = a->tv_nsec + NSEC_PER_SEC - b->tv_nsec; |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 285 | r->tv_sec--; |
| 286 | } else { |
| 287 | r->tv_nsec = a->tv_nsec - b->tv_nsec ; |
| 288 | } |
| 289 | } |
| 290 | |
Jiri Olsa | 254ecbc7 | 2015-06-26 11:29:13 +0200 | [diff] [blame] | 291 | static void perf_stat__reset_stats(void) |
| 292 | { |
Jin Yao | 5673944 | 2017-12-05 22:03:07 +0800 | [diff] [blame] | 293 | int i; |
| 294 | |
Arnaldo Carvalho de Melo | 53f5e90 | 2020-11-30 09:31:04 -0300 | [diff] [blame] | 295 | evlist__reset_stats(evsel_list); |
Jiri Olsa | f87027b | 2015-06-03 16:25:59 +0200 | [diff] [blame] | 296 | perf_stat__reset_shadow_stats(); |
Jin Yao | 5673944 | 2017-12-05 22:03:07 +0800 | [diff] [blame] | 297 | |
| 298 | for (i = 0; i < stat_config.stats_num; i++) |
| 299 | perf_stat__reset_shadow_per_stat(&stat_config.stats[i]); |
Jiri Olsa | 1eda3b2 | 2015-06-03 16:25:55 +0200 | [diff] [blame] | 300 | } |
| 301 | |
Jiri Olsa | 8b99b1a | 2015-11-05 15:40:48 +0100 | [diff] [blame] | 302 | static int process_synthesized_event(struct perf_tool *tool __maybe_unused, |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 303 | union perf_event *event, |
| 304 | struct perf_sample *sample __maybe_unused, |
| 305 | struct machine *machine __maybe_unused) |
| 306 | { |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 307 | if (perf_data__write(&perf_stat.data, event, event->header.size) < 0) { |
Jiri Olsa | 8b99b1a | 2015-11-05 15:40:48 +0100 | [diff] [blame] | 308 | pr_err("failed to write perf data, error: %m\n"); |
| 309 | return -1; |
| 310 | } |
| 311 | |
| 312 | perf_stat.bytes_written += event->header.size; |
| 313 | return 0; |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 314 | } |
| 315 | |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 316 | static int write_stat_round_event(u64 tm, u64 type) |
Jiri Olsa | 7aad0c3 | 2015-11-05 15:40:52 +0100 | [diff] [blame] | 317 | { |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 318 | return perf_event__synthesize_stat_round(NULL, tm, type, |
Jiri Olsa | 7aad0c3 | 2015-11-05 15:40:52 +0100 | [diff] [blame] | 319 | process_synthesized_event, |
| 320 | NULL); |
| 321 | } |
| 322 | |
| 323 | #define WRITE_STAT_ROUND_EVENT(time, interval) \ |
| 324 | write_stat_round_event(time, PERF_STAT_ROUND_TYPE__ ## interval) |
| 325 | |
Jiri Olsa | 8cd36f3 | 2019-09-02 22:04:12 +0200 | [diff] [blame] | 326 | #define SID(e, x, y) xyarray__entry(e->core.sample_id, x, y) |
Jiri Olsa | 5a6ea81 | 2015-11-05 15:40:51 +0100 | [diff] [blame] | 327 | |
Arnaldo Carvalho de Melo | ddc6999 | 2020-05-04 13:46:34 -0300 | [diff] [blame] | 328 | static int evsel__write_stat_event(struct evsel *counter, u32 cpu, u32 thread, |
| 329 | struct perf_counts_values *count) |
Jiri Olsa | 5a6ea81 | 2015-11-05 15:40:51 +0100 | [diff] [blame] | 330 | { |
| 331 | struct perf_sample_id *sid = SID(counter, cpu, thread); |
| 332 | |
| 333 | return perf_event__synthesize_stat(NULL, cpu, thread, sid->id, count, |
| 334 | process_synthesized_event, NULL); |
| 335 | } |
| 336 | |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 337 | static int read_single_counter(struct evsel *counter, int cpu, |
Andi Kleen | f0fbb11 | 2019-03-26 15:18:21 -0700 | [diff] [blame] | 338 | int thread, struct timespec *rs) |
| 339 | { |
| 340 | if (counter->tool_event == PERF_TOOL_DURATION_TIME) { |
| 341 | u64 val = rs->tv_nsec + rs->tv_sec*1000000000ULL; |
| 342 | struct perf_counts_values *count = |
| 343 | perf_counts(counter->counts, cpu, thread); |
| 344 | count->ena = count->run = val; |
| 345 | count->val = val; |
| 346 | return 0; |
| 347 | } |
Arnaldo Carvalho de Melo | ea08969 | 2020-04-30 11:00:53 -0300 | [diff] [blame] | 348 | return evsel__read_counter(counter, cpu, thread); |
Andi Kleen | f0fbb11 | 2019-03-26 15:18:21 -0700 | [diff] [blame] | 349 | } |
| 350 | |
Stephane Eranian | f5b4a9c3 | 2010-11-16 11:05:01 +0200 | [diff] [blame] | 351 | /* |
| 352 | * Read out the results of a single counter: |
| 353 | * do not aggregate counts across CPUs in system-wide mode |
| 354 | */ |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 355 | static int read_counter_cpu(struct evsel *counter, struct timespec *rs, int cpu) |
Stephane Eranian | f5b4a9c3 | 2010-11-16 11:05:01 +0200 | [diff] [blame] | 356 | { |
Jiri Olsa | a2f354e | 2019-08-22 13:11:41 +0200 | [diff] [blame] | 357 | int nthreads = perf_thread_map__nr(evsel_list->core.threads); |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 358 | int thread; |
Stephane Eranian | f5b4a9c3 | 2010-11-16 11:05:01 +0200 | [diff] [blame] | 359 | |
Suzuki K. Poulose | 3b4331d | 2015-02-13 18:40:58 +0000 | [diff] [blame] | 360 | if (!counter->supported) |
| 361 | return -ENOENT; |
| 362 | |
Jiri Olsa | 648b5af | 2019-08-06 11:35:19 +0200 | [diff] [blame] | 363 | if (counter->core.system_wide) |
Jiri Olsa | 9bf1a52 | 2014-11-21 10:31:09 +0100 | [diff] [blame] | 364 | nthreads = 1; |
| 365 | |
| 366 | for (thread = 0; thread < nthreads; thread++) { |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 367 | struct perf_counts_values *count; |
Jiri Olsa | 3b3eb04 | 2015-06-26 11:29:20 +0200 | [diff] [blame] | 368 | |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 369 | count = perf_counts(counter->counts, cpu, thread); |
Jiri Olsa | 82bf311 | 2017-07-26 14:02:06 +0200 | [diff] [blame] | 370 | |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 371 | /* |
| 372 | * The leader's group read loads data into its group members |
Arnaldo Carvalho de Melo | ea08969 | 2020-04-30 11:00:53 -0300 | [diff] [blame] | 373 | * (via evsel__read_counter()) and sets their count->loaded. |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 374 | */ |
| 375 | if (!perf_counts__is_loaded(counter->counts, cpu, thread) && |
| 376 | read_single_counter(counter, cpu, thread, rs)) { |
| 377 | counter->counts->scaled = -1; |
| 378 | perf_counts(counter->counts, cpu, thread)->ena = 0; |
| 379 | perf_counts(counter->counts, cpu, thread)->run = 0; |
| 380 | return -1; |
| 381 | } |
| 382 | |
| 383 | perf_counts__set_loaded(counter->counts, cpu, thread, false); |
| 384 | |
| 385 | if (STAT_RECORD) { |
Arnaldo Carvalho de Melo | ddc6999 | 2020-05-04 13:46:34 -0300 | [diff] [blame] | 386 | if (evsel__write_stat_event(counter, cpu, thread, count)) { |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 387 | pr_err("failed to write stat event\n"); |
Jiri Olsa | 9bf1a52 | 2014-11-21 10:31:09 +0100 | [diff] [blame] | 388 | return -1; |
Stephane Eranian | db49a71 | 2017-04-12 11:23:01 -0700 | [diff] [blame] | 389 | } |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 390 | } |
Jiri Olsa | 5a6ea81 | 2015-11-05 15:40:51 +0100 | [diff] [blame] | 391 | |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 392 | if (verbose > 1) { |
| 393 | fprintf(stat_config.output, |
| 394 | "%s: %d: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n", |
Arnaldo Carvalho de Melo | 8ab2e96 | 2020-04-29 16:07:09 -0300 | [diff] [blame] | 395 | evsel__name(counter), |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 396 | cpu, |
| 397 | count->val, count->ena, count->run); |
Jiri Olsa | 9bf1a52 | 2014-11-21 10:31:09 +0100 | [diff] [blame] | 398 | } |
Stephane Eranian | f5b4a9c3 | 2010-11-16 11:05:01 +0200 | [diff] [blame] | 399 | } |
Arnaldo Carvalho de Melo | c52b12e | 2011-01-03 17:45:52 -0200 | [diff] [blame] | 400 | |
| 401 | return 0; |
Ingo Molnar | 2996f5d | 2009-05-29 09:10:54 +0200 | [diff] [blame] | 402 | } |
| 403 | |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 404 | static int read_affinity_counters(struct timespec *rs) |
Jiri Olsa | 106a94a | 2015-06-26 11:29:19 +0200 | [diff] [blame] | 405 | { |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 406 | struct evsel *counter; |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 407 | struct affinity affinity; |
| 408 | int i, ncpus, cpu; |
| 409 | |
Song Liu | 112cb56 | 2021-04-25 14:43:31 -0700 | [diff] [blame] | 410 | if (all_counters_use_bpf) |
| 411 | return 0; |
| 412 | |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 413 | if (affinity__setup(&affinity) < 0) |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 414 | return -1; |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 415 | |
| 416 | ncpus = perf_cpu_map__nr(evsel_list->core.all_cpus); |
| 417 | if (!target__has_cpu(&target) || target__has_per_thread(&target)) |
| 418 | ncpus = 1; |
| 419 | evlist__for_each_cpu(evsel_list, i, cpu) { |
| 420 | if (i >= ncpus) |
| 421 | break; |
| 422 | affinity__set(&affinity, cpu); |
| 423 | |
| 424 | evlist__for_each_entry(evsel_list, counter) { |
| 425 | if (evsel__cpu_iter_skip(counter, cpu)) |
| 426 | continue; |
Song Liu | 112cb56 | 2021-04-25 14:43:31 -0700 | [diff] [blame] | 427 | if (evsel__is_bpf(counter)) |
| 428 | continue; |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 429 | if (!counter->err) { |
| 430 | counter->err = read_counter_cpu(counter, rs, |
| 431 | counter->cpu_iter - 1); |
| 432 | } |
| 433 | } |
| 434 | } |
| 435 | affinity__cleanup(&affinity); |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 436 | return 0; |
| 437 | } |
| 438 | |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 439 | static int read_bpf_map_counters(void) |
| 440 | { |
| 441 | struct evsel *counter; |
| 442 | int err; |
| 443 | |
| 444 | evlist__for_each_entry(evsel_list, counter) { |
Song Liu | 112cb56 | 2021-04-25 14:43:31 -0700 | [diff] [blame] | 445 | if (!evsel__is_bpf(counter)) |
| 446 | continue; |
| 447 | |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 448 | err = bpf_counter__read(counter); |
| 449 | if (err) |
| 450 | return err; |
| 451 | } |
| 452 | return 0; |
| 453 | } |
| 454 | |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 455 | static void read_counters(struct timespec *rs) |
| 456 | { |
| 457 | struct evsel *counter; |
| 458 | |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 459 | if (!stat_config.stop_read_counter) { |
Song Liu | 112cb56 | 2021-04-25 14:43:31 -0700 | [diff] [blame] | 460 | if (read_bpf_map_counters() || |
| 461 | read_affinity_counters(rs)) |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 462 | return; |
| 463 | } |
Jiri Olsa | 106a94a | 2015-06-26 11:29:19 +0200 | [diff] [blame] | 464 | |
Arnaldo Carvalho de Melo | e5cadb9 | 2016-06-23 11:26:15 -0300 | [diff] [blame] | 465 | evlist__for_each_entry(evsel_list, counter) { |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 466 | if (counter->err) |
Andi Kleen | 245bad8 | 2015-09-01 15:52:46 -0700 | [diff] [blame] | 467 | pr_debug("failed to read counter %s\n", counter->name); |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 468 | if (counter->err == 0 && perf_stat_process_counter(&stat_config, counter)) |
Jiri Olsa | 3b3eb04 | 2015-06-26 11:29:20 +0200 | [diff] [blame] | 469 | pr_warning("failed to process counter %s\n", counter->name); |
Andi Kleen | 4b49ab7 | 2019-11-20 16:15:20 -0800 | [diff] [blame] | 470 | counter->err = 0; |
Jiri Olsa | 106a94a | 2015-06-26 11:29:19 +0200 | [diff] [blame] | 471 | } |
| 472 | } |
| 473 | |
Jin Yao | 72f02a9 | 2020-05-20 12:27:33 +0800 | [diff] [blame] | 474 | static int runtime_stat_new(struct perf_stat_config *config, int nthreads) |
| 475 | { |
| 476 | int i; |
| 477 | |
| 478 | config->stats = calloc(nthreads, sizeof(struct runtime_stat)); |
| 479 | if (!config->stats) |
| 480 | return -1; |
| 481 | |
| 482 | config->stats_num = nthreads; |
| 483 | |
| 484 | for (i = 0; i < nthreads; i++) |
| 485 | runtime_stat__init(&config->stats[i]); |
| 486 | |
| 487 | return 0; |
| 488 | } |
| 489 | |
| 490 | static void runtime_stat_delete(struct perf_stat_config *config) |
| 491 | { |
| 492 | int i; |
| 493 | |
| 494 | if (!config->stats) |
| 495 | return; |
| 496 | |
| 497 | for (i = 0; i < config->stats_num; i++) |
| 498 | runtime_stat__exit(&config->stats[i]); |
| 499 | |
| 500 | zfree(&config->stats); |
| 501 | } |
| 502 | |
| 503 | static void runtime_stat_reset(struct perf_stat_config *config) |
| 504 | { |
| 505 | int i; |
| 506 | |
| 507 | if (!config->stats) |
| 508 | return; |
| 509 | |
| 510 | for (i = 0; i < config->stats_num; i++) |
| 511 | perf_stat__reset_shadow_per_stat(&config->stats[i]); |
| 512 | } |
| 513 | |
Jiri Olsa | ba411a9 | 2015-06-26 11:29:24 +0200 | [diff] [blame] | 514 | static void process_interval(void) |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 515 | { |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 516 | struct timespec ts, rs; |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 517 | |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 518 | clock_gettime(CLOCK_MONOTONIC, &ts); |
| 519 | diff_timespec(&rs, &ts, &ref_time); |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 520 | |
Jin Yao | 197ba86 | 2020-04-20 22:54:17 +0800 | [diff] [blame] | 521 | perf_stat__reset_shadow_per_stat(&rt_stat); |
Jin Yao | 72f02a9 | 2020-05-20 12:27:33 +0800 | [diff] [blame] | 522 | runtime_stat_reset(&stat_config); |
Andi Kleen | f0fbb11 | 2019-03-26 15:18:21 -0700 | [diff] [blame] | 523 | read_counters(&rs); |
| 524 | |
Jiri Olsa | 7aad0c3 | 2015-11-05 15:40:52 +0100 | [diff] [blame] | 525 | if (STAT_RECORD) { |
Arnaldo Carvalho de Melo | bd48c63 | 2016-08-05 15:40:30 -0300 | [diff] [blame] | 526 | if (WRITE_STAT_ROUND_EVENT(rs.tv_sec * NSEC_PER_SEC + rs.tv_nsec, INTERVAL)) |
Jiri Olsa | 7aad0c3 | 2015-11-05 15:40:52 +0100 | [diff] [blame] | 527 | pr_err("failed to write stat round event\n"); |
| 528 | } |
| 529 | |
Andi Kleen | b90f133 | 2017-08-31 12:40:36 -0700 | [diff] [blame] | 530 | init_stats(&walltime_nsecs_stats); |
Jiri Olsa | ea9eb1f | 2020-05-18 15:14:45 +0200 | [diff] [blame] | 531 | update_stats(&walltime_nsecs_stats, stat_config.interval * 1000000ULL); |
Jiri Olsa | d4f63a4 | 2015-06-26 11:29:26 +0200 | [diff] [blame] | 532 | print_counters(&rs, 0, NULL); |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 533 | } |
| 534 | |
Alexey Budankov | dece3a4 | 2020-07-17 10:02:08 +0300 | [diff] [blame] | 535 | static bool handle_interval(unsigned int interval, int *times) |
| 536 | { |
| 537 | if (interval) { |
| 538 | process_interval(); |
| 539 | if (interval_count && !(--(*times))) |
| 540 | return true; |
| 541 | } |
| 542 | return false; |
| 543 | } |
| 544 | |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 545 | static int enable_counters(void) |
Andi Kleen | 4119168 | 2013-08-02 17:41:11 -0700 | [diff] [blame] | 546 | { |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 547 | struct evsel *evsel; |
| 548 | int err; |
| 549 | |
Song Liu | 112cb56 | 2021-04-25 14:43:31 -0700 | [diff] [blame] | 550 | evlist__for_each_entry(evsel_list, evsel) { |
| 551 | if (!evsel__is_bpf(evsel)) |
| 552 | continue; |
| 553 | |
| 554 | err = bpf_counter__enable(evsel); |
| 555 | if (err) |
| 556 | return err; |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 557 | } |
| 558 | |
Alexey Budankov | 2162b9c | 2020-07-17 10:04:33 +0300 | [diff] [blame] | 559 | if (stat_config.initial_delay < 0) { |
| 560 | pr_info(EVLIST_DISABLED_MSG); |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 561 | return 0; |
Alexey Budankov | 2162b9c | 2020-07-17 10:04:33 +0300 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | if (stat_config.initial_delay > 0) { |
| 565 | pr_info(EVLIST_DISABLED_MSG); |
Jiri Olsa | 728c0ee | 2018-08-30 08:32:11 +0200 | [diff] [blame] | 566 | usleep(stat_config.initial_delay * USEC_PER_MSEC); |
Alexey Budankov | 2162b9c | 2020-07-17 10:04:33 +0300 | [diff] [blame] | 567 | } |
Jiri Olsa | 67ccdec | 2015-12-03 10:06:44 +0100 | [diff] [blame] | 568 | |
| 569 | /* |
| 570 | * We need to enable counters only if: |
| 571 | * - we don't have tracee (attaching to task or cpu) |
| 572 | * - we have initial delay configured |
| 573 | */ |
Alexey Budankov | 2162b9c | 2020-07-17 10:04:33 +0300 | [diff] [blame] | 574 | if (!target__none(&target) || stat_config.initial_delay) { |
Song Liu | f8b61bd | 2021-05-11 23:51:16 -0700 | [diff] [blame] | 575 | if (!all_counters_use_bpf) |
| 576 | evlist__enable(evsel_list); |
Alexey Budankov | 2162b9c | 2020-07-17 10:04:33 +0300 | [diff] [blame] | 577 | if (stat_config.initial_delay > 0) |
| 578 | pr_info(EVLIST_ENABLED_MSG); |
| 579 | } |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 580 | return 0; |
Andi Kleen | 4119168 | 2013-08-02 17:41:11 -0700 | [diff] [blame] | 581 | } |
| 582 | |
Mark Rutland | 3df33ef | 2016-08-09 14:04:29 +0100 | [diff] [blame] | 583 | static void disable_counters(void) |
| 584 | { |
Song Liu | f8b61bd | 2021-05-11 23:51:16 -0700 | [diff] [blame] | 585 | struct evsel *counter; |
| 586 | |
Mark Rutland | 3df33ef | 2016-08-09 14:04:29 +0100 | [diff] [blame] | 587 | /* |
| 588 | * If we don't have tracee (attaching to task or cpu), counters may |
| 589 | * still be running. To get accurate group ratios, we must stop groups |
| 590 | * from counting before reading their constituent counters. |
| 591 | */ |
Song Liu | f8b61bd | 2021-05-11 23:51:16 -0700 | [diff] [blame] | 592 | if (!target__none(&target)) { |
| 593 | evlist__for_each_entry(evsel_list, counter) |
| 594 | bpf_counter__disable(counter); |
| 595 | if (!all_counters_use_bpf) |
| 596 | evlist__disable(evsel_list); |
| 597 | } |
Mark Rutland | 3df33ef | 2016-08-09 14:04:29 +0100 | [diff] [blame] | 598 | } |
| 599 | |
Arnaldo Carvalho de Melo | f33cbe7 | 2014-01-02 15:11:25 -0300 | [diff] [blame] | 600 | static volatile int workload_exec_errno; |
Arnaldo Carvalho de Melo | 6af206f | 2013-12-28 15:45:08 -0300 | [diff] [blame] | 601 | |
| 602 | /* |
Arnaldo Carvalho de Melo | 7b392ef | 2020-11-30 09:26:54 -0300 | [diff] [blame] | 603 | * evlist__prepare_workload will send a SIGUSR1 |
Arnaldo Carvalho de Melo | 6af206f | 2013-12-28 15:45:08 -0300 | [diff] [blame] | 604 | * if the fork fails, since we asked by setting its |
| 605 | * want_signal to true. |
| 606 | */ |
Arnaldo Carvalho de Melo | f33cbe7 | 2014-01-02 15:11:25 -0300 | [diff] [blame] | 607 | static void workload_exec_failed_signal(int signo __maybe_unused, siginfo_t *info, |
| 608 | void *ucontext __maybe_unused) |
Arnaldo Carvalho de Melo | 6af206f | 2013-12-28 15:45:08 -0300 | [diff] [blame] | 609 | { |
Arnaldo Carvalho de Melo | f33cbe7 | 2014-01-02 15:11:25 -0300 | [diff] [blame] | 610 | workload_exec_errno = info->si_value.sival_int; |
Arnaldo Carvalho de Melo | 6af206f | 2013-12-28 15:45:08 -0300 | [diff] [blame] | 611 | } |
| 612 | |
Arnaldo Carvalho de Melo | ddc6999 | 2020-05-04 13:46:34 -0300 | [diff] [blame] | 613 | static bool evsel__should_store_id(struct evsel *counter) |
Jiri Olsa | 82bf311 | 2017-07-26 14:02:06 +0200 | [diff] [blame] | 614 | { |
Jiri Olsa | 1fc632c | 2019-07-21 13:24:29 +0200 | [diff] [blame] | 615 | return STAT_RECORD || counter->core.attr.read_format & PERF_FORMAT_ID; |
Jiri Olsa | 82bf311 | 2017-07-26 14:02:06 +0200 | [diff] [blame] | 616 | } |
| 617 | |
Jiri Olsa | cbb5df7e | 2018-10-22 11:30:15 +0200 | [diff] [blame] | 618 | static bool is_target_alive(struct target *_target, |
Jiri Olsa | 9749b90 | 2019-07-21 13:23:50 +0200 | [diff] [blame] | 619 | struct perf_thread_map *threads) |
Jiri Olsa | cbb5df7e | 2018-10-22 11:30:15 +0200 | [diff] [blame] | 620 | { |
| 621 | struct stat st; |
| 622 | int i; |
| 623 | |
| 624 | if (!target__has_task(_target)) |
| 625 | return true; |
| 626 | |
| 627 | for (i = 0; i < threads->nr; i++) { |
| 628 | char path[PATH_MAX]; |
| 629 | |
| 630 | scnprintf(path, PATH_MAX, "%s/%d", procfs__mountpoint(), |
| 631 | threads->map[i].pid); |
| 632 | |
| 633 | if (!stat(path, &st)) |
| 634 | return true; |
| 635 | } |
| 636 | |
| 637 | return false; |
| 638 | } |
| 639 | |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 640 | static void process_evlist(struct evlist *evlist, unsigned int interval) |
| 641 | { |
| 642 | enum evlist_ctl_cmd cmd = EVLIST_CTL_CMD_UNSUPPORTED; |
| 643 | |
| 644 | if (evlist__ctlfd_process(evlist, &cmd) > 0) { |
| 645 | switch (cmd) { |
| 646 | case EVLIST_CTL_CMD_ENABLE: |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 647 | if (interval) |
| 648 | process_interval(); |
| 649 | break; |
| 650 | case EVLIST_CTL_CMD_DISABLE: |
| 651 | if (interval) |
| 652 | process_interval(); |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 653 | break; |
Adrian Hunter | d20aff1 | 2020-09-01 12:37:57 +0300 | [diff] [blame] | 654 | case EVLIST_CTL_CMD_SNAPSHOT: |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 655 | case EVLIST_CTL_CMD_ACK: |
| 656 | case EVLIST_CTL_CMD_UNSUPPORTED: |
Jiri Olsa | 142544a | 2020-12-27 00:20:36 +0100 | [diff] [blame] | 657 | case EVLIST_CTL_CMD_EVLIST: |
Jiri Olsa | f186cd6 | 2020-12-27 00:20:37 +0100 | [diff] [blame] | 658 | case EVLIST_CTL_CMD_STOP: |
Jiri Olsa | 47fddcb | 2020-12-27 00:20:38 +0100 | [diff] [blame] | 659 | case EVLIST_CTL_CMD_PING: |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 660 | default: |
| 661 | break; |
| 662 | } |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | static void compute_tts(struct timespec *time_start, struct timespec *time_stop, |
| 667 | int *time_to_sleep) |
| 668 | { |
| 669 | int tts = *time_to_sleep; |
| 670 | struct timespec time_diff; |
| 671 | |
| 672 | diff_timespec(&time_diff, time_stop, time_start); |
| 673 | |
| 674 | tts -= time_diff.tv_sec * MSEC_PER_SEC + |
| 675 | time_diff.tv_nsec / NSEC_PER_MSEC; |
| 676 | |
| 677 | if (tts < 0) |
| 678 | tts = 0; |
| 679 | |
| 680 | *time_to_sleep = tts; |
| 681 | } |
| 682 | |
| 683 | static int dispatch_events(bool forks, int timeout, int interval, int *times) |
Alexey Budankov | 987b823 | 2020-07-17 10:04:02 +0300 | [diff] [blame] | 684 | { |
| 685 | int child_exited = 0, status = 0; |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 686 | int time_to_sleep, sleep_time; |
| 687 | struct timespec time_start, time_stop; |
| 688 | |
| 689 | if (interval) |
| 690 | sleep_time = interval; |
| 691 | else if (timeout) |
| 692 | sleep_time = timeout; |
| 693 | else |
| 694 | sleep_time = 1000; |
| 695 | |
| 696 | time_to_sleep = sleep_time; |
Alexey Budankov | 987b823 | 2020-07-17 10:04:02 +0300 | [diff] [blame] | 697 | |
| 698 | while (!done) { |
| 699 | if (forks) |
| 700 | child_exited = waitpid(child_pid, &status, WNOHANG); |
| 701 | else |
| 702 | child_exited = !is_target_alive(&target, evsel_list->core.threads) ? 1 : 0; |
| 703 | |
| 704 | if (child_exited) |
| 705 | break; |
| 706 | |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 707 | clock_gettime(CLOCK_MONOTONIC, &time_start); |
| 708 | if (!(evlist__poll(evsel_list, time_to_sleep) > 0)) { /* poll timeout or EINTR */ |
| 709 | if (timeout || handle_interval(interval, times)) |
| 710 | break; |
| 711 | time_to_sleep = sleep_time; |
| 712 | } else { /* fd revent */ |
| 713 | process_evlist(evsel_list, interval); |
| 714 | clock_gettime(CLOCK_MONOTONIC, &time_stop); |
| 715 | compute_tts(&time_start, &time_stop, &time_to_sleep); |
| 716 | } |
Alexey Budankov | 987b823 | 2020-07-17 10:04:02 +0300 | [diff] [blame] | 717 | } |
| 718 | |
| 719 | return status; |
| 720 | } |
| 721 | |
Andi Kleen | e0e6a6c | 2019-11-20 16:15:18 -0800 | [diff] [blame] | 722 | enum counter_recovery { |
| 723 | COUNTER_SKIP, |
| 724 | COUNTER_RETRY, |
| 725 | COUNTER_FATAL, |
| 726 | }; |
| 727 | |
| 728 | static enum counter_recovery stat_handle_error(struct evsel *counter) |
| 729 | { |
| 730 | char msg[BUFSIZ]; |
| 731 | /* |
| 732 | * PPC returns ENXIO for HW counters until 2.6.37 |
| 733 | * (behavior changed with commit b0a873e). |
| 734 | */ |
| 735 | if (errno == EINVAL || errno == ENOSYS || |
| 736 | errno == ENOENT || errno == EOPNOTSUPP || |
| 737 | errno == ENXIO) { |
| 738 | if (verbose > 0) |
| 739 | ui__warning("%s event is not supported by the kernel.\n", |
Arnaldo Carvalho de Melo | 8ab2e96 | 2020-04-29 16:07:09 -0300 | [diff] [blame] | 740 | evsel__name(counter)); |
Andi Kleen | e0e6a6c | 2019-11-20 16:15:18 -0800 | [diff] [blame] | 741 | counter->supported = false; |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 742 | /* |
| 743 | * errored is a sticky flag that means one of the counter's |
| 744 | * cpu event had a problem and needs to be reexamined. |
| 745 | */ |
| 746 | counter->errored = true; |
Andi Kleen | e0e6a6c | 2019-11-20 16:15:18 -0800 | [diff] [blame] | 747 | |
| 748 | if ((counter->leader != counter) || |
| 749 | !(counter->leader->core.nr_members > 1)) |
| 750 | return COUNTER_SKIP; |
Arnaldo Carvalho de Melo | ae43089 | 2020-04-30 11:46:15 -0300 | [diff] [blame] | 751 | } else if (evsel__fallback(counter, errno, msg, sizeof(msg))) { |
Andi Kleen | e0e6a6c | 2019-11-20 16:15:18 -0800 | [diff] [blame] | 752 | if (verbose > 0) |
| 753 | ui__warning("%s\n", msg); |
| 754 | return COUNTER_RETRY; |
| 755 | } else if (target__has_per_thread(&target) && |
| 756 | evsel_list->core.threads && |
| 757 | evsel_list->core.threads->err_thread != -1) { |
| 758 | /* |
| 759 | * For global --per-thread case, skip current |
| 760 | * error thread. |
| 761 | */ |
| 762 | if (!thread_map__remove(evsel_list->core.threads, |
| 763 | evsel_list->core.threads->err_thread)) { |
| 764 | evsel_list->core.threads->err_thread = -1; |
| 765 | return COUNTER_RETRY; |
| 766 | } |
| 767 | } |
| 768 | |
Arnaldo Carvalho de Melo | 2bb72db | 2020-05-04 13:43:03 -0300 | [diff] [blame] | 769 | evsel__open_strerror(counter, &target, errno, msg, sizeof(msg)); |
Andi Kleen | e0e6a6c | 2019-11-20 16:15:18 -0800 | [diff] [blame] | 770 | ui__error("%s\n", msg); |
| 771 | |
| 772 | if (child_pid != -1) |
| 773 | kill(child_pid, SIGTERM); |
| 774 | return COUNTER_FATAL; |
| 775 | } |
| 776 | |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 777 | static int __run_perf_stat(int argc, const char **argv, int run_idx) |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 778 | { |
Jiri Olsa | ec0d3d1 | 2015-07-21 14:31:25 +0200 | [diff] [blame] | 779 | int interval = stat_config.interval; |
yuzhoujian | db06a26 | 2018-01-29 10:25:22 +0100 | [diff] [blame] | 780 | int times = stat_config.times; |
yuzhoujian | f1f8ad5 | 2018-01-29 10:25:23 +0100 | [diff] [blame] | 781 | int timeout = stat_config.timeout; |
Arnaldo Carvalho de Melo | d6195a6 | 2017-02-13 16:45:24 -0300 | [diff] [blame] | 782 | char msg[BUFSIZ]; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 783 | unsigned long long t0, t1; |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 784 | struct evsel *counter; |
Stephane Eranian | 410136f | 2013-11-12 17:58:49 +0100 | [diff] [blame] | 785 | size_t l; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 786 | int status = 0; |
Zhang, Yanmin | 6be2850 | 2010-03-18 11:36:03 -0300 | [diff] [blame] | 787 | const bool forks = (argc > 0); |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 788 | bool is_pipe = STAT_RECORD ? perf_stat.data.is_pipe : false; |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 789 | struct affinity affinity; |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 790 | int i, cpu, err; |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 791 | bool second_pass = false; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 792 | |
Liming Wang | 60666c6 | 2009-12-31 16:05:50 +0800 | [diff] [blame] | 793 | if (forks) { |
Arnaldo Carvalho de Melo | 7b392ef | 2020-11-30 09:26:54 -0300 | [diff] [blame] | 794 | if (evlist__prepare_workload(evsel_list, &target, argv, is_pipe, workload_exec_failed_signal) < 0) { |
Namhyung Kim | acf2892 | 2013-03-11 16:43:18 +0900 | [diff] [blame] | 795 | perror("failed to prepare workload"); |
| 796 | return -1; |
Liming Wang | 60666c6 | 2009-12-31 16:05:50 +0800 | [diff] [blame] | 797 | } |
Namhyung Kim | d20a47e | 2013-09-30 18:01:11 +0900 | [diff] [blame] | 798 | child_pid = evsel_list->workload.pid; |
Paul Mackerras | 051ae7f | 2009-06-29 21:13:21 +1000 | [diff] [blame] | 799 | } |
| 800 | |
Jiri Olsa | 6a4bb04 | 2012-08-08 12:22:36 +0200 | [diff] [blame] | 801 | if (group) |
Arnaldo Carvalho de Melo | a622eaf | 2020-11-30 09:22:07 -0300 | [diff] [blame] | 802 | evlist__set_leader(evsel_list); |
Jiri Olsa | 6a4bb04 | 2012-08-08 12:22:36 +0200 | [diff] [blame] | 803 | |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 804 | if (affinity__setup(&affinity) < 0) |
| 805 | return -1; |
Andi Kleen | 5a5dfe4 | 2017-08-31 12:40:26 -0700 | [diff] [blame] | 806 | |
Song Liu | 112cb56 | 2021-04-25 14:43:31 -0700 | [diff] [blame] | 807 | evlist__for_each_entry(evsel_list, counter) { |
| 808 | if (bpf_counter__load(counter, &target)) |
| 809 | return -1; |
| 810 | if (!evsel__is_bpf(counter)) |
| 811 | all_counters_use_bpf = false; |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 812 | } |
| 813 | |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 814 | evlist__for_each_cpu (evsel_list, i, cpu) { |
Song Liu | 7fac83a | 2021-03-16 14:18:35 -0700 | [diff] [blame] | 815 | /* |
| 816 | * bperf calls evsel__open_per_cpu() in bperf__load(), so |
| 817 | * no need to call it again here. |
| 818 | */ |
| 819 | if (target.use_bpf) |
| 820 | break; |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 821 | affinity__set(&affinity, cpu); |
Andi Kleen | 5a5dfe4 | 2017-08-31 12:40:26 -0700 | [diff] [blame] | 822 | |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 823 | evlist__for_each_entry(evsel_list, counter) { |
| 824 | if (evsel__cpu_iter_skip(counter, cpu)) |
Andi Kleen | e0e6a6c | 2019-11-20 16:15:18 -0800 | [diff] [blame] | 825 | continue; |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 826 | if (counter->reset_group || counter->errored) |
| 827 | continue; |
Song Liu | 112cb56 | 2021-04-25 14:43:31 -0700 | [diff] [blame] | 828 | if (evsel__is_bpf(counter)) |
| 829 | continue; |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 830 | try_again: |
| 831 | if (create_perf_stat_counter(counter, &stat_config, &target, |
| 832 | counter->cpu_iter - 1) < 0) { |
| 833 | |
| 834 | /* |
| 835 | * Weak group failed. We cannot just undo this here |
| 836 | * because earlier CPUs might be in group mode, and the kernel |
| 837 | * doesn't support mixing group and non group reads. Defer |
| 838 | * it to later. |
| 839 | * Don't close here because we're in the wrong affinity. |
| 840 | */ |
| 841 | if ((errno == EINVAL || errno == EBADF) && |
| 842 | counter->leader != counter && |
| 843 | counter->weak_group) { |
Arnaldo Carvalho de Melo | 64b4778 | 2020-11-30 14:58:32 -0300 | [diff] [blame] | 844 | evlist__reset_weak_group(evsel_list, counter, false); |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 845 | assert(counter->reset_group); |
| 846 | second_pass = true; |
| 847 | continue; |
| 848 | } |
| 849 | |
| 850 | switch (stat_handle_error(counter)) { |
| 851 | case COUNTER_FATAL: |
| 852 | return -1; |
| 853 | case COUNTER_RETRY: |
| 854 | goto try_again; |
| 855 | case COUNTER_SKIP: |
| 856 | continue; |
| 857 | default: |
| 858 | break; |
| 859 | } |
| 860 | |
| 861 | } |
| 862 | counter->supported = true; |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | if (second_pass) { |
| 867 | /* |
| 868 | * Now redo all the weak group after closing them, |
| 869 | * and also close errored counters. |
| 870 | */ |
| 871 | |
| 872 | evlist__for_each_cpu(evsel_list, i, cpu) { |
| 873 | affinity__set(&affinity, cpu); |
| 874 | /* First close errored or weak retry */ |
| 875 | evlist__for_each_entry(evsel_list, counter) { |
| 876 | if (!counter->reset_group && !counter->errored) |
| 877 | continue; |
| 878 | if (evsel__cpu_iter_skip_no_inc(counter, cpu)) |
| 879 | continue; |
| 880 | perf_evsel__close_cpu(&counter->core, counter->cpu_iter); |
| 881 | } |
| 882 | /* Now reopen weak */ |
| 883 | evlist__for_each_entry(evsel_list, counter) { |
| 884 | if (!counter->reset_group && !counter->errored) |
| 885 | continue; |
| 886 | if (evsel__cpu_iter_skip(counter, cpu)) |
| 887 | continue; |
| 888 | if (!counter->reset_group) |
| 889 | continue; |
| 890 | try_again_reset: |
Arnaldo Carvalho de Melo | 8ab2e96 | 2020-04-29 16:07:09 -0300 | [diff] [blame] | 891 | pr_debug2("reopening weak %s\n", evsel__name(counter)); |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 892 | if (create_perf_stat_counter(counter, &stat_config, &target, |
| 893 | counter->cpu_iter - 1) < 0) { |
| 894 | |
| 895 | switch (stat_handle_error(counter)) { |
| 896 | case COUNTER_FATAL: |
| 897 | return -1; |
| 898 | case COUNTER_RETRY: |
| 899 | goto try_again_reset; |
| 900 | case COUNTER_SKIP: |
| 901 | continue; |
| 902 | default: |
| 903 | break; |
| 904 | } |
| 905 | } |
| 906 | counter->supported = true; |
Jin Yao | ab6c79b | 2018-01-16 23:43:08 +0800 | [diff] [blame] | 907 | } |
Arnaldo Carvalho de Melo | 4829060 | 2011-01-03 17:48:12 -0200 | [diff] [blame] | 908 | } |
Andi Kleen | 4804e01 | 2019-11-20 16:15:19 -0800 | [diff] [blame] | 909 | } |
| 910 | affinity__cleanup(&affinity); |
| 911 | |
| 912 | evlist__for_each_entry(evsel_list, counter) { |
| 913 | if (!counter->supported) { |
| 914 | perf_evsel__free_fd(&counter->core); |
| 915 | continue; |
| 916 | } |
Stephane Eranian | 410136f | 2013-11-12 17:58:49 +0100 | [diff] [blame] | 917 | |
| 918 | l = strlen(counter->unit); |
Jiri Olsa | df4f7b4 | 2018-08-30 08:32:32 +0200 | [diff] [blame] | 919 | if (l > stat_config.unit_width) |
| 920 | stat_config.unit_width = l; |
Jiri Olsa | 2af4646 | 2015-11-05 15:40:49 +0100 | [diff] [blame] | 921 | |
Arnaldo Carvalho de Melo | ddc6999 | 2020-05-04 13:46:34 -0300 | [diff] [blame] | 922 | if (evsel__should_store_id(counter) && |
Arnaldo Carvalho de Melo | 3439775 | 2020-05-04 13:45:19 -0300 | [diff] [blame] | 923 | evsel__store_ids(counter, evsel_list)) |
Jiri Olsa | 2af4646 | 2015-11-05 15:40:49 +0100 | [diff] [blame] | 924 | return -1; |
Arnaldo Carvalho de Melo | 084ab9f | 2010-03-22 13:10:28 -0300 | [diff] [blame] | 925 | } |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 926 | |
Arnaldo Carvalho de Melo | 24bf91a | 2020-11-30 09:38:02 -0300 | [diff] [blame] | 927 | if (evlist__apply_filters(evsel_list, &counter)) { |
Arnaldo Carvalho de Melo | 62d94b0 | 2017-06-27 11:22:31 -0300 | [diff] [blame] | 928 | pr_err("failed to set filter \"%s\" on event %s with %d (%s)\n", |
Arnaldo Carvalho de Melo | 8ab2e96 | 2020-04-29 16:07:09 -0300 | [diff] [blame] | 929 | counter->filter, evsel__name(counter), errno, |
Arnaldo Carvalho de Melo | c8b5f2c | 2016-07-06 11:56:20 -0300 | [diff] [blame] | 930 | str_error_r(errno, msg, sizeof(msg))); |
Frederic Weisbecker | cfd748a | 2011-03-14 16:40:30 +0100 | [diff] [blame] | 931 | return -1; |
| 932 | } |
| 933 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 934 | if (STAT_RECORD) { |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 935 | int fd = perf_data__fd(&perf_stat.data); |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 936 | |
Jiri Olsa | 664c98d | 2015-11-05 15:40:50 +0100 | [diff] [blame] | 937 | if (is_pipe) { |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 938 | err = perf_header__write_pipe(perf_data__fd(&perf_stat.data)); |
Jiri Olsa | 664c98d | 2015-11-05 15:40:50 +0100 | [diff] [blame] | 939 | } else { |
| 940 | err = perf_session__write_header(perf_stat.session, evsel_list, |
| 941 | fd, false); |
| 942 | } |
| 943 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 944 | if (err < 0) |
| 945 | return err; |
Jiri Olsa | 8b99b1a | 2015-11-05 15:40:48 +0100 | [diff] [blame] | 946 | |
Arnaldo Carvalho de Melo | b251892 | 2019-09-10 17:17:33 +0100 | [diff] [blame] | 947 | err = perf_event__synthesize_stat_events(&stat_config, NULL, evsel_list, |
| 948 | process_synthesized_event, is_pipe); |
Jiri Olsa | 8b99b1a | 2015-11-05 15:40:48 +0100 | [diff] [blame] | 949 | if (err < 0) |
| 950 | return err; |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 951 | } |
| 952 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 953 | /* |
| 954 | * Enable counters and exec the command: |
| 955 | */ |
Liming Wang | 60666c6 | 2009-12-31 16:05:50 +0800 | [diff] [blame] | 956 | if (forks) { |
Arnaldo Carvalho de Melo | 7b392ef | 2020-11-30 09:26:54 -0300 | [diff] [blame] | 957 | evlist__start_workload(evsel_list); |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 958 | err = enable_counters(); |
| 959 | if (err) |
| 960 | return -1; |
Namhyung Kim | acf2892 | 2013-03-11 16:43:18 +0900 | [diff] [blame] | 961 | |
Song Liu | 435b46e | 2021-03-16 14:18:36 -0700 | [diff] [blame] | 962 | t0 = rdclock(); |
| 963 | clock_gettime(CLOCK_MONOTONIC, &ref_time); |
| 964 | |
Alexey Budankov | 27e9769 | 2020-07-17 10:05:41 +0300 | [diff] [blame] | 965 | if (interval || timeout || evlist__ctlfd_initialized(evsel_list)) |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 966 | status = dispatch_events(forks, timeout, interval, ×); |
Arnaldo Carvalho de Melo | cfbd41b | 2020-04-15 12:31:26 -0300 | [diff] [blame] | 967 | if (child_pid != -1) { |
| 968 | if (timeout) |
| 969 | kill(child_pid, SIGTERM); |
Jin Yao | 8a99255 | 2019-01-03 15:40:45 +0800 | [diff] [blame] | 970 | wait4(child_pid, &status, 0, &stat_config.ru_data); |
Arnaldo Carvalho de Melo | cfbd41b | 2020-04-15 12:31:26 -0300 | [diff] [blame] | 971 | } |
Arnaldo Carvalho de Melo | 6af206f | 2013-12-28 15:45:08 -0300 | [diff] [blame] | 972 | |
Arnaldo Carvalho de Melo | f33cbe7 | 2014-01-02 15:11:25 -0300 | [diff] [blame] | 973 | if (workload_exec_errno) { |
Arnaldo Carvalho de Melo | c8b5f2c | 2016-07-06 11:56:20 -0300 | [diff] [blame] | 974 | const char *emsg = str_error_r(workload_exec_errno, msg, sizeof(msg)); |
Arnaldo Carvalho de Melo | f33cbe7 | 2014-01-02 15:11:25 -0300 | [diff] [blame] | 975 | pr_err("Workload failed: %s\n", emsg); |
Arnaldo Carvalho de Melo | 6af206f | 2013-12-28 15:45:08 -0300 | [diff] [blame] | 976 | return -1; |
Arnaldo Carvalho de Melo | f33cbe7 | 2014-01-02 15:11:25 -0300 | [diff] [blame] | 977 | } |
Arnaldo Carvalho de Melo | 6af206f | 2013-12-28 15:45:08 -0300 | [diff] [blame] | 978 | |
Andi Kleen | 33e49ea | 2011-09-15 14:31:40 -0700 | [diff] [blame] | 979 | if (WIFSIGNALED(status)) |
| 980 | psignal(WTERMSIG(status), argv[0]); |
Liming Wang | 60666c6 | 2009-12-31 16:05:50 +0800 | [diff] [blame] | 981 | } else { |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 982 | err = enable_counters(); |
| 983 | if (err) |
| 984 | return -1; |
Song Liu | 435b46e | 2021-03-16 14:18:36 -0700 | [diff] [blame] | 985 | |
| 986 | t0 = rdclock(); |
| 987 | clock_gettime(CLOCK_MONOTONIC, &ref_time); |
| 988 | |
Alexey Budankov | bee328c | 2020-07-17 10:05:06 +0300 | [diff] [blame] | 989 | status = dispatch_events(forks, timeout, interval, ×); |
Liming Wang | 60666c6 | 2009-12-31 16:05:50 +0800 | [diff] [blame] | 990 | } |
Ingo Molnar | 44db76c | 2009-06-03 19:36:07 +0200 | [diff] [blame] | 991 | |
Mark Rutland | 3df33ef | 2016-08-09 14:04:29 +0100 | [diff] [blame] | 992 | disable_counters(); |
| 993 | |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 994 | t1 = rdclock(); |
| 995 | |
Jiri Olsa | 54ac0b1 | 2018-08-30 08:32:50 +0200 | [diff] [blame] | 996 | if (stat_config.walltime_run_table) |
| 997 | stat_config.walltime_run[run_idx] = t1 - t0; |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 998 | |
Jin Yao | ee6a961 | 2020-09-03 09:01:13 +0800 | [diff] [blame] | 999 | if (interval && stat_config.summary) { |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 1000 | stat_config.interval = 0; |
Jin Yao | ee6a961 | 2020-09-03 09:01:13 +0800 | [diff] [blame] | 1001 | stat_config.stop_read_counter = true; |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 1002 | init_stats(&walltime_nsecs_stats); |
| 1003 | update_stats(&walltime_nsecs_stats, t1 - t0); |
| 1004 | |
| 1005 | if (stat_config.aggr_mode == AGGR_GLOBAL) |
Arnaldo Carvalho de Melo | 53f5e90 | 2020-11-30 09:31:04 -0300 | [diff] [blame] | 1006 | evlist__save_aggr_prev_raw_counts(evsel_list); |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 1007 | |
Arnaldo Carvalho de Melo | 53f5e90 | 2020-11-30 09:31:04 -0300 | [diff] [blame] | 1008 | evlist__copy_prev_raw_counts(evsel_list); |
| 1009 | evlist__reset_prev_raw_counts(evsel_list); |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 1010 | runtime_stat_reset(&stat_config); |
| 1011 | perf_stat__reset_shadow_per_stat(&rt_stat); |
| 1012 | } else |
| 1013 | update_stats(&walltime_nsecs_stats, t1 - t0); |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 1014 | |
Mark Rutland | 3df33ef | 2016-08-09 14:04:29 +0100 | [diff] [blame] | 1015 | /* |
| 1016 | * Closing a group leader splits the group, and as we only disable |
| 1017 | * group leaders, results in remaining events becoming enabled. To |
| 1018 | * avoid arbitrary skew, we must read all counters before closing any |
| 1019 | * group leaders. |
| 1020 | */ |
Andi Kleen | f0fbb11 | 2019-03-26 15:18:21 -0700 | [diff] [blame] | 1021 | read_counters(&(struct timespec) { .tv_nsec = t1-t0 }); |
Jiri Olsa | 08ef3af | 2019-07-15 16:21:21 +0200 | [diff] [blame] | 1022 | |
| 1023 | /* |
| 1024 | * We need to keep evsel_list alive, because it's processed |
| 1025 | * later the evsel_list will be closed after. |
| 1026 | */ |
| 1027 | if (!STAT_RECORD) |
Jiri Olsa | 750b4ed | 2019-07-21 13:24:07 +0200 | [diff] [blame] | 1028 | evlist__close(evsel_list); |
Arnaldo Carvalho de Melo | c52b12e | 2011-01-03 17:45:52 -0200 | [diff] [blame] | 1029 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 1030 | return WEXITSTATUS(status); |
| 1031 | } |
| 1032 | |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 1033 | static int run_perf_stat(int argc, const char **argv, int run_idx) |
Peter Zijlstra | 1f16c57 | 2012-10-23 13:40:14 +0200 | [diff] [blame] | 1034 | { |
| 1035 | int ret; |
| 1036 | |
| 1037 | if (pre_cmd) { |
| 1038 | ret = system(pre_cmd); |
| 1039 | if (ret) |
| 1040 | return ret; |
| 1041 | } |
| 1042 | |
| 1043 | if (sync_run) |
| 1044 | sync(); |
| 1045 | |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 1046 | ret = __run_perf_stat(argc, argv, run_idx); |
Peter Zijlstra | 1f16c57 | 2012-10-23 13:40:14 +0200 | [diff] [blame] | 1047 | if (ret) |
| 1048 | return ret; |
| 1049 | |
| 1050 | if (post_cmd) { |
| 1051 | ret = system(post_cmd); |
| 1052 | if (ret) |
| 1053 | return ret; |
| 1054 | } |
| 1055 | |
| 1056 | return ret; |
| 1057 | } |
| 1058 | |
Jiri Olsa | a5a9eac | 2018-08-30 08:32:24 +0200 | [diff] [blame] | 1059 | static void print_counters(struct timespec *ts, int argc, const char **argv) |
| 1060 | { |
Jiri Olsa | 0174820 | 2018-08-30 08:32:25 +0200 | [diff] [blame] | 1061 | /* Do not print anything if we record to the pipe. */ |
| 1062 | if (STAT_RECORD && perf_stat.data.is_pipe) |
| 1063 | return; |
Andi Kleen | 55a4de9 | 2020-10-26 17:27:36 -0700 | [diff] [blame] | 1064 | if (stat_config.quiet) |
| 1065 | return; |
Jiri Olsa | 0174820 | 2018-08-30 08:32:25 +0200 | [diff] [blame] | 1066 | |
Arnaldo Carvalho de Melo | 7127372 | 2020-11-30 14:55:12 -0300 | [diff] [blame] | 1067 | evlist__print_counters(evsel_list, &stat_config, &target, ts, argc, argv); |
Jiri Olsa | a5a9eac | 2018-08-30 08:32:24 +0200 | [diff] [blame] | 1068 | } |
| 1069 | |
Peter Zijlstra | f7b7c26 | 2009-06-10 15:55:59 +0200 | [diff] [blame] | 1070 | static volatile int signr = -1; |
| 1071 | |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 1072 | static void skip_signal(int signo) |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 1073 | { |
Jiri Olsa | ec0d3d1 | 2015-07-21 14:31:25 +0200 | [diff] [blame] | 1074 | if ((child_pid == -1) || stat_config.interval) |
Liming Wang | 60666c6 | 2009-12-31 16:05:50 +0800 | [diff] [blame] | 1075 | done = 1; |
| 1076 | |
Peter Zijlstra | f7b7c26 | 2009-06-10 15:55:59 +0200 | [diff] [blame] | 1077 | signr = signo; |
Stephane Eranian | d07f0b1 | 2013-06-04 17:44:26 +0200 | [diff] [blame] | 1078 | /* |
| 1079 | * render child_pid harmless |
| 1080 | * won't send SIGTERM to a random |
| 1081 | * process in case of race condition |
| 1082 | * and fast PID recycling |
| 1083 | */ |
| 1084 | child_pid = -1; |
Peter Zijlstra | f7b7c26 | 2009-06-10 15:55:59 +0200 | [diff] [blame] | 1085 | } |
| 1086 | |
| 1087 | static void sig_atexit(void) |
| 1088 | { |
Stephane Eranian | d07f0b1 | 2013-06-04 17:44:26 +0200 | [diff] [blame] | 1089 | sigset_t set, oset; |
| 1090 | |
| 1091 | /* |
| 1092 | * avoid race condition with SIGCHLD handler |
| 1093 | * in skip_signal() which is modifying child_pid |
| 1094 | * goal is to avoid send SIGTERM to a random |
| 1095 | * process |
| 1096 | */ |
| 1097 | sigemptyset(&set); |
| 1098 | sigaddset(&set, SIGCHLD); |
| 1099 | sigprocmask(SIG_BLOCK, &set, &oset); |
| 1100 | |
Chris Wilson | 933da83 | 2009-10-04 01:35:01 +0100 | [diff] [blame] | 1101 | if (child_pid != -1) |
| 1102 | kill(child_pid, SIGTERM); |
| 1103 | |
Stephane Eranian | d07f0b1 | 2013-06-04 17:44:26 +0200 | [diff] [blame] | 1104 | sigprocmask(SIG_SETMASK, &oset, NULL); |
| 1105 | |
Peter Zijlstra | f7b7c26 | 2009-06-10 15:55:59 +0200 | [diff] [blame] | 1106 | if (signr == -1) |
| 1107 | return; |
| 1108 | |
| 1109 | signal(signr, SIG_DFL); |
| 1110 | kill(getpid(), signr); |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 1111 | } |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 1112 | |
Paul A. Clarke | d778a77 | 2020-05-20 11:23:35 -0500 | [diff] [blame] | 1113 | void perf_stat__set_big_num(int set) |
| 1114 | { |
| 1115 | stat_config.big_num = (set != 0); |
| 1116 | } |
| 1117 | |
Jin Yao | 0bdad97 | 2021-03-19 15:01:55 +0800 | [diff] [blame] | 1118 | void perf_stat__set_no_csv_summary(int set) |
| 1119 | { |
| 1120 | stat_config.no_csv_summary = (set != 0); |
| 1121 | } |
| 1122 | |
Irina Tirdea | 1d037ca | 2012-09-11 01:15:03 +0300 | [diff] [blame] | 1123 | static int stat__set_big_num(const struct option *opt __maybe_unused, |
| 1124 | const char *s __maybe_unused, int unset) |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 1125 | { |
| 1126 | big_num_opt = unset ? 0 : 1; |
Paul A. Clarke | d778a77 | 2020-05-20 11:23:35 -0500 | [diff] [blame] | 1127 | perf_stat__set_big_num(!unset); |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 1128 | return 0; |
| 1129 | } |
| 1130 | |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1131 | static int enable_metric_only(const struct option *opt __maybe_unused, |
| 1132 | const char *s __maybe_unused, int unset) |
| 1133 | { |
| 1134 | force_metric_only = true; |
Jiri Olsa | 0ce5aa0 | 2018-08-30 08:32:31 +0200 | [diff] [blame] | 1135 | stat_config.metric_only = !unset; |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1136 | return 0; |
| 1137 | } |
| 1138 | |
Andi Kleen | b18f3e3 | 2017-08-31 12:40:31 -0700 | [diff] [blame] | 1139 | static int parse_metric_groups(const struct option *opt, |
| 1140 | const char *str, |
| 1141 | int unset __maybe_unused) |
| 1142 | { |
Ian Rogers | 05530a7 | 2020-05-20 11:20:10 -0700 | [diff] [blame] | 1143 | return metricgroup__parse_groups(opt, str, |
| 1144 | stat_config.metric_no_group, |
| 1145 | stat_config.metric_no_merge, |
| 1146 | &stat_config.metric_events); |
Andi Kleen | b18f3e3 | 2017-08-31 12:40:31 -0700 | [diff] [blame] | 1147 | } |
| 1148 | |
Alexey Budankov | 27e9769 | 2020-07-17 10:05:41 +0300 | [diff] [blame] | 1149 | static int parse_control_option(const struct option *opt, |
| 1150 | const char *str, |
| 1151 | int unset __maybe_unused) |
| 1152 | { |
Adrian Hunter | 9864a66 | 2020-09-01 12:37:53 +0300 | [diff] [blame] | 1153 | struct perf_stat_config *config = opt->value; |
Alexey Budankov | 27e9769 | 2020-07-17 10:05:41 +0300 | [diff] [blame] | 1154 | |
Adrian Hunter | a8fcbd2 | 2020-09-02 13:57:07 +0300 | [diff] [blame] | 1155 | return evlist__parse_control(str, &config->ctl_fd, &config->ctl_fd_ack, &config->ctl_fd_close); |
| 1156 | } |
| 1157 | |
Namhyung Kim | d1c5a0e | 2020-09-24 21:44:52 +0900 | [diff] [blame] | 1158 | static int parse_stat_cgroups(const struct option *opt, |
| 1159 | const char *str, int unset) |
| 1160 | { |
| 1161 | if (stat_config.cgroup_list) { |
| 1162 | pr_err("--cgroup and --for-each-cgroup cannot be used together\n"); |
| 1163 | return -1; |
| 1164 | } |
| 1165 | |
| 1166 | return parse_cgroups(opt, str, unset); |
| 1167 | } |
| 1168 | |
Michael Petlan | 51433ea | 2018-12-10 11:00:04 -0500 | [diff] [blame] | 1169 | static struct option stat_options[] = { |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1170 | OPT_BOOLEAN('T', "transaction", &transaction_run, |
| 1171 | "hardware transaction statistics"), |
| 1172 | OPT_CALLBACK('e', "event", &evsel_list, "event", |
| 1173 | "event selector. use 'perf list' to list available events", |
| 1174 | parse_events_option), |
| 1175 | OPT_CALLBACK(0, "filter", &evsel_list, "filter", |
| 1176 | "event filter", parse_filter), |
Jiri Olsa | 5698f26 | 2018-08-30 08:32:12 +0200 | [diff] [blame] | 1177 | OPT_BOOLEAN('i', "no-inherit", &stat_config.no_inherit, |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1178 | "child tasks do not inherit counters"), |
| 1179 | OPT_STRING('p', "pid", &target.pid, "pid", |
| 1180 | "stat events on existing process id"), |
| 1181 | OPT_STRING('t', "tid", &target.tid, "tid", |
| 1182 | "stat events on existing thread id"), |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 1183 | #ifdef HAVE_BPF_SKEL |
| 1184 | OPT_STRING('b', "bpf-prog", &target.bpf_str, "bpf-prog-id", |
| 1185 | "stat events on existing bpf program id"), |
Song Liu | 7fac83a | 2021-03-16 14:18:35 -0700 | [diff] [blame] | 1186 | OPT_BOOLEAN(0, "bpf-counters", &target.use_bpf, |
| 1187 | "use bpf program to count events"), |
| 1188 | OPT_STRING(0, "bpf-attr-map", &target.attr_map, "attr-map-path", |
| 1189 | "path to perf_event_attr map"), |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 1190 | #endif |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1191 | OPT_BOOLEAN('a', "all-cpus", &target.system_wide, |
| 1192 | "system-wide collection from all CPUs"), |
| 1193 | OPT_BOOLEAN('g', "group", &group, |
| 1194 | "put the counters into a counter group"), |
Andi Kleen | 75998bb | 2019-03-14 15:50:01 -0700 | [diff] [blame] | 1195 | OPT_BOOLEAN(0, "scale", &stat_config.scale, |
| 1196 | "Use --no-scale to disable counter scaling for multiplexing"), |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1197 | OPT_INCR('v', "verbose", &verbose, |
| 1198 | "be more verbose (show counter open errors, etc)"), |
Jiri Olsa | d97ae04 | 2018-08-30 08:32:36 +0200 | [diff] [blame] | 1199 | OPT_INTEGER('r', "repeat", &stat_config.run_count, |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1200 | "repeat command and print average + stddev (max: 100, forever: 0)"), |
Jiri Olsa | 54ac0b1 | 2018-08-30 08:32:50 +0200 | [diff] [blame] | 1201 | OPT_BOOLEAN(0, "table", &stat_config.walltime_run_table, |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 1202 | "display details about each run (only with -r option)"), |
Jiri Olsa | aea0dca | 2018-08-30 08:32:41 +0200 | [diff] [blame] | 1203 | OPT_BOOLEAN('n', "null", &stat_config.null_run, |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1204 | "null run - dont start any counters"), |
| 1205 | OPT_INCR('d', "detailed", &detailed_run, |
| 1206 | "detailed run - start a lot of events"), |
| 1207 | OPT_BOOLEAN('S', "sync", &sync_run, |
| 1208 | "call sync() before starting a run"), |
| 1209 | OPT_CALLBACK_NOOPT('B', "big-num", NULL, NULL, |
| 1210 | "print large numbers with thousands\' separators", |
| 1211 | stat__set_big_num), |
| 1212 | OPT_STRING('C', "cpu", &target.cpu_list, "cpu", |
| 1213 | "list of cpus to monitor in system-wide"), |
| 1214 | OPT_SET_UINT('A', "no-aggr", &stat_config.aggr_mode, |
| 1215 | "disable CPU count aggregation", AGGR_NONE), |
Jiri Olsa | fdee335 | 2018-08-30 08:32:48 +0200 | [diff] [blame] | 1216 | OPT_BOOLEAN(0, "no-merge", &stat_config.no_merge, "Do not merge identical named events"), |
Jiri Olsa | fa7070a | 2018-08-30 08:32:29 +0200 | [diff] [blame] | 1217 | OPT_STRING('x', "field-separator", &stat_config.csv_sep, "separator", |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1218 | "print counts with custom separator"), |
| 1219 | OPT_CALLBACK('G', "cgroup", &evsel_list, "name", |
Namhyung Kim | d1c5a0e | 2020-09-24 21:44:52 +0900 | [diff] [blame] | 1220 | "monitor event in cgroup name only", parse_stat_cgroups), |
| 1221 | OPT_STRING(0, "for-each-cgroup", &stat_config.cgroup_list, "name", |
| 1222 | "expand events for each cgroup"), |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1223 | OPT_STRING('o', "output", &output_name, "file", "output file name"), |
| 1224 | OPT_BOOLEAN(0, "append", &append_file, "append to the output file"), |
| 1225 | OPT_INTEGER(0, "log-fd", &output_fd, |
| 1226 | "log output to fd, instead of stderr"), |
| 1227 | OPT_STRING(0, "pre", &pre_cmd, "command", |
| 1228 | "command to run prior to the measured command"), |
| 1229 | OPT_STRING(0, "post", &post_cmd, "command", |
| 1230 | "command to run after to the measured command"), |
| 1231 | OPT_UINTEGER('I', "interval-print", &stat_config.interval, |
Alexey Budankov | 9dc9a95 | 2018-04-03 21:18:33 +0300 | [diff] [blame] | 1232 | "print counts at regular interval in ms " |
| 1233 | "(overhead is possible for values <= 100ms)"), |
yuzhoujian | db06a26 | 2018-01-29 10:25:22 +0100 | [diff] [blame] | 1234 | OPT_INTEGER(0, "interval-count", &stat_config.times, |
| 1235 | "print counts for fixed number of times"), |
Jiri Olsa | 132c6ba | 2018-08-30 08:32:30 +0200 | [diff] [blame] | 1236 | OPT_BOOLEAN(0, "interval-clear", &stat_config.interval_clear, |
Jiri Olsa | 9660e08 | 2018-06-07 00:15:06 +0200 | [diff] [blame] | 1237 | "clear screen in between new interval"), |
yuzhoujian | f1f8ad5 | 2018-01-29 10:25:23 +0100 | [diff] [blame] | 1238 | OPT_UINTEGER(0, "timeout", &stat_config.timeout, |
| 1239 | "stop workload and print counts after a timeout period in ms (>= 10ms)"), |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1240 | OPT_SET_UINT(0, "per-socket", &stat_config.aggr_mode, |
| 1241 | "aggregate counts per processor socket", AGGR_SOCKET), |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1242 | OPT_SET_UINT(0, "per-die", &stat_config.aggr_mode, |
| 1243 | "aggregate counts per processor die", AGGR_DIE), |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1244 | OPT_SET_UINT(0, "per-core", &stat_config.aggr_mode, |
| 1245 | "aggregate counts per physical processor core", AGGR_CORE), |
| 1246 | OPT_SET_UINT(0, "per-thread", &stat_config.aggr_mode, |
| 1247 | "aggregate counts per thread", AGGR_THREAD), |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1248 | OPT_SET_UINT(0, "per-node", &stat_config.aggr_mode, |
| 1249 | "aggregate counts per numa node", AGGR_NODE), |
Alexey Budankov | 2162b9c | 2020-07-17 10:04:33 +0300 | [diff] [blame] | 1250 | OPT_INTEGER('D', "delay", &stat_config.initial_delay, |
| 1251 | "ms to wait before starting measurement after program start (-1: start with events disabled)"), |
Jiri Olsa | 0ce5aa0 | 2018-08-30 08:32:31 +0200 | [diff] [blame] | 1252 | OPT_CALLBACK_NOOPT(0, "metric-only", &stat_config.metric_only, NULL, |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1253 | "Only print computed metrics. No raw values", enable_metric_only), |
Ian Rogers | 05530a7 | 2020-05-20 11:20:10 -0700 | [diff] [blame] | 1254 | OPT_BOOLEAN(0, "metric-no-group", &stat_config.metric_no_group, |
| 1255 | "don't group metric events, impacts multiplexing"), |
| 1256 | OPT_BOOLEAN(0, "metric-no-merge", &stat_config.metric_no_merge, |
| 1257 | "don't try to share events between metrics in a group"), |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1258 | OPT_BOOLEAN(0, "topdown", &topdown_run, |
Kan Liang | 63e39aa | 2021-02-02 12:09:12 -0800 | [diff] [blame] | 1259 | "measure top-down statistics"), |
| 1260 | OPT_UINTEGER(0, "td-level", &stat_config.topdown_level, |
| 1261 | "Set the metrics level for the top-down statistics (0: max level)"), |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 1262 | OPT_BOOLEAN(0, "smi-cost", &smi_cost, |
| 1263 | "measure SMI cost"), |
Andi Kleen | b18f3e3 | 2017-08-31 12:40:31 -0700 | [diff] [blame] | 1264 | OPT_CALLBACK('M', "metrics", &evsel_list, "metric/metric group list", |
| 1265 | "monitor specified metrics or metric groups (separated by ,)", |
| 1266 | parse_metric_groups), |
Jin Yao | dd07102 | 2019-10-11 13:05:45 +0800 | [diff] [blame] | 1267 | OPT_BOOLEAN_FLAG(0, "all-kernel", &stat_config.all_kernel, |
| 1268 | "Configure all used events to run in kernel space.", |
| 1269 | PARSE_OPT_EXCLUSIVE), |
| 1270 | OPT_BOOLEAN_FLAG(0, "all-user", &stat_config.all_user, |
| 1271 | "Configure all used events to run in user space.", |
| 1272 | PARSE_OPT_EXCLUSIVE), |
Jin Yao | 1af62ce | 2020-02-14 16:04:52 +0800 | [diff] [blame] | 1273 | OPT_BOOLEAN(0, "percore-show-thread", &stat_config.percore_show_thread, |
| 1274 | "Use with 'percore' event qualifier to show the event " |
| 1275 | "counts of one hardware thread by sum up total hardware " |
| 1276 | "threads of same physical core"), |
Jin Yao | ee6a961 | 2020-09-03 09:01:13 +0800 | [diff] [blame] | 1277 | OPT_BOOLEAN(0, "summary", &stat_config.summary, |
| 1278 | "print summary for interval mode"), |
Jin Yao | 0bdad97 | 2021-03-19 15:01:55 +0800 | [diff] [blame] | 1279 | OPT_BOOLEAN(0, "no-csv-summary", &stat_config.no_csv_summary, |
| 1280 | "don't print 'summary' for CSV summary output"), |
Andi Kleen | 55a4de9 | 2020-10-26 17:27:36 -0700 | [diff] [blame] | 1281 | OPT_BOOLEAN(0, "quiet", &stat_config.quiet, |
| 1282 | "don't print output (useful with record)"), |
Stephane Eranian | 7094349 | 2020-05-05 11:29:43 -0700 | [diff] [blame] | 1283 | #ifdef HAVE_LIBPFM |
| 1284 | OPT_CALLBACK(0, "pfm-events", &evsel_list, "event", |
| 1285 | "libpfm4 event selector. use 'perf list' to list available events", |
| 1286 | parse_libpfm_events_option), |
| 1287 | #endif |
Adrian Hunter | a8fcbd2 | 2020-09-02 13:57:07 +0300 | [diff] [blame] | 1288 | OPT_CALLBACK(0, "control", &stat_config, "fd:ctl-fd[,ack-fd] or fifo:ctl-fifo[,ack-fifo]", |
Alexey Budankov | 27e9769 | 2020-07-17 10:05:41 +0300 | [diff] [blame] | 1289 | "Listen on ctl-fd descriptor for command to control measurement ('enable': enable events, 'disable': disable events).\n" |
Adrian Hunter | a8fcbd2 | 2020-09-02 13:57:07 +0300 | [diff] [blame] | 1290 | "\t\t\t Optionally send control command completion ('ack\\n') to ack-fd descriptor.\n" |
| 1291 | "\t\t\t Alternatively, ctl-fifo / ack-fifo will be opened and used as ctl-fd / ack-fd.", |
Alexey Budankov | 27e9769 | 2020-07-17 10:05:41 +0300 | [diff] [blame] | 1292 | parse_control_option), |
Alexander Antonov | f07952b | 2021-04-19 12:41:44 +0300 | [diff] [blame] | 1293 | OPT_CALLBACK_OPTARG(0, "iostat", &evsel_list, &stat_config, "default", |
| 1294 | "measure I/O performance metrics provided by arch/platform", |
| 1295 | iostat_parse), |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 1296 | OPT_END() |
| 1297 | }; |
| 1298 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1299 | static struct aggr_cpu_id perf_stat__get_socket(struct perf_stat_config *config __maybe_unused, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1300 | struct perf_cpu_map *map, int cpu) |
Jiri Olsa | 1fe7a30 | 2015-10-16 12:41:15 +0200 | [diff] [blame] | 1301 | { |
| 1302 | return cpu_map__get_socket(map, cpu, NULL); |
| 1303 | } |
| 1304 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1305 | static struct aggr_cpu_id perf_stat__get_die(struct perf_stat_config *config __maybe_unused, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1306 | struct perf_cpu_map *map, int cpu) |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1307 | { |
| 1308 | return cpu_map__get_die(map, cpu, NULL); |
| 1309 | } |
| 1310 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1311 | static struct aggr_cpu_id perf_stat__get_core(struct perf_stat_config *config __maybe_unused, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1312 | struct perf_cpu_map *map, int cpu) |
Jiri Olsa | 1fe7a30 | 2015-10-16 12:41:15 +0200 | [diff] [blame] | 1313 | { |
| 1314 | return cpu_map__get_core(map, cpu, NULL); |
| 1315 | } |
| 1316 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1317 | static struct aggr_cpu_id perf_stat__get_node(struct perf_stat_config *config __maybe_unused, |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1318 | struct perf_cpu_map *map, int cpu) |
| 1319 | { |
| 1320 | return cpu_map__get_node(map, cpu, NULL); |
| 1321 | } |
| 1322 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1323 | static struct aggr_cpu_id perf_stat__get_aggr(struct perf_stat_config *config, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1324 | aggr_get_id_t get_id, struct perf_cpu_map *map, int idx) |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1325 | { |
| 1326 | int cpu; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1327 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1328 | |
| 1329 | if (idx >= map->nr) |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1330 | return id; |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1331 | |
| 1332 | cpu = map->map[idx]; |
| 1333 | |
James Clark | ff52329 | 2020-11-26 16:13:23 +0200 | [diff] [blame] | 1334 | if (cpu_map__aggr_cpu_id_is_empty(config->cpus_aggr_map->map[cpu])) |
| 1335 | config->cpus_aggr_map->map[cpu] = get_id(config, map, idx); |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1336 | |
James Clark | ff52329 | 2020-11-26 16:13:23 +0200 | [diff] [blame] | 1337 | id = config->cpus_aggr_map->map[cpu]; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1338 | return id; |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1339 | } |
| 1340 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1341 | static struct aggr_cpu_id perf_stat__get_socket_cached(struct perf_stat_config *config, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1342 | struct perf_cpu_map *map, int idx) |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1343 | { |
Jiri Olsa | 6f6b659 | 2018-08-30 08:32:45 +0200 | [diff] [blame] | 1344 | return perf_stat__get_aggr(config, perf_stat__get_socket, map, idx); |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1345 | } |
| 1346 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1347 | static struct aggr_cpu_id perf_stat__get_die_cached(struct perf_stat_config *config, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1348 | struct perf_cpu_map *map, int idx) |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1349 | { |
| 1350 | return perf_stat__get_aggr(config, perf_stat__get_die, map, idx); |
| 1351 | } |
| 1352 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1353 | static struct aggr_cpu_id perf_stat__get_core_cached(struct perf_stat_config *config, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1354 | struct perf_cpu_map *map, int idx) |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1355 | { |
Jiri Olsa | 6f6b659 | 2018-08-30 08:32:45 +0200 | [diff] [blame] | 1356 | return perf_stat__get_aggr(config, perf_stat__get_core, map, idx); |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1357 | } |
| 1358 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1359 | static struct aggr_cpu_id perf_stat__get_node_cached(struct perf_stat_config *config, |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1360 | struct perf_cpu_map *map, int idx) |
| 1361 | { |
| 1362 | return perf_stat__get_aggr(config, perf_stat__get_node, map, idx); |
| 1363 | } |
| 1364 | |
Jin Yao | 4fc4d8d | 2019-04-12 21:59:49 +0800 | [diff] [blame] | 1365 | static bool term_percore_set(void) |
| 1366 | { |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 1367 | struct evsel *counter; |
Jin Yao | 4fc4d8d | 2019-04-12 21:59:49 +0800 | [diff] [blame] | 1368 | |
| 1369 | evlist__for_each_entry(evsel_list, counter) { |
| 1370 | if (counter->percore) |
| 1371 | return true; |
| 1372 | } |
| 1373 | |
| 1374 | return false; |
| 1375 | } |
| 1376 | |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 1377 | static int perf_stat_init_aggr_mode(void) |
| 1378 | { |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1379 | int nr; |
| 1380 | |
Jiri Olsa | 421a50f | 2015-07-21 14:31:22 +0200 | [diff] [blame] | 1381 | switch (stat_config.aggr_mode) { |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 1382 | case AGGR_SOCKET: |
Jiri Olsa | f72f901 | 2019-07-21 13:24:41 +0200 | [diff] [blame] | 1383 | if (cpu_map__build_socket_map(evsel_list->core.cpus, &stat_config.aggr_map)) { |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 1384 | perror("cannot build socket map"); |
| 1385 | return -1; |
| 1386 | } |
Jiri Olsa | 6f6b659 | 2018-08-30 08:32:45 +0200 | [diff] [blame] | 1387 | stat_config.aggr_get_id = perf_stat__get_socket_cached; |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 1388 | break; |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1389 | case AGGR_DIE: |
Jiri Olsa | f72f901 | 2019-07-21 13:24:41 +0200 | [diff] [blame] | 1390 | if (cpu_map__build_die_map(evsel_list->core.cpus, &stat_config.aggr_map)) { |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1391 | perror("cannot build die map"); |
| 1392 | return -1; |
| 1393 | } |
| 1394 | stat_config.aggr_get_id = perf_stat__get_die_cached; |
| 1395 | break; |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 1396 | case AGGR_CORE: |
Jiri Olsa | f72f901 | 2019-07-21 13:24:41 +0200 | [diff] [blame] | 1397 | if (cpu_map__build_core_map(evsel_list->core.cpus, &stat_config.aggr_map)) { |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 1398 | perror("cannot build core map"); |
| 1399 | return -1; |
| 1400 | } |
Jiri Olsa | 6f6b659 | 2018-08-30 08:32:45 +0200 | [diff] [blame] | 1401 | stat_config.aggr_get_id = perf_stat__get_core_cached; |
Stephane Eranian | 12c08a9 | 2013-02-14 13:57:29 +0100 | [diff] [blame] | 1402 | break; |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1403 | case AGGR_NODE: |
| 1404 | if (cpu_map__build_node_map(evsel_list->core.cpus, &stat_config.aggr_map)) { |
| 1405 | perror("cannot build core map"); |
| 1406 | return -1; |
| 1407 | } |
| 1408 | stat_config.aggr_get_id = perf_stat__get_node_cached; |
| 1409 | break; |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 1410 | case AGGR_NONE: |
Jin Yao | 4fc4d8d | 2019-04-12 21:59:49 +0800 | [diff] [blame] | 1411 | if (term_percore_set()) { |
Jiri Olsa | f72f901 | 2019-07-21 13:24:41 +0200 | [diff] [blame] | 1412 | if (cpu_map__build_core_map(evsel_list->core.cpus, |
Jin Yao | 4fc4d8d | 2019-04-12 21:59:49 +0800 | [diff] [blame] | 1413 | &stat_config.aggr_map)) { |
| 1414 | perror("cannot build core map"); |
| 1415 | return -1; |
| 1416 | } |
| 1417 | stat_config.aggr_get_id = perf_stat__get_core_cached; |
| 1418 | } |
| 1419 | break; |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 1420 | case AGGR_GLOBAL: |
Jiri Olsa | 32b8af8 | 2015-06-26 11:29:27 +0200 | [diff] [blame] | 1421 | case AGGR_THREAD: |
Jiri Olsa | 208df99 | 2015-10-16 12:41:04 +0200 | [diff] [blame] | 1422 | case AGGR_UNSET: |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 1423 | default: |
| 1424 | break; |
| 1425 | } |
Jiri Olsa | 1e5a293 | 2015-10-25 15:51:18 +0100 | [diff] [blame] | 1426 | |
| 1427 | /* |
| 1428 | * The evsel_list->cpus is the base we operate on, |
| 1429 | * taking the highest cpu number to be the size of |
| 1430 | * the aggregation translate cpumap. |
| 1431 | */ |
Jiri Olsa | 4256d43 | 2019-09-02 14:12:53 +0200 | [diff] [blame] | 1432 | nr = perf_cpu_map__max(evsel_list->core.cpus); |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 1433 | stat_config.cpus_aggr_map = cpu_aggr_map__empty_new(nr + 1); |
Jiri Olsa | 6f6b659 | 2018-08-30 08:32:45 +0200 | [diff] [blame] | 1434 | return stat_config.cpus_aggr_map ? 0 : -ENOMEM; |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 1435 | } |
| 1436 | |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 1437 | static void cpu_aggr_map__delete(struct cpu_aggr_map *map) |
| 1438 | { |
| 1439 | if (map) { |
| 1440 | WARN_ONCE(refcount_read(&map->refcnt) != 0, |
| 1441 | "cpu_aggr_map refcnt unbalanced\n"); |
| 1442 | free(map); |
| 1443 | } |
| 1444 | } |
| 1445 | |
| 1446 | static void cpu_aggr_map__put(struct cpu_aggr_map *map) |
| 1447 | { |
| 1448 | if (map && refcount_dec_and_test(&map->refcnt)) |
| 1449 | cpu_aggr_map__delete(map); |
| 1450 | } |
| 1451 | |
Masami Hiramatsu | 544c2ae | 2015-12-09 11:11:27 +0900 | [diff] [blame] | 1452 | static void perf_stat__exit_aggr_mode(void) |
| 1453 | { |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 1454 | cpu_aggr_map__put(stat_config.aggr_map); |
| 1455 | cpu_aggr_map__put(stat_config.cpus_aggr_map); |
Jiri Olsa | 6f6b659 | 2018-08-30 08:32:45 +0200 | [diff] [blame] | 1456 | stat_config.aggr_map = NULL; |
| 1457 | stat_config.cpus_aggr_map = NULL; |
Masami Hiramatsu | 544c2ae | 2015-12-09 11:11:27 +0900 | [diff] [blame] | 1458 | } |
| 1459 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1460 | static inline int perf_env__get_cpu(struct perf_env *env, struct perf_cpu_map *map, int idx) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1461 | { |
| 1462 | int cpu; |
| 1463 | |
| 1464 | if (idx > map->nr) |
| 1465 | return -1; |
| 1466 | |
| 1467 | cpu = map->map[idx]; |
| 1468 | |
Jan Stancek | da8a58b | 2017-02-17 12:10:26 +0100 | [diff] [blame] | 1469 | if (cpu >= env->nr_cpus_avail) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1470 | return -1; |
| 1471 | |
| 1472 | return cpu; |
| 1473 | } |
| 1474 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1475 | static struct aggr_cpu_id perf_env__get_socket(struct perf_cpu_map *map, int idx, void *data) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1476 | { |
| 1477 | struct perf_env *env = data; |
| 1478 | int cpu = perf_env__get_cpu(env, map, idx); |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1479 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1480 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1481 | if (cpu != -1) |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 1482 | id.socket = env->cpu[cpu].socket_id; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1483 | |
| 1484 | return id; |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1485 | } |
| 1486 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1487 | static struct aggr_cpu_id perf_env__get_die(struct perf_cpu_map *map, int idx, void *data) |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1488 | { |
| 1489 | struct perf_env *env = data; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1490 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
| 1491 | int cpu = perf_env__get_cpu(env, map, idx); |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1492 | |
| 1493 | if (cpu != -1) { |
| 1494 | /* |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 1495 | * die_id is relative to socket, so start |
| 1496 | * with the socket ID and then add die to |
| 1497 | * make a unique ID. |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1498 | */ |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 1499 | id.socket = env->cpu[cpu].socket_id; |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 1500 | id.die = env->cpu[cpu].die_id; |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1501 | } |
| 1502 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1503 | return id; |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1504 | } |
| 1505 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1506 | static struct aggr_cpu_id perf_env__get_core(struct perf_cpu_map *map, int idx, void *data) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1507 | { |
| 1508 | struct perf_env *env = data; |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1509 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
| 1510 | int cpu = perf_env__get_cpu(env, map, idx); |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1511 | |
| 1512 | if (cpu != -1) { |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1513 | /* |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1514 | * core_id is relative to socket and die, |
James Clark | b993381 | 2020-11-26 16:13:27 +0200 | [diff] [blame] | 1515 | * we need a global id. So we set |
| 1516 | * socket, die id and core id |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1517 | */ |
James Clark | 1a270cb | 2020-11-26 16:13:25 +0200 | [diff] [blame] | 1518 | id.socket = env->cpu[cpu].socket_id; |
James Clark | ba2ee16 | 2020-11-26 16:13:26 +0200 | [diff] [blame] | 1519 | id.die = env->cpu[cpu].die_id; |
James Clark | b993381 | 2020-11-26 16:13:27 +0200 | [diff] [blame] | 1520 | id.core = env->cpu[cpu].core_id; |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1521 | } |
| 1522 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1523 | return id; |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1524 | } |
| 1525 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1526 | static struct aggr_cpu_id perf_env__get_node(struct perf_cpu_map *map, int idx, void *data) |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1527 | { |
| 1528 | int cpu = perf_env__get_cpu(data, map, idx); |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1529 | struct aggr_cpu_id id = cpu_map__empty_aggr_cpu_id(); |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1530 | |
James Clark | fcd83a3 | 2020-11-26 16:13:24 +0200 | [diff] [blame] | 1531 | id.node = perf_env__numa_node(data, cpu); |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1532 | return id; |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1533 | } |
| 1534 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1535 | static int perf_env__build_socket_map(struct perf_env *env, struct perf_cpu_map *cpus, |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 1536 | struct cpu_aggr_map **sockp) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1537 | { |
| 1538 | return cpu_map__build_map(cpus, sockp, perf_env__get_socket, env); |
| 1539 | } |
| 1540 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1541 | static int perf_env__build_die_map(struct perf_env *env, struct perf_cpu_map *cpus, |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 1542 | struct cpu_aggr_map **diep) |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1543 | { |
| 1544 | return cpu_map__build_map(cpus, diep, perf_env__get_die, env); |
| 1545 | } |
| 1546 | |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1547 | static int perf_env__build_core_map(struct perf_env *env, struct perf_cpu_map *cpus, |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 1548 | struct cpu_aggr_map **corep) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1549 | { |
| 1550 | return cpu_map__build_map(cpus, corep, perf_env__get_core, env); |
| 1551 | } |
| 1552 | |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1553 | static int perf_env__build_node_map(struct perf_env *env, struct perf_cpu_map *cpus, |
James Clark | d526e1a | 2020-11-26 16:13:22 +0200 | [diff] [blame] | 1554 | struct cpu_aggr_map **nodep) |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1555 | { |
| 1556 | return cpu_map__build_map(cpus, nodep, perf_env__get_node, env); |
| 1557 | } |
| 1558 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1559 | static struct aggr_cpu_id perf_stat__get_socket_file(struct perf_stat_config *config __maybe_unused, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1560 | struct perf_cpu_map *map, int idx) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1561 | { |
| 1562 | return perf_env__get_socket(map, idx, &perf_stat.session->header.env); |
| 1563 | } |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1564 | static struct aggr_cpu_id perf_stat__get_die_file(struct perf_stat_config *config __maybe_unused, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1565 | struct perf_cpu_map *map, int idx) |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1566 | { |
| 1567 | return perf_env__get_die(map, idx, &perf_stat.session->header.env); |
| 1568 | } |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1569 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1570 | static struct aggr_cpu_id perf_stat__get_core_file(struct perf_stat_config *config __maybe_unused, |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 1571 | struct perf_cpu_map *map, int idx) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1572 | { |
| 1573 | return perf_env__get_core(map, idx, &perf_stat.session->header.env); |
| 1574 | } |
| 1575 | |
James Clark | 2760f5a1 | 2020-11-26 16:13:20 +0200 | [diff] [blame] | 1576 | static struct aggr_cpu_id perf_stat__get_node_file(struct perf_stat_config *config __maybe_unused, |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1577 | struct perf_cpu_map *map, int idx) |
| 1578 | { |
| 1579 | return perf_env__get_node(map, idx, &perf_stat.session->header.env); |
| 1580 | } |
| 1581 | |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1582 | static int perf_stat_init_aggr_mode_file(struct perf_stat *st) |
| 1583 | { |
| 1584 | struct perf_env *env = &st->session->header.env; |
| 1585 | |
| 1586 | switch (stat_config.aggr_mode) { |
| 1587 | case AGGR_SOCKET: |
Jiri Olsa | f72f901 | 2019-07-21 13:24:41 +0200 | [diff] [blame] | 1588 | if (perf_env__build_socket_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) { |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1589 | perror("cannot build socket map"); |
| 1590 | return -1; |
| 1591 | } |
Jiri Olsa | 6f6b659 | 2018-08-30 08:32:45 +0200 | [diff] [blame] | 1592 | stat_config.aggr_get_id = perf_stat__get_socket_file; |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1593 | break; |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1594 | case AGGR_DIE: |
Jiri Olsa | f72f901 | 2019-07-21 13:24:41 +0200 | [diff] [blame] | 1595 | if (perf_env__build_die_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) { |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 1596 | perror("cannot build die map"); |
| 1597 | return -1; |
| 1598 | } |
| 1599 | stat_config.aggr_get_id = perf_stat__get_die_file; |
| 1600 | break; |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1601 | case AGGR_CORE: |
Jiri Olsa | f72f901 | 2019-07-21 13:24:41 +0200 | [diff] [blame] | 1602 | if (perf_env__build_core_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) { |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1603 | perror("cannot build core map"); |
| 1604 | return -1; |
| 1605 | } |
Jiri Olsa | 6f6b659 | 2018-08-30 08:32:45 +0200 | [diff] [blame] | 1606 | stat_config.aggr_get_id = perf_stat__get_core_file; |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1607 | break; |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 1608 | case AGGR_NODE: |
| 1609 | if (perf_env__build_node_map(env, evsel_list->core.cpus, &stat_config.aggr_map)) { |
| 1610 | perror("cannot build core map"); |
| 1611 | return -1; |
| 1612 | } |
| 1613 | stat_config.aggr_get_id = perf_stat__get_node_file; |
| 1614 | break; |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 1615 | case AGGR_NONE: |
| 1616 | case AGGR_GLOBAL: |
| 1617 | case AGGR_THREAD: |
| 1618 | case AGGR_UNSET: |
| 1619 | default: |
| 1620 | break; |
| 1621 | } |
| 1622 | |
| 1623 | return 0; |
| 1624 | } |
| 1625 | |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 1626 | /* |
| 1627 | * Add default attributes, if there were no attributes specified or |
| 1628 | * if -d/--detailed, -d -d or -d -d -d is used: |
| 1629 | */ |
| 1630 | static int add_default_attributes(void) |
| 1631 | { |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1632 | int err; |
Andi Kleen | 9dec447 | 2016-02-26 16:27:56 -0800 | [diff] [blame] | 1633 | struct perf_event_attr default_attrs0[] = { |
Arnaldo Carvalho de Melo | b070a54 | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 1634 | |
| 1635 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK }, |
| 1636 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES }, |
| 1637 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS }, |
| 1638 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS }, |
| 1639 | |
| 1640 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES }, |
Andi Kleen | 9dec447 | 2016-02-26 16:27:56 -0800 | [diff] [blame] | 1641 | }; |
| 1642 | struct perf_event_attr frontend_attrs[] = { |
Arnaldo Carvalho de Melo | b070a54 | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 1643 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_FRONTEND }, |
Andi Kleen | 9dec447 | 2016-02-26 16:27:56 -0800 | [diff] [blame] | 1644 | }; |
| 1645 | struct perf_event_attr backend_attrs[] = { |
Arnaldo Carvalho de Melo | b070a54 | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 1646 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_STALLED_CYCLES_BACKEND }, |
Andi Kleen | 9dec447 | 2016-02-26 16:27:56 -0800 | [diff] [blame] | 1647 | }; |
| 1648 | struct perf_event_attr default_attrs1[] = { |
Arnaldo Carvalho de Melo | b070a54 | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 1649 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS }, |
| 1650 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS }, |
| 1651 | { .type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES }, |
| 1652 | |
| 1653 | }; |
Jin Yao | ac2dc29 | 2021-04-27 15:01:27 +0800 | [diff] [blame] | 1654 | struct perf_event_attr default_sw_attrs[] = { |
| 1655 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK }, |
| 1656 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES }, |
| 1657 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS }, |
| 1658 | { .type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS }, |
| 1659 | }; |
Arnaldo Carvalho de Melo | b070a54 | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 1660 | |
| 1661 | /* |
| 1662 | * Detailed stats (-d), covering the L1 and last level data caches: |
| 1663 | */ |
| 1664 | struct perf_event_attr detailed_attrs[] = { |
| 1665 | |
| 1666 | { .type = PERF_TYPE_HW_CACHE, |
| 1667 | .config = |
| 1668 | PERF_COUNT_HW_CACHE_L1D << 0 | |
| 1669 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1670 | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) }, |
| 1671 | |
| 1672 | { .type = PERF_TYPE_HW_CACHE, |
| 1673 | .config = |
| 1674 | PERF_COUNT_HW_CACHE_L1D << 0 | |
| 1675 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1676 | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) }, |
| 1677 | |
| 1678 | { .type = PERF_TYPE_HW_CACHE, |
| 1679 | .config = |
| 1680 | PERF_COUNT_HW_CACHE_LL << 0 | |
| 1681 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1682 | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) }, |
| 1683 | |
| 1684 | { .type = PERF_TYPE_HW_CACHE, |
| 1685 | .config = |
| 1686 | PERF_COUNT_HW_CACHE_LL << 0 | |
| 1687 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1688 | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) }, |
| 1689 | }; |
| 1690 | |
| 1691 | /* |
| 1692 | * Very detailed stats (-d -d), covering the instruction cache and the TLB caches: |
| 1693 | */ |
| 1694 | struct perf_event_attr very_detailed_attrs[] = { |
| 1695 | |
| 1696 | { .type = PERF_TYPE_HW_CACHE, |
| 1697 | .config = |
| 1698 | PERF_COUNT_HW_CACHE_L1I << 0 | |
| 1699 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1700 | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) }, |
| 1701 | |
| 1702 | { .type = PERF_TYPE_HW_CACHE, |
| 1703 | .config = |
| 1704 | PERF_COUNT_HW_CACHE_L1I << 0 | |
| 1705 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1706 | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) }, |
| 1707 | |
| 1708 | { .type = PERF_TYPE_HW_CACHE, |
| 1709 | .config = |
| 1710 | PERF_COUNT_HW_CACHE_DTLB << 0 | |
| 1711 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1712 | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) }, |
| 1713 | |
| 1714 | { .type = PERF_TYPE_HW_CACHE, |
| 1715 | .config = |
| 1716 | PERF_COUNT_HW_CACHE_DTLB << 0 | |
| 1717 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1718 | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) }, |
| 1719 | |
| 1720 | { .type = PERF_TYPE_HW_CACHE, |
| 1721 | .config = |
| 1722 | PERF_COUNT_HW_CACHE_ITLB << 0 | |
| 1723 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1724 | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) }, |
| 1725 | |
| 1726 | { .type = PERF_TYPE_HW_CACHE, |
| 1727 | .config = |
| 1728 | PERF_COUNT_HW_CACHE_ITLB << 0 | |
| 1729 | (PERF_COUNT_HW_CACHE_OP_READ << 8) | |
| 1730 | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) }, |
| 1731 | |
| 1732 | }; |
| 1733 | |
| 1734 | /* |
| 1735 | * Very, very detailed stats (-d -d -d), adding prefetch events: |
| 1736 | */ |
| 1737 | struct perf_event_attr very_very_detailed_attrs[] = { |
| 1738 | |
| 1739 | { .type = PERF_TYPE_HW_CACHE, |
| 1740 | .config = |
| 1741 | PERF_COUNT_HW_CACHE_L1D << 0 | |
| 1742 | (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) | |
| 1743 | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16) }, |
| 1744 | |
| 1745 | { .type = PERF_TYPE_HW_CACHE, |
| 1746 | .config = |
| 1747 | PERF_COUNT_HW_CACHE_L1D << 0 | |
| 1748 | (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) | |
| 1749 | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16) }, |
| 1750 | }; |
Jiri Olsa | a5cfa62 | 2018-06-07 00:15:10 +0200 | [diff] [blame] | 1751 | struct parse_events_error errinfo; |
Arnaldo Carvalho de Melo | b070a54 | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 1752 | |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 1753 | /* Set attrs if no event is selected and !null_run: */ |
Jiri Olsa | aea0dca | 2018-08-30 08:32:41 +0200 | [diff] [blame] | 1754 | if (stat_config.null_run) |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 1755 | return 0; |
| 1756 | |
Ian Rogers | a910e46 | 2019-11-15 23:46:52 -0800 | [diff] [blame] | 1757 | bzero(&errinfo, sizeof(errinfo)); |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 1758 | if (transaction_run) { |
Thomas Richter | 742d92f | 2018-06-26 09:17:01 +0200 | [diff] [blame] | 1759 | /* Handle -T as -M transaction. Once platform specific metrics |
Ingo Molnar | 4d39c89 | 2021-03-23 17:09:15 +0100 | [diff] [blame] | 1760 | * support has been added to the json files, all architectures |
Thomas Richter | 742d92f | 2018-06-26 09:17:01 +0200 | [diff] [blame] | 1761 | * will use this approach. To determine transaction support |
| 1762 | * on an architecture test for such a metric name. |
| 1763 | */ |
| 1764 | if (metricgroup__has_metric("transaction")) { |
| 1765 | struct option opt = { .value = &evsel_list }; |
| 1766 | |
| 1767 | return metricgroup__parse_groups(&opt, "transaction", |
Ian Rogers | 05530a7 | 2020-05-20 11:20:10 -0700 | [diff] [blame] | 1768 | stat_config.metric_no_group, |
| 1769 | stat_config.metric_no_merge, |
Jiri Olsa | d0192fd | 2018-08-30 08:32:51 +0200 | [diff] [blame] | 1770 | &stat_config.metric_events); |
Thomas Richter | 742d92f | 2018-06-26 09:17:01 +0200 | [diff] [blame] | 1771 | } |
| 1772 | |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 1773 | if (pmu_have_event("cpu", "cycles-ct") && |
| 1774 | pmu_have_event("cpu", "el-start")) |
Thomas Richter | fca32340 | 2018-03-08 15:57:35 +0100 | [diff] [blame] | 1775 | err = parse_events(evsel_list, transaction_attrs, |
| 1776 | &errinfo); |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 1777 | else |
Thomas Richter | fca32340 | 2018-03-08 15:57:35 +0100 | [diff] [blame] | 1778 | err = parse_events(evsel_list, |
| 1779 | transaction_limited_attrs, |
| 1780 | &errinfo); |
Jiri Olsa | a454742 | 2015-06-03 16:25:53 +0200 | [diff] [blame] | 1781 | if (err) { |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 1782 | fprintf(stderr, "Cannot set up transaction events\n"); |
Jiri Olsa | a5cfa62 | 2018-06-07 00:15:10 +0200 | [diff] [blame] | 1783 | parse_events_print_error(&errinfo, transaction_attrs); |
Andi Kleen | 4cabc3d | 2013-08-21 16:47:26 -0700 | [diff] [blame] | 1784 | return -1; |
| 1785 | } |
| 1786 | return 0; |
| 1787 | } |
| 1788 | |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 1789 | if (smi_cost) { |
| 1790 | int smi; |
| 1791 | |
| 1792 | if (sysfs__read_int(FREEZE_ON_SMI_PATH, &smi) < 0) { |
| 1793 | fprintf(stderr, "freeze_on_smi is not supported.\n"); |
| 1794 | return -1; |
| 1795 | } |
| 1796 | |
| 1797 | if (!smi) { |
| 1798 | if (sysfs__write_int(FREEZE_ON_SMI_PATH, 1) < 0) { |
| 1799 | fprintf(stderr, "Failed to set freeze_on_smi.\n"); |
| 1800 | return -1; |
| 1801 | } |
| 1802 | smi_reset = true; |
| 1803 | } |
| 1804 | |
| 1805 | if (pmu_have_event("msr", "aperf") && |
| 1806 | pmu_have_event("msr", "smi")) { |
| 1807 | if (!force_metric_only) |
Jiri Olsa | 0ce5aa0 | 2018-08-30 08:32:31 +0200 | [diff] [blame] | 1808 | stat_config.metric_only = true; |
Jiri Olsa | a5cfa62 | 2018-06-07 00:15:10 +0200 | [diff] [blame] | 1809 | err = parse_events(evsel_list, smi_cost_attrs, &errinfo); |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 1810 | } else { |
| 1811 | fprintf(stderr, "To measure SMI cost, it needs " |
| 1812 | "msr/aperf/, msr/smi/ and cpu/cycles/ support\n"); |
Jiri Olsa | a5cfa62 | 2018-06-07 00:15:10 +0200 | [diff] [blame] | 1813 | parse_events_print_error(&errinfo, smi_cost_attrs); |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 1814 | return -1; |
| 1815 | } |
| 1816 | if (err) { |
Ian Rogers | a910e46 | 2019-11-15 23:46:52 -0800 | [diff] [blame] | 1817 | parse_events_print_error(&errinfo, smi_cost_attrs); |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 1818 | fprintf(stderr, "Cannot set up SMI cost events\n"); |
| 1819 | return -1; |
| 1820 | } |
| 1821 | return 0; |
| 1822 | } |
| 1823 | |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1824 | if (topdown_run) { |
Kan Liang | 63e39aa | 2021-02-02 12:09:12 -0800 | [diff] [blame] | 1825 | const char **metric_attrs = topdown_metric_attrs; |
| 1826 | unsigned int max_level = 1; |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1827 | char *str = NULL; |
| 1828 | bool warn = false; |
| 1829 | |
Andi Kleen | 55c36a9 | 2020-09-11 07:48:07 -0700 | [diff] [blame] | 1830 | if (!force_metric_only) |
| 1831 | stat_config.metric_only = true; |
| 1832 | |
Kan Liang | 63e39aa | 2021-02-02 12:09:12 -0800 | [diff] [blame] | 1833 | if (pmu_have_event("cpu", topdown_metric_L2_attrs[5])) { |
| 1834 | metric_attrs = topdown_metric_L2_attrs; |
| 1835 | max_level = 2; |
| 1836 | } |
| 1837 | |
| 1838 | if (stat_config.topdown_level > max_level) { |
| 1839 | pr_err("Invalid top-down metrics level. The max level is %u.\n", max_level); |
| 1840 | return -1; |
| 1841 | } else if (!stat_config.topdown_level) |
| 1842 | stat_config.topdown_level = max_level; |
| 1843 | |
| 1844 | if (topdown_filter_events(metric_attrs, &str, 1) < 0) { |
Andi Kleen | 55c36a9 | 2020-09-11 07:48:07 -0700 | [diff] [blame] | 1845 | pr_err("Out of memory\n"); |
| 1846 | return -1; |
| 1847 | } |
Kan Liang | 63e39aa | 2021-02-02 12:09:12 -0800 | [diff] [blame] | 1848 | if (metric_attrs[0] && str) { |
Andi Kleen | 55c36a9 | 2020-09-11 07:48:07 -0700 | [diff] [blame] | 1849 | if (!stat_config.interval && !stat_config.metric_only) { |
| 1850 | fprintf(stat_config.output, |
| 1851 | "Topdown accuracy may decrease when measuring long periods.\n" |
| 1852 | "Please print the result regularly, e.g. -I1000\n"); |
| 1853 | } |
| 1854 | goto setup_metrics; |
| 1855 | } |
| 1856 | |
| 1857 | zfree(&str); |
| 1858 | |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1859 | if (stat_config.aggr_mode != AGGR_GLOBAL && |
| 1860 | stat_config.aggr_mode != AGGR_CORE) { |
| 1861 | pr_err("top down event configuration requires --per-core mode\n"); |
| 1862 | return -1; |
| 1863 | } |
| 1864 | stat_config.aggr_mode = AGGR_CORE; |
| 1865 | if (nr_cgroups || !target__has_cpu(&target)) { |
| 1866 | pr_err("top down event configuration requires system-wide mode (-a)\n"); |
| 1867 | return -1; |
| 1868 | } |
| 1869 | |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1870 | if (topdown_filter_events(topdown_attrs, &str, |
| 1871 | arch_topdown_check_group(&warn)) < 0) { |
| 1872 | pr_err("Out of memory\n"); |
| 1873 | return -1; |
| 1874 | } |
| 1875 | if (topdown_attrs[0] && str) { |
| 1876 | if (warn) |
| 1877 | arch_topdown_group_warn(); |
Andi Kleen | 55c36a9 | 2020-09-11 07:48:07 -0700 | [diff] [blame] | 1878 | setup_metrics: |
Jiri Olsa | a5cfa62 | 2018-06-07 00:15:10 +0200 | [diff] [blame] | 1879 | err = parse_events(evsel_list, str, &errinfo); |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1880 | if (err) { |
| 1881 | fprintf(stderr, |
| 1882 | "Cannot set up top down events %s: %d\n", |
| 1883 | str, err); |
Jiri Olsa | a5cfa62 | 2018-06-07 00:15:10 +0200 | [diff] [blame] | 1884 | parse_events_print_error(&errinfo, str); |
Leo Yan | c74b050 | 2019-07-02 18:34:11 +0800 | [diff] [blame] | 1885 | free(str); |
Andi Kleen | 44b1e60 | 2016-05-30 12:49:42 -0300 | [diff] [blame] | 1886 | return -1; |
| 1887 | } |
| 1888 | } else { |
| 1889 | fprintf(stderr, "System does not support topdown\n"); |
| 1890 | return -1; |
| 1891 | } |
| 1892 | free(str); |
| 1893 | } |
| 1894 | |
Jiri Olsa | 6484d2f | 2019-07-21 13:24:28 +0200 | [diff] [blame] | 1895 | if (!evsel_list->core.nr_entries) { |
Jin Yao | ac2dc29 | 2021-04-27 15:01:27 +0800 | [diff] [blame] | 1896 | if (perf_pmu__has_hybrid()) { |
| 1897 | const char *hybrid_str = "cycles,instructions,branches,branch-misses"; |
| 1898 | |
| 1899 | if (target__has_cpu(&target)) |
| 1900 | default_sw_attrs[0].config = PERF_COUNT_SW_CPU_CLOCK; |
| 1901 | |
| 1902 | if (evlist__add_default_attrs(evsel_list, |
| 1903 | default_sw_attrs) < 0) { |
| 1904 | return -1; |
| 1905 | } |
| 1906 | |
| 1907 | err = parse_events(evsel_list, hybrid_str, &errinfo); |
| 1908 | if (err) { |
| 1909 | fprintf(stderr, |
| 1910 | "Cannot set up hybrid events %s: %d\n", |
| 1911 | hybrid_str, err); |
| 1912 | parse_events_print_error(&errinfo, hybrid_str); |
| 1913 | return -1; |
| 1914 | } |
| 1915 | return err; |
| 1916 | } |
| 1917 | |
Namhyung Kim | a1f3d56 | 2016-05-13 15:01:03 +0900 | [diff] [blame] | 1918 | if (target__has_cpu(&target)) |
| 1919 | default_attrs0[0].config = PERF_COUNT_SW_CPU_CLOCK; |
| 1920 | |
Arnaldo Carvalho de Melo | e251abe | 2020-06-17 09:16:20 -0300 | [diff] [blame] | 1921 | if (evlist__add_default_attrs(evsel_list, default_attrs0) < 0) |
Andi Kleen | 9dec447 | 2016-02-26 16:27:56 -0800 | [diff] [blame] | 1922 | return -1; |
| 1923 | if (pmu_have_event("cpu", "stalled-cycles-frontend")) { |
Arnaldo Carvalho de Melo | e251abe | 2020-06-17 09:16:20 -0300 | [diff] [blame] | 1924 | if (evlist__add_default_attrs(evsel_list, frontend_attrs) < 0) |
Andi Kleen | 9dec447 | 2016-02-26 16:27:56 -0800 | [diff] [blame] | 1925 | return -1; |
| 1926 | } |
| 1927 | if (pmu_have_event("cpu", "stalled-cycles-backend")) { |
Arnaldo Carvalho de Melo | e251abe | 2020-06-17 09:16:20 -0300 | [diff] [blame] | 1928 | if (evlist__add_default_attrs(evsel_list, backend_attrs) < 0) |
Andi Kleen | 9dec447 | 2016-02-26 16:27:56 -0800 | [diff] [blame] | 1929 | return -1; |
| 1930 | } |
Arnaldo Carvalho de Melo | e251abe | 2020-06-17 09:16:20 -0300 | [diff] [blame] | 1931 | if (evlist__add_default_attrs(evsel_list, default_attrs1) < 0) |
Arnaldo Carvalho de Melo | 50d08e4 | 2011-11-04 09:10:59 -0200 | [diff] [blame] | 1932 | return -1; |
Kan Liang | 42641d6 | 2021-01-21 05:37:52 -0800 | [diff] [blame] | 1933 | |
| 1934 | if (arch_evlist__add_default_attrs(evsel_list) < 0) |
| 1935 | return -1; |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 1936 | } |
| 1937 | |
| 1938 | /* Detailed events get appended to the event list: */ |
| 1939 | |
| 1940 | if (detailed_run < 1) |
| 1941 | return 0; |
| 1942 | |
| 1943 | /* Append detailed run extra attributes: */ |
Arnaldo Carvalho de Melo | e251abe | 2020-06-17 09:16:20 -0300 | [diff] [blame] | 1944 | if (evlist__add_default_attrs(evsel_list, detailed_attrs) < 0) |
Arnaldo Carvalho de Melo | 50d08e4 | 2011-11-04 09:10:59 -0200 | [diff] [blame] | 1945 | return -1; |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 1946 | |
| 1947 | if (detailed_run < 2) |
| 1948 | return 0; |
| 1949 | |
| 1950 | /* Append very detailed run extra attributes: */ |
Arnaldo Carvalho de Melo | e251abe | 2020-06-17 09:16:20 -0300 | [diff] [blame] | 1951 | if (evlist__add_default_attrs(evsel_list, very_detailed_attrs) < 0) |
Arnaldo Carvalho de Melo | 50d08e4 | 2011-11-04 09:10:59 -0200 | [diff] [blame] | 1952 | return -1; |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 1953 | |
| 1954 | if (detailed_run < 3) |
| 1955 | return 0; |
| 1956 | |
| 1957 | /* Append very, very detailed run extra attributes: */ |
Arnaldo Carvalho de Melo | e251abe | 2020-06-17 09:16:20 -0300 | [diff] [blame] | 1958 | return evlist__add_default_attrs(evsel_list, very_very_detailed_attrs); |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 1959 | } |
| 1960 | |
Jiri Olsa | 8a59f3c | 2016-01-12 10:35:29 +0100 | [diff] [blame] | 1961 | static const char * const stat_record_usage[] = { |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 1962 | "perf stat record [<options>]", |
| 1963 | NULL, |
| 1964 | }; |
| 1965 | |
Jiri Olsa | 3ba78bd | 2015-11-05 15:40:47 +0100 | [diff] [blame] | 1966 | static void init_features(struct perf_session *session) |
| 1967 | { |
| 1968 | int feat; |
| 1969 | |
| 1970 | for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++) |
| 1971 | perf_header__set_feat(&session->header, feat); |
| 1972 | |
Jiri Olsa | 8002a63 | 2019-04-09 12:01:56 +0200 | [diff] [blame] | 1973 | perf_header__clear_feat(&session->header, HEADER_DIR_FORMAT); |
Jiri Olsa | 3ba78bd | 2015-11-05 15:40:47 +0100 | [diff] [blame] | 1974 | perf_header__clear_feat(&session->header, HEADER_BUILD_ID); |
| 1975 | perf_header__clear_feat(&session->header, HEADER_TRACING_DATA); |
| 1976 | perf_header__clear_feat(&session->header, HEADER_BRANCH_STACK); |
| 1977 | perf_header__clear_feat(&session->header, HEADER_AUXTRACE); |
| 1978 | } |
| 1979 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 1980 | static int __cmd_record(int argc, const char **argv) |
| 1981 | { |
| 1982 | struct perf_session *session; |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 1983 | struct perf_data *data = &perf_stat.data; |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 1984 | |
Jiri Olsa | 8a59f3c | 2016-01-12 10:35:29 +0100 | [diff] [blame] | 1985 | argc = parse_options(argc, argv, stat_options, stat_record_usage, |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 1986 | PARSE_OPT_STOP_AT_NON_OPTION); |
| 1987 | |
| 1988 | if (output_name) |
Jiri Olsa | 2d4f279 | 2019-02-21 10:41:30 +0100 | [diff] [blame] | 1989 | data->path = output_name; |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 1990 | |
Jiri Olsa | d97ae04 | 2018-08-30 08:32:36 +0200 | [diff] [blame] | 1991 | if (stat_config.run_count != 1 || forever) { |
Jiri Olsa | e9d6db8e8 | 2015-11-05 15:40:53 +0100 | [diff] [blame] | 1992 | pr_err("Cannot use -r option with perf stat record.\n"); |
| 1993 | return -1; |
| 1994 | } |
| 1995 | |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 1996 | session = perf_session__new(data, false, NULL); |
Mamatha Inamdar | 6ef81c5 | 2019-08-22 12:50:49 +0530 | [diff] [blame] | 1997 | if (IS_ERR(session)) { |
| 1998 | pr_err("Perf session creation failed\n"); |
| 1999 | return PTR_ERR(session); |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2000 | } |
| 2001 | |
Jiri Olsa | 3ba78bd | 2015-11-05 15:40:47 +0100 | [diff] [blame] | 2002 | init_features(session); |
| 2003 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2004 | session->evlist = evsel_list; |
| 2005 | perf_stat.session = session; |
| 2006 | perf_stat.record = true; |
| 2007 | return argc; |
| 2008 | } |
| 2009 | |
Jiri Olsa | 89f1688 | 2018-09-13 14:54:03 +0200 | [diff] [blame] | 2010 | static int process_stat_round_event(struct perf_session *session, |
| 2011 | union perf_event *event) |
Jiri Olsa | a56f939 | 2015-11-05 15:40:59 +0100 | [diff] [blame] | 2012 | { |
Jiri Olsa | 7293237 | 2019-08-28 15:57:16 +0200 | [diff] [blame] | 2013 | struct perf_record_stat_round *stat_round = &event->stat_round; |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 2014 | struct evsel *counter; |
Jiri Olsa | a56f939 | 2015-11-05 15:40:59 +0100 | [diff] [blame] | 2015 | struct timespec tsh, *ts = NULL; |
| 2016 | const char **argv = session->header.env.cmdline_argv; |
| 2017 | int argc = session->header.env.nr_cmdline; |
| 2018 | |
Arnaldo Carvalho de Melo | e5cadb9 | 2016-06-23 11:26:15 -0300 | [diff] [blame] | 2019 | evlist__for_each_entry(evsel_list, counter) |
Jiri Olsa | a56f939 | 2015-11-05 15:40:59 +0100 | [diff] [blame] | 2020 | perf_stat_process_counter(&stat_config, counter); |
| 2021 | |
Andi Kleen | e3b03b6 | 2016-05-05 16:04:03 -0700 | [diff] [blame] | 2022 | if (stat_round->type == PERF_STAT_ROUND_TYPE__FINAL) |
| 2023 | update_stats(&walltime_nsecs_stats, stat_round->time); |
Jiri Olsa | a56f939 | 2015-11-05 15:40:59 +0100 | [diff] [blame] | 2024 | |
Andi Kleen | e3b03b6 | 2016-05-05 16:04:03 -0700 | [diff] [blame] | 2025 | if (stat_config.interval && stat_round->time) { |
Arnaldo Carvalho de Melo | bd48c63 | 2016-08-05 15:40:30 -0300 | [diff] [blame] | 2026 | tsh.tv_sec = stat_round->time / NSEC_PER_SEC; |
| 2027 | tsh.tv_nsec = stat_round->time % NSEC_PER_SEC; |
Jiri Olsa | a56f939 | 2015-11-05 15:40:59 +0100 | [diff] [blame] | 2028 | ts = &tsh; |
| 2029 | } |
| 2030 | |
| 2031 | print_counters(ts, argc, argv); |
| 2032 | return 0; |
| 2033 | } |
| 2034 | |
Jiri Olsa | 62ba18ba | 2015-11-05 15:40:57 +0100 | [diff] [blame] | 2035 | static |
Jiri Olsa | 89f1688 | 2018-09-13 14:54:03 +0200 | [diff] [blame] | 2036 | int process_stat_config_event(struct perf_session *session, |
| 2037 | union perf_event *event) |
Jiri Olsa | 62ba18ba | 2015-11-05 15:40:57 +0100 | [diff] [blame] | 2038 | { |
Jiri Olsa | 89f1688 | 2018-09-13 14:54:03 +0200 | [diff] [blame] | 2039 | struct perf_tool *tool = session->tool; |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 2040 | struct perf_stat *st = container_of(tool, struct perf_stat, tool); |
| 2041 | |
Jiri Olsa | 62ba18ba | 2015-11-05 15:40:57 +0100 | [diff] [blame] | 2042 | perf_event__read_stat_config(&stat_config, &event->stat_config); |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 2043 | |
Jiri Olsa | 315c0a1 | 2019-08-22 13:11:39 +0200 | [diff] [blame] | 2044 | if (perf_cpu_map__empty(st->cpus)) { |
Jiri Olsa | 89af4e0 | 2015-11-05 15:41:02 +0100 | [diff] [blame] | 2045 | if (st->aggr_mode != AGGR_UNSET) |
| 2046 | pr_warning("warning: processing task data, aggregation mode not set\n"); |
| 2047 | return 0; |
| 2048 | } |
| 2049 | |
| 2050 | if (st->aggr_mode != AGGR_UNSET) |
| 2051 | stat_config.aggr_mode = st->aggr_mode; |
| 2052 | |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 2053 | if (perf_stat.data.is_pipe) |
Jiri Olsa | 68d702f | 2015-11-05 15:40:58 +0100 | [diff] [blame] | 2054 | perf_stat_init_aggr_mode(); |
| 2055 | else |
| 2056 | perf_stat_init_aggr_mode_file(st); |
| 2057 | |
Jiri Olsa | 62ba18ba | 2015-11-05 15:40:57 +0100 | [diff] [blame] | 2058 | return 0; |
| 2059 | } |
| 2060 | |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2061 | static int set_maps(struct perf_stat *st) |
| 2062 | { |
| 2063 | if (!st->cpus || !st->threads) |
| 2064 | return 0; |
| 2065 | |
| 2066 | if (WARN_ONCE(st->maps_allocated, "stats double allocation\n")) |
| 2067 | return -EINVAL; |
| 2068 | |
Jiri Olsa | 453fa03 | 2019-07-21 13:24:43 +0200 | [diff] [blame] | 2069 | perf_evlist__set_maps(&evsel_list->core, st->cpus, st->threads); |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2070 | |
Arnaldo Carvalho de Melo | 53f5e90 | 2020-11-30 09:31:04 -0300 | [diff] [blame] | 2071 | if (evlist__alloc_stats(evsel_list, true)) |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2072 | return -ENOMEM; |
| 2073 | |
| 2074 | st->maps_allocated = true; |
| 2075 | return 0; |
| 2076 | } |
| 2077 | |
| 2078 | static |
Jiri Olsa | 89f1688 | 2018-09-13 14:54:03 +0200 | [diff] [blame] | 2079 | int process_thread_map_event(struct perf_session *session, |
| 2080 | union perf_event *event) |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2081 | { |
Jiri Olsa | 89f1688 | 2018-09-13 14:54:03 +0200 | [diff] [blame] | 2082 | struct perf_tool *tool = session->tool; |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2083 | struct perf_stat *st = container_of(tool, struct perf_stat, tool); |
| 2084 | |
| 2085 | if (st->threads) { |
| 2086 | pr_warning("Extra thread map event, ignoring.\n"); |
| 2087 | return 0; |
| 2088 | } |
| 2089 | |
| 2090 | st->threads = thread_map__new_event(&event->thread_map); |
| 2091 | if (!st->threads) |
| 2092 | return -ENOMEM; |
| 2093 | |
| 2094 | return set_maps(st); |
| 2095 | } |
| 2096 | |
| 2097 | static |
Jiri Olsa | 89f1688 | 2018-09-13 14:54:03 +0200 | [diff] [blame] | 2098 | int process_cpu_map_event(struct perf_session *session, |
| 2099 | union perf_event *event) |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2100 | { |
Jiri Olsa | 89f1688 | 2018-09-13 14:54:03 +0200 | [diff] [blame] | 2101 | struct perf_tool *tool = session->tool; |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2102 | struct perf_stat *st = container_of(tool, struct perf_stat, tool); |
Jiri Olsa | f854839 | 2019-07-21 13:23:49 +0200 | [diff] [blame] | 2103 | struct perf_cpu_map *cpus; |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2104 | |
| 2105 | if (st->cpus) { |
| 2106 | pr_warning("Extra cpu map event, ignoring.\n"); |
| 2107 | return 0; |
| 2108 | } |
| 2109 | |
| 2110 | cpus = cpu_map__new_data(&event->cpu_map.data); |
| 2111 | if (!cpus) |
| 2112 | return -ENOMEM; |
| 2113 | |
| 2114 | st->cpus = cpus; |
| 2115 | return set_maps(st); |
| 2116 | } |
| 2117 | |
Jiri Olsa | 8a59f3c | 2016-01-12 10:35:29 +0100 | [diff] [blame] | 2118 | static const char * const stat_report_usage[] = { |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2119 | "perf stat report [<options>]", |
| 2120 | NULL, |
| 2121 | }; |
| 2122 | |
| 2123 | static struct perf_stat perf_stat = { |
| 2124 | .tool = { |
| 2125 | .attr = perf_event__process_attr, |
Jiri Olsa | fa6ea78 | 2015-11-05 15:41:00 +0100 | [diff] [blame] | 2126 | .event_update = perf_event__process_event_update, |
Jiri Olsa | 1975d36 | 2015-11-05 15:40:56 +0100 | [diff] [blame] | 2127 | .thread_map = process_thread_map_event, |
| 2128 | .cpu_map = process_cpu_map_event, |
Jiri Olsa | 62ba18ba | 2015-11-05 15:40:57 +0100 | [diff] [blame] | 2129 | .stat_config = process_stat_config_event, |
Jiri Olsa | a56f939 | 2015-11-05 15:40:59 +0100 | [diff] [blame] | 2130 | .stat = perf_event__process_stat_event, |
| 2131 | .stat_round = process_stat_round_event, |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2132 | }, |
Jiri Olsa | 89af4e0 | 2015-11-05 15:41:02 +0100 | [diff] [blame] | 2133 | .aggr_mode = AGGR_UNSET, |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2134 | }; |
| 2135 | |
| 2136 | static int __cmd_report(int argc, const char **argv) |
| 2137 | { |
| 2138 | struct perf_session *session; |
| 2139 | const struct option options[] = { |
| 2140 | OPT_STRING('i', "input", &input_name, "file", "input file name"), |
Jiri Olsa | 89af4e0 | 2015-11-05 15:41:02 +0100 | [diff] [blame] | 2141 | OPT_SET_UINT(0, "per-socket", &perf_stat.aggr_mode, |
| 2142 | "aggregate counts per processor socket", AGGR_SOCKET), |
Kan Liang | db5742b | 2019-06-04 15:50:42 -0700 | [diff] [blame] | 2143 | OPT_SET_UINT(0, "per-die", &perf_stat.aggr_mode, |
| 2144 | "aggregate counts per processor die", AGGR_DIE), |
Jiri Olsa | 89af4e0 | 2015-11-05 15:41:02 +0100 | [diff] [blame] | 2145 | OPT_SET_UINT(0, "per-core", &perf_stat.aggr_mode, |
| 2146 | "aggregate counts per physical processor core", AGGR_CORE), |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 2147 | OPT_SET_UINT(0, "per-node", &perf_stat.aggr_mode, |
| 2148 | "aggregate counts per numa node", AGGR_NODE), |
Jiri Olsa | 89af4e0 | 2015-11-05 15:41:02 +0100 | [diff] [blame] | 2149 | OPT_SET_UINT('A', "no-aggr", &perf_stat.aggr_mode, |
| 2150 | "disable CPU count aggregation", AGGR_NONE), |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2151 | OPT_END() |
| 2152 | }; |
| 2153 | struct stat st; |
| 2154 | int ret; |
| 2155 | |
Jiri Olsa | 8a59f3c | 2016-01-12 10:35:29 +0100 | [diff] [blame] | 2156 | argc = parse_options(argc, argv, options, stat_report_usage, 0); |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2157 | |
| 2158 | if (!input_name || !strlen(input_name)) { |
| 2159 | if (!fstat(STDIN_FILENO, &st) && S_ISFIFO(st.st_mode)) |
| 2160 | input_name = "-"; |
| 2161 | else |
| 2162 | input_name = "perf.data"; |
| 2163 | } |
| 2164 | |
Jiri Olsa | 2d4f279 | 2019-02-21 10:41:30 +0100 | [diff] [blame] | 2165 | perf_stat.data.path = input_name; |
| 2166 | perf_stat.data.mode = PERF_DATA_MODE_READ; |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2167 | |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 2168 | session = perf_session__new(&perf_stat.data, false, &perf_stat.tool); |
Mamatha Inamdar | 6ef81c5 | 2019-08-22 12:50:49 +0530 | [diff] [blame] | 2169 | if (IS_ERR(session)) |
| 2170 | return PTR_ERR(session); |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2171 | |
| 2172 | perf_stat.session = session; |
| 2173 | stat_config.output = stderr; |
| 2174 | evsel_list = session->evlist; |
| 2175 | |
| 2176 | ret = perf_session__process_events(session); |
| 2177 | if (ret) |
| 2178 | return ret; |
| 2179 | |
| 2180 | perf_session__delete(session); |
| 2181 | return 0; |
| 2182 | } |
| 2183 | |
Jiri Olsa | e3ba76d | 2017-02-27 10:48:18 +0100 | [diff] [blame] | 2184 | static void setup_system_wide(int forks) |
| 2185 | { |
| 2186 | /* |
| 2187 | * Make system wide (-a) the default target if |
| 2188 | * no target was specified and one of following |
| 2189 | * conditions is met: |
| 2190 | * |
| 2191 | * - there's no workload specified |
| 2192 | * - there is workload specified but all requested |
| 2193 | * events are system wide events |
| 2194 | */ |
| 2195 | if (!target__none(&target)) |
| 2196 | return; |
| 2197 | |
| 2198 | if (!forks) |
| 2199 | target.system_wide = true; |
| 2200 | else { |
Jiri Olsa | 32dcd02 | 2019-07-21 13:23:51 +0200 | [diff] [blame] | 2201 | struct evsel *counter; |
Jiri Olsa | e3ba76d | 2017-02-27 10:48:18 +0100 | [diff] [blame] | 2202 | |
| 2203 | evlist__for_each_entry(evsel_list, counter) { |
Jin Yao | 002a3d6 | 2020-09-22 09:50:04 +0800 | [diff] [blame] | 2204 | if (!counter->core.system_wide && |
| 2205 | strcmp(counter->name, "duration_time")) { |
Jiri Olsa | e3ba76d | 2017-02-27 10:48:18 +0100 | [diff] [blame] | 2206 | return; |
Jin Yao | 002a3d6 | 2020-09-22 09:50:04 +0800 | [diff] [blame] | 2207 | } |
Jiri Olsa | e3ba76d | 2017-02-27 10:48:18 +0100 | [diff] [blame] | 2208 | } |
| 2209 | |
Jiri Olsa | 6484d2f | 2019-07-21 13:24:28 +0200 | [diff] [blame] | 2210 | if (evsel_list->core.nr_entries) |
Jiri Olsa | e3ba76d | 2017-02-27 10:48:18 +0100 | [diff] [blame] | 2211 | target.system_wide = true; |
| 2212 | } |
| 2213 | } |
| 2214 | |
Arnaldo Carvalho de Melo | b0ad8ea | 2017-03-27 11:47:20 -0300 | [diff] [blame] | 2215 | int cmd_stat(int argc, const char **argv) |
Ingo Molnar | 5242519 | 2009-05-26 09:17:18 +0200 | [diff] [blame] | 2216 | { |
Arnaldo Carvalho de Melo | b070a54 | 2012-10-01 15:20:58 -0300 | [diff] [blame] | 2217 | const char * const stat_usage[] = { |
| 2218 | "perf stat [<options>] [<command>]", |
| 2219 | NULL |
| 2220 | }; |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 2221 | int status = -EINVAL, run_idx, err; |
Stephane Eranian | 4aa9015 | 2011-08-15 22:22:33 +0200 | [diff] [blame] | 2222 | const char *mode; |
Jiri Olsa | 5821522 | 2015-07-21 14:31:24 +0200 | [diff] [blame] | 2223 | FILE *output = stderr; |
yuzhoujian | f1f8ad5 | 2018-01-29 10:25:23 +0100 | [diff] [blame] | 2224 | unsigned int interval, timeout; |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2225 | const char * const stat_subcommands[] = { "record", "report" }; |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 2226 | char errbuf[BUFSIZ]; |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 2227 | |
Stephane Eranian | 5af52b5 | 2010-05-18 15:00:01 +0200 | [diff] [blame] | 2228 | setlocale(LC_ALL, ""); |
| 2229 | |
Jiri Olsa | 0f98b11 | 2019-07-21 13:23:55 +0200 | [diff] [blame] | 2230 | evsel_list = evlist__new(); |
Arnaldo Carvalho de Melo | 361c99a | 2011-01-11 20:56:53 -0200 | [diff] [blame] | 2231 | if (evsel_list == NULL) |
| 2232 | return -ENOMEM; |
| 2233 | |
Wang Nan | 1669e50 | 2016-02-19 11:43:58 +0000 | [diff] [blame] | 2234 | parse_events__shrink_config_terms(); |
Michael Petlan | 51433ea | 2018-12-10 11:00:04 -0500 | [diff] [blame] | 2235 | |
| 2236 | /* String-parsing callback-based options would segfault when negated */ |
| 2237 | set_option_flag(stat_options, 'e', "event", PARSE_OPT_NONEG); |
| 2238 | set_option_flag(stat_options, 'M', "metrics", PARSE_OPT_NONEG); |
| 2239 | set_option_flag(stat_options, 'G', "cgroup", PARSE_OPT_NONEG); |
| 2240 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2241 | argc = parse_options_subcommand(argc, argv, stat_options, stat_subcommands, |
| 2242 | (const char **) stat_usage, |
| 2243 | PARSE_OPT_STOP_AT_NON_OPTION); |
Andi Kleen | 37932c1 | 2017-03-20 13:17:08 -0700 | [diff] [blame] | 2244 | perf_stat__collect_metric_expr(evsel_list); |
Andi Kleen | fb4605b | 2016-03-01 10:57:52 -0800 | [diff] [blame] | 2245 | perf_stat__init_shadow_stats(); |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2246 | |
Jiri Olsa | fa7070a | 2018-08-30 08:32:29 +0200 | [diff] [blame] | 2247 | if (stat_config.csv_sep) { |
| 2248 | stat_config.csv_output = true; |
| 2249 | if (!strcmp(stat_config.csv_sep, "\\t")) |
| 2250 | stat_config.csv_sep = "\t"; |
Jiri Olsa | 6edb78a | 2015-11-05 15:41:01 +0100 | [diff] [blame] | 2251 | } else |
Jiri Olsa | fa7070a | 2018-08-30 08:32:29 +0200 | [diff] [blame] | 2252 | stat_config.csv_sep = DEFAULT_SEPARATOR; |
Jiri Olsa | 6edb78a | 2015-11-05 15:41:01 +0100 | [diff] [blame] | 2253 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2254 | if (argc && !strncmp(argv[0], "rec", 3)) { |
| 2255 | argc = __cmd_record(argc, argv); |
| 2256 | if (argc < 0) |
| 2257 | return -1; |
Jiri Olsa | ba6039b6 | 2015-11-05 15:40:55 +0100 | [diff] [blame] | 2258 | } else if (argc && !strncmp(argv[0], "rep", 3)) |
| 2259 | return __cmd_report(argc, argv); |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 2260 | |
Jiri Olsa | ec0d3d1 | 2015-07-21 14:31:25 +0200 | [diff] [blame] | 2261 | interval = stat_config.interval; |
yuzhoujian | f1f8ad5 | 2018-01-29 10:25:23 +0100 | [diff] [blame] | 2262 | timeout = stat_config.timeout; |
Jiri Olsa | ec0d3d1 | 2015-07-21 14:31:25 +0200 | [diff] [blame] | 2263 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2264 | /* |
| 2265 | * For record command the -o is already taken care of. |
| 2266 | */ |
| 2267 | if (!STAT_RECORD && output_name && strcmp(output_name, "-")) |
Stephane Eranian | 4aa9015 | 2011-08-15 22:22:33 +0200 | [diff] [blame] | 2268 | output = NULL; |
| 2269 | |
Jim Cromie | 56f3bae | 2011-09-07 17:14:00 -0600 | [diff] [blame] | 2270 | if (output_name && output_fd) { |
| 2271 | fprintf(stderr, "cannot use both --output and --log-fd\n"); |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 2272 | parse_options_usage(stat_usage, stat_options, "o", 1); |
| 2273 | parse_options_usage(NULL, stat_options, "log-fd", 0); |
Namhyung Kim | cc03c54 | 2013-11-01 16:33:15 +0900 | [diff] [blame] | 2274 | goto out; |
Jim Cromie | 56f3bae | 2011-09-07 17:14:00 -0600 | [diff] [blame] | 2275 | } |
Stephane Eranian | fc3e4d0 | 2012-05-15 13:11:11 +0200 | [diff] [blame] | 2276 | |
Jiri Olsa | 0ce5aa0 | 2018-08-30 08:32:31 +0200 | [diff] [blame] | 2277 | if (stat_config.metric_only && stat_config.aggr_mode == AGGR_THREAD) { |
Andi Kleen | 54b5091 | 2016-03-03 15:57:36 -0800 | [diff] [blame] | 2278 | fprintf(stderr, "--metric-only is not supported with --per-thread\n"); |
| 2279 | goto out; |
| 2280 | } |
| 2281 | |
Jiri Olsa | d97ae04 | 2018-08-30 08:32:36 +0200 | [diff] [blame] | 2282 | if (stat_config.metric_only && stat_config.run_count > 1) { |
Andi Kleen | 54b5091 | 2016-03-03 15:57:36 -0800 | [diff] [blame] | 2283 | fprintf(stderr, "--metric-only is not supported with -r\n"); |
| 2284 | goto out; |
| 2285 | } |
| 2286 | |
Jiri Olsa | 54ac0b1 | 2018-08-30 08:32:50 +0200 | [diff] [blame] | 2287 | if (stat_config.walltime_run_table && stat_config.run_count <= 1) { |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 2288 | fprintf(stderr, "--table is only supported with -r\n"); |
| 2289 | parse_options_usage(stat_usage, stat_options, "r", 1); |
| 2290 | parse_options_usage(NULL, stat_options, "table", 0); |
| 2291 | goto out; |
| 2292 | } |
| 2293 | |
Stephane Eranian | fc3e4d0 | 2012-05-15 13:11:11 +0200 | [diff] [blame] | 2294 | if (output_fd < 0) { |
| 2295 | fprintf(stderr, "argument to --log-fd must be a > 0\n"); |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 2296 | parse_options_usage(stat_usage, stat_options, "log-fd", 0); |
Namhyung Kim | cc03c54 | 2013-11-01 16:33:15 +0900 | [diff] [blame] | 2297 | goto out; |
Stephane Eranian | fc3e4d0 | 2012-05-15 13:11:11 +0200 | [diff] [blame] | 2298 | } |
| 2299 | |
Andi Kleen | 55a4de9 | 2020-10-26 17:27:36 -0700 | [diff] [blame] | 2300 | if (!output && !stat_config.quiet) { |
Stephane Eranian | 4aa9015 | 2011-08-15 22:22:33 +0200 | [diff] [blame] | 2301 | struct timespec tm; |
| 2302 | mode = append_file ? "a" : "w"; |
| 2303 | |
| 2304 | output = fopen(output_name, mode); |
| 2305 | if (!output) { |
| 2306 | perror("failed to create output file"); |
David Ahern | fceda7f | 2012-08-26 12:24:44 -0600 | [diff] [blame] | 2307 | return -1; |
Stephane Eranian | 4aa9015 | 2011-08-15 22:22:33 +0200 | [diff] [blame] | 2308 | } |
| 2309 | clock_gettime(CLOCK_REALTIME, &tm); |
| 2310 | fprintf(output, "# started on %s\n", ctime(&tm.tv_sec)); |
Stephane Eranian | fc3e4d0 | 2012-05-15 13:11:11 +0200 | [diff] [blame] | 2311 | } else if (output_fd > 0) { |
Jim Cromie | 56f3bae | 2011-09-07 17:14:00 -0600 | [diff] [blame] | 2312 | mode = append_file ? "a" : "w"; |
| 2313 | output = fdopen(output_fd, mode); |
| 2314 | if (!output) { |
| 2315 | perror("Failed opening logfd"); |
| 2316 | return -errno; |
| 2317 | } |
Stephane Eranian | 4aa9015 | 2011-08-15 22:22:33 +0200 | [diff] [blame] | 2318 | } |
| 2319 | |
Jiri Olsa | 5821522 | 2015-07-21 14:31:24 +0200 | [diff] [blame] | 2320 | stat_config.output = output; |
| 2321 | |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 2322 | /* |
| 2323 | * let the spreadsheet do the pretty-printing |
| 2324 | */ |
Jiri Olsa | fa7070a | 2018-08-30 08:32:29 +0200 | [diff] [blame] | 2325 | if (stat_config.csv_output) { |
Jim Cromie | 61a9f32 | 2011-09-07 17:14:04 -0600 | [diff] [blame] | 2326 | /* User explicitly passed -B? */ |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 2327 | if (big_num_opt == 1) { |
| 2328 | fprintf(stderr, "-B option not supported with -x\n"); |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 2329 | parse_options_usage(stat_usage, stat_options, "B", 1); |
| 2330 | parse_options_usage(NULL, stat_options, "x", 1); |
Namhyung Kim | cc03c54 | 2013-11-01 16:33:15 +0900 | [diff] [blame] | 2331 | goto out; |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 2332 | } else /* Nope, so disable big number formatting */ |
Jiri Olsa | 34ff086 | 2018-08-30 08:32:47 +0200 | [diff] [blame] | 2333 | stat_config.big_num = false; |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 2334 | } else if (big_num_opt == 0) /* User passed --no-big-num */ |
Jiri Olsa | 34ff086 | 2018-08-30 08:32:47 +0200 | [diff] [blame] | 2335 | stat_config.big_num = false; |
Stephane Eranian | d7470b6 | 2010-12-01 18:49:05 +0200 | [diff] [blame] | 2336 | |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 2337 | err = target__validate(&target); |
| 2338 | if (err) { |
| 2339 | target__strerror(&target, err, errbuf, BUFSIZ); |
| 2340 | pr_warning("%s\n", errbuf); |
| 2341 | } |
| 2342 | |
Jiri Olsa | e3ba76d | 2017-02-27 10:48:18 +0100 | [diff] [blame] | 2343 | setup_system_wide(argc); |
David Ahern | ac3063b | 2013-09-30 07:37:37 -0600 | [diff] [blame] | 2344 | |
Jiri Olsa | 0ce2da1 | 2018-06-05 14:13:13 +0200 | [diff] [blame] | 2345 | /* |
| 2346 | * Display user/system times only for single |
| 2347 | * run and when there's specified tracee. |
| 2348 | */ |
Jiri Olsa | d97ae04 | 2018-08-30 08:32:36 +0200 | [diff] [blame] | 2349 | if ((stat_config.run_count == 1) && target__none(&target)) |
Jiri Olsa | 8897a89 | 2018-08-30 08:32:44 +0200 | [diff] [blame] | 2350 | stat_config.ru_display = true; |
Jiri Olsa | 0ce2da1 | 2018-06-05 14:13:13 +0200 | [diff] [blame] | 2351 | |
Jiri Olsa | d97ae04 | 2018-08-30 08:32:36 +0200 | [diff] [blame] | 2352 | if (stat_config.run_count < 0) { |
Namhyung Kim | cc03c54 | 2013-11-01 16:33:15 +0900 | [diff] [blame] | 2353 | pr_err("Run count must be a positive number\n"); |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 2354 | parse_options_usage(stat_usage, stat_options, "r", 1); |
Namhyung Kim | cc03c54 | 2013-11-01 16:33:15 +0900 | [diff] [blame] | 2355 | goto out; |
Jiri Olsa | d97ae04 | 2018-08-30 08:32:36 +0200 | [diff] [blame] | 2356 | } else if (stat_config.run_count == 0) { |
Frederik Deweerdt | a7e191c | 2013-03-01 13:02:27 -0500 | [diff] [blame] | 2357 | forever = true; |
Jiri Olsa | d97ae04 | 2018-08-30 08:32:36 +0200 | [diff] [blame] | 2358 | stat_config.run_count = 1; |
Frederik Deweerdt | a7e191c | 2013-03-01 13:02:27 -0500 | [diff] [blame] | 2359 | } |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 2360 | |
Jiri Olsa | 54ac0b1 | 2018-08-30 08:32:50 +0200 | [diff] [blame] | 2361 | if (stat_config.walltime_run_table) { |
| 2362 | stat_config.walltime_run = zalloc(stat_config.run_count * sizeof(stat_config.walltime_run[0])); |
| 2363 | if (!stat_config.walltime_run) { |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 2364 | pr_err("failed to setup -r option"); |
| 2365 | goto out; |
| 2366 | } |
| 2367 | } |
| 2368 | |
Jin Yao | 1d9f8d1 | 2017-12-05 22:03:10 +0800 | [diff] [blame] | 2369 | if ((stat_config.aggr_mode == AGGR_THREAD) && |
| 2370 | !target__has_task(&target)) { |
| 2371 | if (!target.system_wide || target.cpu_list) { |
| 2372 | fprintf(stderr, "The --per-thread option is only " |
| 2373 | "available when monitoring via -p -t -a " |
| 2374 | "options or only --per-thread.\n"); |
| 2375 | parse_options_usage(NULL, stat_options, "p", 1); |
| 2376 | parse_options_usage(NULL, stat_options, "t", 1); |
| 2377 | goto out; |
| 2378 | } |
Jiri Olsa | 32b8af8 | 2015-06-26 11:29:27 +0200 | [diff] [blame] | 2379 | } |
| 2380 | |
| 2381 | /* |
| 2382 | * no_aggr, cgroup are for system-wide only |
| 2383 | * --per-thread is aggregated per thread, we dont mix it with cpu mode |
| 2384 | */ |
Jiri Olsa | 421a50f | 2015-07-21 14:31:22 +0200 | [diff] [blame] | 2385 | if (((stat_config.aggr_mode != AGGR_GLOBAL && |
| 2386 | stat_config.aggr_mode != AGGR_THREAD) || nr_cgroups) && |
Arnaldo Carvalho de Melo | 602ad87 | 2013-11-12 16:46:16 -0300 | [diff] [blame] | 2387 | !target__has_cpu(&target)) { |
Stephane Eranian | 023695d | 2011-02-14 11:20:01 +0200 | [diff] [blame] | 2388 | fprintf(stderr, "both cgroup and no-aggregation " |
| 2389 | "modes only available in system-wide mode\n"); |
| 2390 | |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 2391 | parse_options_usage(stat_usage, stat_options, "G", 1); |
| 2392 | parse_options_usage(NULL, stat_options, "A", 1); |
| 2393 | parse_options_usage(NULL, stat_options, "a", 1); |
Namhyung Kim | cc03c54 | 2013-11-01 16:33:15 +0900 | [diff] [blame] | 2394 | goto out; |
Stephane Eranian | d7e7a45 | 2013-02-06 15:46:02 +0100 | [diff] [blame] | 2395 | } |
| 2396 | |
Alexander Antonov | f07952b | 2021-04-19 12:41:44 +0300 | [diff] [blame] | 2397 | if (stat_config.iostat_run) { |
| 2398 | status = iostat_prepare(evsel_list, &stat_config); |
| 2399 | if (status) |
| 2400 | goto out; |
| 2401 | if (iostat_mode == IOSTAT_LIST) { |
| 2402 | iostat_list(evsel_list, &stat_config); |
| 2403 | goto out; |
| 2404 | } else if (verbose) |
| 2405 | iostat_list(evsel_list, &stat_config); |
| 2406 | } |
| 2407 | |
Ingo Molnar | 2cba3ff | 2011-05-19 13:30:56 +0200 | [diff] [blame] | 2408 | if (add_default_attributes()) |
| 2409 | goto out; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 2410 | |
Namhyung Kim | d1c5a0e | 2020-09-24 21:44:52 +0900 | [diff] [blame] | 2411 | if (stat_config.cgroup_list) { |
| 2412 | if (nr_cgroups > 0) { |
| 2413 | pr_err("--cgroup and --for-each-cgroup cannot be used together\n"); |
| 2414 | parse_options_usage(stat_usage, stat_options, "G", 1); |
| 2415 | parse_options_usage(NULL, stat_options, "for-each-cgroup", 0); |
| 2416 | goto out; |
| 2417 | } |
| 2418 | |
Namhyung Kim | b214ba8 | 2020-09-24 21:44:53 +0900 | [diff] [blame] | 2419 | if (evlist__expand_cgroup(evsel_list, stat_config.cgroup_list, |
Namhyung Kim | bb1c15b | 2020-10-27 16:28:55 +0900 | [diff] [blame] | 2420 | &stat_config.metric_events, true) < 0) { |
| 2421 | parse_options_usage(stat_usage, stat_options, |
| 2422 | "for-each-cgroup", 0); |
Namhyung Kim | d1c5a0e | 2020-09-24 21:44:52 +0900 | [diff] [blame] | 2423 | goto out; |
Namhyung Kim | bb1c15b | 2020-10-27 16:28:55 +0900 | [diff] [blame] | 2424 | } |
Namhyung Kim | d1c5a0e | 2020-09-24 21:44:52 +0900 | [diff] [blame] | 2425 | } |
| 2426 | |
Jin Yao | 1d9f8d1 | 2017-12-05 22:03:10 +0800 | [diff] [blame] | 2427 | if ((stat_config.aggr_mode == AGGR_THREAD) && (target.system_wide)) |
| 2428 | target.per_thread = true; |
| 2429 | |
Arnaldo Carvalho de Melo | 7748bb7 | 2020-11-30 14:56:52 -0300 | [diff] [blame] | 2430 | if (evlist__create_maps(evsel_list, &target) < 0) { |
Arnaldo Carvalho de Melo | 602ad87 | 2013-11-12 16:46:16 -0300 | [diff] [blame] | 2431 | if (target__has_task(&target)) { |
Namhyung Kim | 77a6f01 | 2012-05-07 14:09:04 +0900 | [diff] [blame] | 2432 | pr_err("Problems finding threads of monitor\n"); |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 2433 | parse_options_usage(stat_usage, stat_options, "p", 1); |
| 2434 | parse_options_usage(NULL, stat_options, "t", 1); |
Arnaldo Carvalho de Melo | 602ad87 | 2013-11-12 16:46:16 -0300 | [diff] [blame] | 2435 | } else if (target__has_cpu(&target)) { |
Namhyung Kim | 77a6f01 | 2012-05-07 14:09:04 +0900 | [diff] [blame] | 2436 | perror("failed to parse CPUs map"); |
Jiri Olsa | e054731 | 2015-11-05 15:40:45 +0100 | [diff] [blame] | 2437 | parse_options_usage(stat_usage, stat_options, "C", 1); |
| 2438 | parse_options_usage(NULL, stat_options, "a", 1); |
Namhyung Kim | cc03c54 | 2013-11-01 16:33:15 +0900 | [diff] [blame] | 2439 | } |
| 2440 | goto out; |
Arnaldo Carvalho de Melo | 60d567e | 2011-01-03 17:49:48 -0200 | [diff] [blame] | 2441 | } |
Jiri Olsa | 32b8af8 | 2015-06-26 11:29:27 +0200 | [diff] [blame] | 2442 | |
Jiri Olsa | a9a17902 | 2020-06-02 12:17:36 +0200 | [diff] [blame] | 2443 | evlist__check_cpu_maps(evsel_list); |
| 2444 | |
Jin Yao | 1227942 | 2021-04-27 15:01:20 +0800 | [diff] [blame] | 2445 | if (perf_pmu__has_hybrid()) |
| 2446 | stat_config.no_merge = true; |
| 2447 | |
Jiri Olsa | 32b8af8 | 2015-06-26 11:29:27 +0200 | [diff] [blame] | 2448 | /* |
| 2449 | * Initialize thread_map with comm names, |
| 2450 | * so we could print it out on output. |
| 2451 | */ |
Jin Yao | 5673944 | 2017-12-05 22:03:07 +0800 | [diff] [blame] | 2452 | if (stat_config.aggr_mode == AGGR_THREAD) { |
Jiri Olsa | 03617c2 | 2019-07-21 13:24:42 +0200 | [diff] [blame] | 2453 | thread_map__read_comms(evsel_list->core.threads); |
Jin Yao | 5673944 | 2017-12-05 22:03:07 +0800 | [diff] [blame] | 2454 | if (target.system_wide) { |
| 2455 | if (runtime_stat_new(&stat_config, |
Jiri Olsa | a2f354e | 2019-08-22 13:11:41 +0200 | [diff] [blame] | 2456 | perf_thread_map__nr(evsel_list->core.threads))) { |
Jin Yao | 5673944 | 2017-12-05 22:03:07 +0800 | [diff] [blame] | 2457 | goto out; |
| 2458 | } |
| 2459 | } |
| 2460 | } |
Jiri Olsa | 32b8af8 | 2015-06-26 11:29:27 +0200 | [diff] [blame] | 2461 | |
Jiri Olsa | 86895b4 | 2019-08-28 10:17:43 +0200 | [diff] [blame] | 2462 | if (stat_config.aggr_mode == AGGR_NODE) |
| 2463 | cpu__setup_cpunode_map(); |
| 2464 | |
yuzhoujian | db06a26 | 2018-01-29 10:25:22 +0100 | [diff] [blame] | 2465 | if (stat_config.times && interval) |
| 2466 | interval_count = true; |
| 2467 | else if (stat_config.times && !interval) { |
| 2468 | pr_err("interval-count option should be used together with " |
| 2469 | "interval-print.\n"); |
| 2470 | parse_options_usage(stat_usage, stat_options, "interval-count", 0); |
| 2471 | parse_options_usage(stat_usage, stat_options, "I", 1); |
| 2472 | goto out; |
| 2473 | } |
Stephane Eranian | c45c6ea | 2010-05-28 12:00:01 +0200 | [diff] [blame] | 2474 | |
yuzhoujian | f1f8ad5 | 2018-01-29 10:25:23 +0100 | [diff] [blame] | 2475 | if (timeout && timeout < 100) { |
| 2476 | if (timeout < 10) { |
| 2477 | pr_err("timeout must be >= 10ms.\n"); |
| 2478 | parse_options_usage(stat_usage, stat_options, "timeout", 0); |
| 2479 | goto out; |
| 2480 | } else |
| 2481 | pr_warning("timeout < 100ms. " |
| 2482 | "The overhead percentage could be high in some cases. " |
| 2483 | "Please proceed with caution.\n"); |
| 2484 | } |
| 2485 | if (timeout && interval) { |
| 2486 | pr_err("timeout option is not supported with interval-print.\n"); |
| 2487 | parse_options_usage(stat_usage, stat_options, "timeout", 0); |
| 2488 | parse_options_usage(stat_usage, stat_options, "I", 1); |
| 2489 | goto out; |
| 2490 | } |
| 2491 | |
Arnaldo Carvalho de Melo | 53f5e90 | 2020-11-30 09:31:04 -0300 | [diff] [blame] | 2492 | if (evlist__alloc_stats(evsel_list, interval)) |
Arnaldo Carvalho de Melo | 03ad974 | 2014-01-03 15:56:06 -0300 | [diff] [blame] | 2493 | goto out; |
Zhang, Yanmin | d6d901c | 2010-03-18 11:36:05 -0300 | [diff] [blame] | 2494 | |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 2495 | if (perf_stat_init_aggr_mode()) |
Arnaldo Carvalho de Melo | 03ad974 | 2014-01-03 15:56:06 -0300 | [diff] [blame] | 2496 | goto out; |
Stephane Eranian | 86ee6e1 | 2013-02-14 13:57:27 +0100 | [diff] [blame] | 2497 | |
Ingo Molnar | 58d7e99 | 2009-05-15 11:03:23 +0200 | [diff] [blame] | 2498 | /* |
Jiri Olsa | 7d9ad16 | 2018-08-30 08:32:14 +0200 | [diff] [blame] | 2499 | * Set sample_type to PERF_SAMPLE_IDENTIFIER, which should be harmless |
| 2500 | * while avoiding that older tools show confusing messages. |
| 2501 | * |
| 2502 | * However for pipe sessions we need to keep it zero, |
| 2503 | * because script's perf_evsel__check_attr is triggered |
| 2504 | * by attr->sample_type != 0, and we can't run it on |
| 2505 | * stat sessions. |
| 2506 | */ |
| 2507 | stat_config.identifier = !(STAT_RECORD && perf_stat.data.is_pipe); |
| 2508 | |
| 2509 | /* |
Ingo Molnar | 58d7e99 | 2009-05-15 11:03:23 +0200 | [diff] [blame] | 2510 | * We dont want to block the signals - that would cause |
| 2511 | * child tasks to inherit that and Ctrl-C would not work. |
| 2512 | * What we want is for Ctrl-C to work in the exec()-ed |
| 2513 | * task, but being ignored by perf stat itself: |
| 2514 | */ |
Peter Zijlstra | f7b7c26 | 2009-06-10 15:55:59 +0200 | [diff] [blame] | 2515 | atexit(sig_atexit); |
Frederik Deweerdt | a7e191c | 2013-03-01 13:02:27 -0500 | [diff] [blame] | 2516 | if (!forever) |
| 2517 | signal(SIGINT, skip_signal); |
Stephane Eranian | 13370a9 | 2013-01-29 12:47:44 +0100 | [diff] [blame] | 2518 | signal(SIGCHLD, skip_signal); |
Ingo Molnar | 58d7e99 | 2009-05-15 11:03:23 +0200 | [diff] [blame] | 2519 | signal(SIGALRM, skip_signal); |
| 2520 | signal(SIGABRT, skip_signal); |
| 2521 | |
Alexey Budankov | 27e9769 | 2020-07-17 10:05:41 +0300 | [diff] [blame] | 2522 | if (evlist__initialize_ctlfd(evsel_list, stat_config.ctl_fd, stat_config.ctl_fd_ack)) |
| 2523 | goto out; |
| 2524 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 2525 | status = 0; |
Jiri Olsa | d97ae04 | 2018-08-30 08:32:36 +0200 | [diff] [blame] | 2526 | for (run_idx = 0; forever || run_idx < stat_config.run_count; run_idx++) { |
| 2527 | if (stat_config.run_count != 1 && verbose > 0) |
Stephane Eranian | 4aa9015 | 2011-08-15 22:22:33 +0200 | [diff] [blame] | 2528 | fprintf(output, "[ perf stat: executing run #%d ... ]\n", |
| 2529 | run_idx + 1); |
Ingo Molnar | f9cef0a | 2011-04-28 18:17:11 +0200 | [diff] [blame] | 2530 | |
Srikar Dronamraju | b63fd11 | 2019-09-04 15:17:37 +0530 | [diff] [blame] | 2531 | if (run_idx != 0) |
Arnaldo Carvalho de Melo | 53f5e90 | 2020-11-30 09:31:04 -0300 | [diff] [blame] | 2532 | evlist__reset_prev_raw_counts(evsel_list); |
Srikar Dronamraju | b63fd11 | 2019-09-04 15:17:37 +0530 | [diff] [blame] | 2533 | |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 2534 | status = run_perf_stat(argc, argv, run_idx); |
Srikar Dronamraju | 443f2d5 | 2019-09-04 15:17:38 +0530 | [diff] [blame] | 2535 | if (forever && status != -1 && !interval) { |
Jiri Olsa | d4f63a4 | 2015-06-26 11:29:26 +0200 | [diff] [blame] | 2536 | print_counters(NULL, argc, argv); |
Jiri Olsa | 254ecbc7 | 2015-06-26 11:29:13 +0200 | [diff] [blame] | 2537 | perf_stat__reset_stats(); |
Frederik Deweerdt | a7e191c | 2013-03-01 13:02:27 -0500 | [diff] [blame] | 2538 | } |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 2539 | } |
| 2540 | |
Jin Yao | c7e5b32 | 2020-05-20 12:27:37 +0800 | [diff] [blame] | 2541 | if (!forever && status != -1 && (!interval || stat_config.summary)) |
Jiri Olsa | d4f63a4 | 2015-06-26 11:29:26 +0200 | [diff] [blame] | 2542 | print_counters(NULL, argc, argv); |
Arnaldo Carvalho de Melo | d134ffb | 2013-03-18 11:24:21 -0300 | [diff] [blame] | 2543 | |
Alexey Budankov | 27e9769 | 2020-07-17 10:05:41 +0300 | [diff] [blame] | 2544 | evlist__finalize_ctlfd(evsel_list); |
| 2545 | |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2546 | if (STAT_RECORD) { |
| 2547 | /* |
| 2548 | * We synthesize the kernel mmap record just so that older tools |
| 2549 | * don't emit warnings about not being able to resolve symbols |
Ingo Molnar | 4d39c89 | 2021-03-23 17:09:15 +0100 | [diff] [blame] | 2550 | * due to /proc/sys/kernel/kptr_restrict settings and instead provide |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2551 | * a saner message about no samples being in the perf.data file. |
| 2552 | * |
| 2553 | * This also serves to suppress a warning about f_header.data.size == 0 |
Jiri Olsa | 8b99b1a | 2015-11-05 15:40:48 +0100 | [diff] [blame] | 2554 | * in header.c at the moment 'perf stat record' gets introduced, which |
| 2555 | * is not really needed once we start adding the stat specific PERF_RECORD_ |
| 2556 | * records, but the need to suppress the kptr_restrict messages in older |
| 2557 | * tools remain -acme |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2558 | */ |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 2559 | int fd = perf_data__fd(&perf_stat.data); |
Song Liu | fa853c4 | 2020-12-29 13:42:14 -0800 | [diff] [blame] | 2560 | |
| 2561 | err = perf_event__synthesize_kernel_mmap((void *)&perf_stat, |
| 2562 | process_synthesized_event, |
| 2563 | &perf_stat.session->machines.host); |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2564 | if (err) { |
| 2565 | pr_warning("Couldn't synthesize the kernel mmap record, harmless, " |
| 2566 | "older tools may produce warnings about this file\n."); |
| 2567 | } |
| 2568 | |
Jiri Olsa | 7aad0c3 | 2015-11-05 15:40:52 +0100 | [diff] [blame] | 2569 | if (!interval) { |
| 2570 | if (WRITE_STAT_ROUND_EVENT(walltime_nsecs_stats.max, FINAL)) |
| 2571 | pr_err("failed to write stat round event\n"); |
| 2572 | } |
| 2573 | |
Jiri Olsa | 8ceb41d | 2017-01-23 22:07:59 +0100 | [diff] [blame] | 2574 | if (!perf_stat.data.is_pipe) { |
Jiri Olsa | 664c98d | 2015-11-05 15:40:50 +0100 | [diff] [blame] | 2575 | perf_stat.session->header.data_size += perf_stat.bytes_written; |
| 2576 | perf_session__write_header(perf_stat.session, evsel_list, fd, true); |
| 2577 | } |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2578 | |
Jiri Olsa | 750b4ed | 2019-07-21 13:24:07 +0200 | [diff] [blame] | 2579 | evlist__close(evsel_list); |
Jiri Olsa | 4979d0c | 2015-11-05 15:40:46 +0100 | [diff] [blame] | 2580 | perf_session__delete(perf_stat.session); |
| 2581 | } |
| 2582 | |
Masami Hiramatsu | 544c2ae | 2015-12-09 11:11:27 +0900 | [diff] [blame] | 2583 | perf_stat__exit_aggr_mode(); |
Arnaldo Carvalho de Melo | 53f5e90 | 2020-11-30 09:31:04 -0300 | [diff] [blame] | 2584 | evlist__free_stats(evsel_list); |
Arnaldo Carvalho de Melo | 0015e2e | 2011-02-01 16:18:10 -0200 | [diff] [blame] | 2585 | out: |
Alexander Antonov | f07952b | 2021-04-19 12:41:44 +0300 | [diff] [blame] | 2586 | if (stat_config.iostat_run) |
| 2587 | iostat_release(evsel_list); |
| 2588 | |
Arnaldo Carvalho de Melo | d8f9da2 | 2019-07-04 12:06:20 -0300 | [diff] [blame] | 2589 | zfree(&stat_config.walltime_run); |
Jiri Olsa | e55c14a | 2018-04-23 11:08:21 +0200 | [diff] [blame] | 2590 | |
Kan Liang | daefd0b | 2017-05-26 12:05:38 -0700 | [diff] [blame] | 2591 | if (smi_cost && smi_reset) |
| 2592 | sysfs__write_int(FREEZE_ON_SMI_PATH, 0); |
| 2593 | |
Jiri Olsa | c12995a | 2019-07-21 13:23:56 +0200 | [diff] [blame] | 2594 | evlist__delete(evsel_list); |
Jin Yao | 5673944 | 2017-12-05 22:03:07 +0800 | [diff] [blame] | 2595 | |
Jiri Olsa | 9afe565 | 2020-06-02 23:47:38 +0200 | [diff] [blame] | 2596 | metricgroup__rblist_exit(&stat_config.metric_events); |
Jin Yao | 5673944 | 2017-12-05 22:03:07 +0800 | [diff] [blame] | 2597 | runtime_stat_delete(&stat_config); |
Adrian Hunter | ee7fe31 | 2020-09-03 15:29:37 +0300 | [diff] [blame] | 2598 | evlist__close_control(stat_config.ctl_fd, stat_config.ctl_fd_ack, &stat_config.ctl_fd_close); |
Jin Yao | 5673944 | 2017-12-05 22:03:07 +0800 | [diff] [blame] | 2599 | |
Ingo Molnar | 42202dd | 2009-06-13 14:57:28 +0200 | [diff] [blame] | 2600 | return status; |
Ingo Molnar | ddcacfa | 2009-04-20 15:37:32 +0200 | [diff] [blame] | 2601 | } |