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