xref: /openbmc/linux/tools/perf/util/stat-display.c (revision 8dda2eac)
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <inttypes.h>
4 #include <linux/string.h>
5 #include <linux/time64.h>
6 #include <math.h>
7 #include "color.h"
8 #include "counts.h"
9 #include "evlist.h"
10 #include "evsel.h"
11 #include "stat.h"
12 #include "top.h"
13 #include "thread_map.h"
14 #include "cpumap.h"
15 #include "string2.h"
16 #include <linux/ctype.h>
17 #include "cgroup.h"
18 #include <api/fs/fs.h>
19 #include "util.h"
20 #include "iostat.h"
21 #include "pmu-hybrid.h"
22 #include "evlist-hybrid.h"
23 
24 #define CNTR_NOT_SUPPORTED	"<not supported>"
25 #define CNTR_NOT_COUNTED	"<not counted>"
26 
27 static void print_running(struct perf_stat_config *config,
28 			  u64 run, u64 ena)
29 {
30 	if (config->csv_output) {
31 		fprintf(config->output, "%s%" PRIu64 "%s%.2f",
32 					config->csv_sep,
33 					run,
34 					config->csv_sep,
35 					ena ? 100.0 * run / ena : 100.0);
36 	} else if (run != ena) {
37 		fprintf(config->output, "  (%.2f%%)", 100.0 * run / ena);
38 	}
39 }
40 
41 static void print_noise_pct(struct perf_stat_config *config,
42 			    double total, double avg)
43 {
44 	double pct = rel_stddev_stats(total, avg);
45 
46 	if (config->csv_output)
47 		fprintf(config->output, "%s%.2f%%", config->csv_sep, pct);
48 	else if (pct)
49 		fprintf(config->output, "  ( +-%6.2f%% )", pct);
50 }
51 
52 static void print_noise(struct perf_stat_config *config,
53 			struct evsel *evsel, double avg)
54 {
55 	struct perf_stat_evsel *ps;
56 
57 	if (config->run_count == 1)
58 		return;
59 
60 	ps = evsel->stats;
61 	print_noise_pct(config, stddev_stats(&ps->res_stats[0]), avg);
62 }
63 
64 static void print_cgroup(struct perf_stat_config *config, struct evsel *evsel)
65 {
66 	if (nr_cgroups) {
67 		const char *cgrp_name = evsel->cgrp ? evsel->cgrp->name  : "";
68 		fprintf(config->output, "%s%s", config->csv_sep, cgrp_name);
69 	}
70 }
71 
72 
73 static void aggr_printout(struct perf_stat_config *config,
74 			  struct evsel *evsel, struct aggr_cpu_id id, int nr)
75 {
76 	switch (config->aggr_mode) {
77 	case AGGR_CORE:
78 		fprintf(config->output, "S%d-D%d-C%*d%s%*d%s",
79 			id.socket,
80 			id.die,
81 			config->csv_output ? 0 : -8,
82 			id.core,
83 			config->csv_sep,
84 			config->csv_output ? 0 : 4,
85 			nr,
86 			config->csv_sep);
87 		break;
88 	case AGGR_DIE:
89 		fprintf(config->output, "S%d-D%*d%s%*d%s",
90 			id.socket,
91 			config->csv_output ? 0 : -8,
92 			id.die,
93 			config->csv_sep,
94 			config->csv_output ? 0 : 4,
95 			nr,
96 			config->csv_sep);
97 		break;
98 	case AGGR_SOCKET:
99 		fprintf(config->output, "S%*d%s%*d%s",
100 			config->csv_output ? 0 : -5,
101 			id.socket,
102 			config->csv_sep,
103 			config->csv_output ? 0 : 4,
104 			nr,
105 			config->csv_sep);
106 			break;
107 	case AGGR_NODE:
108 		fprintf(config->output, "N%*d%s%*d%s",
109 			config->csv_output ? 0 : -5,
110 			id.node,
111 			config->csv_sep,
112 			config->csv_output ? 0 : 4,
113 			nr,
114 			config->csv_sep);
115 			break;
116 	case AGGR_NONE:
117 		if (evsel->percore && !config->percore_show_thread) {
118 			fprintf(config->output, "S%d-D%d-C%*d%s",
119 				id.socket,
120 				id.die,
121 				config->csv_output ? 0 : -3,
122 				id.core, config->csv_sep);
123 		} else if (id.core > -1) {
124 			fprintf(config->output, "CPU%*d%s",
125 				config->csv_output ? 0 : -7,
126 				evsel__cpus(evsel)->map[id.core],
127 				config->csv_sep);
128 		}
129 		break;
130 	case AGGR_THREAD:
131 		fprintf(config->output, "%*s-%*d%s",
132 			config->csv_output ? 0 : 16,
133 			perf_thread_map__comm(evsel->core.threads, id.thread),
134 			config->csv_output ? 0 : -8,
135 			perf_thread_map__pid(evsel->core.threads, id.thread),
136 			config->csv_sep);
137 		break;
138 	case AGGR_GLOBAL:
139 	case AGGR_UNSET:
140 	default:
141 		break;
142 	}
143 }
144 
145 struct outstate {
146 	FILE *fh;
147 	bool newline;
148 	const char *prefix;
149 	int  nfields;
150 	int  nr;
151 	struct aggr_cpu_id id;
152 	struct evsel *evsel;
153 };
154 
155 #define METRIC_LEN  35
156 
157 static 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 
165 static 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 
176 static 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 
203 static 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 
216 static 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);
230 	ends = vals = skip_spaces(buf);
231 	while (isdigit(*ends) || *ends == '.')
232 		ends++;
233 	*ends = 0;
234 	fprintf(out, "%s%s%s%s", config->csv_sep, vals, config->csv_sep, skip_spaces(unit));
235 }
236 
237 /* Filter out some columns that don't work well in metrics only mode */
238 
239 static bool valid_only_metric(const char *unit)
240 {
241 	if (!unit)
242 		return false;
243 	if (strstr(unit, "/sec") ||
244 	    strstr(unit, "CPUs utilized"))
245 		return false;
246 	return true;
247 }
248 
249 static const char *fixunit(char *buf, struct evsel *evsel,
250 			   const char *unit)
251 {
252 	if (!strncmp(unit, "of all", 6)) {
253 		snprintf(buf, 1024, "%s %s", evsel__name(evsel),
254 			 unit);
255 		return buf;
256 	}
257 	return unit;
258 }
259 
260 static 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 
282 static 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);
296 	ends = vals = skip_spaces(buf);
297 	while (isdigit(*ends) || *ends == '.')
298 		ends++;
299 	*ends = 0;
300 	fprintf(out, "%s%s", vals, config->csv_sep);
301 }
302 
303 static void new_line_metric(struct perf_stat_config *config __maybe_unused,
304 			    void *ctx __maybe_unused)
305 {
306 }
307 
308 static 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 
316 	/* 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 
321 	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 
330 static int first_shadow_cpu(struct perf_stat_config *config,
331 			    struct evsel *evsel, struct aggr_cpu_id id)
332 {
333 	struct evlist *evlist = evsel->evlist;
334 	int i;
335 
336 	if (config->aggr_mode == AGGR_NONE)
337 		return id.core;
338 
339 	if (!config->aggr_get_id)
340 		return 0;
341 
342 	for (i = 0; i < evsel__nr_cpus(evsel); i++) {
343 		int cpu2 = evsel__cpus(evsel)->map[i];
344 
345 		if (cpu_map__compare_aggr_cpu_id(
346 					config->aggr_get_id(config, evlist->core.cpus, cpu2),
347 					id)) {
348 			return cpu2;
349 		}
350 	}
351 	return 0;
352 }
353 
354 static void abs_printout(struct perf_stat_config *config,
355 			 struct aggr_cpu_id id, int nr, struct evsel *evsel, double avg)
356 {
357 	FILE *output = config->output;
358 	double sc =  evsel->scale;
359 	const char *fmt;
360 
361 	if (config->csv_output) {
362 		fmt = floor(sc) != sc ?  "%.2f%s" : "%.0f%s";
363 	} else {
364 		if (config->big_num)
365 			fmt = floor(sc) != sc ? "%'18.2f%s" : "%'18.0f%s";
366 		else
367 			fmt = floor(sc) != sc ? "%18.2f%s" : "%18.0f%s";
368 	}
369 
370 	aggr_printout(config, evsel, id, nr);
371 
372 	fprintf(output, fmt, avg, config->csv_sep);
373 
374 	if (evsel->unit)
375 		fprintf(output, "%-*s%s",
376 			config->csv_output ? 0 : config->unit_width,
377 			evsel->unit, config->csv_sep);
378 
379 	fprintf(output, "%-*s", config->csv_output ? 0 : 25, evsel__name(evsel));
380 
381 	print_cgroup(config, evsel);
382 }
383 
384 static bool is_mixed_hw_group(struct evsel *counter)
385 {
386 	struct evlist *evlist = counter->evlist;
387 	u32 pmu_type = counter->core.attr.type;
388 	struct evsel *pos;
389 
390 	if (counter->core.nr_members < 2)
391 		return false;
392 
393 	evlist__for_each_entry(evlist, pos) {
394 		/* software events can be part of any hardware group */
395 		if (pos->core.attr.type == PERF_TYPE_SOFTWARE)
396 			continue;
397 		if (pmu_type == PERF_TYPE_SOFTWARE) {
398 			pmu_type = pos->core.attr.type;
399 			continue;
400 		}
401 		if (pmu_type != pos->core.attr.type)
402 			return true;
403 	}
404 
405 	return false;
406 }
407 
408 static void printout(struct perf_stat_config *config, struct aggr_cpu_id id, int nr,
409 		     struct evsel *counter, double uval,
410 		     char *prefix, u64 run, u64 ena, double noise,
411 		     struct runtime_stat *st)
412 {
413 	struct perf_stat_output_ctx out;
414 	struct outstate os = {
415 		.fh = config->output,
416 		.prefix = prefix ? prefix : "",
417 		.id = id,
418 		.nr = nr,
419 		.evsel = counter,
420 	};
421 	print_metric_t pm = print_metric_std;
422 	new_line_t nl;
423 
424 	if (config->metric_only) {
425 		nl = new_line_metric;
426 		if (config->csv_output)
427 			pm = print_metric_only_csv;
428 		else
429 			pm = print_metric_only;
430 	} else
431 		nl = new_line_std;
432 
433 	if (config->csv_output && !config->metric_only) {
434 		static int aggr_fields[] = {
435 			[AGGR_GLOBAL] = 0,
436 			[AGGR_THREAD] = 1,
437 			[AGGR_NONE] = 1,
438 			[AGGR_SOCKET] = 2,
439 			[AGGR_DIE] = 2,
440 			[AGGR_CORE] = 2,
441 		};
442 
443 		pm = print_metric_csv;
444 		nl = new_line_csv;
445 		os.nfields = 3;
446 		os.nfields += aggr_fields[config->aggr_mode];
447 		if (counter->cgrp)
448 			os.nfields++;
449 	}
450 
451 	if (!config->no_csv_summary && config->csv_output &&
452 	    config->summary && !config->interval) {
453 		fprintf(config->output, "%16s%s", "summary", config->csv_sep);
454 	}
455 
456 	if (run == 0 || ena == 0 || counter->counts->scaled == -1) {
457 		if (config->metric_only) {
458 			pm(config, &os, NULL, "", "", 0);
459 			return;
460 		}
461 		aggr_printout(config, counter, id, nr);
462 
463 		fprintf(config->output, "%*s%s",
464 			config->csv_output ? 0 : 18,
465 			counter->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED,
466 			config->csv_sep);
467 
468 		if (counter->supported) {
469 			if (!evlist__has_hybrid(counter->evlist)) {
470 				config->print_free_counters_hint = 1;
471 				if (is_mixed_hw_group(counter))
472 					config->print_mixed_hw_group_error = 1;
473 			}
474 		}
475 
476 		fprintf(config->output, "%-*s%s",
477 			config->csv_output ? 0 : config->unit_width,
478 			counter->unit, config->csv_sep);
479 
480 		fprintf(config->output, "%*s",
481 			config->csv_output ? 0 : -25, evsel__name(counter));
482 
483 		print_cgroup(config, counter);
484 
485 		if (!config->csv_output)
486 			pm(config, &os, NULL, NULL, "", 0);
487 		print_noise(config, counter, noise);
488 		print_running(config, run, ena);
489 		if (config->csv_output)
490 			pm(config, &os, NULL, NULL, "", 0);
491 		return;
492 	}
493 
494 	if (!config->metric_only)
495 		abs_printout(config, id, nr, counter, uval);
496 
497 	out.print_metric = pm;
498 	out.new_line = nl;
499 	out.ctx = &os;
500 	out.force_header = false;
501 
502 	if (config->csv_output && !config->metric_only) {
503 		print_noise(config, counter, noise);
504 		print_running(config, run, ena);
505 	}
506 
507 	perf_stat__print_shadow_stats(config, counter, uval,
508 				first_shadow_cpu(config, counter, id),
509 				&out, &config->metric_events, st);
510 	if (!config->csv_output && !config->metric_only) {
511 		print_noise(config, counter, noise);
512 		print_running(config, run, ena);
513 	}
514 }
515 
516 static void aggr_update_shadow(struct perf_stat_config *config,
517 			       struct evlist *evlist)
518 {
519 	int cpu, s;
520 	struct aggr_cpu_id s2, id;
521 	u64 val;
522 	struct evsel *counter;
523 
524 	for (s = 0; s < config->aggr_map->nr; s++) {
525 		id = config->aggr_map->map[s];
526 		evlist__for_each_entry(evlist, counter) {
527 			val = 0;
528 			for (cpu = 0; cpu < evsel__nr_cpus(counter); cpu++) {
529 				s2 = config->aggr_get_id(config, evlist->core.cpus, cpu);
530 				if (!cpu_map__compare_aggr_cpu_id(s2, id))
531 					continue;
532 				val += perf_counts(counter->counts, cpu, 0)->val;
533 			}
534 			perf_stat__update_shadow_stats(counter, val,
535 					first_shadow_cpu(config, counter, id),
536 					&rt_stat);
537 		}
538 	}
539 }
540 
541 static void uniquify_event_name(struct evsel *counter)
542 {
543 	char *new_name;
544 	char *config;
545 	int ret = 0;
546 
547 	if (counter->uniquified_name || counter->use_config_name ||
548 	    !counter->pmu_name || !strncmp(counter->name, counter->pmu_name,
549 					   strlen(counter->pmu_name)))
550 		return;
551 
552 	config = strchr(counter->name, '/');
553 	if (config) {
554 		if (asprintf(&new_name,
555 			     "%s%s", counter->pmu_name, config) > 0) {
556 			free(counter->name);
557 			counter->name = new_name;
558 		}
559 	} else {
560 		if (perf_pmu__has_hybrid()) {
561 			ret = asprintf(&new_name, "%s/%s/",
562 				       counter->pmu_name, counter->name);
563 		} else {
564 			ret = asprintf(&new_name, "%s [%s]",
565 				       counter->name, counter->pmu_name);
566 		}
567 
568 		if (ret) {
569 			free(counter->name);
570 			counter->name = new_name;
571 		}
572 	}
573 
574 	counter->uniquified_name = true;
575 }
576 
577 static void collect_all_aliases(struct perf_stat_config *config, struct evsel *counter,
578 			    void (*cb)(struct perf_stat_config *config, struct evsel *counter, void *data,
579 				       bool first),
580 			    void *data)
581 {
582 	struct evlist *evlist = counter->evlist;
583 	struct evsel *alias;
584 
585 	alias = list_prepare_entry(counter, &(evlist->core.entries), core.node);
586 	list_for_each_entry_continue (alias, &evlist->core.entries, core.node) {
587 		if (strcmp(evsel__name(alias), evsel__name(counter)) ||
588 		    alias->scale != counter->scale ||
589 		    alias->cgrp != counter->cgrp ||
590 		    strcmp(alias->unit, counter->unit) ||
591 		    evsel__is_clock(alias) != evsel__is_clock(counter) ||
592 		    !strcmp(alias->pmu_name, counter->pmu_name))
593 			break;
594 		alias->merged_stat = true;
595 		cb(config, alias, data, false);
596 	}
597 }
598 
599 static bool collect_data(struct perf_stat_config *config, struct evsel *counter,
600 			    void (*cb)(struct perf_stat_config *config, struct evsel *counter, void *data,
601 				       bool first),
602 			    void *data)
603 {
604 	if (counter->merged_stat)
605 		return false;
606 	cb(config, counter, data, true);
607 	if (config->no_merge)
608 		uniquify_event_name(counter);
609 	else if (counter->auto_merge_stats)
610 		collect_all_aliases(config, counter, cb, data);
611 	return true;
612 }
613 
614 struct aggr_data {
615 	u64 ena, run, val;
616 	struct aggr_cpu_id id;
617 	int nr;
618 	int cpu;
619 };
620 
621 static void aggr_cb(struct perf_stat_config *config,
622 		    struct evsel *counter, void *data, bool first)
623 {
624 	struct aggr_data *ad = data;
625 	int cpu;
626 	struct aggr_cpu_id s2;
627 
628 	for (cpu = 0; cpu < evsel__nr_cpus(counter); cpu++) {
629 		struct perf_counts_values *counts;
630 
631 		s2 = config->aggr_get_id(config, evsel__cpus(counter), cpu);
632 		if (!cpu_map__compare_aggr_cpu_id(s2, ad->id))
633 			continue;
634 		if (first)
635 			ad->nr++;
636 		counts = perf_counts(counter->counts, cpu, 0);
637 		/*
638 		 * When any result is bad, make them all to give
639 		 * consistent output in interval mode.
640 		 */
641 		if (counts->ena == 0 || counts->run == 0 ||
642 		    counter->counts->scaled == -1) {
643 			ad->ena = 0;
644 			ad->run = 0;
645 			break;
646 		}
647 		ad->val += counts->val;
648 		ad->ena += counts->ena;
649 		ad->run += counts->run;
650 	}
651 }
652 
653 static void print_counter_aggrdata(struct perf_stat_config *config,
654 				   struct evsel *counter, int s,
655 				   char *prefix, bool metric_only,
656 				   bool *first, int cpu)
657 {
658 	struct aggr_data ad;
659 	FILE *output = config->output;
660 	u64 ena, run, val;
661 	int nr;
662 	struct aggr_cpu_id id;
663 	double uval;
664 
665 	ad.id = id = config->aggr_map->map[s];
666 	ad.val = ad.ena = ad.run = 0;
667 	ad.nr = 0;
668 	if (!collect_data(config, counter, aggr_cb, &ad))
669 		return;
670 
671 	if (perf_pmu__has_hybrid() && ad.ena == 0)
672 		return;
673 
674 	nr = ad.nr;
675 	ena = ad.ena;
676 	run = ad.run;
677 	val = ad.val;
678 	if (*first && metric_only) {
679 		*first = false;
680 		aggr_printout(config, counter, id, nr);
681 	}
682 	if (prefix && !metric_only)
683 		fprintf(output, "%s", prefix);
684 
685 	uval = val * counter->scale;
686 	if (cpu != -1) {
687 		id = cpu_map__empty_aggr_cpu_id();
688 		id.core = cpu;
689 	}
690 	printout(config, id, nr, counter, uval,
691 		 prefix, run, ena, 1.0, &rt_stat);
692 	if (!metric_only)
693 		fputc('\n', output);
694 }
695 
696 static void print_aggr(struct perf_stat_config *config,
697 		       struct evlist *evlist,
698 		       char *prefix)
699 {
700 	bool metric_only = config->metric_only;
701 	FILE *output = config->output;
702 	struct evsel *counter;
703 	int s;
704 	bool first;
705 
706 	if (!config->aggr_map || !config->aggr_get_id)
707 		return;
708 
709 	aggr_update_shadow(config, evlist);
710 
711 	/*
712 	 * With metric_only everything is on a single line.
713 	 * Without each counter has its own line.
714 	 */
715 	for (s = 0; s < config->aggr_map->nr; s++) {
716 		if (prefix && metric_only)
717 			fprintf(output, "%s", prefix);
718 
719 		first = true;
720 		evlist__for_each_entry(evlist, counter) {
721 			print_counter_aggrdata(config, counter, s,
722 					       prefix, metric_only,
723 					       &first, -1);
724 		}
725 		if (metric_only)
726 			fputc('\n', output);
727 	}
728 }
729 
730 static int cmp_val(const void *a, const void *b)
731 {
732 	return ((struct perf_aggr_thread_value *)b)->val -
733 		((struct perf_aggr_thread_value *)a)->val;
734 }
735 
736 static struct perf_aggr_thread_value *sort_aggr_thread(
737 					struct evsel *counter,
738 					int nthreads, int ncpus,
739 					int *ret,
740 					struct target *_target)
741 {
742 	int cpu, thread, i = 0;
743 	double uval;
744 	struct perf_aggr_thread_value *buf;
745 
746 	buf = calloc(nthreads, sizeof(struct perf_aggr_thread_value));
747 	if (!buf)
748 		return NULL;
749 
750 	for (thread = 0; thread < nthreads; thread++) {
751 		u64 ena = 0, run = 0, val = 0;
752 
753 		for (cpu = 0; cpu < ncpus; cpu++) {
754 			val += perf_counts(counter->counts, cpu, thread)->val;
755 			ena += perf_counts(counter->counts, cpu, thread)->ena;
756 			run += perf_counts(counter->counts, cpu, thread)->run;
757 		}
758 
759 		uval = val * counter->scale;
760 
761 		/*
762 		 * Skip value 0 when enabling --per-thread globally,
763 		 * otherwise too many 0 output.
764 		 */
765 		if (uval == 0.0 && target__has_per_thread(_target))
766 			continue;
767 
768 		buf[i].counter = counter;
769 		buf[i].id = cpu_map__empty_aggr_cpu_id();
770 		buf[i].id.thread = thread;
771 		buf[i].uval = uval;
772 		buf[i].val = val;
773 		buf[i].run = run;
774 		buf[i].ena = ena;
775 		i++;
776 	}
777 
778 	qsort(buf, i, sizeof(struct perf_aggr_thread_value), cmp_val);
779 
780 	if (ret)
781 		*ret = i;
782 
783 	return buf;
784 }
785 
786 static void print_aggr_thread(struct perf_stat_config *config,
787 			      struct target *_target,
788 			      struct evsel *counter, char *prefix)
789 {
790 	FILE *output = config->output;
791 	int nthreads = perf_thread_map__nr(counter->core.threads);
792 	int ncpus = perf_cpu_map__nr(counter->core.cpus);
793 	int thread, sorted_threads;
794 	struct aggr_cpu_id id;
795 	struct perf_aggr_thread_value *buf;
796 
797 	buf = sort_aggr_thread(counter, nthreads, ncpus, &sorted_threads, _target);
798 	if (!buf) {
799 		perror("cannot sort aggr thread");
800 		return;
801 	}
802 
803 	for (thread = 0; thread < sorted_threads; thread++) {
804 		if (prefix)
805 			fprintf(output, "%s", prefix);
806 
807 		id = buf[thread].id;
808 		if (config->stats)
809 			printout(config, id, 0, buf[thread].counter, buf[thread].uval,
810 				 prefix, buf[thread].run, buf[thread].ena, 1.0,
811 				 &config->stats[id.thread]);
812 		else
813 			printout(config, id, 0, buf[thread].counter, buf[thread].uval,
814 				 prefix, buf[thread].run, buf[thread].ena, 1.0,
815 				 &rt_stat);
816 		fputc('\n', output);
817 	}
818 
819 	free(buf);
820 }
821 
822 struct caggr_data {
823 	double avg, avg_enabled, avg_running;
824 };
825 
826 static void counter_aggr_cb(struct perf_stat_config *config __maybe_unused,
827 			    struct evsel *counter, void *data,
828 			    bool first __maybe_unused)
829 {
830 	struct caggr_data *cd = data;
831 	struct perf_counts_values *aggr = &counter->counts->aggr;
832 
833 	cd->avg += aggr->val;
834 	cd->avg_enabled += aggr->ena;
835 	cd->avg_running += aggr->run;
836 }
837 
838 /*
839  * Print out the results of a single counter:
840  * aggregated counts in system-wide mode
841  */
842 static void print_counter_aggr(struct perf_stat_config *config,
843 			       struct evsel *counter, char *prefix)
844 {
845 	bool metric_only = config->metric_only;
846 	FILE *output = config->output;
847 	double uval;
848 	struct caggr_data cd = { .avg = 0.0 };
849 
850 	if (!collect_data(config, counter, counter_aggr_cb, &cd))
851 		return;
852 
853 	if (prefix && !metric_only)
854 		fprintf(output, "%s", prefix);
855 
856 	uval = cd.avg * counter->scale;
857 	printout(config, cpu_map__empty_aggr_cpu_id(), 0, counter, uval, prefix, cd.avg_running,
858 		 cd.avg_enabled, cd.avg, &rt_stat);
859 	if (!metric_only)
860 		fprintf(output, "\n");
861 }
862 
863 static void counter_cb(struct perf_stat_config *config __maybe_unused,
864 		       struct evsel *counter, void *data,
865 		       bool first __maybe_unused)
866 {
867 	struct aggr_data *ad = data;
868 
869 	ad->val += perf_counts(counter->counts, ad->cpu, 0)->val;
870 	ad->ena += perf_counts(counter->counts, ad->cpu, 0)->ena;
871 	ad->run += perf_counts(counter->counts, ad->cpu, 0)->run;
872 }
873 
874 /*
875  * Print out the results of a single counter:
876  * does not use aggregated count in system-wide
877  */
878 static void print_counter(struct perf_stat_config *config,
879 			  struct evsel *counter, char *prefix)
880 {
881 	FILE *output = config->output;
882 	u64 ena, run, val;
883 	double uval;
884 	int cpu;
885 	struct aggr_cpu_id id;
886 
887 	for (cpu = 0; cpu < evsel__nr_cpus(counter); cpu++) {
888 		struct aggr_data ad = { .cpu = cpu };
889 
890 		if (!collect_data(config, counter, counter_cb, &ad))
891 			return;
892 		val = ad.val;
893 		ena = ad.ena;
894 		run = ad.run;
895 
896 		if (prefix)
897 			fprintf(output, "%s", prefix);
898 
899 		uval = val * counter->scale;
900 		id = cpu_map__empty_aggr_cpu_id();
901 		id.core = cpu;
902 		printout(config, id, 0, counter, uval, prefix,
903 			 run, ena, 1.0, &rt_stat);
904 
905 		fputc('\n', output);
906 	}
907 }
908 
909 static void print_no_aggr_metric(struct perf_stat_config *config,
910 				 struct evlist *evlist,
911 				 char *prefix)
912 {
913 	int cpu;
914 	int nrcpus = 0;
915 	struct evsel *counter;
916 	u64 ena, run, val;
917 	double uval;
918 	struct aggr_cpu_id id;
919 
920 	nrcpus = evlist->core.cpus->nr;
921 	for (cpu = 0; cpu < nrcpus; cpu++) {
922 		bool first = true;
923 
924 		if (prefix)
925 			fputs(prefix, config->output);
926 		evlist__for_each_entry(evlist, counter) {
927 			id = cpu_map__empty_aggr_cpu_id();
928 			id.core = cpu;
929 			if (first) {
930 				aggr_printout(config, counter, id, 0);
931 				first = false;
932 			}
933 			val = perf_counts(counter->counts, cpu, 0)->val;
934 			ena = perf_counts(counter->counts, cpu, 0)->ena;
935 			run = perf_counts(counter->counts, cpu, 0)->run;
936 
937 			uval = val * counter->scale;
938 			printout(config, id, 0, counter, uval, prefix,
939 				 run, ena, 1.0, &rt_stat);
940 		}
941 		fputc('\n', config->output);
942 	}
943 }
944 
945 static int aggr_header_lens[] = {
946 	[AGGR_CORE] = 24,
947 	[AGGR_DIE] = 18,
948 	[AGGR_SOCKET] = 12,
949 	[AGGR_NONE] = 6,
950 	[AGGR_THREAD] = 24,
951 	[AGGR_GLOBAL] = 0,
952 };
953 
954 static const char *aggr_header_csv[] = {
955 	[AGGR_CORE] 	= 	"core,cpus,",
956 	[AGGR_DIE] 	= 	"die,cpus",
957 	[AGGR_SOCKET] 	= 	"socket,cpus",
958 	[AGGR_NONE] 	= 	"cpu,",
959 	[AGGR_THREAD] 	= 	"comm-pid,",
960 	[AGGR_GLOBAL] 	=	""
961 };
962 
963 static void print_metric_headers(struct perf_stat_config *config,
964 				 struct evlist *evlist,
965 				 const char *prefix, bool no_indent)
966 {
967 	struct perf_stat_output_ctx out;
968 	struct evsel *counter;
969 	struct outstate os = {
970 		.fh = config->output
971 	};
972 
973 	if (prefix)
974 		fprintf(config->output, "%s", prefix);
975 
976 	if (!config->csv_output && !no_indent)
977 		fprintf(config->output, "%*s",
978 			aggr_header_lens[config->aggr_mode], "");
979 	if (config->csv_output) {
980 		if (config->interval)
981 			fputs("time,", config->output);
982 		if (!config->iostat_run)
983 			fputs(aggr_header_csv[config->aggr_mode], config->output);
984 	}
985 	if (config->iostat_run)
986 		iostat_print_header_prefix(config);
987 
988 	/* Print metrics headers only */
989 	evlist__for_each_entry(evlist, counter) {
990 		os.evsel = counter;
991 		out.ctx = &os;
992 		out.print_metric = print_metric_header;
993 		out.new_line = new_line_metric;
994 		out.force_header = true;
995 		perf_stat__print_shadow_stats(config, counter, 0,
996 					      0,
997 					      &out,
998 					      &config->metric_events,
999 					      &rt_stat);
1000 	}
1001 	fputc('\n', config->output);
1002 }
1003 
1004 static void print_interval(struct perf_stat_config *config,
1005 			   struct evlist *evlist,
1006 			   char *prefix, struct timespec *ts)
1007 {
1008 	bool metric_only = config->metric_only;
1009 	unsigned int unit_width = config->unit_width;
1010 	FILE *output = config->output;
1011 	static int num_print_interval;
1012 
1013 	if (config->interval_clear)
1014 		puts(CONSOLE_CLEAR);
1015 
1016 	if (!config->iostat_run)
1017 		sprintf(prefix, "%6lu.%09lu%s", (unsigned long) ts->tv_sec, ts->tv_nsec, config->csv_sep);
1018 
1019 	if ((num_print_interval == 0 && !config->csv_output) || config->interval_clear) {
1020 		switch (config->aggr_mode) {
1021 		case AGGR_NODE:
1022 			fprintf(output, "#           time node   cpus");
1023 			if (!metric_only)
1024 				fprintf(output, "             counts %*s events\n", unit_width, "unit");
1025 			break;
1026 		case AGGR_SOCKET:
1027 			fprintf(output, "#           time socket cpus");
1028 			if (!metric_only)
1029 				fprintf(output, "             counts %*s events\n", unit_width, "unit");
1030 			break;
1031 		case AGGR_DIE:
1032 			fprintf(output, "#           time die          cpus");
1033 			if (!metric_only)
1034 				fprintf(output, "             counts %*s events\n", unit_width, "unit");
1035 			break;
1036 		case AGGR_CORE:
1037 			fprintf(output, "#           time core            cpus");
1038 			if (!metric_only)
1039 				fprintf(output, "             counts %*s events\n", unit_width, "unit");
1040 			break;
1041 		case AGGR_NONE:
1042 			fprintf(output, "#           time CPU    ");
1043 			if (!metric_only)
1044 				fprintf(output, "                counts %*s events\n", unit_width, "unit");
1045 			break;
1046 		case AGGR_THREAD:
1047 			fprintf(output, "#           time             comm-pid");
1048 			if (!metric_only)
1049 				fprintf(output, "                  counts %*s events\n", unit_width, "unit");
1050 			break;
1051 		case AGGR_GLOBAL:
1052 		default:
1053 			if (!config->iostat_run) {
1054 				fprintf(output, "#           time");
1055 				if (!metric_only)
1056 					fprintf(output, "             counts %*s events\n", unit_width, "unit");
1057 			}
1058 		case AGGR_UNSET:
1059 			break;
1060 		}
1061 	}
1062 
1063 	if ((num_print_interval == 0 || config->interval_clear) && metric_only)
1064 		print_metric_headers(config, evlist, " ", true);
1065 	if (++num_print_interval == 25)
1066 		num_print_interval = 0;
1067 }
1068 
1069 static void print_header(struct perf_stat_config *config,
1070 			 struct target *_target,
1071 			 int argc, const char **argv)
1072 {
1073 	FILE *output = config->output;
1074 	int i;
1075 
1076 	fflush(stdout);
1077 
1078 	if (!config->csv_output) {
1079 		fprintf(output, "\n");
1080 		fprintf(output, " Performance counter stats for ");
1081 		if (_target->bpf_str)
1082 			fprintf(output, "\'BPF program(s) %s", _target->bpf_str);
1083 		else if (_target->system_wide)
1084 			fprintf(output, "\'system wide");
1085 		else if (_target->cpu_list)
1086 			fprintf(output, "\'CPU(s) %s", _target->cpu_list);
1087 		else if (!target__has_task(_target)) {
1088 			fprintf(output, "\'%s", argv ? argv[0] : "pipe");
1089 			for (i = 1; argv && (i < argc); i++)
1090 				fprintf(output, " %s", argv[i]);
1091 		} else if (_target->pid)
1092 			fprintf(output, "process id \'%s", _target->pid);
1093 		else
1094 			fprintf(output, "thread id \'%s", _target->tid);
1095 
1096 		fprintf(output, "\'");
1097 		if (config->run_count > 1)
1098 			fprintf(output, " (%d runs)", config->run_count);
1099 		fprintf(output, ":\n\n");
1100 	}
1101 }
1102 
1103 static int get_precision(double num)
1104 {
1105 	if (num > 1)
1106 		return 0;
1107 
1108 	return lround(ceil(-log10(num)));
1109 }
1110 
1111 static void print_table(struct perf_stat_config *config,
1112 			FILE *output, int precision, double avg)
1113 {
1114 	char tmp[64];
1115 	int idx, indent = 0;
1116 
1117 	scnprintf(tmp, 64, " %17.*f", precision, avg);
1118 	while (tmp[indent] == ' ')
1119 		indent++;
1120 
1121 	fprintf(output, "%*s# Table of individual measurements:\n", indent, "");
1122 
1123 	for (idx = 0; idx < config->run_count; idx++) {
1124 		double run = (double) config->walltime_run[idx] / NSEC_PER_SEC;
1125 		int h, n = 1 + abs((int) (100.0 * (run - avg)/run) / 5);
1126 
1127 		fprintf(output, " %17.*f (%+.*f) ",
1128 			precision, run, precision, run - avg);
1129 
1130 		for (h = 0; h < n; h++)
1131 			fprintf(output, "#");
1132 
1133 		fprintf(output, "\n");
1134 	}
1135 
1136 	fprintf(output, "\n%*s# Final result:\n", indent, "");
1137 }
1138 
1139 static double timeval2double(struct timeval *t)
1140 {
1141 	return t->tv_sec + (double) t->tv_usec/USEC_PER_SEC;
1142 }
1143 
1144 static void print_footer(struct perf_stat_config *config)
1145 {
1146 	double avg = avg_stats(config->walltime_nsecs_stats) / NSEC_PER_SEC;
1147 	FILE *output = config->output;
1148 
1149 	if (!config->null_run)
1150 		fprintf(output, "\n");
1151 
1152 	if (config->run_count == 1) {
1153 		fprintf(output, " %17.9f seconds time elapsed", avg);
1154 
1155 		if (config->ru_display) {
1156 			double ru_utime = timeval2double(&config->ru_data.ru_utime);
1157 			double ru_stime = timeval2double(&config->ru_data.ru_stime);
1158 
1159 			fprintf(output, "\n\n");
1160 			fprintf(output, " %17.9f seconds user\n", ru_utime);
1161 			fprintf(output, " %17.9f seconds sys\n", ru_stime);
1162 		}
1163 	} else {
1164 		double sd = stddev_stats(config->walltime_nsecs_stats) / NSEC_PER_SEC;
1165 		/*
1166 		 * Display at most 2 more significant
1167 		 * digits than the stddev inaccuracy.
1168 		 */
1169 		int precision = get_precision(sd) + 2;
1170 
1171 		if (config->walltime_run_table)
1172 			print_table(config, output, precision, avg);
1173 
1174 		fprintf(output, " %17.*f +- %.*f seconds time elapsed",
1175 			precision, avg, precision, sd);
1176 
1177 		print_noise_pct(config, sd, avg);
1178 	}
1179 	fprintf(output, "\n\n");
1180 
1181 	if (config->print_free_counters_hint && sysctl__nmi_watchdog_enabled())
1182 		fprintf(output,
1183 "Some events weren't counted. Try disabling the NMI watchdog:\n"
1184 "	echo 0 > /proc/sys/kernel/nmi_watchdog\n"
1185 "	perf stat ...\n"
1186 "	echo 1 > /proc/sys/kernel/nmi_watchdog\n");
1187 
1188 	if (config->print_mixed_hw_group_error)
1189 		fprintf(output,
1190 			"The events in group usually have to be from "
1191 			"the same PMU. Try reorganizing the group.\n");
1192 }
1193 
1194 static void print_percore_thread(struct perf_stat_config *config,
1195 				 struct evsel *counter, char *prefix)
1196 {
1197 	int s;
1198 	struct aggr_cpu_id s2, id;
1199 	bool first = true;
1200 
1201 	for (int i = 0; i < evsel__nr_cpus(counter); i++) {
1202 		s2 = config->aggr_get_id(config, evsel__cpus(counter), i);
1203 		for (s = 0; s < config->aggr_map->nr; s++) {
1204 			id = config->aggr_map->map[s];
1205 			if (cpu_map__compare_aggr_cpu_id(s2, id))
1206 				break;
1207 		}
1208 
1209 		print_counter_aggrdata(config, counter, s,
1210 				       prefix, false,
1211 				       &first, i);
1212 	}
1213 }
1214 
1215 static void print_percore(struct perf_stat_config *config,
1216 			  struct evsel *counter, char *prefix)
1217 {
1218 	bool metric_only = config->metric_only;
1219 	FILE *output = config->output;
1220 	int s;
1221 	bool first = true;
1222 
1223 	if (!config->aggr_map || !config->aggr_get_id)
1224 		return;
1225 
1226 	if (config->percore_show_thread)
1227 		return print_percore_thread(config, counter, prefix);
1228 
1229 	for (s = 0; s < config->aggr_map->nr; s++) {
1230 		if (prefix && metric_only)
1231 			fprintf(output, "%s", prefix);
1232 
1233 		print_counter_aggrdata(config, counter, s,
1234 				       prefix, metric_only,
1235 				       &first, -1);
1236 	}
1237 
1238 	if (metric_only)
1239 		fputc('\n', output);
1240 }
1241 
1242 void evlist__print_counters(struct evlist *evlist, struct perf_stat_config *config,
1243 			    struct target *_target, struct timespec *ts, int argc, const char **argv)
1244 {
1245 	bool metric_only = config->metric_only;
1246 	int interval = config->interval;
1247 	struct evsel *counter;
1248 	char buf[64], *prefix = NULL;
1249 
1250 	if (config->iostat_run)
1251 		evlist->selected = evlist__first(evlist);
1252 
1253 	if (interval)
1254 		print_interval(config, evlist, prefix = buf, ts);
1255 	else
1256 		print_header(config, _target, argc, argv);
1257 
1258 	if (metric_only) {
1259 		static int num_print_iv;
1260 
1261 		if (num_print_iv == 0 && !interval)
1262 			print_metric_headers(config, evlist, prefix, false);
1263 		if (num_print_iv++ == 25)
1264 			num_print_iv = 0;
1265 		if (config->aggr_mode == AGGR_GLOBAL && prefix && !config->iostat_run)
1266 			fprintf(config->output, "%s", prefix);
1267 	}
1268 
1269 	switch (config->aggr_mode) {
1270 	case AGGR_CORE:
1271 	case AGGR_DIE:
1272 	case AGGR_SOCKET:
1273 	case AGGR_NODE:
1274 		print_aggr(config, evlist, prefix);
1275 		break;
1276 	case AGGR_THREAD:
1277 		evlist__for_each_entry(evlist, counter) {
1278 			print_aggr_thread(config, _target, counter, prefix);
1279 		}
1280 		break;
1281 	case AGGR_GLOBAL:
1282 		if (config->iostat_run)
1283 			iostat_print_counters(evlist, config, ts, prefix = buf,
1284 					      print_counter_aggr);
1285 		else {
1286 			evlist__for_each_entry(evlist, counter) {
1287 				print_counter_aggr(config, counter, prefix);
1288 			}
1289 			if (metric_only)
1290 				fputc('\n', config->output);
1291 		}
1292 		break;
1293 	case AGGR_NONE:
1294 		if (metric_only)
1295 			print_no_aggr_metric(config, evlist, prefix);
1296 		else {
1297 			evlist__for_each_entry(evlist, counter) {
1298 				if (counter->percore)
1299 					print_percore(config, counter, prefix);
1300 				else
1301 					print_counter(config, counter, prefix);
1302 			}
1303 		}
1304 		break;
1305 	case AGGR_UNSET:
1306 	default:
1307 		break;
1308 	}
1309 
1310 	if (!interval && !config->csv_output)
1311 		print_footer(config);
1312 
1313 	fflush(config->output);
1314 }
1315