blob: 5db83e51ceefb4df6e00f35835209083272bc3a1 [file] [log] [blame]
Arnaldo Carvalho de Melof2a39fe2019-08-30 14:45:20 -03001#include <stdlib.h>
Jiri Olsa088519f2018-08-30 08:32:52 +02002#include <stdio.h>
3#include <inttypes.h>
Arnaldo Carvalho de Melo810826a2019-06-25 21:28:49 -03004#include <linux/string.h>
Jiri Olsa088519f2018-08-30 08:32:52 +02005#include <linux/time64.h>
6#include <math.h>
Ian Rogers7ea82fb2022-01-04 22:13:34 -08007#include <perf/cpumap.h>
Arnaldo Carvalho de Melo8a249c72019-01-22 10:47:38 -02008#include "color.h"
Arnaldo Carvalho de Melobfc49182019-08-21 14:02:05 -03009#include "counts.h"
Jiri Olsa088519f2018-08-30 08:32:52 +020010#include "evlist.h"
11#include "evsel.h"
12#include "stat.h"
13#include "top.h"
14#include "thread_map.h"
15#include "cpumap.h"
16#include "string2.h"
Arnaldo Carvalho de Melo3052ba52019-06-25 17:27:31 -030017#include <linux/ctype.h>
Jiri Olsa088519f2018-08-30 08:32:52 +020018#include "cgroup.h"
Jiri Olsa088519f2018-08-30 08:32:52 +020019#include <api/fs/fs.h>
Kan Liang2a14c1b2020-02-24 13:59:22 -080020#include "util.h"
Alexander Antonovf07952b2021-04-19 12:41:44 +030021#include "iostat.h"
Jin Yao12279422021-04-27 15:01:20 +080022#include "pmu-hybrid.h"
Jin Yao493be702021-06-10 11:45:57 +080023#include "evlist-hybrid.h"
Jiri Olsa088519f2018-08-30 08:32:52 +020024
25#define CNTR_NOT_SUPPORTED "<not supported>"
26#define CNTR_NOT_COUNTED "<not counted>"
27
Jiri Olsa088519f2018-08-30 08:32:52 +020028static void print_running(struct perf_stat_config *config,
29 u64 run, u64 ena)
30{
31 if (config->csv_output) {
32 fprintf(config->output, "%s%" PRIu64 "%s%.2f",
33 config->csv_sep,
34 run,
35 config->csv_sep,
36 ena ? 100.0 * run / ena : 100.0);
37 } else if (run != ena) {
38 fprintf(config->output, " (%.2f%%)", 100.0 * run / ena);
39 }
40}
41
42static void print_noise_pct(struct perf_stat_config *config,
43 double total, double avg)
44{
45 double pct = rel_stddev_stats(total, avg);
46
47 if (config->csv_output)
48 fprintf(config->output, "%s%.2f%%", config->csv_sep, pct);
49 else if (pct)
50 fprintf(config->output, " ( +-%6.2f%% )", pct);
51}
52
53static void print_noise(struct perf_stat_config *config,
Jiri Olsa32dcd022019-07-21 13:23:51 +020054 struct evsel *evsel, double avg)
Jiri Olsa088519f2018-08-30 08:32:52 +020055{
56 struct perf_stat_evsel *ps;
57
58 if (config->run_count == 1)
59 return;
60
61 ps = evsel->stats;
62 print_noise_pct(config, stddev_stats(&ps->res_stats[0]), avg);
63}
64
Jiri Olsa32dcd022019-07-21 13:23:51 +020065static void print_cgroup(struct perf_stat_config *config, struct evsel *evsel)
Stephane Eranianbc4da382018-11-07 02:50:45 -080066{
67 if (nr_cgroups) {
68 const char *cgrp_name = evsel->cgrp ? evsel->cgrp->name : "";
69 fprintf(config->output, "%s%s", config->csv_sep, cgrp_name);
70 }
71}
72
73
Jiri Olsa088519f2018-08-30 08:32:52 +020074static void aggr_printout(struct perf_stat_config *config,
James Clark2760f5a12020-11-26 16:13:20 +020075 struct evsel *evsel, struct aggr_cpu_id id, int nr)
Jiri Olsa088519f2018-08-30 08:32:52 +020076{
77 switch (config->aggr_mode) {
78 case AGGR_CORE:
Kan Liangdb5742b2019-06-04 15:50:42 -070079 fprintf(config->output, "S%d-D%d-C%*d%s%*d%s",
James Clark1a270cb2020-11-26 16:13:25 +020080 id.socket,
James Clarkba2ee162020-11-26 16:13:26 +020081 id.die,
Jiri Olsa088519f2018-08-30 08:32:52 +020082 config->csv_output ? 0 : -8,
James Clarkb9933812020-11-26 16:13:27 +020083 id.core,
Jiri Olsa088519f2018-08-30 08:32:52 +020084 config->csv_sep,
85 config->csv_output ? 0 : 4,
86 nr,
87 config->csv_sep);
88 break;
Kan Liangdb5742b2019-06-04 15:50:42 -070089 case AGGR_DIE:
90 fprintf(config->output, "S%d-D%*d%s%*d%s",
James Clark1a270cb2020-11-26 16:13:25 +020091 id.socket,
Kan Liangdb5742b2019-06-04 15:50:42 -070092 config->csv_output ? 0 : -8,
James Clarkba2ee162020-11-26 16:13:26 +020093 id.die,
Kan Liangdb5742b2019-06-04 15:50:42 -070094 config->csv_sep,
95 config->csv_output ? 0 : 4,
96 nr,
97 config->csv_sep);
98 break;
Jiri Olsa088519f2018-08-30 08:32:52 +020099 case AGGR_SOCKET:
100 fprintf(config->output, "S%*d%s%*d%s",
101 config->csv_output ? 0 : -5,
James Clark1a270cb2020-11-26 16:13:25 +0200102 id.socket,
Jiri Olsa088519f2018-08-30 08:32:52 +0200103 config->csv_sep,
104 config->csv_output ? 0 : 4,
105 nr,
106 config->csv_sep);
107 break;
Jiri Olsa86895b42019-08-28 10:17:43 +0200108 case AGGR_NODE:
109 fprintf(config->output, "N%*d%s%*d%s",
110 config->csv_output ? 0 : -5,
James Clarkfcd83a32020-11-26 16:13:24 +0200111 id.node,
Jiri Olsa86895b42019-08-28 10:17:43 +0200112 config->csv_sep,
113 config->csv_output ? 0 : 4,
114 nr,
115 config->csv_sep);
116 break;
Jiri Olsa088519f2018-08-30 08:32:52 +0200117 case AGGR_NONE:
Jin Yao1af62ce2020-02-14 16:04:52 +0800118 if (evsel->percore && !config->percore_show_thread) {
Kan Liangdb5742b2019-06-04 15:50:42 -0700119 fprintf(config->output, "S%d-D%d-C%*d%s",
James Clark1a270cb2020-11-26 16:13:25 +0200120 id.socket,
James Clarkba2ee162020-11-26 16:13:26 +0200121 id.die,
Jin Yaod13e9e42020-02-18 15:16:14 +0800122 config->csv_output ? 0 : -3,
James Clarkb9933812020-11-26 16:13:27 +0200123 id.core, config->csv_sep);
Ian Rogers6d188042022-01-04 22:13:51 -0800124 } else if (id.cpu.cpu > -1) {
Jin Yaod13e9e42020-02-18 15:16:14 +0800125 fprintf(config->output, "CPU%*d%s",
126 config->csv_output ? 0 : -7,
Ian Rogers6d188042022-01-04 22:13:51 -0800127 id.cpu.cpu, config->csv_sep);
Jin Yao4fc4d8d2019-04-12 21:59:49 +0800128 }
Jiri Olsa088519f2018-08-30 08:32:52 +0200129 break;
130 case AGGR_THREAD:
131 fprintf(config->output, "%*s-%*d%s",
132 config->csv_output ? 0 : 16,
James Clark8d4852b2020-11-26 16:13:28 +0200133 perf_thread_map__comm(evsel->core.threads, id.thread),
Jiri Olsa088519f2018-08-30 08:32:52 +0200134 config->csv_output ? 0 : -8,
James Clark8d4852b2020-11-26 16:13:28 +0200135 perf_thread_map__pid(evsel->core.threads, id.thread),
Jiri Olsa088519f2018-08-30 08:32:52 +0200136 config->csv_sep);
137 break;
138 case AGGR_GLOBAL:
139 case AGGR_UNSET:
140 default:
141 break;
142 }
143}
144
145struct outstate {
146 FILE *fh;
147 bool newline;
148 const char *prefix;
149 int nfields;
James Clark2760f5a12020-11-26 16:13:20 +0200150 int nr;
151 struct aggr_cpu_id id;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200152 struct evsel *evsel;
Jiri Olsa088519f2018-08-30 08:32:52 +0200153};
154
155#define METRIC_LEN 35
156
157static void new_line_std(struct perf_stat_config *config __maybe_unused,
158 void *ctx)
159{
160 struct outstate *os = ctx;
161
162 os->newline = true;
163}
164
165static void do_new_line_std(struct perf_stat_config *config,
166 struct outstate *os)
167{
168 fputc('\n', os->fh);
169 fputs(os->prefix, os->fh);
170 aggr_printout(config, os->evsel, os->id, os->nr);
171 if (config->aggr_mode == AGGR_NONE)
172 fprintf(os->fh, " ");
173 fprintf(os->fh, " ");
174}
175
176static void print_metric_std(struct perf_stat_config *config,
177 void *ctx, const char *color, const char *fmt,
178 const char *unit, double val)
179{
180 struct outstate *os = ctx;
181 FILE *out = os->fh;
182 int n;
183 bool newline = os->newline;
184
185 os->newline = false;
186
187 if (unit == NULL || fmt == NULL) {
188 fprintf(out, "%-*s", METRIC_LEN, "");
189 return;
190 }
191
192 if (newline)
193 do_new_line_std(config, os);
194
195 n = fprintf(out, " # ");
196 if (color)
197 n += color_fprintf(out, color, fmt, val);
198 else
199 n += fprintf(out, fmt, val);
200 fprintf(out, " %-*s", METRIC_LEN - n - 1, unit);
201}
202
203static void new_line_csv(struct perf_stat_config *config, void *ctx)
204{
205 struct outstate *os = ctx;
206 int i;
207
208 fputc('\n', os->fh);
209 if (os->prefix)
210 fprintf(os->fh, "%s%s", os->prefix, config->csv_sep);
211 aggr_printout(config, os->evsel, os->id, os->nr);
212 for (i = 0; i < os->nfields; i++)
213 fputs(config->csv_sep, os->fh);
214}
215
216static void print_metric_csv(struct perf_stat_config *config __maybe_unused,
217 void *ctx,
218 const char *color __maybe_unused,
219 const char *fmt, const char *unit, double val)
220{
221 struct outstate *os = ctx;
222 FILE *out = os->fh;
223 char buf[64], *vals, *ends;
224
225 if (unit == NULL || fmt == NULL) {
226 fprintf(out, "%s%s", config->csv_sep, config->csv_sep);
227 return;
228 }
229 snprintf(buf, sizeof(buf), fmt, val);
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -0300230 ends = vals = skip_spaces(buf);
Jiri Olsa088519f2018-08-30 08:32:52 +0200231 while (isdigit(*ends) || *ends == '.')
232 ends++;
233 *ends = 0;
Arnaldo Carvalho de Melo810826a2019-06-25 21:28:49 -0300234 fprintf(out, "%s%s%s%s", config->csv_sep, vals, config->csv_sep, skip_spaces(unit));
Jiri Olsa088519f2018-08-30 08:32:52 +0200235}
236
237/* Filter out some columns that don't work well in metrics only mode */
238
239static bool valid_only_metric(const char *unit)
240{
241 if (!unit)
242 return false;
243 if (strstr(unit, "/sec") ||
Jiri Olsa088519f2018-08-30 08:32:52 +0200244 strstr(unit, "CPUs utilized"))
245 return false;
246 return true;
247}
248
Jiri Olsa32dcd022019-07-21 13:23:51 +0200249static const char *fixunit(char *buf, struct evsel *evsel,
Jiri Olsa088519f2018-08-30 08:32:52 +0200250 const char *unit)
251{
252 if (!strncmp(unit, "of all", 6)) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300253 snprintf(buf, 1024, "%s %s", evsel__name(evsel),
Jiri Olsa088519f2018-08-30 08:32:52 +0200254 unit);
255 return buf;
256 }
257 return unit;
258}
259
260static void print_metric_only(struct perf_stat_config *config,
261 void *ctx, const char *color, const char *fmt,
262 const char *unit, double val)
263{
264 struct outstate *os = ctx;
265 FILE *out = os->fh;
266 char buf[1024], str[1024];
267 unsigned mlen = config->metric_only_len;
268
269 if (!valid_only_metric(unit))
270 return;
271 unit = fixunit(buf, os->evsel, unit);
272 if (mlen < strlen(unit))
273 mlen = strlen(unit) + 1;
274
275 if (color)
276 mlen += strlen(color) + sizeof(PERF_COLOR_RESET) - 1;
277
278 color_snprintf(str, sizeof(str), color ?: "", fmt, val);
279 fprintf(out, "%*s ", mlen, str);
280}
281
282static void print_metric_only_csv(struct perf_stat_config *config __maybe_unused,
283 void *ctx, const char *color __maybe_unused,
284 const char *fmt,
285 const char *unit, double val)
286{
287 struct outstate *os = ctx;
288 FILE *out = os->fh;
289 char buf[64], *vals, *ends;
290 char tbuf[1024];
291
292 if (!valid_only_metric(unit))
293 return;
294 unit = fixunit(tbuf, os->evsel, unit);
295 snprintf(buf, sizeof buf, fmt, val);
Arnaldo Carvalho de Melo32858482019-06-26 11:42:03 -0300296 ends = vals = skip_spaces(buf);
Jiri Olsa088519f2018-08-30 08:32:52 +0200297 while (isdigit(*ends) || *ends == '.')
298 ends++;
299 *ends = 0;
300 fprintf(out, "%s%s", vals, config->csv_sep);
301}
302
303static void new_line_metric(struct perf_stat_config *config __maybe_unused,
304 void *ctx __maybe_unused)
305{
306}
307
308static void print_metric_header(struct perf_stat_config *config,
309 void *ctx, const char *color __maybe_unused,
310 const char *fmt __maybe_unused,
311 const char *unit, double val __maybe_unused)
312{
313 struct outstate *os = ctx;
314 char tbuf[1024];
315
Alexander Antonovf07952b2021-04-19 12:41:44 +0300316 /* In case of iostat, print metric header for first root port only */
317 if (config->iostat_run &&
318 os->evsel->priv != os->evsel->evlist->selected->priv)
319 return;
320
Jiri Olsa088519f2018-08-30 08:32:52 +0200321 if (!valid_only_metric(unit))
322 return;
323 unit = fixunit(tbuf, os->evsel, unit);
324 if (config->csv_output)
325 fprintf(os->fh, "%s%s", unit, config->csv_sep);
326 else
327 fprintf(os->fh, "%*s ", config->metric_only_len, unit);
328}
329
Ian Rogersce37ab32022-01-04 22:13:50 -0800330static int first_shadow_cpu_map_idx(struct perf_stat_config *config,
331 struct evsel *evsel, const struct aggr_cpu_id *id)
Jiri Olsa088519f2018-08-30 08:32:52 +0200332{
Ian Rogersce37ab32022-01-04 22:13:50 -0800333 struct perf_cpu_map *cpus = evsel__cpus(evsel);
Ian Rogers6d188042022-01-04 22:13:51 -0800334 struct perf_cpu cpu;
335 int idx;
Jiri Olsa088519f2018-08-30 08:32:52 +0200336
Jiri Olsa088519f2018-08-30 08:32:52 +0200337 if (config->aggr_mode == AGGR_NONE)
Ian Rogersce37ab32022-01-04 22:13:50 -0800338 return perf_cpu_map__idx(cpus, id->cpu);
Jiri Olsa088519f2018-08-30 08:32:52 +0200339
Namhyung Kimc0ee1d5a2020-11-27 13:14:03 +0900340 if (!config->aggr_get_id)
Jiri Olsa088519f2018-08-30 08:32:52 +0200341 return 0;
342
Ian Rogersa0232832022-01-04 22:13:07 -0800343 perf_cpu_map__for_each_cpu(cpu, idx, cpus) {
Ian Rogers3ac23d12022-01-04 22:13:16 -0800344 struct aggr_cpu_id cpu_id = config->aggr_get_id(config, cpu);
345
346 if (aggr_cpu_id__equal(&cpu_id, id))
Ian Rogersce37ab32022-01-04 22:13:50 -0800347 return idx;
Jiri Olsa088519f2018-08-30 08:32:52 +0200348 }
349 return 0;
350}
351
352static void abs_printout(struct perf_stat_config *config,
James Clark2760f5a12020-11-26 16:13:20 +0200353 struct aggr_cpu_id id, int nr, struct evsel *evsel, double avg)
Jiri Olsa088519f2018-08-30 08:32:52 +0200354{
355 FILE *output = config->output;
356 double sc = evsel->scale;
357 const char *fmt;
358
359 if (config->csv_output) {
360 fmt = floor(sc) != sc ? "%.2f%s" : "%.0f%s";
361 } else {
362 if (config->big_num)
363 fmt = floor(sc) != sc ? "%'18.2f%s" : "%'18.0f%s";
364 else
365 fmt = floor(sc) != sc ? "%18.2f%s" : "%18.0f%s";
366 }
367
368 aggr_printout(config, evsel, id, nr);
369
370 fprintf(output, fmt, avg, config->csv_sep);
371
372 if (evsel->unit)
373 fprintf(output, "%-*s%s",
374 config->csv_output ? 0 : config->unit_width,
375 evsel->unit, config->csv_sep);
376
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300377 fprintf(output, "%-*s", config->csv_output ? 0 : 25, evsel__name(evsel));
Jiri Olsa088519f2018-08-30 08:32:52 +0200378
Stephane Eranianbc4da382018-11-07 02:50:45 -0800379 print_cgroup(config, evsel);
Jiri Olsa088519f2018-08-30 08:32:52 +0200380}
381
Jiri Olsa32dcd022019-07-21 13:23:51 +0200382static bool is_mixed_hw_group(struct evsel *counter)
Jiri Olsa088519f2018-08-30 08:32:52 +0200383{
Jiri Olsa63503db2019-07-21 13:23:52 +0200384 struct evlist *evlist = counter->evlist;
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200385 u32 pmu_type = counter->core.attr.type;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200386 struct evsel *pos;
Jiri Olsa088519f2018-08-30 08:32:52 +0200387
Jiri Olsa5643b1a2019-07-21 13:24:46 +0200388 if (counter->core.nr_members < 2)
Jiri Olsa088519f2018-08-30 08:32:52 +0200389 return false;
390
391 evlist__for_each_entry(evlist, pos) {
392 /* software events can be part of any hardware group */
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200393 if (pos->core.attr.type == PERF_TYPE_SOFTWARE)
Jiri Olsa088519f2018-08-30 08:32:52 +0200394 continue;
395 if (pmu_type == PERF_TYPE_SOFTWARE) {
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200396 pmu_type = pos->core.attr.type;
Jiri Olsa088519f2018-08-30 08:32:52 +0200397 continue;
398 }
Jiri Olsa1fc632c2019-07-21 13:24:29 +0200399 if (pmu_type != pos->core.attr.type)
Jiri Olsa088519f2018-08-30 08:32:52 +0200400 return true;
401 }
402
403 return false;
404}
405
James Clark2760f5a12020-11-26 16:13:20 +0200406static void printout(struct perf_stat_config *config, struct aggr_cpu_id id, int nr,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200407 struct evsel *counter, double uval,
Jiri Olsa088519f2018-08-30 08:32:52 +0200408 char *prefix, u64 run, u64 ena, double noise,
409 struct runtime_stat *st)
410{
411 struct perf_stat_output_ctx out;
412 struct outstate os = {
413 .fh = config->output,
414 .prefix = prefix ? prefix : "",
415 .id = id,
416 .nr = nr,
417 .evsel = counter,
418 };
419 print_metric_t pm = print_metric_std;
420 new_line_t nl;
421
422 if (config->metric_only) {
423 nl = new_line_metric;
424 if (config->csv_output)
425 pm = print_metric_only_csv;
426 else
427 pm = print_metric_only;
428 } else
429 nl = new_line_std;
430
431 if (config->csv_output && !config->metric_only) {
432 static int aggr_fields[] = {
433 [AGGR_GLOBAL] = 0,
434 [AGGR_THREAD] = 1,
435 [AGGR_NONE] = 1,
436 [AGGR_SOCKET] = 2,
Kan Liangdb5742b2019-06-04 15:50:42 -0700437 [AGGR_DIE] = 2,
Jiri Olsa088519f2018-08-30 08:32:52 +0200438 [AGGR_CORE] = 2,
439 };
440
441 pm = print_metric_csv;
442 nl = new_line_csv;
443 os.nfields = 3;
444 os.nfields += aggr_fields[config->aggr_mode];
445 if (counter->cgrp)
446 os.nfields++;
447 }
Jin Yao0bdad972021-03-19 15:01:55 +0800448
449 if (!config->no_csv_summary && config->csv_output &&
450 config->summary && !config->interval) {
451 fprintf(config->output, "%16s%s", "summary", config->csv_sep);
452 }
453
Jiri Olsa088519f2018-08-30 08:32:52 +0200454 if (run == 0 || ena == 0 || counter->counts->scaled == -1) {
455 if (config->metric_only) {
456 pm(config, &os, NULL, "", "", 0);
457 return;
458 }
459 aggr_printout(config, counter, id, nr);
460
461 fprintf(config->output, "%*s%s",
462 config->csv_output ? 0 : 18,
463 counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
464 config->csv_sep);
465
466 if (counter->supported) {
Jin Yao493be702021-06-10 11:45:57 +0800467 if (!evlist__has_hybrid(counter->evlist)) {
468 config->print_free_counters_hint = 1;
469 if (is_mixed_hw_group(counter))
470 config->print_mixed_hw_group_error = 1;
471 }
Jiri Olsa088519f2018-08-30 08:32:52 +0200472 }
473
474 fprintf(config->output, "%-*s%s",
475 config->csv_output ? 0 : config->unit_width,
476 counter->unit, config->csv_sep);
477
478 fprintf(config->output, "%*s",
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300479 config->csv_output ? 0 : -25, evsel__name(counter));
Jiri Olsa088519f2018-08-30 08:32:52 +0200480
Stephane Eranianbc4da382018-11-07 02:50:45 -0800481 print_cgroup(config, counter);
Jiri Olsa088519f2018-08-30 08:32:52 +0200482
483 if (!config->csv_output)
484 pm(config, &os, NULL, NULL, "", 0);
485 print_noise(config, counter, noise);
486 print_running(config, run, ena);
487 if (config->csv_output)
488 pm(config, &os, NULL, NULL, "", 0);
489 return;
490 }
491
492 if (!config->metric_only)
493 abs_printout(config, id, nr, counter, uval);
494
495 out.print_metric = pm;
496 out.new_line = nl;
497 out.ctx = &os;
498 out.force_header = false;
499
500 if (config->csv_output && !config->metric_only) {
501 print_noise(config, counter, noise);
502 print_running(config, run, ena);
503 }
504
505 perf_stat__print_shadow_stats(config, counter, uval,
Ian Rogersce37ab32022-01-04 22:13:50 -0800506 first_shadow_cpu_map_idx(config, counter, &id),
Jiri Olsa088519f2018-08-30 08:32:52 +0200507 &out, &config->metric_events, st);
508 if (!config->csv_output && !config->metric_only) {
509 print_noise(config, counter, noise);
510 print_running(config, run, ena);
511 }
512}
513
514static void aggr_update_shadow(struct perf_stat_config *config,
Jiri Olsa63503db2019-07-21 13:23:52 +0200515 struct evlist *evlist)
Jiri Olsa088519f2018-08-30 08:32:52 +0200516{
Ian Rogers6d188042022-01-04 22:13:51 -0800517 int idx, s;
518 struct perf_cpu cpu;
James Clark2760f5a12020-11-26 16:13:20 +0200519 struct aggr_cpu_id s2, id;
Jiri Olsa088519f2018-08-30 08:32:52 +0200520 u64 val;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200521 struct evsel *counter;
Ian Rogersa0232832022-01-04 22:13:07 -0800522 struct perf_cpu_map *cpus;
Jiri Olsa088519f2018-08-30 08:32:52 +0200523
524 for (s = 0; s < config->aggr_map->nr; s++) {
James Clarkff523292020-11-26 16:13:23 +0200525 id = config->aggr_map->map[s];
Jiri Olsa088519f2018-08-30 08:32:52 +0200526 evlist__for_each_entry(evlist, counter) {
Ian Rogersa0232832022-01-04 22:13:07 -0800527 cpus = evsel__cpus(counter);
Jiri Olsa088519f2018-08-30 08:32:52 +0200528 val = 0;
Ian Rogersa0232832022-01-04 22:13:07 -0800529 perf_cpu_map__for_each_cpu(cpu, idx, cpus) {
Ian Rogers88031a02022-01-04 22:13:08 -0800530 s2 = config->aggr_get_id(config, cpu);
Ian Rogers3ac23d12022-01-04 22:13:16 -0800531 if (!aggr_cpu_id__equal(&s2, &id))
Jiri Olsa088519f2018-08-30 08:32:52 +0200532 continue;
Ian Rogersa0232832022-01-04 22:13:07 -0800533 val += perf_counts(counter->counts, idx, 0)->val;
Jiri Olsa088519f2018-08-30 08:32:52 +0200534 }
535 perf_stat__update_shadow_stats(counter, val,
Ian Rogersce37ab32022-01-04 22:13:50 -0800536 first_shadow_cpu_map_idx(config, counter, &id),
Jiri Olsa088519f2018-08-30 08:32:52 +0200537 &rt_stat);
538 }
539 }
540}
541
Jiri Olsa32dcd022019-07-21 13:23:51 +0200542static void uniquify_event_name(struct evsel *counter)
Jiri Olsa088519f2018-08-30 08:32:52 +0200543{
544 char *new_name;
545 char *config;
Jin Yao12279422021-04-27 15:01:20 +0800546 int ret = 0;
Jiri Olsa088519f2018-08-30 08:32:52 +0200547
Namhyung Kim3cc84392021-06-02 14:22:41 -0700548 if (counter->uniquified_name || counter->use_config_name ||
Jiri Olsa088519f2018-08-30 08:32:52 +0200549 !counter->pmu_name || !strncmp(counter->name, counter->pmu_name,
550 strlen(counter->pmu_name)))
551 return;
552
553 config = strchr(counter->name, '/');
554 if (config) {
555 if (asprintf(&new_name,
556 "%s%s", counter->pmu_name, config) > 0) {
557 free(counter->name);
558 counter->name = new_name;
559 }
560 } else {
Jin Yao12279422021-04-27 15:01:20 +0800561 if (perf_pmu__has_hybrid()) {
Namhyung Kim3cc84392021-06-02 14:22:41 -0700562 ret = asprintf(&new_name, "%s/%s/",
563 counter->pmu_name, counter->name);
Jin Yao12279422021-04-27 15:01:20 +0800564 } else {
565 ret = asprintf(&new_name, "%s [%s]",
566 counter->name, counter->pmu_name);
567 }
568
569 if (ret) {
Jiri Olsa088519f2018-08-30 08:32:52 +0200570 free(counter->name);
571 counter->name = new_name;
572 }
573 }
574
575 counter->uniquified_name = true;
576}
577
Jiri Olsa32dcd022019-07-21 13:23:51 +0200578static void collect_all_aliases(struct perf_stat_config *config, struct evsel *counter,
579 void (*cb)(struct perf_stat_config *config, struct evsel *counter, void *data,
Jiri Olsa088519f2018-08-30 08:32:52 +0200580 bool first),
581 void *data)
582{
Jiri Olsa63503db2019-07-21 13:23:52 +0200583 struct evlist *evlist = counter->evlist;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200584 struct evsel *alias;
Jiri Olsa088519f2018-08-30 08:32:52 +0200585
Jiri Olsace9036a2019-07-21 13:24:23 +0200586 alias = list_prepare_entry(counter, &(evlist->core.entries), core.node);
587 list_for_each_entry_continue (alias, &evlist->core.entries, core.node) {
Arnaldo Carvalho de Melo8ab2e962020-04-29 16:07:09 -0300588 if (strcmp(evsel__name(alias), evsel__name(counter)) ||
Jiri Olsa088519f2018-08-30 08:32:52 +0200589 alias->scale != counter->scale ||
590 alias->cgrp != counter->cgrp ||
591 strcmp(alias->unit, counter->unit) ||
Arnaldo Carvalho de Meloc754c382020-04-30 10:51:16 -0300592 evsel__is_clock(alias) != evsel__is_clock(counter) ||
Andi Kleen6c5f4e52019-06-24 12:37:09 -0700593 !strcmp(alias->pmu_name, counter->pmu_name))
Jiri Olsa088519f2018-08-30 08:32:52 +0200594 break;
595 alias->merged_stat = true;
596 cb(config, alias, data, false);
597 }
598}
599
Jin Yaoe0a7ef22021-07-07 13:56:52 +0800600static bool is_uncore(struct evsel *evsel)
601{
602 struct perf_pmu *pmu = evsel__find_pmu(evsel);
603
604 return pmu && pmu->is_uncore;
605}
606
607static bool hybrid_uniquify(struct evsel *evsel)
608{
609 return perf_pmu__has_hybrid() && !is_uncore(evsel);
610}
611
Jiri Olsa32dcd022019-07-21 13:23:51 +0200612static bool collect_data(struct perf_stat_config *config, struct evsel *counter,
613 void (*cb)(struct perf_stat_config *config, struct evsel *counter, void *data,
Jiri Olsa088519f2018-08-30 08:32:52 +0200614 bool first),
615 void *data)
616{
617 if (counter->merged_stat)
618 return false;
619 cb(config, counter, data, true);
Jin Yaoe0a7ef22021-07-07 13:56:52 +0800620 if (config->no_merge || hybrid_uniquify(counter))
Jiri Olsa088519f2018-08-30 08:32:52 +0200621 uniquify_event_name(counter);
622 else if (counter->auto_merge_stats)
623 collect_all_aliases(config, counter, cb, data);
624 return true;
625}
626
627struct aggr_data {
628 u64 ena, run, val;
James Clark2760f5a12020-11-26 16:13:20 +0200629 struct aggr_cpu_id id;
Jiri Olsa088519f2018-08-30 08:32:52 +0200630 int nr;
Ian Rogersab90caa72022-01-04 22:13:33 -0800631 int cpu_map_idx;
Jiri Olsa088519f2018-08-30 08:32:52 +0200632};
633
634static void aggr_cb(struct perf_stat_config *config,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200635 struct evsel *counter, void *data, bool first)
Jiri Olsa088519f2018-08-30 08:32:52 +0200636{
637 struct aggr_data *ad = data;
Ian Rogers6d188042022-01-04 22:13:51 -0800638 int idx;
639 struct perf_cpu cpu;
Ian Rogersa0232832022-01-04 22:13:07 -0800640 struct perf_cpu_map *cpus;
James Clark2760f5a12020-11-26 16:13:20 +0200641 struct aggr_cpu_id s2;
Jiri Olsa088519f2018-08-30 08:32:52 +0200642
Ian Rogersa0232832022-01-04 22:13:07 -0800643 cpus = evsel__cpus(counter);
644 perf_cpu_map__for_each_cpu(cpu, idx, cpus) {
Jiri Olsa088519f2018-08-30 08:32:52 +0200645 struct perf_counts_values *counts;
646
Ian Rogers88031a02022-01-04 22:13:08 -0800647 s2 = config->aggr_get_id(config, cpu);
Ian Rogers3ac23d12022-01-04 22:13:16 -0800648 if (!aggr_cpu_id__equal(&s2, &ad->id))
Jiri Olsa088519f2018-08-30 08:32:52 +0200649 continue;
650 if (first)
651 ad->nr++;
Ian Rogersa0232832022-01-04 22:13:07 -0800652 counts = perf_counts(counter->counts, idx, 0);
Jiri Olsa088519f2018-08-30 08:32:52 +0200653 /*
654 * When any result is bad, make them all to give
655 * consistent output in interval mode.
656 */
657 if (counts->ena == 0 || counts->run == 0 ||
658 counter->counts->scaled == -1) {
659 ad->ena = 0;
660 ad->run = 0;
661 break;
662 }
663 ad->val += counts->val;
664 ad->ena += counts->ena;
665 ad->run += counts->run;
666 }
667}
668
Jin Yao40480a82019-04-12 21:59:48 +0800669static void print_counter_aggrdata(struct perf_stat_config *config,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200670 struct evsel *counter, int s,
Jin Yao40480a82019-04-12 21:59:48 +0800671 char *prefix, bool metric_only,
Ian Rogers6d188042022-01-04 22:13:51 -0800672 bool *first, struct perf_cpu cpu)
Jin Yao40480a82019-04-12 21:59:48 +0800673{
674 struct aggr_data ad;
675 FILE *output = config->output;
676 u64 ena, run, val;
James Clark2760f5a12020-11-26 16:13:20 +0200677 int nr;
678 struct aggr_cpu_id id;
Jin Yao40480a82019-04-12 21:59:48 +0800679 double uval;
680
James Clarkff523292020-11-26 16:13:23 +0200681 ad.id = id = config->aggr_map->map[s];
Jin Yao40480a82019-04-12 21:59:48 +0800682 ad.val = ad.ena = ad.run = 0;
683 ad.nr = 0;
684 if (!collect_data(config, counter, aggr_cb, &ad))
685 return;
686
Jin Yao92637cc2021-04-27 15:01:28 +0800687 if (perf_pmu__has_hybrid() && ad.ena == 0)
688 return;
689
Jin Yao40480a82019-04-12 21:59:48 +0800690 nr = ad.nr;
691 ena = ad.ena;
692 run = ad.run;
693 val = ad.val;
694 if (*first && metric_only) {
695 *first = false;
696 aggr_printout(config, counter, id, nr);
697 }
698 if (prefix && !metric_only)
699 fprintf(output, "%s", prefix);
700
701 uval = val * counter->scale;
Ian Rogers6d188042022-01-04 22:13:51 -0800702 if (cpu.cpu != -1)
Ian Rogers7365f102022-01-04 22:13:28 -0800703 id = aggr_cpu_id__cpu(cpu, /*data=*/NULL);
704
James Clark2760f5a12020-11-26 16:13:20 +0200705 printout(config, id, nr, counter, uval,
706 prefix, run, ena, 1.0, &rt_stat);
Jin Yao40480a82019-04-12 21:59:48 +0800707 if (!metric_only)
708 fputc('\n', output);
709}
710
Jiri Olsa088519f2018-08-30 08:32:52 +0200711static void print_aggr(struct perf_stat_config *config,
Jiri Olsa63503db2019-07-21 13:23:52 +0200712 struct evlist *evlist,
Jiri Olsa088519f2018-08-30 08:32:52 +0200713 char *prefix)
714{
715 bool metric_only = config->metric_only;
716 FILE *output = config->output;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200717 struct evsel *counter;
Jin Yao40480a82019-04-12 21:59:48 +0800718 int s;
Jiri Olsa088519f2018-08-30 08:32:52 +0200719 bool first;
720
Hongbo Yaoc0c652f2020-06-05 17:17:40 +0800721 if (!config->aggr_map || !config->aggr_get_id)
Jiri Olsa088519f2018-08-30 08:32:52 +0200722 return;
723
724 aggr_update_shadow(config, evlist);
725
726 /*
727 * With metric_only everything is on a single line.
728 * Without each counter has its own line.
729 */
730 for (s = 0; s < config->aggr_map->nr; s++) {
Jiri Olsa088519f2018-08-30 08:32:52 +0200731 if (prefix && metric_only)
732 fprintf(output, "%s", prefix);
733
Jiri Olsa088519f2018-08-30 08:32:52 +0200734 first = true;
735 evlist__for_each_entry(evlist, counter) {
Jin Yao40480a82019-04-12 21:59:48 +0800736 print_counter_aggrdata(config, counter, s,
Ian Rogers6d188042022-01-04 22:13:51 -0800737 prefix, metric_only,
738 &first, (struct perf_cpu){ .cpu = -1 });
Jiri Olsa088519f2018-08-30 08:32:52 +0200739 }
740 if (metric_only)
741 fputc('\n', output);
742 }
743}
744
745static int cmp_val(const void *a, const void *b)
746{
747 return ((struct perf_aggr_thread_value *)b)->val -
748 ((struct perf_aggr_thread_value *)a)->val;
749}
750
751static struct perf_aggr_thread_value *sort_aggr_thread(
Jiri Olsa32dcd022019-07-21 13:23:51 +0200752 struct evsel *counter,
Jiri Olsa088519f2018-08-30 08:32:52 +0200753 int nthreads, int ncpus,
754 int *ret,
755 struct target *_target)
756{
757 int cpu, thread, i = 0;
758 double uval;
759 struct perf_aggr_thread_value *buf;
760
761 buf = calloc(nthreads, sizeof(struct perf_aggr_thread_value));
762 if (!buf)
763 return NULL;
764
765 for (thread = 0; thread < nthreads; thread++) {
766 u64 ena = 0, run = 0, val = 0;
767
768 for (cpu = 0; cpu < ncpus; cpu++) {
769 val += perf_counts(counter->counts, cpu, thread)->val;
770 ena += perf_counts(counter->counts, cpu, thread)->ena;
771 run += perf_counts(counter->counts, cpu, thread)->run;
772 }
773
774 uval = val * counter->scale;
775
776 /*
777 * Skip value 0 when enabling --per-thread globally,
778 * otherwise too many 0 output.
779 */
780 if (uval == 0.0 && target__has_per_thread(_target))
781 continue;
782
783 buf[i].counter = counter;
Ian Rogers51b826f2022-01-04 22:13:17 -0800784 buf[i].id = aggr_cpu_id__empty();
James Clark8d4852b2020-11-26 16:13:28 +0200785 buf[i].id.thread = thread;
Jiri Olsa088519f2018-08-30 08:32:52 +0200786 buf[i].uval = uval;
787 buf[i].val = val;
788 buf[i].run = run;
789 buf[i].ena = ena;
790 i++;
791 }
792
793 qsort(buf, i, sizeof(struct perf_aggr_thread_value), cmp_val);
794
795 if (ret)
796 *ret = i;
797
798 return buf;
799}
800
801static void print_aggr_thread(struct perf_stat_config *config,
802 struct target *_target,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200803 struct evsel *counter, char *prefix)
Jiri Olsa088519f2018-08-30 08:32:52 +0200804{
805 FILE *output = config->output;
Jiri Olsaa2f354e2019-08-22 13:11:41 +0200806 int nthreads = perf_thread_map__nr(counter->core.threads);
Jiri Olsa6549cd82019-08-22 13:11:38 +0200807 int ncpus = perf_cpu_map__nr(counter->core.cpus);
James Clark2760f5a12020-11-26 16:13:20 +0200808 int thread, sorted_threads;
809 struct aggr_cpu_id id;
Jiri Olsa088519f2018-08-30 08:32:52 +0200810 struct perf_aggr_thread_value *buf;
811
812 buf = sort_aggr_thread(counter, nthreads, ncpus, &sorted_threads, _target);
813 if (!buf) {
814 perror("cannot sort aggr thread");
815 return;
816 }
817
818 for (thread = 0; thread < sorted_threads; thread++) {
819 if (prefix)
820 fprintf(output, "%s", prefix);
821
822 id = buf[thread].id;
823 if (config->stats)
824 printout(config, id, 0, buf[thread].counter, buf[thread].uval,
825 prefix, buf[thread].run, buf[thread].ena, 1.0,
James Clark8d4852b2020-11-26 16:13:28 +0200826 &config->stats[id.thread]);
Jiri Olsa088519f2018-08-30 08:32:52 +0200827 else
828 printout(config, id, 0, buf[thread].counter, buf[thread].uval,
829 prefix, buf[thread].run, buf[thread].ena, 1.0,
830 &rt_stat);
831 fputc('\n', output);
832 }
833
834 free(buf);
835}
836
837struct caggr_data {
838 double avg, avg_enabled, avg_running;
839};
840
841static void counter_aggr_cb(struct perf_stat_config *config __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200842 struct evsel *counter, void *data,
Jiri Olsa088519f2018-08-30 08:32:52 +0200843 bool first __maybe_unused)
844{
845 struct caggr_data *cd = data;
Namhyung Kim07b747f2021-04-22 19:38:33 -0700846 struct perf_counts_values *aggr = &counter->counts->aggr;
Jiri Olsa088519f2018-08-30 08:32:52 +0200847
Namhyung Kim07b747f2021-04-22 19:38:33 -0700848 cd->avg += aggr->val;
849 cd->avg_enabled += aggr->ena;
850 cd->avg_running += aggr->run;
Jiri Olsa088519f2018-08-30 08:32:52 +0200851}
852
853/*
854 * Print out the results of a single counter:
855 * aggregated counts in system-wide mode
856 */
857static void print_counter_aggr(struct perf_stat_config *config,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200858 struct evsel *counter, char *prefix)
Jiri Olsa088519f2018-08-30 08:32:52 +0200859{
860 bool metric_only = config->metric_only;
861 FILE *output = config->output;
862 double uval;
863 struct caggr_data cd = { .avg = 0.0 };
864
865 if (!collect_data(config, counter, counter_aggr_cb, &cd))
866 return;
867
868 if (prefix && !metric_only)
869 fprintf(output, "%s", prefix);
870
871 uval = cd.avg * counter->scale;
Ian Rogers51b826f2022-01-04 22:13:17 -0800872 printout(config, aggr_cpu_id__empty(), 0, counter, uval, prefix, cd.avg_running,
James Clark2760f5a12020-11-26 16:13:20 +0200873 cd.avg_enabled, cd.avg, &rt_stat);
Jiri Olsa088519f2018-08-30 08:32:52 +0200874 if (!metric_only)
875 fprintf(output, "\n");
876}
877
878static void counter_cb(struct perf_stat_config *config __maybe_unused,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200879 struct evsel *counter, void *data,
Jiri Olsa088519f2018-08-30 08:32:52 +0200880 bool first __maybe_unused)
881{
882 struct aggr_data *ad = data;
883
Ian Rogersab90caa72022-01-04 22:13:33 -0800884 ad->val += perf_counts(counter->counts, ad->cpu_map_idx, 0)->val;
885 ad->ena += perf_counts(counter->counts, ad->cpu_map_idx, 0)->ena;
886 ad->run += perf_counts(counter->counts, ad->cpu_map_idx, 0)->run;
Jiri Olsa088519f2018-08-30 08:32:52 +0200887}
888
889/*
890 * Print out the results of a single counter:
891 * does not use aggregated count in system-wide
892 */
893static void print_counter(struct perf_stat_config *config,
Jiri Olsa32dcd022019-07-21 13:23:51 +0200894 struct evsel *counter, char *prefix)
Jiri Olsa088519f2018-08-30 08:32:52 +0200895{
896 FILE *output = config->output;
897 u64 ena, run, val;
898 double uval;
Ian Rogers6d188042022-01-04 22:13:51 -0800899 int idx;
900 struct perf_cpu cpu;
James Clark2760f5a12020-11-26 16:13:20 +0200901 struct aggr_cpu_id id;
Jiri Olsa088519f2018-08-30 08:32:52 +0200902
Ian Rogers7ea82fb2022-01-04 22:13:34 -0800903 perf_cpu_map__for_each_cpu(cpu, idx, evsel__cpus(counter)) {
904 struct aggr_data ad = { .cpu_map_idx = idx };
Jiri Olsa088519f2018-08-30 08:32:52 +0200905
906 if (!collect_data(config, counter, counter_cb, &ad))
907 return;
908 val = ad.val;
909 ena = ad.ena;
910 run = ad.run;
911
912 if (prefix)
913 fprintf(output, "%s", prefix);
914
915 uval = val * counter->scale;
Ian Rogers7365f102022-01-04 22:13:28 -0800916 id = aggr_cpu_id__cpu(cpu, /*data=*/NULL);
James Clark2760f5a12020-11-26 16:13:20 +0200917 printout(config, id, 0, counter, uval, prefix,
918 run, ena, 1.0, &rt_stat);
Jiri Olsa088519f2018-08-30 08:32:52 +0200919
920 fputc('\n', output);
921 }
922}
923
924static void print_no_aggr_metric(struct perf_stat_config *config,
Jiri Olsa63503db2019-07-21 13:23:52 +0200925 struct evlist *evlist,
Jiri Olsa088519f2018-08-30 08:32:52 +0200926 char *prefix)
927{
Ian Rogers6d188042022-01-04 22:13:51 -0800928 int all_idx;
929 struct perf_cpu cpu;
Jiri Olsa088519f2018-08-30 08:32:52 +0200930
Ian Rogers7365f102022-01-04 22:13:28 -0800931 perf_cpu_map__for_each_cpu(cpu, all_idx, evlist->core.cpus) {
932 struct evsel *counter;
Jiri Olsa088519f2018-08-30 08:32:52 +0200933 bool first = true;
934
935 if (prefix)
936 fputs(prefix, config->output);
937 evlist__for_each_entry(evlist, counter) {
Ian Rogers7365f102022-01-04 22:13:28 -0800938 u64 ena, run, val;
939 double uval;
940 struct aggr_cpu_id id;
941 int counter_idx = perf_cpu_map__idx(evsel__cpus(counter), cpu);
942
943 if (counter_idx < 0)
944 continue;
945
946 id = aggr_cpu_id__cpu(cpu, /*data=*/NULL);
Jiri Olsa088519f2018-08-30 08:32:52 +0200947 if (first) {
James Clark2760f5a12020-11-26 16:13:20 +0200948 aggr_printout(config, counter, id, 0);
Jiri Olsa088519f2018-08-30 08:32:52 +0200949 first = false;
950 }
Ian Rogers7365f102022-01-04 22:13:28 -0800951 val = perf_counts(counter->counts, counter_idx, 0)->val;
952 ena = perf_counts(counter->counts, counter_idx, 0)->ena;
953 run = perf_counts(counter->counts, counter_idx, 0)->run;
Jiri Olsa088519f2018-08-30 08:32:52 +0200954
955 uval = val * counter->scale;
James Clark2760f5a12020-11-26 16:13:20 +0200956 printout(config, id, 0, counter, uval, prefix,
957 run, ena, 1.0, &rt_stat);
Jiri Olsa088519f2018-08-30 08:32:52 +0200958 }
959 fputc('\n', config->output);
960 }
961}
962
963static int aggr_header_lens[] = {
Kan Liangdb5742b2019-06-04 15:50:42 -0700964 [AGGR_CORE] = 24,
965 [AGGR_DIE] = 18,
Jiri Olsa088519f2018-08-30 08:32:52 +0200966 [AGGR_SOCKET] = 12,
967 [AGGR_NONE] = 6,
968 [AGGR_THREAD] = 24,
969 [AGGR_GLOBAL] = 0,
970};
971
972static const char *aggr_header_csv[] = {
973 [AGGR_CORE] = "core,cpus,",
Kan Liangdb5742b2019-06-04 15:50:42 -0700974 [AGGR_DIE] = "die,cpus",
Jiri Olsa088519f2018-08-30 08:32:52 +0200975 [AGGR_SOCKET] = "socket,cpus",
976 [AGGR_NONE] = "cpu,",
977 [AGGR_THREAD] = "comm-pid,",
978 [AGGR_GLOBAL] = ""
979};
980
981static void print_metric_headers(struct perf_stat_config *config,
Jiri Olsa63503db2019-07-21 13:23:52 +0200982 struct evlist *evlist,
Jiri Olsa088519f2018-08-30 08:32:52 +0200983 const char *prefix, bool no_indent)
984{
985 struct perf_stat_output_ctx out;
Jiri Olsa32dcd022019-07-21 13:23:51 +0200986 struct evsel *counter;
Jiri Olsa088519f2018-08-30 08:32:52 +0200987 struct outstate os = {
988 .fh = config->output
989 };
990
991 if (prefix)
992 fprintf(config->output, "%s", prefix);
993
994 if (!config->csv_output && !no_indent)
995 fprintf(config->output, "%*s",
996 aggr_header_lens[config->aggr_mode], "");
997 if (config->csv_output) {
998 if (config->interval)
999 fputs("time,", config->output);
Alexander Antonovf07952b2021-04-19 12:41:44 +03001000 if (!config->iostat_run)
1001 fputs(aggr_header_csv[config->aggr_mode], config->output);
Jiri Olsa088519f2018-08-30 08:32:52 +02001002 }
Alexander Antonovf07952b2021-04-19 12:41:44 +03001003 if (config->iostat_run)
1004 iostat_print_header_prefix(config);
Jiri Olsa088519f2018-08-30 08:32:52 +02001005
1006 /* Print metrics headers only */
1007 evlist__for_each_entry(evlist, counter) {
Jiri Olsa088519f2018-08-30 08:32:52 +02001008 os.evsel = counter;
1009 out.ctx = &os;
1010 out.print_metric = print_metric_header;
1011 out.new_line = new_line_metric;
1012 out.force_header = true;
Jiri Olsa088519f2018-08-30 08:32:52 +02001013 perf_stat__print_shadow_stats(config, counter, 0,
1014 0,
1015 &out,
1016 &config->metric_events,
1017 &rt_stat);
1018 }
1019 fputc('\n', config->output);
1020}
1021
1022static void print_interval(struct perf_stat_config *config,
Jiri Olsa63503db2019-07-21 13:23:52 +02001023 struct evlist *evlist,
Jiri Olsa088519f2018-08-30 08:32:52 +02001024 char *prefix, struct timespec *ts)
1025{
1026 bool metric_only = config->metric_only;
1027 unsigned int unit_width = config->unit_width;
1028 FILE *output = config->output;
1029 static int num_print_interval;
1030
1031 if (config->interval_clear)
1032 puts(CONSOLE_CLEAR);
1033
Alexander Antonovf07952b2021-04-19 12:41:44 +03001034 if (!config->iostat_run)
1035 sprintf(prefix, "%6lu.%09lu%s", (unsigned long) ts->tv_sec, ts->tv_nsec, config->csv_sep);
Jiri Olsa088519f2018-08-30 08:32:52 +02001036
1037 if ((num_print_interval == 0 && !config->csv_output) || config->interval_clear) {
1038 switch (config->aggr_mode) {
Jiri Olsa86895b42019-08-28 10:17:43 +02001039 case AGGR_NODE:
1040 fprintf(output, "# time node cpus");
1041 if (!metric_only)
1042 fprintf(output, " counts %*s events\n", unit_width, "unit");
1043 break;
Jiri Olsa088519f2018-08-30 08:32:52 +02001044 case AGGR_SOCKET:
1045 fprintf(output, "# time socket cpus");
1046 if (!metric_only)
1047 fprintf(output, " counts %*s events\n", unit_width, "unit");
1048 break;
Kan Liangdb5742b2019-06-04 15:50:42 -07001049 case AGGR_DIE:
1050 fprintf(output, "# time die cpus");
1051 if (!metric_only)
1052 fprintf(output, " counts %*s events\n", unit_width, "unit");
1053 break;
Jiri Olsa088519f2018-08-30 08:32:52 +02001054 case AGGR_CORE:
Kan Liangdb5742b2019-06-04 15:50:42 -07001055 fprintf(output, "# time core cpus");
Jiri Olsa088519f2018-08-30 08:32:52 +02001056 if (!metric_only)
1057 fprintf(output, " counts %*s events\n", unit_width, "unit");
1058 break;
1059 case AGGR_NONE:
1060 fprintf(output, "# time CPU ");
1061 if (!metric_only)
1062 fprintf(output, " counts %*s events\n", unit_width, "unit");
1063 break;
1064 case AGGR_THREAD:
1065 fprintf(output, "# time comm-pid");
1066 if (!metric_only)
1067 fprintf(output, " counts %*s events\n", unit_width, "unit");
1068 break;
1069 case AGGR_GLOBAL:
1070 default:
Alexander Antonovf07952b2021-04-19 12:41:44 +03001071 if (!config->iostat_run) {
1072 fprintf(output, "# time");
1073 if (!metric_only)
1074 fprintf(output, " counts %*s events\n", unit_width, "unit");
1075 }
Jiri Olsa088519f2018-08-30 08:32:52 +02001076 case AGGR_UNSET:
1077 break;
1078 }
1079 }
1080
1081 if ((num_print_interval == 0 || config->interval_clear) && metric_only)
1082 print_metric_headers(config, evlist, " ", true);
1083 if (++num_print_interval == 25)
1084 num_print_interval = 0;
1085}
1086
1087static void print_header(struct perf_stat_config *config,
1088 struct target *_target,
1089 int argc, const char **argv)
1090{
1091 FILE *output = config->output;
1092 int i;
1093
1094 fflush(stdout);
1095
1096 if (!config->csv_output) {
1097 fprintf(output, "\n");
1098 fprintf(output, " Performance counter stats for ");
Song Liufa853c42020-12-29 13:42:14 -08001099 if (_target->bpf_str)
1100 fprintf(output, "\'BPF program(s) %s", _target->bpf_str);
1101 else if (_target->system_wide)
Jiri Olsa088519f2018-08-30 08:32:52 +02001102 fprintf(output, "\'system wide");
1103 else if (_target->cpu_list)
1104 fprintf(output, "\'CPU(s) %s", _target->cpu_list);
1105 else if (!target__has_task(_target)) {
1106 fprintf(output, "\'%s", argv ? argv[0] : "pipe");
1107 for (i = 1; argv && (i < argc); i++)
1108 fprintf(output, " %s", argv[i]);
1109 } else if (_target->pid)
1110 fprintf(output, "process id \'%s", _target->pid);
1111 else
1112 fprintf(output, "thread id \'%s", _target->tid);
1113
1114 fprintf(output, "\'");
1115 if (config->run_count > 1)
1116 fprintf(output, " (%d runs)", config->run_count);
1117 fprintf(output, ":\n\n");
1118 }
1119}
1120
1121static int get_precision(double num)
1122{
1123 if (num > 1)
1124 return 0;
1125
1126 return lround(ceil(-log10(num)));
1127}
1128
1129static void print_table(struct perf_stat_config *config,
1130 FILE *output, int precision, double avg)
1131{
1132 char tmp[64];
1133 int idx, indent = 0;
1134
1135 scnprintf(tmp, 64, " %17.*f", precision, avg);
1136 while (tmp[indent] == ' ')
1137 indent++;
1138
1139 fprintf(output, "%*s# Table of individual measurements:\n", indent, "");
1140
1141 for (idx = 0; idx < config->run_count; idx++) {
1142 double run = (double) config->walltime_run[idx] / NSEC_PER_SEC;
1143 int h, n = 1 + abs((int) (100.0 * (run - avg)/run) / 5);
1144
1145 fprintf(output, " %17.*f (%+.*f) ",
1146 precision, run, precision, run - avg);
1147
1148 for (h = 0; h < n; h++)
1149 fprintf(output, "#");
1150
1151 fprintf(output, "\n");
1152 }
1153
1154 fprintf(output, "\n%*s# Final result:\n", indent, "");
1155}
1156
1157static double timeval2double(struct timeval *t)
1158{
1159 return t->tv_sec + (double) t->tv_usec/USEC_PER_SEC;
1160}
1161
1162static void print_footer(struct perf_stat_config *config)
1163{
1164 double avg = avg_stats(config->walltime_nsecs_stats) / NSEC_PER_SEC;
1165 FILE *output = config->output;
Jiri Olsa088519f2018-08-30 08:32:52 +02001166
1167 if (!config->null_run)
1168 fprintf(output, "\n");
1169
1170 if (config->run_count == 1) {
1171 fprintf(output, " %17.9f seconds time elapsed", avg);
1172
1173 if (config->ru_display) {
1174 double ru_utime = timeval2double(&config->ru_data.ru_utime);
1175 double ru_stime = timeval2double(&config->ru_data.ru_stime);
1176
1177 fprintf(output, "\n\n");
1178 fprintf(output, " %17.9f seconds user\n", ru_utime);
1179 fprintf(output, " %17.9f seconds sys\n", ru_stime);
1180 }
1181 } else {
1182 double sd = stddev_stats(config->walltime_nsecs_stats) / NSEC_PER_SEC;
1183 /*
1184 * Display at most 2 more significant
1185 * digits than the stddev inaccuracy.
1186 */
1187 int precision = get_precision(sd) + 2;
1188
1189 if (config->walltime_run_table)
1190 print_table(config, output, precision, avg);
1191
1192 fprintf(output, " %17.*f +- %.*f seconds time elapsed",
1193 precision, avg, precision, sd);
1194
1195 print_noise_pct(config, sd, avg);
1196 }
1197 fprintf(output, "\n\n");
1198
Kan Liang2a14c1b2020-02-24 13:59:22 -08001199 if (config->print_free_counters_hint && sysctl__nmi_watchdog_enabled())
Jiri Olsa088519f2018-08-30 08:32:52 +02001200 fprintf(output,
1201"Some events weren't counted. Try disabling the NMI watchdog:\n"
1202" echo 0 > /proc/sys/kernel/nmi_watchdog\n"
1203" perf stat ...\n"
1204" echo 1 > /proc/sys/kernel/nmi_watchdog\n");
1205
1206 if (config->print_mixed_hw_group_error)
1207 fprintf(output,
1208 "The events in group usually have to be from "
1209 "the same PMU. Try reorganizing the group.\n");
1210}
1211
Jin Yao1af62ce2020-02-14 16:04:52 +08001212static void print_percore_thread(struct perf_stat_config *config,
1213 struct evsel *counter, char *prefix)
1214{
James Clark2760f5a12020-11-26 16:13:20 +02001215 int s;
1216 struct aggr_cpu_id s2, id;
Ian Rogersa0232832022-01-04 22:13:07 -08001217 struct perf_cpu_map *cpus;
Jin Yao1af62ce2020-02-14 16:04:52 +08001218 bool first = true;
Ian Rogers6d188042022-01-04 22:13:51 -08001219 int idx;
1220 struct perf_cpu cpu;
Jin Yao1af62ce2020-02-14 16:04:52 +08001221
Ian Rogersa0232832022-01-04 22:13:07 -08001222 cpus = evsel__cpus(counter);
1223 perf_cpu_map__for_each_cpu(cpu, idx, cpus) {
Ian Rogers88031a02022-01-04 22:13:08 -08001224 s2 = config->aggr_get_id(config, cpu);
Jin Yao1af62ce2020-02-14 16:04:52 +08001225 for (s = 0; s < config->aggr_map->nr; s++) {
James Clarkff523292020-11-26 16:13:23 +02001226 id = config->aggr_map->map[s];
Ian Rogers3ac23d12022-01-04 22:13:16 -08001227 if (aggr_cpu_id__equal(&s2, &id))
Jin Yao1af62ce2020-02-14 16:04:52 +08001228 break;
1229 }
1230
1231 print_counter_aggrdata(config, counter, s,
1232 prefix, false,
Ian Rogersa0232832022-01-04 22:13:07 -08001233 &first, cpu);
Jin Yao1af62ce2020-02-14 16:04:52 +08001234 }
1235}
1236
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001237static void print_percore(struct perf_stat_config *config,
Jiri Olsa32dcd022019-07-21 13:23:51 +02001238 struct evsel *counter, char *prefix)
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001239{
1240 bool metric_only = config->metric_only;
1241 FILE *output = config->output;
1242 int s;
1243 bool first = true;
1244
Hongbo Yaoc0c652f2020-06-05 17:17:40 +08001245 if (!config->aggr_map || !config->aggr_get_id)
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001246 return;
1247
Jin Yao1af62ce2020-02-14 16:04:52 +08001248 if (config->percore_show_thread)
1249 return print_percore_thread(config, counter, prefix);
1250
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001251 for (s = 0; s < config->aggr_map->nr; s++) {
1252 if (prefix && metric_only)
1253 fprintf(output, "%s", prefix);
1254
1255 print_counter_aggrdata(config, counter, s,
Ian Rogers6d188042022-01-04 22:13:51 -08001256 prefix, metric_only,
1257 &first, (struct perf_cpu){ .cpu = -1 });
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001258 }
1259
1260 if (metric_only)
1261 fputc('\n', output);
1262}
1263
Arnaldo Carvalho de Melo71273722020-11-30 14:55:12 -03001264void evlist__print_counters(struct evlist *evlist, struct perf_stat_config *config,
1265 struct target *_target, struct timespec *ts, int argc, const char **argv)
Jiri Olsa088519f2018-08-30 08:32:52 +02001266{
1267 bool metric_only = config->metric_only;
1268 int interval = config->interval;
Jiri Olsa32dcd022019-07-21 13:23:51 +02001269 struct evsel *counter;
Jiri Olsa088519f2018-08-30 08:32:52 +02001270 char buf[64], *prefix = NULL;
1271
Alexander Antonovf07952b2021-04-19 12:41:44 +03001272 if (config->iostat_run)
1273 evlist->selected = evlist__first(evlist);
1274
Jiri Olsa088519f2018-08-30 08:32:52 +02001275 if (interval)
1276 print_interval(config, evlist, prefix = buf, ts);
1277 else
1278 print_header(config, _target, argc, argv);
1279
1280 if (metric_only) {
1281 static int num_print_iv;
1282
1283 if (num_print_iv == 0 && !interval)
1284 print_metric_headers(config, evlist, prefix, false);
1285 if (num_print_iv++ == 25)
1286 num_print_iv = 0;
Alexander Antonovf07952b2021-04-19 12:41:44 +03001287 if (config->aggr_mode == AGGR_GLOBAL && prefix && !config->iostat_run)
Jiri Olsa088519f2018-08-30 08:32:52 +02001288 fprintf(config->output, "%s", prefix);
1289 }
1290
1291 switch (config->aggr_mode) {
1292 case AGGR_CORE:
Kan Liangdb5742b2019-06-04 15:50:42 -07001293 case AGGR_DIE:
Jiri Olsa088519f2018-08-30 08:32:52 +02001294 case AGGR_SOCKET:
Jiri Olsa86895b42019-08-28 10:17:43 +02001295 case AGGR_NODE:
Jiri Olsa088519f2018-08-30 08:32:52 +02001296 print_aggr(config, evlist, prefix);
1297 break;
1298 case AGGR_THREAD:
1299 evlist__for_each_entry(evlist, counter) {
Jiri Olsa088519f2018-08-30 08:32:52 +02001300 print_aggr_thread(config, _target, counter, prefix);
1301 }
1302 break;
1303 case AGGR_GLOBAL:
Alexander Antonovf07952b2021-04-19 12:41:44 +03001304 if (config->iostat_run)
1305 iostat_print_counters(evlist, config, ts, prefix = buf,
1306 print_counter_aggr);
1307 else {
1308 evlist__for_each_entry(evlist, counter) {
1309 print_counter_aggr(config, counter, prefix);
1310 }
1311 if (metric_only)
1312 fputc('\n', config->output);
Jiri Olsa088519f2018-08-30 08:32:52 +02001313 }
Jiri Olsa088519f2018-08-30 08:32:52 +02001314 break;
1315 case AGGR_NONE:
1316 if (metric_only)
1317 print_no_aggr_metric(config, evlist, prefix);
1318 else {
1319 evlist__for_each_entry(evlist, counter) {
Jin Yao4fc4d8d2019-04-12 21:59:49 +08001320 if (counter->percore)
1321 print_percore(config, counter, prefix);
1322 else
1323 print_counter(config, counter, prefix);
Jiri Olsa088519f2018-08-30 08:32:52 +02001324 }
1325 }
1326 break;
1327 case AGGR_UNSET:
1328 default:
1329 break;
1330 }
1331
1332 if (!interval && !config->csv_output)
1333 print_footer(config);
1334
1335 fflush(config->output);
1336}