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