Linux Audio

Check our new training course

Loading...
v6.9.4
   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 <perf/cpumap.h>
   8#include "color.h"
   9#include "counts.h"
 
  10#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"
  17#include <linux/ctype.h>
  18#include "cgroup.h"
  19#include <api/fs/fs.h>
  20#include "util.h"
  21#include "iostat.h"
  22#include "pmu.h"
  23#include "pmus.h"
 
  24
  25#define CNTR_NOT_SUPPORTED	"<not supported>"
  26#define CNTR_NOT_COUNTED	"<not counted>"
  27
  28#define MGROUP_LEN   50
  29#define METRIC_LEN   38
  30#define EVNAME_LEN   32
  31#define COUNTS_LEN   18
  32#define INTERVAL_LEN 16
  33#define CGROUP_LEN   16
  34#define COMM_LEN     16
  35#define PID_LEN       7
  36#define CPUS_LEN      4
  37
  38static int aggr_header_lens[] = {
  39	[AGGR_CORE] 	= 18,
  40	[AGGR_CACHE]	= 22,
 
  41	[AGGR_DIE] 	= 12,
  42	[AGGR_SOCKET] 	= 6,
  43	[AGGR_NODE] 	= 6,
  44	[AGGR_NONE] 	= 6,
  45	[AGGR_THREAD] 	= 16,
  46	[AGGR_GLOBAL] 	= 0,
  47};
  48
  49static const char *aggr_header_csv[] = {
  50	[AGGR_CORE] 	= 	"core,cpus,",
  51	[AGGR_CACHE]	= 	"cache,cpus,",
 
  52	[AGGR_DIE] 	= 	"die,cpus,",
  53	[AGGR_SOCKET] 	= 	"socket,cpus,",
  54	[AGGR_NONE] 	= 	"cpu,",
  55	[AGGR_THREAD] 	= 	"comm-pid,",
  56	[AGGR_NODE] 	= 	"node,",
  57	[AGGR_GLOBAL] 	=	""
  58};
  59
  60static const char *aggr_header_std[] = {
  61	[AGGR_CORE] 	= 	"core",
  62	[AGGR_CACHE] 	= 	"cache",
 
  63	[AGGR_DIE] 	= 	"die",
  64	[AGGR_SOCKET] 	= 	"socket",
  65	[AGGR_NONE] 	= 	"cpu",
  66	[AGGR_THREAD] 	= 	"comm-pid",
  67	[AGGR_NODE] 	= 	"node",
  68	[AGGR_GLOBAL] 	=	""
  69};
  70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  71static void print_running_std(struct perf_stat_config *config, u64 run, u64 ena)
  72{
  73	if (run != ena)
  74		fprintf(config->output, "  (%.2f%%)", 100.0 * run / ena);
  75}
  76
  77static void print_running_csv(struct perf_stat_config *config, u64 run, u64 ena)
  78{
  79	double enabled_percent = 100;
  80
  81	if (run != ena)
  82		enabled_percent = 100 * run / ena;
  83	fprintf(config->output, "%s%" PRIu64 "%s%.2f",
  84		config->csv_sep, run, config->csv_sep, enabled_percent);
  85}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  86
  87static void print_running_json(struct perf_stat_config *config, u64 run, u64 ena)
  88{
  89	double enabled_percent = 100;
  90
  91	if (run != ena)
  92		enabled_percent = 100 * run / ena;
  93	fprintf(config->output, "\"event-runtime\" : %" PRIu64 ", \"pcnt-running\" : %.2f, ",
  94		run, enabled_percent);
  95}
  96
  97static void print_running(struct perf_stat_config *config,
  98			  u64 run, u64 ena, bool before_metric)
  99{
 100	if (config->json_output) {
 101		if (before_metric)
 102			print_running_json(config, run, ena);
 103	} else if (config->csv_output) {
 104		if (before_metric)
 105			print_running_csv(config, run, ena);
 106	} else {
 107		if (!before_metric)
 108			print_running_std(config, run, ena);
 109	}
 110}
 111
 112static void print_noise_pct_std(struct perf_stat_config *config,
 113				double pct)
 114{
 115	if (pct)
 116		fprintf(config->output, "  ( +-%6.2f%% )", pct);
 117}
 118
 119static void print_noise_pct_csv(struct perf_stat_config *config,
 120				double pct)
 121{
 122	fprintf(config->output, "%s%.2f%%", config->csv_sep, pct);
 123}
 124
 125static void print_noise_pct_json(struct perf_stat_config *config,
 126				 double pct)
 127{
 128	fprintf(config->output, "\"variance\" : %.2f, ", pct);
 129}
 130
 131static void print_noise_pct(struct perf_stat_config *config,
 132			    double total, double avg, bool before_metric)
 133{
 134	double pct = rel_stddev_stats(total, avg);
 135
 136	if (config->json_output) {
 137		if (before_metric)
 138			print_noise_pct_json(config, pct);
 139	} else if (config->csv_output) {
 140		if (before_metric)
 141			print_noise_pct_csv(config, pct);
 142	} else {
 143		if (!before_metric)
 144			print_noise_pct_std(config, pct);
 145	}
 146}
 147
 148static void print_noise(struct perf_stat_config *config,
 149			struct evsel *evsel, double avg, bool before_metric)
 150{
 151	struct perf_stat_evsel *ps;
 152
 153	if (config->run_count == 1)
 154		return;
 155
 156	ps = evsel->stats;
 157	print_noise_pct(config, stddev_stats(&ps->res_stats), avg, before_metric);
 158}
 159
 160static void print_cgroup_std(struct perf_stat_config *config, const char *cgrp_name)
 161{
 162	fprintf(config->output, " %-*s", CGROUP_LEN, cgrp_name);
 163}
 164
 165static void print_cgroup_csv(struct perf_stat_config *config, const char *cgrp_name)
 166{
 167	fprintf(config->output, "%s%s", config->csv_sep, cgrp_name);
 168}
 169
 170static void print_cgroup_json(struct perf_stat_config *config, const char *cgrp_name)
 171{
 172	fprintf(config->output, "\"cgroup\" : \"%s\", ", cgrp_name);
 173}
 174
 175static void print_cgroup(struct perf_stat_config *config, struct cgroup *cgrp)
 
 176{
 177	if (nr_cgroups || config->cgroup_list) {
 178		const char *cgrp_name = cgrp ? cgrp->name  : "";
 179
 180		if (config->json_output)
 181			print_cgroup_json(config, cgrp_name);
 182		else if (config->csv_output)
 183			print_cgroup_csv(config, cgrp_name);
 184		else
 185			print_cgroup_std(config, cgrp_name);
 186	}
 187}
 188
 189static void print_aggr_id_std(struct perf_stat_config *config,
 190			      struct evsel *evsel, struct aggr_cpu_id id, int aggr_nr)
 191{
 192	FILE *output = config->output;
 193	int idx = config->aggr_mode;
 194	char buf[128];
 195
 196	switch (config->aggr_mode) {
 197	case AGGR_CORE:
 198		snprintf(buf, sizeof(buf), "S%d-D%d-C%d", id.socket, id.die, id.core);
 199		break;
 200	case AGGR_CACHE:
 201		snprintf(buf, sizeof(buf), "S%d-D%d-L%d-ID%d",
 202			 id.socket, id.die, id.cache_lvl, id.cache);
 203		break;
 204	case AGGR_CLUSTER:
 205		snprintf(buf, sizeof(buf), "S%d-D%d-CLS%d", id.socket, id.die, id.cluster);
 206		break;
 207	case AGGR_DIE:
 208		snprintf(buf, sizeof(buf), "S%d-D%d", id.socket, id.die);
 209		break;
 210	case AGGR_SOCKET:
 211		snprintf(buf, sizeof(buf), "S%d", id.socket);
 212		break;
 213	case AGGR_NODE:
 214		snprintf(buf, sizeof(buf), "N%d", id.node);
 215		break;
 216	case AGGR_NONE:
 217		if (evsel->percore && !config->percore_show_thread) {
 218			snprintf(buf, sizeof(buf), "S%d-D%d-C%d ",
 219				id.socket, id.die, id.core);
 220			fprintf(output, "%-*s ",
 221				aggr_header_lens[AGGR_CORE], buf);
 222		} else if (id.cpu.cpu > -1) {
 223			fprintf(output, "CPU%-*d ",
 224				aggr_header_lens[AGGR_NONE] - 3, id.cpu.cpu);
 225		}
 226		return;
 227	case AGGR_THREAD:
 228		fprintf(output, "%*s-%-*d ",
 229			COMM_LEN, perf_thread_map__comm(evsel->core.threads, id.thread_idx),
 230			PID_LEN, perf_thread_map__pid(evsel->core.threads, id.thread_idx));
 231		return;
 232	case AGGR_GLOBAL:
 233	case AGGR_UNSET:
 234	case AGGR_MAX:
 235	default:
 236		return;
 237	}
 238
 239	fprintf(output, "%-*s %*d ", aggr_header_lens[idx], buf, 4, aggr_nr);
 240}
 241
 242static void print_aggr_id_csv(struct perf_stat_config *config,
 243			      struct evsel *evsel, struct aggr_cpu_id id, int aggr_nr)
 244{
 245	FILE *output = config->output;
 246	const char *sep = config->csv_sep;
 247
 248	switch (config->aggr_mode) {
 249	case AGGR_CORE:
 250		fprintf(output, "S%d-D%d-C%d%s%d%s",
 251			id.socket, id.die, id.core, sep, aggr_nr, sep);
 252		break;
 253	case AGGR_CACHE:
 254		fprintf(config->output, "S%d-D%d-L%d-ID%d%s%d%s",
 255			id.socket, id.die, id.cache_lvl, id.cache, sep, aggr_nr, sep);
 256		break;
 257	case AGGR_CLUSTER:
 258		fprintf(config->output, "S%d-D%d-CLS%d%s%d%s",
 259			id.socket, id.die, id.cluster, sep, aggr_nr, sep);
 260		break;
 261	case AGGR_DIE:
 262		fprintf(output, "S%d-D%d%s%d%s",
 263			id.socket, id.die, sep, aggr_nr, sep);
 264		break;
 265	case AGGR_SOCKET:
 266		fprintf(output, "S%d%s%d%s",
 267			id.socket, sep, aggr_nr, sep);
 268		break;
 269	case AGGR_NODE:
 270		fprintf(output, "N%d%s%d%s",
 271			id.node, sep, aggr_nr, sep);
 272		break;
 273	case AGGR_NONE:
 274		if (evsel->percore && !config->percore_show_thread) {
 275			fprintf(output, "S%d-D%d-C%d%s",
 276				id.socket, id.die, id.core, sep);
 277		} else if (id.cpu.cpu > -1) {
 278			fprintf(output, "CPU%d%s",
 279				id.cpu.cpu, sep);
 280		}
 281		break;
 282	case AGGR_THREAD:
 283		fprintf(output, "%s-%d%s",
 284			perf_thread_map__comm(evsel->core.threads, id.thread_idx),
 285			perf_thread_map__pid(evsel->core.threads, id.thread_idx),
 286			sep);
 287		break;
 288	case AGGR_GLOBAL:
 289	case AGGR_UNSET:
 290	case AGGR_MAX:
 291	default:
 292		break;
 293	}
 294}
 295
 296static void print_aggr_id_json(struct perf_stat_config *config,
 297			       struct evsel *evsel, struct aggr_cpu_id id, int aggr_nr)
 298{
 299	FILE *output = config->output;
 300
 301	switch (config->aggr_mode) {
 302	case AGGR_CORE:
 303		fprintf(output, "\"core\" : \"S%d-D%d-C%d\", \"aggregate-number\" : %d, ",
 304			id.socket, id.die, id.core, aggr_nr);
 305		break;
 306	case AGGR_CACHE:
 307		fprintf(output, "\"cache\" : \"S%d-D%d-L%d-ID%d\", \"aggregate-number\" : %d, ",
 308			id.socket, id.die, id.cache_lvl, id.cache, aggr_nr);
 309		break;
 310	case AGGR_CLUSTER:
 311		fprintf(output, "\"cluster\" : \"S%d-D%d-CLS%d\", \"aggregate-number\" : %d, ",
 312			id.socket, id.die, id.cluster, aggr_nr);
 313		break;
 314	case AGGR_DIE:
 315		fprintf(output, "\"die\" : \"S%d-D%d\", \"aggregate-number\" : %d, ",
 316			id.socket, id.die, aggr_nr);
 317		break;
 318	case AGGR_SOCKET:
 319		fprintf(output, "\"socket\" : \"S%d\", \"aggregate-number\" : %d, ",
 320			id.socket, aggr_nr);
 321		break;
 322	case AGGR_NODE:
 323		fprintf(output, "\"node\" : \"N%d\", \"aggregate-number\" : %d, ",
 324			id.node, aggr_nr);
 325		break;
 326	case AGGR_NONE:
 327		if (evsel->percore && !config->percore_show_thread) {
 328			fprintf(output, "\"core\" : \"S%d-D%d-C%d\"",
 329				id.socket, id.die, id.core);
 330		} else if (id.cpu.cpu > -1) {
 331			fprintf(output, "\"cpu\" : \"%d\", ",
 332				id.cpu.cpu);
 333		}
 334		break;
 335	case AGGR_THREAD:
 336		fprintf(output, "\"thread\" : \"%s-%d\", ",
 337			perf_thread_map__comm(evsel->core.threads, id.thread_idx),
 338			perf_thread_map__pid(evsel->core.threads, id.thread_idx));
 339		break;
 340	case AGGR_GLOBAL:
 341	case AGGR_UNSET:
 342	case AGGR_MAX:
 343	default:
 344		break;
 345	}
 346}
 347
 348static void aggr_printout(struct perf_stat_config *config,
 349			  struct evsel *evsel, struct aggr_cpu_id id, int aggr_nr)
 350{
 351	if (config->json_output)
 352		print_aggr_id_json(config, evsel, id, aggr_nr);
 353	else if (config->csv_output)
 354		print_aggr_id_csv(config, evsel, id, aggr_nr);
 355	else
 356		print_aggr_id_std(config, evsel, id, aggr_nr);
 357}
 358
 359struct outstate {
 360	FILE *fh;
 361	bool newline;
 362	bool first;
 363	const char *prefix;
 364	int  nfields;
 365	int  aggr_nr;
 366	struct aggr_cpu_id id;
 367	struct evsel *evsel;
 368	struct cgroup *cgrp;
 369};
 370
 371static void new_line_std(struct perf_stat_config *config __maybe_unused,
 372			 void *ctx)
 373{
 374	struct outstate *os = ctx;
 375
 376	os->newline = true;
 377}
 378
 379static inline void __new_line_std_csv(struct perf_stat_config *config,
 380				      struct outstate *os)
 381{
 382	fputc('\n', os->fh);
 383	if (os->prefix)
 384		fputs(os->prefix, os->fh);
 385	aggr_printout(config, os->evsel, os->id, os->aggr_nr);
 386}
 387
 388static inline void __new_line_std(struct outstate *os)
 389{
 390	fprintf(os->fh, "                                                 ");
 391}
 392
 393static void do_new_line_std(struct perf_stat_config *config,
 394			    struct outstate *os)
 395{
 396	__new_line_std_csv(config, os);
 397	if (config->aggr_mode == AGGR_NONE)
 398		fprintf(os->fh, "        ");
 399	__new_line_std(os);
 400}
 401
 402static void print_metric_std(struct perf_stat_config *config,
 403			     void *ctx, const char *color, const char *fmt,
 404			     const char *unit, double val)
 405{
 406	struct outstate *os = ctx;
 407	FILE *out = os->fh;
 408	int n;
 409	bool newline = os->newline;
 
 410
 411	os->newline = false;
 412
 413	if (unit == NULL || fmt == NULL) {
 414		fprintf(out, "%-*s", METRIC_LEN, "");
 415		return;
 416	}
 417
 418	if (newline)
 419		do_new_line_std(config, os);
 420
 421	n = fprintf(out, " # ");
 422	if (color)
 423		n += color_fprintf(out, color, fmt, val);
 424	else
 425		n += fprintf(out, fmt, val);
 426	fprintf(out, " %-*s", METRIC_LEN - n - 1, unit);
 427}
 428
 429static void new_line_csv(struct perf_stat_config *config, void *ctx)
 430{
 431	struct outstate *os = ctx;
 432	int i;
 433
 434	__new_line_std_csv(config, os);
 435	for (i = 0; i < os->nfields; i++)
 436		fputs(config->csv_sep, os->fh);
 437}
 438
 439static void print_metric_csv(struct perf_stat_config *config __maybe_unused,
 440			     void *ctx,
 441			     const char *color __maybe_unused,
 442			     const char *fmt, const char *unit, double val)
 443{
 444	struct outstate *os = ctx;
 445	FILE *out = os->fh;
 446	char buf[64], *vals, *ends;
 447
 448	if (unit == NULL || fmt == NULL) {
 449		fprintf(out, "%s%s", config->csv_sep, config->csv_sep);
 450		return;
 451	}
 452	snprintf(buf, sizeof(buf), fmt, val);
 453	ends = vals = skip_spaces(buf);
 454	while (isdigit(*ends) || *ends == '.')
 455		ends++;
 456	*ends = 0;
 457	fprintf(out, "%s%s%s%s", config->csv_sep, vals, config->csv_sep, skip_spaces(unit));
 458}
 459
 460static void print_metric_json(struct perf_stat_config *config __maybe_unused,
 461			     void *ctx,
 462			     const char *color __maybe_unused,
 463			     const char *fmt __maybe_unused,
 464			     const char *unit, double val)
 465{
 466	struct outstate *os = ctx;
 467	FILE *out = os->fh;
 468
 469	fprintf(out, "\"metric-value\" : \"%f\", ", val);
 470	fprintf(out, "\"metric-unit\" : \"%s\"", unit);
 
 
 
 
 
 471	if (!config->metric_only)
 472		fprintf(out, "}");
 473}
 474
 475static void new_line_json(struct perf_stat_config *config, void *ctx)
 476{
 477	struct outstate *os = ctx;
 478
 479	fputs("\n{", os->fh);
 
 480	if (os->prefix)
 481		fprintf(os->fh, "%s", os->prefix);
 482	aggr_printout(config, os->evsel, os->id, os->aggr_nr);
 
 483}
 484
 485static void print_metricgroup_header_json(struct perf_stat_config *config,
 486					  void *ctx,
 487					  const char *metricgroup_name)
 488{
 489	if (!metricgroup_name)
 490		return;
 491
 492	fprintf(config->output, "\"metricgroup\" : \"%s\"}", metricgroup_name);
 493	new_line_json(config, ctx);
 494}
 495
 496static void print_metricgroup_header_csv(struct perf_stat_config *config,
 497					 void *ctx,
 498					 const char *metricgroup_name)
 499{
 500	struct outstate *os = ctx;
 501	int i;
 502
 503	if (!metricgroup_name) {
 504		/* Leave space for running and enabling */
 505		for (i = 0; i < os->nfields - 2; i++)
 506			fputs(config->csv_sep, os->fh);
 507		return;
 508	}
 509
 510	for (i = 0; i < os->nfields; i++)
 511		fputs(config->csv_sep, os->fh);
 512	fprintf(config->output, "%s", metricgroup_name);
 513	new_line_csv(config, ctx);
 514}
 515
 516static void print_metricgroup_header_std(struct perf_stat_config *config,
 517					 void *ctx,
 518					 const char *metricgroup_name)
 519{
 520	struct outstate *os = ctx;
 521	int n;
 522
 523	if (!metricgroup_name) {
 524		__new_line_std(os);
 525		return;
 526	}
 527
 528	n = fprintf(config->output, " %*s", EVNAME_LEN, metricgroup_name);
 529
 530	fprintf(config->output, "%*s", MGROUP_LEN - n - 1, "");
 531}
 532
 533/* Filter out some columns that don't work well in metrics only mode */
 534
 535static bool valid_only_metric(const char *unit)
 536{
 537	if (!unit)
 538		return false;
 539	if (strstr(unit, "/sec") ||
 540	    strstr(unit, "CPUs utilized"))
 541		return false;
 542	return true;
 543}
 544
 545static const char *fixunit(char *buf, struct evsel *evsel,
 546			   const char *unit)
 547{
 548	if (!strncmp(unit, "of all", 6)) {
 549		snprintf(buf, 1024, "%s %s", evsel__name(evsel),
 550			 unit);
 551		return buf;
 552	}
 553	return unit;
 554}
 555
 556static void print_metric_only(struct perf_stat_config *config,
 557			      void *ctx, const char *color, const char *fmt,
 558			      const char *unit, double val)
 559{
 560	struct outstate *os = ctx;
 561	FILE *out = os->fh;
 562	char buf[1024], str[1024];
 563	unsigned mlen = config->metric_only_len;
 
 564
 565	if (!valid_only_metric(unit))
 566		return;
 567	unit = fixunit(buf, os->evsel, unit);
 568	if (mlen < strlen(unit))
 569		mlen = strlen(unit) + 1;
 570
 571	if (color)
 572		mlen += strlen(color) + sizeof(PERF_COLOR_RESET) - 1;
 573
 574	color_snprintf(str, sizeof(str), color ?: "", fmt ?: "", val);
 575	fprintf(out, "%*s ", mlen, str);
 576	os->first = false;
 577}
 578
 579static void print_metric_only_csv(struct perf_stat_config *config __maybe_unused,
 580				  void *ctx, const char *color __maybe_unused,
 
 581				  const char *fmt,
 582				  const char *unit, double val)
 583{
 584	struct outstate *os = ctx;
 585	FILE *out = os->fh;
 586	char buf[64], *vals, *ends;
 587	char tbuf[1024];
 588
 589	if (!valid_only_metric(unit))
 590		return;
 591	unit = fixunit(tbuf, os->evsel, unit);
 592	snprintf(buf, sizeof(buf), fmt ?: "", val);
 593	ends = vals = skip_spaces(buf);
 594	while (isdigit(*ends) || *ends == '.')
 595		ends++;
 596	*ends = 0;
 597	fprintf(out, "%s%s", vals, config->csv_sep);
 598	os->first = false;
 599}
 600
 601static void print_metric_only_json(struct perf_stat_config *config __maybe_unused,
 602				  void *ctx, const char *color __maybe_unused,
 
 603				  const char *fmt,
 604				  const char *unit, double val)
 605{
 606	struct outstate *os = ctx;
 607	FILE *out = os->fh;
 608	char buf[64], *vals, *ends;
 609	char tbuf[1024];
 
 610
 611	if (!valid_only_metric(unit))
 612		return;
 613	unit = fixunit(tbuf, os->evsel, unit);
 
 
 614	snprintf(buf, sizeof(buf), fmt ?: "", val);
 615	ends = vals = skip_spaces(buf);
 616	while (isdigit(*ends) || *ends == '.')
 617		ends++;
 618	*ends = 0;
 619	if (!unit[0] || !vals[0])
 620		return;
 621	fprintf(out, "%s\"%s\" : \"%s\"", os->first ? "" : ", ", unit, vals);
 622	os->first = false;
 623}
 624
 625static void new_line_metric(struct perf_stat_config *config __maybe_unused,
 626			    void *ctx __maybe_unused)
 627{
 628}
 629
 630static void print_metric_header(struct perf_stat_config *config,
 631				void *ctx, const char *color __maybe_unused,
 
 632				const char *fmt __maybe_unused,
 633				const char *unit, double val __maybe_unused)
 634{
 635	struct outstate *os = ctx;
 636	char tbuf[1024];
 637
 638	/* In case of iostat, print metric header for first root port only */
 639	if (config->iostat_run &&
 640	    os->evsel->priv != os->evsel->evlist->selected->priv)
 641		return;
 642
 643	if (os->evsel->cgrp != os->cgrp)
 644		return;
 645
 646	if (!valid_only_metric(unit))
 647		return;
 648	unit = fixunit(tbuf, os->evsel, unit);
 649
 650	if (config->json_output)
 651		return;
 652	else if (config->csv_output)
 653		fprintf(os->fh, "%s%s", unit, config->csv_sep);
 654	else
 655		fprintf(os->fh, "%*s ", config->metric_only_len, unit);
 656}
 657
 658static void print_counter_value_std(struct perf_stat_config *config,
 659				    struct evsel *evsel, double avg, bool ok)
 660{
 661	FILE *output = config->output;
 662	double sc =  evsel->scale;
 663	const char *fmt;
 664	const char *bad_count = evsel->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED;
 665
 666	if (config->big_num)
 667		fmt = floor(sc) != sc ? "%'*.2f " : "%'*.0f ";
 668	else
 669		fmt = floor(sc) != sc ? "%*.2f " : "%*.0f ";
 670
 671	if (ok)
 672		fprintf(output, fmt, COUNTS_LEN, avg);
 673	else
 674		fprintf(output, "%*s ", COUNTS_LEN, bad_count);
 675
 676	if (evsel->unit)
 677		fprintf(output, "%-*s ", config->unit_width, evsel->unit);
 678
 679	fprintf(output, "%-*s", EVNAME_LEN, evsel__name(evsel));
 680}
 681
 682static void print_counter_value_csv(struct perf_stat_config *config,
 683				    struct evsel *evsel, double avg, bool ok)
 684{
 685	FILE *output = config->output;
 686	double sc =  evsel->scale;
 687	const char *sep = config->csv_sep;
 688	const char *fmt = floor(sc) != sc ? "%.2f%s" : "%.0f%s";
 689	const char *bad_count = evsel->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED;
 690
 691	if (ok)
 692		fprintf(output, fmt, avg, sep);
 693	else
 694		fprintf(output, "%s%s", bad_count, sep);
 695
 696	if (evsel->unit)
 697		fprintf(output, "%s%s", evsel->unit, sep);
 698
 699	fprintf(output, "%s", evsel__name(evsel));
 700}
 701
 702static void print_counter_value_json(struct perf_stat_config *config,
 703				     struct evsel *evsel, double avg, bool ok)
 704{
 705	FILE *output = config->output;
 706	const char *bad_count = evsel->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED;
 707
 708	if (ok)
 709		fprintf(output, "\"counter-value\" : \"%f\", ", avg);
 710	else
 711		fprintf(output, "\"counter-value\" : \"%s\", ", bad_count);
 712
 713	if (evsel->unit)
 714		fprintf(output, "\"unit\" : \"%s\", ", evsel->unit);
 715
 716	fprintf(output, "\"event\" : \"%s\", ", evsel__name(evsel));
 717}
 718
 719static void print_counter_value(struct perf_stat_config *config,
 720				struct evsel *evsel, double avg, bool ok)
 721{
 722	if (config->json_output)
 723		print_counter_value_json(config, evsel, avg, ok);
 724	else if (config->csv_output)
 725		print_counter_value_csv(config, evsel, avg, ok);
 726	else
 727		print_counter_value_std(config, evsel, avg, ok);
 728}
 729
 730static void abs_printout(struct perf_stat_config *config,
 
 731			 struct aggr_cpu_id id, int aggr_nr,
 732			 struct evsel *evsel, double avg, bool ok)
 733{
 734	aggr_printout(config, evsel, id, aggr_nr);
 735	print_counter_value(config, evsel, avg, ok);
 736	print_cgroup(config, evsel->cgrp);
 737}
 738
 739static bool is_mixed_hw_group(struct evsel *counter)
 740{
 741	struct evlist *evlist = counter->evlist;
 742	u32 pmu_type = counter->core.attr.type;
 743	struct evsel *pos;
 744
 745	if (counter->core.nr_members < 2)
 746		return false;
 747
 748	evlist__for_each_entry(evlist, pos) {
 749		/* software events can be part of any hardware group */
 750		if (pos->core.attr.type == PERF_TYPE_SOFTWARE)
 751			continue;
 752		if (pmu_type == PERF_TYPE_SOFTWARE) {
 753			pmu_type = pos->core.attr.type;
 754			continue;
 755		}
 756		if (pmu_type != pos->core.attr.type)
 757			return true;
 758	}
 759
 760	return false;
 761}
 762
 763static bool evlist__has_hybrid(struct evlist *evlist)
 764{
 765	struct evsel *evsel;
 766
 767	if (perf_pmus__num_core_pmus() == 1)
 768		return false;
 769
 770	evlist__for_each_entry(evlist, evsel) {
 771		if (evsel->core.is_pmu_core)
 772			return true;
 773	}
 774
 775	return false;
 776}
 777
 778static void printout(struct perf_stat_config *config, struct outstate *os,
 779		     double uval, u64 run, u64 ena, double noise, int aggr_idx)
 780{
 781	struct perf_stat_output_ctx out;
 782	print_metric_t pm;
 783	new_line_t nl;
 784	print_metricgroup_header_t pmh;
 785	bool ok = true;
 786	struct evsel *counter = os->evsel;
 787
 788	if (config->csv_output) {
 789		pm = config->metric_only ? print_metric_only_csv : print_metric_csv;
 790		nl = config->metric_only ? new_line_metric : new_line_csv;
 791		pmh = print_metricgroup_header_csv;
 792		os->nfields = 4 + (counter->cgrp ? 1 : 0);
 793	} else if (config->json_output) {
 794		pm = config->metric_only ? print_metric_only_json : print_metric_json;
 795		nl = config->metric_only ? new_line_metric : new_line_json;
 796		pmh = print_metricgroup_header_json;
 797	} else {
 798		pm = config->metric_only ? print_metric_only : print_metric_std;
 799		nl = config->metric_only ? new_line_metric : new_line_std;
 800		pmh = print_metricgroup_header_std;
 801	}
 802
 803	if (run == 0 || ena == 0 || counter->counts->scaled == -1) {
 804		if (config->metric_only) {
 805			pm(config, os, NULL, "", "", 0);
 806			return;
 807		}
 808
 809		ok = false;
 810
 811		if (counter->supported) {
 812			if (!evlist__has_hybrid(counter->evlist)) {
 813				config->print_free_counters_hint = 1;
 814				if (is_mixed_hw_group(counter))
 815					config->print_mixed_hw_group_error = 1;
 816			}
 817		}
 818	}
 819
 820	out.print_metric = pm;
 821	out.new_line = nl;
 822	out.print_metricgroup_header = pmh;
 823	out.ctx = os;
 824	out.force_header = false;
 825
 826	if (!config->metric_only && !counter->default_metricgroup) {
 827		abs_printout(config, os->id, os->aggr_nr, counter, uval, ok);
 828
 829		print_noise(config, counter, noise, /*before_metric=*/true);
 830		print_running(config, run, ena, /*before_metric=*/true);
 831	}
 832
 833	if (ok) {
 834		if (!config->metric_only && counter->default_metricgroup) {
 835			void *from = NULL;
 836
 837			aggr_printout(config, os->evsel, os->id, os->aggr_nr);
 838			/* Print out all the metricgroup with the same metric event. */
 839			do {
 840				int num = 0;
 841
 842				/* Print out the new line for the next new metricgroup. */
 843				if (from) {
 844					if (config->json_output)
 845						new_line_json(config, (void *)os);
 846					else
 847						__new_line_std_csv(config, os);
 848				}
 849
 850				print_noise(config, counter, noise, /*before_metric=*/true);
 851				print_running(config, run, ena, /*before_metric=*/true);
 852				from = perf_stat__print_shadow_stats_metricgroup(config, counter, aggr_idx,
 853										 &num, from, &out,
 854										 &config->metric_events);
 855			} while (from != NULL);
 856		} else
 857			perf_stat__print_shadow_stats(config, counter, uval, aggr_idx,
 858						      &out, &config->metric_events);
 859	} else {
 860		pm(config, os, /*color=*/NULL, /*format=*/NULL, /*unit=*/"", /*val=*/0);
 861	}
 862
 863	if (!config->metric_only) {
 864		print_noise(config, counter, noise, /*before_metric=*/false);
 865		print_running(config, run, ena, /*before_metric=*/false);
 866	}
 867}
 868
 869static void uniquify_event_name(struct evsel *counter)
 870{
 871	char *new_name;
 872	char *config;
 873	int ret = 0;
 874
 875	if (counter->uniquified_name || counter->use_config_name ||
 876	    !counter->pmu_name || !strncmp(evsel__name(counter), counter->pmu_name,
 877					   strlen(counter->pmu_name)))
 878		return;
 879
 880	config = strchr(counter->name, '/');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 881	if (config) {
 882		if (asprintf(&new_name,
 883			     "%s%s", counter->pmu_name, config) > 0) {
 884			free(counter->name);
 885			counter->name = new_name;
 886		}
 887	} else {
 888		if (evsel__is_hybrid(counter)) {
 889			ret = asprintf(&new_name, "%s/%s/",
 890				       counter->pmu_name, counter->name);
 891		} else {
 892			ret = asprintf(&new_name, "%s [%s]",
 893				       counter->name, counter->pmu_name);
 894		}
 
 
 
 
 
 895
 896		if (ret) {
 897			free(counter->name);
 898			counter->name = new_name;
 
 899		}
 900	}
 901
 902	counter->uniquified_name = true;
 
 
 
 
 
 903}
 904
 905static bool hybrid_uniquify(struct evsel *evsel, struct perf_stat_config *config)
 906{
 907	return evsel__is_hybrid(evsel) && !config->hybrid_merge;
 908}
 909
 910static void uniquify_counter(struct perf_stat_config *config, struct evsel *counter)
 911{
 912	if (config->aggr_mode == AGGR_NONE || hybrid_uniquify(counter, config))
 913		uniquify_event_name(counter);
 914}
 915
 916/**
 917 * should_skip_zero_count() - Check if the event should print 0 values.
 918 * @config: The perf stat configuration (including aggregation mode).
 919 * @counter: The evsel with its associated cpumap.
 920 * @id: The aggregation id that is being queried.
 921 *
 922 * Due to mismatch between the event cpumap or thread-map and the
 923 * aggregation mode, sometimes it'd iterate the counter with the map
 924 * which does not contain any values.
 925 *
 926 * For example, uncore events have dedicated CPUs to manage them,
 927 * result for other CPUs should be zero and skipped.
 928 *
 929 * Return: %true if the value should NOT be printed, %false if the value
 930 * needs to be printed like "<not counted>" or "<not supported>".
 931 */
 932static bool should_skip_zero_counter(struct perf_stat_config *config,
 933				     struct evsel *counter,
 934				     const struct aggr_cpu_id *id)
 935{
 936	struct perf_cpu cpu;
 937	int idx;
 938
 939	/*
 
 
 
 
 
 
 
 940	 * Skip value 0 when enabling --per-thread globally,
 941	 * otherwise it will have too many 0 output.
 942	 */
 943	if (config->aggr_mode == AGGR_THREAD && config->system_wide)
 944		return true;
 945
 946	/* Tool events have the software PMU but are only gathered on 1. */
 947	if (evsel__is_tool(counter))
 948		return true;
 
 
 
 
 
 
 
 949
 950	/*
 951	 * Skip value 0 when it's an uncore event and the given aggr id
 952	 * does not belong to the PMU cpumask.
 953	 */
 954	if (!counter->pmu || !counter->pmu->is_uncore)
 955		return false;
 956
 957	perf_cpu_map__for_each_cpu(cpu, idx, counter->pmu->cpus) {
 958		struct aggr_cpu_id own_id = config->aggr_get_id(config, cpu);
 959
 960		if (aggr_cpu_id__equal(id, &own_id))
 961			return false;
 962	}
 963	return true;
 964}
 965
 966static void print_counter_aggrdata(struct perf_stat_config *config,
 967				   struct evsel *counter, int aggr_idx,
 968				   struct outstate *os)
 969{
 970	FILE *output = config->output;
 971	u64 ena, run, val;
 972	double uval;
 973	struct perf_stat_evsel *ps = counter->stats;
 974	struct perf_stat_aggr *aggr = &ps->aggr[aggr_idx];
 975	struct aggr_cpu_id id = config->aggr_map->map[aggr_idx];
 976	double avg = aggr->counts.val;
 977	bool metric_only = config->metric_only;
 978
 979	os->id = id;
 980	os->aggr_nr = aggr->nr;
 981	os->evsel = counter;
 982
 983	/* Skip already merged uncore/hybrid events */
 984	if (counter->merged_stat)
 985		return;
 986
 987	uniquify_counter(config, counter);
 988
 989	val = aggr->counts.val;
 990	ena = aggr->counts.ena;
 991	run = aggr->counts.run;
 992
 993	if (perf_stat__skip_metric_event(counter, &config->metric_events, ena, run))
 994		return;
 995
 996	if (val == 0 && should_skip_zero_counter(config, counter, &id))
 997		return;
 998
 999	if (!metric_only) {
1000		if (config->json_output)
 
1001			fputc('{', output);
1002		if (os->prefix)
1003			fprintf(output, "%s", os->prefix);
1004		else if (config->summary && config->csv_output &&
1005			 !config->no_csv_summary && !config->interval)
 
 
 
 
1006			fprintf(output, "%s%s", "summary", config->csv_sep);
1007	}
1008
1009	uval = val * counter->scale;
1010
1011	printout(config, os, uval, run, ena, avg, aggr_idx);
1012
1013	if (!metric_only)
1014		fputc('\n', output);
1015}
1016
1017static void print_metric_begin(struct perf_stat_config *config,
1018			       struct evlist *evlist,
1019			       struct outstate *os, int aggr_idx)
1020{
1021	struct perf_stat_aggr *aggr;
1022	struct aggr_cpu_id id;
1023	struct evsel *evsel;
1024
1025	os->first = true;
1026	if (!config->metric_only)
1027		return;
1028
1029	if (config->json_output)
1030		fputc('{', config->output);
1031	if (os->prefix)
1032		fprintf(config->output, "%s", os->prefix);
1033
 
 
 
 
 
 
1034	evsel = evlist__first(evlist);
1035	id = config->aggr_map->map[aggr_idx];
1036	aggr = &evsel->stats->aggr[aggr_idx];
1037	aggr_printout(config, evsel, id, aggr->nr);
1038
1039	print_cgroup(config, os->cgrp ? : evsel->cgrp);
1040}
1041
1042static void print_metric_end(struct perf_stat_config *config, struct outstate *os)
1043{
1044	FILE *output = config->output;
1045
1046	if (!config->metric_only)
1047		return;
1048
1049	if (config->json_output) {
1050		if (os->first)
1051			fputs("\"metric-value\" : \"none\"", output);
1052		fputc('}', output);
1053	}
1054	fputc('\n', output);
1055}
1056
1057static void print_aggr(struct perf_stat_config *config,
1058		       struct evlist *evlist,
1059		       struct outstate *os)
1060{
1061	struct evsel *counter;
1062	int aggr_idx;
1063
1064	if (!config->aggr_map || !config->aggr_get_id)
1065		return;
1066
1067	/*
1068	 * With metric_only everything is on a single line.
1069	 * Without each counter has its own line.
1070	 */
1071	cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1072		print_metric_begin(config, evlist, os, aggr_idx);
1073
1074		evlist__for_each_entry(evlist, counter) {
1075			print_counter_aggrdata(config, counter, aggr_idx, os);
1076		}
1077		print_metric_end(config, os);
1078	}
1079}
1080
1081static void print_aggr_cgroup(struct perf_stat_config *config,
1082			      struct evlist *evlist,
1083			      struct outstate *os)
1084{
1085	struct evsel *counter, *evsel;
1086	int aggr_idx;
1087
1088	if (!config->aggr_map || !config->aggr_get_id)
1089		return;
1090
1091	evlist__for_each_entry(evlist, evsel) {
1092		if (os->cgrp == evsel->cgrp)
1093			continue;
1094
1095		os->cgrp = evsel->cgrp;
1096
1097		cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1098			print_metric_begin(config, evlist, os, aggr_idx);
1099
1100			evlist__for_each_entry(evlist, counter) {
1101				if (counter->cgrp != os->cgrp)
1102					continue;
1103
1104				print_counter_aggrdata(config, counter, aggr_idx, os);
1105			}
1106			print_metric_end(config, os);
1107		}
1108	}
1109}
1110
1111static void print_counter(struct perf_stat_config *config,
1112			  struct evsel *counter, struct outstate *os)
1113{
1114	int aggr_idx;
1115
1116	/* AGGR_THREAD doesn't have config->aggr_get_id */
1117	if (!config->aggr_map)
1118		return;
1119
1120	cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1121		print_counter_aggrdata(config, counter, aggr_idx, os);
1122	}
1123}
1124
1125static void print_no_aggr_metric(struct perf_stat_config *config,
1126				 struct evlist *evlist,
1127				 struct outstate *os)
1128{
1129	int all_idx;
1130	struct perf_cpu cpu;
1131
1132	perf_cpu_map__for_each_cpu(cpu, all_idx, evlist->core.user_requested_cpus) {
1133		struct evsel *counter;
1134		bool first = true;
1135
1136		evlist__for_each_entry(evlist, counter) {
1137			u64 ena, run, val;
1138			double uval;
1139			struct perf_stat_evsel *ps = counter->stats;
1140			int aggr_idx = 0;
1141
1142			if (!perf_cpu_map__has(evsel__cpus(counter), cpu))
1143				continue;
1144
1145			cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1146				if (config->aggr_map->map[aggr_idx].cpu.cpu == cpu.cpu)
1147					break;
1148			}
1149
1150			os->evsel = counter;
1151			os->id = aggr_cpu_id__cpu(cpu, /*data=*/NULL);
1152			if (first) {
1153				print_metric_begin(config, evlist, os, aggr_idx);
1154				first = false;
1155			}
1156			val = ps->aggr[aggr_idx].counts.val;
1157			ena = ps->aggr[aggr_idx].counts.ena;
1158			run = ps->aggr[aggr_idx].counts.run;
1159
1160			uval = val * counter->scale;
1161			printout(config, os, uval, run, ena, 1.0, aggr_idx);
1162		}
1163		if (!first)
1164			print_metric_end(config, os);
1165	}
1166}
1167
1168static void print_metric_headers_std(struct perf_stat_config *config,
1169				     bool no_indent)
1170{
1171	fputc(' ', config->output);
1172
1173	if (!no_indent) {
1174		int len = aggr_header_lens[config->aggr_mode];
1175
1176		if (nr_cgroups || config->cgroup_list)
1177			len += CGROUP_LEN + 1;
1178
1179		fprintf(config->output, "%*s", len, "");
1180	}
1181}
1182
1183static void print_metric_headers_csv(struct perf_stat_config *config,
1184				     bool no_indent __maybe_unused)
1185{
 
 
1186	if (config->interval)
1187		fputs("time,", config->output);
1188	if (!config->iostat_run)
1189		fputs(aggr_header_csv[config->aggr_mode], config->output);
 
 
 
 
 
 
 
 
 
1190}
1191
1192static void print_metric_headers_json(struct perf_stat_config *config __maybe_unused,
1193				      bool no_indent __maybe_unused)
1194{
1195}
1196
1197static void print_metric_headers(struct perf_stat_config *config,
1198				 struct evlist *evlist, bool no_indent)
1199{
1200	struct evsel *counter;
1201	struct outstate os = {
1202		.fh = config->output
1203	};
1204	struct perf_stat_output_ctx out = {
1205		.ctx = &os,
1206		.print_metric = print_metric_header,
1207		.new_line = new_line_metric,
1208		.force_header = true,
1209	};
1210
1211	if (config->json_output)
1212		print_metric_headers_json(config, no_indent);
1213	else if (config->csv_output)
1214		print_metric_headers_csv(config, no_indent);
1215	else
1216		print_metric_headers_std(config, no_indent);
1217
1218	if (config->iostat_run)
1219		iostat_print_header_prefix(config);
1220
1221	if (config->cgroup_list)
1222		os.cgrp = evlist__first(evlist)->cgrp;
1223
1224	/* Print metrics headers only */
1225	evlist__for_each_entry(evlist, counter) {
1226		if (config->aggr_mode != AGGR_NONE && counter->metric_leader != counter)
 
1227			continue;
1228
1229		os.evsel = counter;
1230
1231		perf_stat__print_shadow_stats(config, counter, 0,
1232					      0,
1233					      &out,
1234					      &config->metric_events);
1235	}
1236
1237	if (!config->json_output)
1238		fputc('\n', config->output);
1239}
1240
1241static void prepare_interval(struct perf_stat_config *config,
1242			     char *prefix, size_t len, struct timespec *ts)
1243{
1244	if (config->iostat_run)
1245		return;
1246
1247	if (config->json_output)
1248		scnprintf(prefix, len, "\"interval\" : %lu.%09lu, ",
1249			  (unsigned long) ts->tv_sec, ts->tv_nsec);
1250	else if (config->csv_output)
1251		scnprintf(prefix, len, "%lu.%09lu%s",
1252			  (unsigned long) ts->tv_sec, ts->tv_nsec, config->csv_sep);
1253	else
1254		scnprintf(prefix, len, "%6lu.%09lu ",
1255			  (unsigned long) ts->tv_sec, ts->tv_nsec);
1256}
1257
1258static void print_header_interval_std(struct perf_stat_config *config,
1259				      struct target *_target __maybe_unused,
1260				      struct evlist *evlist,
1261				      int argc __maybe_unused,
1262				      const char **argv __maybe_unused)
1263{
1264	FILE *output = config->output;
1265
1266	switch (config->aggr_mode) {
1267	case AGGR_NODE:
1268	case AGGR_SOCKET:
1269	case AGGR_DIE:
1270	case AGGR_CLUSTER:
1271	case AGGR_CACHE:
1272	case AGGR_CORE:
1273		fprintf(output, "#%*s %-*s cpus",
1274			INTERVAL_LEN - 1, "time",
1275			aggr_header_lens[config->aggr_mode],
1276			aggr_header_std[config->aggr_mode]);
1277		break;
1278	case AGGR_NONE:
1279		fprintf(output, "#%*s %-*s",
1280			INTERVAL_LEN - 1, "time",
1281			aggr_header_lens[config->aggr_mode],
1282			aggr_header_std[config->aggr_mode]);
1283		break;
1284	case AGGR_THREAD:
1285		fprintf(output, "#%*s %*s-%-*s",
1286			INTERVAL_LEN - 1, "time",
1287			COMM_LEN, "comm", PID_LEN, "pid");
1288		break;
1289	case AGGR_GLOBAL:
1290	default:
1291		if (!config->iostat_run)
1292			fprintf(output, "#%*s",
1293				INTERVAL_LEN - 1, "time");
1294	case AGGR_UNSET:
1295	case AGGR_MAX:
1296		break;
1297	}
1298
1299	if (config->metric_only)
1300		print_metric_headers(config, evlist, true);
1301	else
1302		fprintf(output, " %*s %*s events\n",
1303			COUNTS_LEN, "counts", config->unit_width, "unit");
1304}
1305
1306static void print_header_std(struct perf_stat_config *config,
1307			     struct target *_target, struct evlist *evlist,
1308			     int argc, const char **argv)
1309{
1310	FILE *output = config->output;
1311	int i;
1312
1313	fprintf(output, "\n");
1314	fprintf(output, " Performance counter stats for ");
1315	if (_target->bpf_str)
1316		fprintf(output, "\'BPF program(s) %s", _target->bpf_str);
1317	else if (_target->system_wide)
1318		fprintf(output, "\'system wide");
1319	else if (_target->cpu_list)
1320		fprintf(output, "\'CPU(s) %s", _target->cpu_list);
1321	else if (!target__has_task(_target)) {
1322		fprintf(output, "\'%s", argv ? argv[0] : "pipe");
1323		for (i = 1; argv && (i < argc); i++)
1324			fprintf(output, " %s", argv[i]);
1325	} else if (_target->pid)
1326		fprintf(output, "process id \'%s", _target->pid);
1327	else
1328		fprintf(output, "thread id \'%s", _target->tid);
1329
1330	fprintf(output, "\'");
1331	if (config->run_count > 1)
1332		fprintf(output, " (%d runs)", config->run_count);
1333	fprintf(output, ":\n\n");
1334
1335	if (config->metric_only)
1336		print_metric_headers(config, evlist, false);
1337}
1338
1339static void print_header_csv(struct perf_stat_config *config,
1340			     struct target *_target __maybe_unused,
1341			     struct evlist *evlist,
1342			     int argc __maybe_unused,
1343			     const char **argv __maybe_unused)
1344{
1345	if (config->metric_only)
1346		print_metric_headers(config, evlist, true);
1347}
1348static void print_header_json(struct perf_stat_config *config,
1349			      struct target *_target __maybe_unused,
1350			      struct evlist *evlist,
1351			      int argc __maybe_unused,
1352			      const char **argv __maybe_unused)
1353{
1354	if (config->metric_only)
1355		print_metric_headers(config, evlist, true);
1356}
1357
1358static void print_header(struct perf_stat_config *config,
1359			 struct target *_target,
1360			 struct evlist *evlist,
1361			 int argc, const char **argv)
1362{
1363	static int num_print_iv;
1364
1365	fflush(stdout);
1366
1367	if (config->interval_clear)
1368		puts(CONSOLE_CLEAR);
1369
1370	if (num_print_iv == 0 || config->interval_clear) {
1371		if (config->json_output)
1372			print_header_json(config, _target, evlist, argc, argv);
1373		else if (config->csv_output)
1374			print_header_csv(config, _target, evlist, argc, argv);
1375		else if (config->interval)
1376			print_header_interval_std(config, _target, evlist, argc, argv);
1377		else
1378			print_header_std(config, _target, evlist, argc, argv);
1379	}
1380
1381	if (num_print_iv++ == 25)
1382		num_print_iv = 0;
1383}
1384
1385static int get_precision(double num)
1386{
1387	if (num > 1)
1388		return 0;
1389
1390	return lround(ceil(-log10(num)));
1391}
1392
1393static void print_table(struct perf_stat_config *config,
1394			FILE *output, int precision, double avg)
1395{
1396	char tmp[64];
1397	int idx, indent = 0;
1398
1399	scnprintf(tmp, 64, " %17.*f", precision, avg);
1400	while (tmp[indent] == ' ')
1401		indent++;
1402
1403	fprintf(output, "%*s# Table of individual measurements:\n", indent, "");
1404
1405	for (idx = 0; idx < config->run_count; idx++) {
1406		double run = (double) config->walltime_run[idx] / NSEC_PER_SEC;
1407		int h, n = 1 + abs((int) (100.0 * (run - avg)/run) / 5);
1408
1409		fprintf(output, " %17.*f (%+.*f) ",
1410			precision, run, precision, run - avg);
1411
1412		for (h = 0; h < n; h++)
1413			fprintf(output, "#");
1414
1415		fprintf(output, "\n");
1416	}
1417
1418	fprintf(output, "\n%*s# Final result:\n", indent, "");
1419}
1420
1421static double timeval2double(struct timeval *t)
1422{
1423	return t->tv_sec + (double) t->tv_usec/USEC_PER_SEC;
1424}
1425
1426static void print_footer(struct perf_stat_config *config)
1427{
1428	double avg = avg_stats(config->walltime_nsecs_stats) / NSEC_PER_SEC;
1429	FILE *output = config->output;
1430
1431	if (config->interval || config->csv_output || config->json_output)
1432		return;
1433
1434	if (!config->null_run)
1435		fprintf(output, "\n");
1436
1437	if (config->run_count == 1) {
1438		fprintf(output, " %17.9f seconds time elapsed", avg);
1439
1440		if (config->ru_display) {
1441			double ru_utime = timeval2double(&config->ru_data.ru_utime);
1442			double ru_stime = timeval2double(&config->ru_data.ru_stime);
1443
1444			fprintf(output, "\n\n");
1445			fprintf(output, " %17.9f seconds user\n", ru_utime);
1446			fprintf(output, " %17.9f seconds sys\n", ru_stime);
1447		}
1448	} else {
1449		double sd = stddev_stats(config->walltime_nsecs_stats) / NSEC_PER_SEC;
1450		/*
1451		 * Display at most 2 more significant
1452		 * digits than the stddev inaccuracy.
1453		 */
1454		int precision = get_precision(sd) + 2;
1455
1456		if (config->walltime_run_table)
1457			print_table(config, output, precision, avg);
1458
1459		fprintf(output, " %17.*f +- %.*f seconds time elapsed",
1460			precision, avg, precision, sd);
1461
1462		print_noise_pct(config, sd, avg, /*before_metric=*/false);
1463	}
1464	fprintf(output, "\n\n");
1465
1466	if (config->print_free_counters_hint && sysctl__nmi_watchdog_enabled())
1467		fprintf(output,
1468"Some events weren't counted. Try disabling the NMI watchdog:\n"
1469"	echo 0 > /proc/sys/kernel/nmi_watchdog\n"
1470"	perf stat ...\n"
1471"	echo 1 > /proc/sys/kernel/nmi_watchdog\n");
1472
1473	if (config->print_mixed_hw_group_error)
1474		fprintf(output,
1475			"The events in group usually have to be from "
1476			"the same PMU. Try reorganizing the group.\n");
1477}
1478
1479static void print_percore(struct perf_stat_config *config,
1480			  struct evsel *counter, struct outstate *os)
1481{
1482	bool metric_only = config->metric_only;
1483	FILE *output = config->output;
1484	struct cpu_aggr_map *core_map;
1485	int aggr_idx, core_map_len = 0;
1486
1487	if (!config->aggr_map || !config->aggr_get_id)
1488		return;
1489
1490	if (config->percore_show_thread)
1491		return print_counter(config, counter, os);
1492
1493	/*
1494	 * core_map will hold the aggr_cpu_id for the cores that have been
1495	 * printed so that each core is printed just once.
1496	 */
1497	core_map = cpu_aggr_map__empty_new(config->aggr_map->nr);
1498	if (core_map == NULL) {
1499		fprintf(output, "Cannot allocate per-core aggr map for display\n");
1500		return;
1501	}
1502
1503	cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1504		struct perf_cpu curr_cpu = config->aggr_map->map[aggr_idx].cpu;
1505		struct aggr_cpu_id core_id = aggr_cpu_id__core(curr_cpu, NULL);
1506		bool found = false;
1507
1508		for (int i = 0; i < core_map_len; i++) {
1509			if (aggr_cpu_id__equal(&core_map->map[i], &core_id)) {
1510				found = true;
1511				break;
1512			}
1513		}
1514		if (found)
1515			continue;
1516
1517		print_counter_aggrdata(config, counter, aggr_idx, os);
1518
1519		core_map->map[core_map_len++] = core_id;
1520	}
1521	free(core_map);
1522
1523	if (metric_only)
1524		fputc('\n', output);
1525}
1526
1527static void print_cgroup_counter(struct perf_stat_config *config, struct evlist *evlist,
1528				 struct outstate *os)
1529{
1530	struct evsel *counter;
1531
1532	evlist__for_each_entry(evlist, counter) {
1533		if (os->cgrp != counter->cgrp) {
1534			if (os->cgrp != NULL)
1535				print_metric_end(config, os);
1536
1537			os->cgrp = counter->cgrp;
1538			print_metric_begin(config, evlist, os, /*aggr_idx=*/0);
1539		}
1540
1541		print_counter(config, counter, os);
1542	}
1543	if (os->cgrp)
1544		print_metric_end(config, os);
1545}
1546
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1547void evlist__print_counters(struct evlist *evlist, struct perf_stat_config *config,
1548			    struct target *_target, struct timespec *ts,
1549			    int argc, const char **argv)
1550{
1551	bool metric_only = config->metric_only;
1552	int interval = config->interval;
1553	struct evsel *counter;
1554	char buf[64];
1555	struct outstate os = {
1556		.fh = config->output,
1557		.first = true,
1558	};
 
 
1559
1560	if (config->iostat_run)
1561		evlist->selected = evlist__first(evlist);
1562
1563	if (interval) {
1564		os.prefix = buf;
1565		prepare_interval(config, buf, sizeof(buf), ts);
1566	}
1567
1568	print_header(config, _target, evlist, argc, argv);
1569
1570	switch (config->aggr_mode) {
1571	case AGGR_CORE:
1572	case AGGR_CACHE:
1573	case AGGR_CLUSTER:
1574	case AGGR_DIE:
1575	case AGGR_SOCKET:
1576	case AGGR_NODE:
1577		if (config->cgroup_list)
1578			print_aggr_cgroup(config, evlist, &os);
1579		else
1580			print_aggr(config, evlist, &os);
1581		break;
1582	case AGGR_THREAD:
1583	case AGGR_GLOBAL:
1584		if (config->iostat_run) {
1585			iostat_print_counters(evlist, config, ts, buf,
1586					      (iostat_print_counter_t)print_counter, &os);
1587		} else if (config->cgroup_list) {
1588			print_cgroup_counter(config, evlist, &os);
1589		} else {
1590			print_metric_begin(config, evlist, &os, /*aggr_idx=*/0);
1591			evlist__for_each_entry(evlist, counter) {
1592				print_counter(config, counter, &os);
1593			}
1594			print_metric_end(config, &os);
1595		}
1596		break;
1597	case AGGR_NONE:
1598		if (metric_only)
1599			print_no_aggr_metric(config, evlist, &os);
1600		else {
1601			evlist__for_each_entry(evlist, counter) {
1602				if (counter->percore)
1603					print_percore(config, counter, &os);
1604				else
1605					print_counter(config, counter, &os);
1606			}
1607		}
1608		break;
1609	case AGGR_MAX:
1610	case AGGR_UNSET:
1611	default:
1612		break;
1613	}
1614
1615	print_footer(config);
1616
1617	fflush(config->output);
1618}
v6.13.7
   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 <perf/cpumap.h>
   8#include "color.h"
   9#include "counts.h"
  10#include "debug.h"
  11#include "evlist.h"
  12#include "evsel.h"
  13#include "stat.h"
  14#include "top.h"
  15#include "thread_map.h"
  16#include "cpumap.h"
  17#include "string2.h"
  18#include <linux/ctype.h>
  19#include "cgroup.h"
  20#include <api/fs/fs.h>
  21#include "util.h"
  22#include "iostat.h"
  23#include "pmu.h"
  24#include "pmus.h"
  25#include "tool_pmu.h"
  26
  27#define CNTR_NOT_SUPPORTED	"<not supported>"
  28#define CNTR_NOT_COUNTED	"<not counted>"
  29
  30#define MGROUP_LEN   50
  31#define METRIC_LEN   38
  32#define EVNAME_LEN   32
  33#define COUNTS_LEN   18
  34#define INTERVAL_LEN 16
  35#define CGROUP_LEN   16
  36#define COMM_LEN     16
  37#define PID_LEN       7
  38#define CPUS_LEN      4
  39
  40static int aggr_header_lens[] = {
  41	[AGGR_CORE] 	= 18,
  42	[AGGR_CACHE]	= 22,
  43	[AGGR_CLUSTER]	= 20,
  44	[AGGR_DIE] 	= 12,
  45	[AGGR_SOCKET] 	= 6,
  46	[AGGR_NODE] 	= 6,
  47	[AGGR_NONE] 	= 6,
  48	[AGGR_THREAD] 	= 16,
  49	[AGGR_GLOBAL] 	= 0,
  50};
  51
  52static const char *aggr_header_csv[] = {
  53	[AGGR_CORE] 	= 	"core,cpus,",
  54	[AGGR_CACHE]	= 	"cache,cpus,",
  55	[AGGR_CLUSTER]	= 	"cluster,cpus,",
  56	[AGGR_DIE] 	= 	"die,cpus,",
  57	[AGGR_SOCKET] 	= 	"socket,cpus,",
  58	[AGGR_NONE] 	= 	"cpu,",
  59	[AGGR_THREAD] 	= 	"comm-pid,",
  60	[AGGR_NODE] 	= 	"node,",
  61	[AGGR_GLOBAL] 	=	""
  62};
  63
  64static const char *aggr_header_std[] = {
  65	[AGGR_CORE] 	= 	"core",
  66	[AGGR_CACHE] 	= 	"cache",
  67	[AGGR_CLUSTER]	= 	"cluster",
  68	[AGGR_DIE] 	= 	"die",
  69	[AGGR_SOCKET] 	= 	"socket",
  70	[AGGR_NONE] 	= 	"cpu",
  71	[AGGR_THREAD] 	= 	"comm-pid",
  72	[AGGR_NODE] 	= 	"node",
  73	[AGGR_GLOBAL] 	=	""
  74};
  75
  76const char *metric_threshold_classify__color(enum metric_threshold_classify thresh)
  77{
  78	const char * const colors[] = {
  79		"", /* unknown */
  80		PERF_COLOR_RED,     /* bad */
  81		PERF_COLOR_MAGENTA, /* nearly bad */
  82		PERF_COLOR_YELLOW,  /* less good */
  83		PERF_COLOR_GREEN,   /* good */
  84	};
  85	static_assert(ARRAY_SIZE(colors) - 1  == METRIC_THRESHOLD_GOOD, "missing enum value");
  86	return colors[thresh];
  87}
  88
  89static const char *metric_threshold_classify__str(enum metric_threshold_classify thresh)
  90{
  91	const char * const strs[] = {
  92		"unknown",
  93		"bad",
  94		"nearly bad",
  95		"less good",
  96		"good",
  97	};
  98	static_assert(ARRAY_SIZE(strs) - 1  == METRIC_THRESHOLD_GOOD, "missing enum value");
  99	return strs[thresh];
 100}
 101
 102static void print_running_std(struct perf_stat_config *config, u64 run, u64 ena)
 103{
 104	if (run != ena)
 105		fprintf(config->output, "  (%.2f%%)", 100.0 * run / ena);
 106}
 107
 108static void print_running_csv(struct perf_stat_config *config, u64 run, u64 ena)
 109{
 110	double enabled_percent = 100;
 111
 112	if (run != ena)
 113		enabled_percent = 100 * run / ena;
 114	fprintf(config->output, "%s%" PRIu64 "%s%.2f",
 115		config->csv_sep, run, config->csv_sep, enabled_percent);
 116}
 117struct outstate {
 118	FILE *fh;
 119	bool newline;
 120	bool first;
 121	const char *prefix;
 122	int  nfields;
 123	int  aggr_nr;
 124	struct aggr_cpu_id id;
 125	struct evsel *evsel;
 126	struct cgroup *cgrp;
 127};
 128
 129static const char *json_sep(struct outstate *os)
 130{
 131	const char *sep = os->first ? "" : ", ";
 132
 133	os->first = false;
 134	return sep;
 135}
 136
 137#define json_out(os, format, ...) fprintf((os)->fh, "%s" format, json_sep(os), ##__VA_ARGS__)
 138
 139static void print_running_json(struct outstate *os, u64 run, u64 ena)
 140{
 141	double enabled_percent = 100;
 142
 143	if (run != ena)
 144		enabled_percent = 100 * run / ena;
 145	json_out(os, "\"event-runtime\" : %" PRIu64 ", \"pcnt-running\" : %.2f",
 146		 run, enabled_percent);
 147}
 148
 149static void print_running(struct perf_stat_config *config, struct outstate *os,
 150			  u64 run, u64 ena, bool before_metric)
 151{
 152	if (config->json_output) {
 153		if (before_metric)
 154			print_running_json(os, run, ena);
 155	} else if (config->csv_output) {
 156		if (before_metric)
 157			print_running_csv(config, run, ena);
 158	} else {
 159		if (!before_metric)
 160			print_running_std(config, run, ena);
 161	}
 162}
 163
 164static void print_noise_pct_std(struct perf_stat_config *config,
 165				double pct)
 166{
 167	if (pct)
 168		fprintf(config->output, "  ( +-%6.2f%% )", pct);
 169}
 170
 171static void print_noise_pct_csv(struct perf_stat_config *config,
 172				double pct)
 173{
 174	fprintf(config->output, "%s%.2f%%", config->csv_sep, pct);
 175}
 176
 177static void print_noise_pct_json(struct outstate *os,
 178				 double pct)
 179{
 180	json_out(os, "\"variance\" : %.2f", pct);
 181}
 182
 183static void print_noise_pct(struct perf_stat_config *config, struct outstate *os,
 184			    double total, double avg, bool before_metric)
 185{
 186	double pct = rel_stddev_stats(total, avg);
 187
 188	if (config->json_output) {
 189		if (before_metric)
 190			print_noise_pct_json(os, pct);
 191	} else if (config->csv_output) {
 192		if (before_metric)
 193			print_noise_pct_csv(config, pct);
 194	} else {
 195		if (!before_metric)
 196			print_noise_pct_std(config, pct);
 197	}
 198}
 199
 200static void print_noise(struct perf_stat_config *config, struct outstate *os,
 201			struct evsel *evsel, double avg, bool before_metric)
 202{
 203	struct perf_stat_evsel *ps;
 204
 205	if (config->run_count == 1)
 206		return;
 207
 208	ps = evsel->stats;
 209	print_noise_pct(config, os, stddev_stats(&ps->res_stats), avg, before_metric);
 210}
 211
 212static void print_cgroup_std(struct perf_stat_config *config, const char *cgrp_name)
 213{
 214	fprintf(config->output, " %-*s", CGROUP_LEN, cgrp_name);
 215}
 216
 217static void print_cgroup_csv(struct perf_stat_config *config, const char *cgrp_name)
 218{
 219	fprintf(config->output, "%s%s", config->csv_sep, cgrp_name);
 220}
 221
 222static void print_cgroup_json(struct outstate *os, const char *cgrp_name)
 223{
 224	json_out(os, "\"cgroup\" : \"%s\"", cgrp_name);
 225}
 226
 227static void print_cgroup(struct perf_stat_config *config, struct outstate *os,
 228			 struct cgroup *cgrp)
 229{
 230	if (nr_cgroups || config->cgroup_list) {
 231		const char *cgrp_name = cgrp ? cgrp->name  : "";
 232
 233		if (config->json_output)
 234			print_cgroup_json(os, cgrp_name);
 235		else if (config->csv_output)
 236			print_cgroup_csv(config, cgrp_name);
 237		else
 238			print_cgroup_std(config, cgrp_name);
 239	}
 240}
 241
 242static void print_aggr_id_std(struct perf_stat_config *config,
 243			      struct evsel *evsel, struct aggr_cpu_id id, int aggr_nr)
 244{
 245	FILE *output = config->output;
 246	int idx = config->aggr_mode;
 247	char buf[128];
 248
 249	switch (config->aggr_mode) {
 250	case AGGR_CORE:
 251		snprintf(buf, sizeof(buf), "S%d-D%d-C%d", id.socket, id.die, id.core);
 252		break;
 253	case AGGR_CACHE:
 254		snprintf(buf, sizeof(buf), "S%d-D%d-L%d-ID%d",
 255			 id.socket, id.die, id.cache_lvl, id.cache);
 256		break;
 257	case AGGR_CLUSTER:
 258		snprintf(buf, sizeof(buf), "S%d-D%d-CLS%d", id.socket, id.die, id.cluster);
 259		break;
 260	case AGGR_DIE:
 261		snprintf(buf, sizeof(buf), "S%d-D%d", id.socket, id.die);
 262		break;
 263	case AGGR_SOCKET:
 264		snprintf(buf, sizeof(buf), "S%d", id.socket);
 265		break;
 266	case AGGR_NODE:
 267		snprintf(buf, sizeof(buf), "N%d", id.node);
 268		break;
 269	case AGGR_NONE:
 270		if (evsel->percore && !config->percore_show_thread) {
 271			snprintf(buf, sizeof(buf), "S%d-D%d-C%d ",
 272				id.socket, id.die, id.core);
 273			fprintf(output, "%-*s ",
 274				aggr_header_lens[AGGR_CORE], buf);
 275		} else if (id.cpu.cpu > -1) {
 276			fprintf(output, "CPU%-*d ",
 277				aggr_header_lens[AGGR_NONE] - 3, id.cpu.cpu);
 278		}
 279		return;
 280	case AGGR_THREAD:
 281		fprintf(output, "%*s-%-*d ",
 282			COMM_LEN, perf_thread_map__comm(evsel->core.threads, id.thread_idx),
 283			PID_LEN, perf_thread_map__pid(evsel->core.threads, id.thread_idx));
 284		return;
 285	case AGGR_GLOBAL:
 286	case AGGR_UNSET:
 287	case AGGR_MAX:
 288	default:
 289		return;
 290	}
 291
 292	fprintf(output, "%-*s %*d ", aggr_header_lens[idx], buf, 4, aggr_nr);
 293}
 294
 295static void print_aggr_id_csv(struct perf_stat_config *config,
 296			      struct evsel *evsel, struct aggr_cpu_id id, int aggr_nr)
 297{
 298	FILE *output = config->output;
 299	const char *sep = config->csv_sep;
 300
 301	switch (config->aggr_mode) {
 302	case AGGR_CORE:
 303		fprintf(output, "S%d-D%d-C%d%s%d%s",
 304			id.socket, id.die, id.core, sep, aggr_nr, sep);
 305		break;
 306	case AGGR_CACHE:
 307		fprintf(config->output, "S%d-D%d-L%d-ID%d%s%d%s",
 308			id.socket, id.die, id.cache_lvl, id.cache, sep, aggr_nr, sep);
 309		break;
 310	case AGGR_CLUSTER:
 311		fprintf(config->output, "S%d-D%d-CLS%d%s%d%s",
 312			id.socket, id.die, id.cluster, sep, aggr_nr, sep);
 313		break;
 314	case AGGR_DIE:
 315		fprintf(output, "S%d-D%d%s%d%s",
 316			id.socket, id.die, sep, aggr_nr, sep);
 317		break;
 318	case AGGR_SOCKET:
 319		fprintf(output, "S%d%s%d%s",
 320			id.socket, sep, aggr_nr, sep);
 321		break;
 322	case AGGR_NODE:
 323		fprintf(output, "N%d%s%d%s",
 324			id.node, sep, aggr_nr, sep);
 325		break;
 326	case AGGR_NONE:
 327		if (evsel->percore && !config->percore_show_thread) {
 328			fprintf(output, "S%d-D%d-C%d%s",
 329				id.socket, id.die, id.core, sep);
 330		} else if (id.cpu.cpu > -1) {
 331			fprintf(output, "CPU%d%s",
 332				id.cpu.cpu, sep);
 333		}
 334		break;
 335	case AGGR_THREAD:
 336		fprintf(output, "%s-%d%s",
 337			perf_thread_map__comm(evsel->core.threads, id.thread_idx),
 338			perf_thread_map__pid(evsel->core.threads, id.thread_idx),
 339			sep);
 340		break;
 341	case AGGR_GLOBAL:
 342	case AGGR_UNSET:
 343	case AGGR_MAX:
 344	default:
 345		break;
 346	}
 347}
 348
 349static void print_aggr_id_json(struct perf_stat_config *config, struct outstate *os,
 350			       struct evsel *evsel, struct aggr_cpu_id id, int aggr_nr)
 351{
 
 
 352	switch (config->aggr_mode) {
 353	case AGGR_CORE:
 354		json_out(os, "\"core\" : \"S%d-D%d-C%d\", \"aggregate-number\" : %d",
 355			id.socket, id.die, id.core, aggr_nr);
 356		break;
 357	case AGGR_CACHE:
 358		json_out(os, "\"cache\" : \"S%d-D%d-L%d-ID%d\", \"aggregate-number\" : %d",
 359			id.socket, id.die, id.cache_lvl, id.cache, aggr_nr);
 360		break;
 361	case AGGR_CLUSTER:
 362		json_out(os, "\"cluster\" : \"S%d-D%d-CLS%d\", \"aggregate-number\" : %d",
 363			id.socket, id.die, id.cluster, aggr_nr);
 364		break;
 365	case AGGR_DIE:
 366		json_out(os, "\"die\" : \"S%d-D%d\", \"aggregate-number\" : %d",
 367			id.socket, id.die, aggr_nr);
 368		break;
 369	case AGGR_SOCKET:
 370		json_out(os, "\"socket\" : \"S%d\", \"aggregate-number\" : %d",
 371			id.socket, aggr_nr);
 372		break;
 373	case AGGR_NODE:
 374		json_out(os, "\"node\" : \"N%d\", \"aggregate-number\" : %d",
 375			id.node, aggr_nr);
 376		break;
 377	case AGGR_NONE:
 378		if (evsel->percore && !config->percore_show_thread) {
 379			json_out(os, "\"core\" : \"S%d-D%d-C%d\"",
 380				id.socket, id.die, id.core);
 381		} else if (id.cpu.cpu > -1) {
 382			json_out(os, "\"cpu\" : \"%d\"",
 383				id.cpu.cpu);
 384		}
 385		break;
 386	case AGGR_THREAD:
 387		json_out(os, "\"thread\" : \"%s-%d\"",
 388			perf_thread_map__comm(evsel->core.threads, id.thread_idx),
 389			perf_thread_map__pid(evsel->core.threads, id.thread_idx));
 390		break;
 391	case AGGR_GLOBAL:
 392	case AGGR_UNSET:
 393	case AGGR_MAX:
 394	default:
 395		break;
 396	}
 397}
 398
 399static void aggr_printout(struct perf_stat_config *config, struct outstate *os,
 400			  struct evsel *evsel, struct aggr_cpu_id id, int aggr_nr)
 401{
 402	if (config->json_output)
 403		print_aggr_id_json(config, os, evsel, id, aggr_nr);
 404	else if (config->csv_output)
 405		print_aggr_id_csv(config, evsel, id, aggr_nr);
 406	else
 407		print_aggr_id_std(config, evsel, id, aggr_nr);
 408}
 409
 
 
 
 
 
 
 
 
 
 
 
 
 410static void new_line_std(struct perf_stat_config *config __maybe_unused,
 411			 void *ctx)
 412{
 413	struct outstate *os = ctx;
 414
 415	os->newline = true;
 416}
 417
 418static inline void __new_line_std_csv(struct perf_stat_config *config,
 419				      struct outstate *os)
 420{
 421	fputc('\n', os->fh);
 422	if (os->prefix)
 423		fputs(os->prefix, os->fh);
 424	aggr_printout(config, os, os->evsel, os->id, os->aggr_nr);
 425}
 426
 427static inline void __new_line_std(struct outstate *os)
 428{
 429	fprintf(os->fh, "                                                 ");
 430}
 431
 432static void do_new_line_std(struct perf_stat_config *config,
 433			    struct outstate *os)
 434{
 435	__new_line_std_csv(config, os);
 436	if (config->aggr_mode == AGGR_NONE)
 437		fprintf(os->fh, "        ");
 438	__new_line_std(os);
 439}
 440
 441static void print_metric_std(struct perf_stat_config *config,
 442			     void *ctx, enum metric_threshold_classify thresh,
 443			     const char *fmt, const char *unit, double val)
 444{
 445	struct outstate *os = ctx;
 446	FILE *out = os->fh;
 447	int n;
 448	bool newline = os->newline;
 449	const char *color = metric_threshold_classify__color(thresh);
 450
 451	os->newline = false;
 452
 453	if (unit == NULL || fmt == NULL) {
 454		fprintf(out, "%-*s", METRIC_LEN, "");
 455		return;
 456	}
 457
 458	if (newline)
 459		do_new_line_std(config, os);
 460
 461	n = fprintf(out, " # ");
 462	if (color)
 463		n += color_fprintf(out, color, fmt, val);
 464	else
 465		n += fprintf(out, fmt, val);
 466	fprintf(out, " %-*s", METRIC_LEN - n - 1, unit);
 467}
 468
 469static void new_line_csv(struct perf_stat_config *config, void *ctx)
 470{
 471	struct outstate *os = ctx;
 472	int i;
 473
 474	__new_line_std_csv(config, os);
 475	for (i = 0; i < os->nfields; i++)
 476		fputs(config->csv_sep, os->fh);
 477}
 478
 479static void print_metric_csv(struct perf_stat_config *config __maybe_unused,
 480			     void *ctx,
 481			     enum metric_threshold_classify thresh __maybe_unused,
 482			     const char *fmt, const char *unit, double val)
 483{
 484	struct outstate *os = ctx;
 485	FILE *out = os->fh;
 486	char buf[64], *vals, *ends;
 487
 488	if (unit == NULL || fmt == NULL) {
 489		fprintf(out, "%s%s", config->csv_sep, config->csv_sep);
 490		return;
 491	}
 492	snprintf(buf, sizeof(buf), fmt, val);
 493	ends = vals = skip_spaces(buf);
 494	while (isdigit(*ends) || *ends == '.')
 495		ends++;
 496	*ends = 0;
 497	fprintf(out, "%s%s%s%s", config->csv_sep, vals, config->csv_sep, skip_spaces(unit));
 498}
 499
 500static void print_metric_json(struct perf_stat_config *config __maybe_unused,
 501			     void *ctx,
 502			     enum metric_threshold_classify thresh,
 503			     const char *fmt __maybe_unused,
 504			     const char *unit, double val)
 505{
 506	struct outstate *os = ctx;
 507	FILE *out = os->fh;
 508
 509	if (unit) {
 510		json_out(os, "\"metric-value\" : \"%f\", \"metric-unit\" : \"%s\"", val, unit);
 511		if (thresh != METRIC_THRESHOLD_UNKNOWN) {
 512			json_out(os, "\"metric-threshold\" : \"%s\"",
 513				metric_threshold_classify__str(thresh));
 514		}
 515	}
 516	if (!config->metric_only)
 517		fprintf(out, "}");
 518}
 519
 520static void new_line_json(struct perf_stat_config *config, void *ctx)
 521{
 522	struct outstate *os = ctx;
 523
 524	fputs("\n{", os->fh);
 525	os->first = true;
 526	if (os->prefix)
 527		json_out(os, "%s", os->prefix);
 528
 529	aggr_printout(config, os, os->evsel, os->id, os->aggr_nr);
 530}
 531
 532static void print_metricgroup_header_json(struct perf_stat_config *config,
 533					  void *ctx,
 534					  const char *metricgroup_name)
 535{
 536	if (!metricgroup_name)
 537		return;
 538
 539	json_out((struct outstate *) ctx, "\"metricgroup\" : \"%s\"}", metricgroup_name);
 540	new_line_json(config, ctx);
 541}
 542
 543static void print_metricgroup_header_csv(struct perf_stat_config *config,
 544					 void *ctx,
 545					 const char *metricgroup_name)
 546{
 547	struct outstate *os = ctx;
 548	int i;
 549
 550	if (!metricgroup_name) {
 551		/* Leave space for running and enabling */
 552		for (i = 0; i < os->nfields - 2; i++)
 553			fputs(config->csv_sep, os->fh);
 554		return;
 555	}
 556
 557	for (i = 0; i < os->nfields; i++)
 558		fputs(config->csv_sep, os->fh);
 559	fprintf(config->output, "%s", metricgroup_name);
 560	new_line_csv(config, ctx);
 561}
 562
 563static void print_metricgroup_header_std(struct perf_stat_config *config,
 564					 void *ctx,
 565					 const char *metricgroup_name)
 566{
 567	struct outstate *os = ctx;
 568	int n;
 569
 570	if (!metricgroup_name) {
 571		__new_line_std(os);
 572		return;
 573	}
 574
 575	n = fprintf(config->output, " %*s", EVNAME_LEN, metricgroup_name);
 576
 577	fprintf(config->output, "%*s", MGROUP_LEN - n - 1, "");
 578}
 579
 580/* Filter out some columns that don't work well in metrics only mode */
 581
 582static bool valid_only_metric(const char *unit)
 583{
 584	if (!unit)
 585		return false;
 586	if (strstr(unit, "/sec") ||
 587	    strstr(unit, "CPUs utilized"))
 588		return false;
 589	return true;
 590}
 591
 592static const char *fixunit(char *buf, struct evsel *evsel,
 593			   const char *unit)
 594{
 595	if (!strncmp(unit, "of all", 6)) {
 596		snprintf(buf, 1024, "%s %s", evsel__name(evsel),
 597			 unit);
 598		return buf;
 599	}
 600	return unit;
 601}
 602
 603static void print_metric_only(struct perf_stat_config *config,
 604			      void *ctx, enum metric_threshold_classify thresh,
 605			      const char *fmt, const char *unit, double val)
 606{
 607	struct outstate *os = ctx;
 608	FILE *out = os->fh;
 609	char buf[1024], str[1024];
 610	unsigned mlen = config->metric_only_len;
 611	const char *color = metric_threshold_classify__color(thresh);
 612
 613	if (!valid_only_metric(unit))
 614		return;
 615	unit = fixunit(buf, os->evsel, unit);
 616	if (mlen < strlen(unit))
 617		mlen = strlen(unit) + 1;
 618
 619	if (color)
 620		mlen += strlen(color) + sizeof(PERF_COLOR_RESET) - 1;
 621
 622	color_snprintf(str, sizeof(str), color ?: "", fmt ?: "", val);
 623	fprintf(out, "%*s ", mlen, str);
 624	os->first = false;
 625}
 626
 627static void print_metric_only_csv(struct perf_stat_config *config __maybe_unused,
 628				  void *ctx,
 629				  enum metric_threshold_classify thresh __maybe_unused,
 630				  const char *fmt,
 631				  const char *unit, double val)
 632{
 633	struct outstate *os = ctx;
 634	FILE *out = os->fh;
 635	char buf[64], *vals, *ends;
 636	char tbuf[1024];
 637
 638	if (!valid_only_metric(unit))
 639		return;
 640	unit = fixunit(tbuf, os->evsel, unit);
 641	snprintf(buf, sizeof(buf), fmt ?: "", val);
 642	ends = vals = skip_spaces(buf);
 643	while (isdigit(*ends) || *ends == '.')
 644		ends++;
 645	*ends = 0;
 646	fprintf(out, "%s%s", vals, config->csv_sep);
 647	os->first = false;
 648}
 649
 650static void print_metric_only_json(struct perf_stat_config *config __maybe_unused,
 651				  void *ctx,
 652				  enum metric_threshold_classify thresh __maybe_unused,
 653				  const char *fmt,
 654				  const char *unit, double val)
 655{
 656	struct outstate *os = ctx;
 657	char buf[64], *ends;
 
 658	char tbuf[1024];
 659	const char *vals;
 660
 661	if (!valid_only_metric(unit))
 662		return;
 663	unit = fixunit(tbuf, os->evsel, unit);
 664	if (!unit[0])
 665		return;
 666	snprintf(buf, sizeof(buf), fmt ?: "", val);
 667	vals = ends = skip_spaces(buf);
 668	while (isdigit(*ends) || *ends == '.')
 669		ends++;
 670	*ends = 0;
 671	if (!vals[0])
 672		vals = "none";
 673	json_out(os, "\"%s\" : \"%s\"", unit, vals);
 
 674}
 675
 676static void new_line_metric(struct perf_stat_config *config __maybe_unused,
 677			    void *ctx __maybe_unused)
 678{
 679}
 680
 681static void print_metric_header(struct perf_stat_config *config,
 682				void *ctx,
 683				enum metric_threshold_classify thresh __maybe_unused,
 684				const char *fmt __maybe_unused,
 685				const char *unit, double val __maybe_unused)
 686{
 687	struct outstate *os = ctx;
 688	char tbuf[1024];
 689
 690	/* In case of iostat, print metric header for first root port only */
 691	if (config->iostat_run &&
 692	    os->evsel->priv != os->evsel->evlist->selected->priv)
 693		return;
 694
 695	if (os->evsel->cgrp != os->cgrp)
 696		return;
 697
 698	if (!valid_only_metric(unit))
 699		return;
 700	unit = fixunit(tbuf, os->evsel, unit);
 701
 702	if (config->json_output)
 703		return;
 704	else if (config->csv_output)
 705		fprintf(os->fh, "%s%s", unit, config->csv_sep);
 706	else
 707		fprintf(os->fh, "%*s ", config->metric_only_len, unit);
 708}
 709
 710static void print_counter_value_std(struct perf_stat_config *config,
 711				    struct evsel *evsel, double avg, bool ok)
 712{
 713	FILE *output = config->output;
 714	double sc =  evsel->scale;
 715	const char *fmt;
 716	const char *bad_count = evsel->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED;
 717
 718	if (config->big_num)
 719		fmt = floor(sc) != sc ? "%'*.2f " : "%'*.0f ";
 720	else
 721		fmt = floor(sc) != sc ? "%*.2f " : "%*.0f ";
 722
 723	if (ok)
 724		fprintf(output, fmt, COUNTS_LEN, avg);
 725	else
 726		fprintf(output, "%*s ", COUNTS_LEN, bad_count);
 727
 728	if (evsel->unit)
 729		fprintf(output, "%-*s ", config->unit_width, evsel->unit);
 730
 731	fprintf(output, "%-*s", EVNAME_LEN, evsel__name(evsel));
 732}
 733
 734static void print_counter_value_csv(struct perf_stat_config *config,
 735				    struct evsel *evsel, double avg, bool ok)
 736{
 737	FILE *output = config->output;
 738	double sc =  evsel->scale;
 739	const char *sep = config->csv_sep;
 740	const char *fmt = floor(sc) != sc ? "%.2f%s" : "%.0f%s";
 741	const char *bad_count = evsel->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED;
 742
 743	if (ok)
 744		fprintf(output, fmt, avg, sep);
 745	else
 746		fprintf(output, "%s%s", bad_count, sep);
 747
 748	if (evsel->unit)
 749		fprintf(output, "%s%s", evsel->unit, sep);
 750
 751	fprintf(output, "%s", evsel__name(evsel));
 752}
 753
 754static void print_counter_value_json(struct outstate *os,
 755				     struct evsel *evsel, double avg, bool ok)
 756{
 
 757	const char *bad_count = evsel->supported ? CNTR_NOT_COUNTED : CNTR_NOT_SUPPORTED;
 758
 759	if (ok)
 760		json_out(os, "\"counter-value\" : \"%f\"", avg);
 761	else
 762		json_out(os, "\"counter-value\" : \"%s\"", bad_count);
 763
 764	if (evsel->unit)
 765		json_out(os, "\"unit\" : \"%s\"", evsel->unit);
 766
 767	json_out(os, "\"event\" : \"%s\"", evsel__name(evsel));
 768}
 769
 770static void print_counter_value(struct perf_stat_config *config, struct outstate *os,
 771				struct evsel *evsel, double avg, bool ok)
 772{
 773	if (config->json_output)
 774		print_counter_value_json(os, evsel, avg, ok);
 775	else if (config->csv_output)
 776		print_counter_value_csv(config, evsel, avg, ok);
 777	else
 778		print_counter_value_std(config, evsel, avg, ok);
 779}
 780
 781static void abs_printout(struct perf_stat_config *config,
 782			 struct outstate *os,
 783			 struct aggr_cpu_id id, int aggr_nr,
 784			 struct evsel *evsel, double avg, bool ok)
 785{
 786	aggr_printout(config, os, evsel, id, aggr_nr);
 787	print_counter_value(config, os, evsel, avg, ok);
 788	print_cgroup(config, os, evsel->cgrp);
 789}
 790
 791static bool is_mixed_hw_group(struct evsel *counter)
 792{
 793	struct evlist *evlist = counter->evlist;
 794	u32 pmu_type = counter->core.attr.type;
 795	struct evsel *pos;
 796
 797	if (counter->core.nr_members < 2)
 798		return false;
 799
 800	evlist__for_each_entry(evlist, pos) {
 801		/* software events can be part of any hardware group */
 802		if (pos->core.attr.type == PERF_TYPE_SOFTWARE)
 803			continue;
 804		if (pmu_type == PERF_TYPE_SOFTWARE) {
 805			pmu_type = pos->core.attr.type;
 806			continue;
 807		}
 808		if (pmu_type != pos->core.attr.type)
 809			return true;
 810	}
 811
 812	return false;
 813}
 814
 815static bool evlist__has_hybrid(struct evlist *evlist)
 816{
 817	struct evsel *evsel;
 818
 819	if (perf_pmus__num_core_pmus() == 1)
 820		return false;
 821
 822	evlist__for_each_entry(evlist, evsel) {
 823		if (evsel->core.is_pmu_core)
 824			return true;
 825	}
 826
 827	return false;
 828}
 829
 830static void printout(struct perf_stat_config *config, struct outstate *os,
 831		     double uval, u64 run, u64 ena, double noise, int aggr_idx)
 832{
 833	struct perf_stat_output_ctx out;
 834	print_metric_t pm;
 835	new_line_t nl;
 836	print_metricgroup_header_t pmh;
 837	bool ok = true;
 838	struct evsel *counter = os->evsel;
 839
 840	if (config->csv_output) {
 841		pm = config->metric_only ? print_metric_only_csv : print_metric_csv;
 842		nl = config->metric_only ? new_line_metric : new_line_csv;
 843		pmh = print_metricgroup_header_csv;
 844		os->nfields = 4 + (counter->cgrp ? 1 : 0);
 845	} else if (config->json_output) {
 846		pm = config->metric_only ? print_metric_only_json : print_metric_json;
 847		nl = config->metric_only ? new_line_metric : new_line_json;
 848		pmh = print_metricgroup_header_json;
 849	} else {
 850		pm = config->metric_only ? print_metric_only : print_metric_std;
 851		nl = config->metric_only ? new_line_metric : new_line_std;
 852		pmh = print_metricgroup_header_std;
 853	}
 854
 855	if (run == 0 || ena == 0 || counter->counts->scaled == -1) {
 856		if (config->metric_only) {
 857			pm(config, os, METRIC_THRESHOLD_UNKNOWN, "", "", 0);
 858			return;
 859		}
 860
 861		ok = false;
 862
 863		if (counter->supported) {
 864			if (!evlist__has_hybrid(counter->evlist)) {
 865				config->print_free_counters_hint = 1;
 866				if (is_mixed_hw_group(counter))
 867					config->print_mixed_hw_group_error = 1;
 868			}
 869		}
 870	}
 871
 872	out.print_metric = pm;
 873	out.new_line = nl;
 874	out.print_metricgroup_header = pmh;
 875	out.ctx = os;
 876	out.force_header = false;
 877
 878	if (!config->metric_only && !counter->default_metricgroup) {
 879		abs_printout(config, os, os->id, os->aggr_nr, counter, uval, ok);
 880
 881		print_noise(config, os, counter, noise, /*before_metric=*/true);
 882		print_running(config, os, run, ena, /*before_metric=*/true);
 883	}
 884
 885	if (ok) {
 886		if (!config->metric_only && counter->default_metricgroup) {
 887			void *from = NULL;
 888
 889			aggr_printout(config, os, os->evsel, os->id, os->aggr_nr);
 890			/* Print out all the metricgroup with the same metric event. */
 891			do {
 892				int num = 0;
 893
 894				/* Print out the new line for the next new metricgroup. */
 895				if (from) {
 896					if (config->json_output)
 897						new_line_json(config, (void *)os);
 898					else
 899						__new_line_std_csv(config, os);
 900				}
 901
 902				print_noise(config, os, counter, noise, /*before_metric=*/true);
 903				print_running(config, os, run, ena, /*before_metric=*/true);
 904				from = perf_stat__print_shadow_stats_metricgroup(config, counter, aggr_idx,
 905										 &num, from, &out,
 906										 &config->metric_events);
 907			} while (from != NULL);
 908		} else
 909			perf_stat__print_shadow_stats(config, counter, uval, aggr_idx,
 910						      &out, &config->metric_events);
 911	} else {
 912		pm(config, os, METRIC_THRESHOLD_UNKNOWN, /*format=*/NULL, /*unit=*/"", /*val=*/0);
 913	}
 914
 915	if (!config->metric_only) {
 916		print_noise(config, os, counter, noise, /*before_metric=*/false);
 917		print_running(config, os, run, ena, /*before_metric=*/false);
 918	}
 919}
 920
 921static void uniquify_event_name(struct evsel *counter)
 922{
 923	const char *name, *pmu_name;
 924	char *new_name, *config;
 925	int ret;
 926
 927	/* The evsel was already uniquified. */
 928	if (counter->uniquified_name)
 
 929		return;
 930
 931	/* Avoid checking to uniquify twice. */
 932	counter->uniquified_name = true;
 933
 934	/* The evsel has a "name=" config term or is from libpfm. */
 935	if (counter->use_config_name || counter->is_libpfm_event)
 936		return;
 937
 938	/* Legacy no PMU event, don't uniquify. */
 939	if  (!counter->pmu ||
 940	     (counter->pmu->type < PERF_TYPE_MAX && counter->pmu->type != PERF_TYPE_RAW))
 941		return;
 942
 943	/* A sysfs or json event replacing a legacy event, don't uniquify. */
 944	if (counter->pmu->is_core && counter->alternate_hw_config != PERF_COUNT_HW_MAX)
 945		return;
 946
 947	name = evsel__name(counter);
 948	pmu_name = counter->pmu->name;
 949	/* Already prefixed by the PMU name. */
 950	if (!strncmp(name, pmu_name, strlen(pmu_name)))
 951		return;
 952
 953	config = strchr(name, '/');
 954	if (config) {
 955		int len = config - name;
 956
 957		if (config[1] == '/') {
 958			/* case: event// */
 959			ret = asprintf(&new_name, "%s/%.*s/%s", pmu_name, len, name, config + 2);
 
 
 
 
 960		} else {
 961			/* case: event/.../ */
 962			ret = asprintf(&new_name, "%s/%.*s,%s", pmu_name, len, name, config + 1);
 963		}
 964	} else {
 965		config = strchr(name, ':');
 966		if (config) {
 967			/* case: event:.. */
 968			int len = config - name;
 969
 970			ret = asprintf(&new_name, "%s/%.*s/%s", pmu_name, len, name, config + 1);
 971		} else {
 972			/* case: event */
 973			ret = asprintf(&new_name, "%s/%s/", pmu_name, name);
 974		}
 975	}
 976	if (ret > 0) {
 977		free(counter->name);
 978		counter->name = new_name;
 979	} else {
 980		/* ENOMEM from asprintf. */
 981		counter->uniquified_name = false;
 982	}
 983}
 984
 985static bool hybrid_uniquify(struct evsel *evsel, struct perf_stat_config *config)
 986{
 987	return evsel__is_hybrid(evsel) && !config->hybrid_merge;
 988}
 989
 990static void uniquify_counter(struct perf_stat_config *config, struct evsel *counter)
 991{
 992	if (config->aggr_mode == AGGR_NONE || hybrid_uniquify(counter, config))
 993		uniquify_event_name(counter);
 994}
 995
 996/**
 997 * should_skip_zero_count() - Check if the event should print 0 values.
 998 * @config: The perf stat configuration (including aggregation mode).
 999 * @counter: The evsel with its associated cpumap.
1000 * @id: The aggregation id that is being queried.
1001 *
1002 * Due to mismatch between the event cpumap or thread-map and the
1003 * aggregation mode, sometimes it'd iterate the counter with the map
1004 * which does not contain any values.
1005 *
1006 * For example, uncore events have dedicated CPUs to manage them,
1007 * result for other CPUs should be zero and skipped.
1008 *
1009 * Return: %true if the value should NOT be printed, %false if the value
1010 * needs to be printed like "<not counted>" or "<not supported>".
1011 */
1012static bool should_skip_zero_counter(struct perf_stat_config *config,
1013				     struct evsel *counter,
1014				     const struct aggr_cpu_id *id)
1015{
1016	struct perf_cpu cpu;
1017	int idx;
1018
1019	/*
1020	 * Skip unsupported default events when not verbose. (default events
1021	 * are all marked 'skippable').
1022	 */
1023	if (verbose == 0 && counter->skippable && !counter->supported)
1024		return true;
1025
1026	/*
1027	 * Skip value 0 when enabling --per-thread globally,
1028	 * otherwise it will have too many 0 output.
1029	 */
1030	if (config->aggr_mode == AGGR_THREAD && config->system_wide)
1031		return true;
1032
1033	/*
1034	 * Many tool events are only gathered on the first index, skip other
1035	 * zero values.
1036	 */
1037	if (evsel__is_tool(counter)) {
1038		struct aggr_cpu_id own_id =
1039			config->aggr_get_id(config, (struct perf_cpu){ .cpu = 0 });
1040
1041		return !aggr_cpu_id__equal(id, &own_id);
1042	}
1043
1044	/*
1045	 * Skip value 0 when it's an uncore event and the given aggr id
1046	 * does not belong to the PMU cpumask.
1047	 */
1048	if (!counter->pmu || !counter->pmu->is_uncore)
1049		return false;
1050
1051	perf_cpu_map__for_each_cpu(cpu, idx, counter->pmu->cpus) {
1052		struct aggr_cpu_id own_id = config->aggr_get_id(config, cpu);
1053
1054		if (aggr_cpu_id__equal(id, &own_id))
1055			return false;
1056	}
1057	return true;
1058}
1059
1060static void print_counter_aggrdata(struct perf_stat_config *config,
1061				   struct evsel *counter, int aggr_idx,
1062				   struct outstate *os)
1063{
1064	FILE *output = config->output;
1065	u64 ena, run, val;
1066	double uval;
1067	struct perf_stat_evsel *ps = counter->stats;
1068	struct perf_stat_aggr *aggr = &ps->aggr[aggr_idx];
1069	struct aggr_cpu_id id = config->aggr_map->map[aggr_idx];
1070	double avg = aggr->counts.val;
1071	bool metric_only = config->metric_only;
1072
1073	os->id = id;
1074	os->aggr_nr = aggr->nr;
1075	os->evsel = counter;
1076
1077	/* Skip already merged uncore/hybrid events */
1078	if (counter->merged_stat)
1079		return;
1080
1081	uniquify_counter(config, counter);
1082
1083	val = aggr->counts.val;
1084	ena = aggr->counts.ena;
1085	run = aggr->counts.run;
1086
1087	if (perf_stat__skip_metric_event(counter, &config->metric_events, ena, run))
1088		return;
1089
1090	if (val == 0 && should_skip_zero_counter(config, counter, &id))
1091		return;
1092
1093	if (!metric_only) {
1094		if (config->json_output) {
1095			os->first = true;
1096			fputc('{', output);
1097		}
1098		if (os->prefix) {
1099			if (config->json_output)
1100				json_out(os, "%s", os->prefix);
1101			else
1102				fprintf(output, "%s", os->prefix);
1103		} else if (config->summary && config->csv_output &&
1104			   !config->no_csv_summary && !config->interval)
1105			fprintf(output, "%s%s", "summary", config->csv_sep);
1106	}
1107
1108	uval = val * counter->scale;
1109
1110	printout(config, os, uval, run, ena, avg, aggr_idx);
1111
1112	if (!metric_only)
1113		fputc('\n', output);
1114}
1115
1116static void print_metric_begin(struct perf_stat_config *config,
1117			       struct evlist *evlist,
1118			       struct outstate *os, int aggr_idx)
1119{
1120	struct perf_stat_aggr *aggr;
1121	struct aggr_cpu_id id;
1122	struct evsel *evsel;
1123
1124	os->first = true;
1125	if (!config->metric_only)
1126		return;
1127
1128	if (config->json_output)
1129		fputc('{', config->output);
 
 
1130
1131	if (os->prefix) {
1132		if (config->json_output)
1133			json_out(os, "%s", os->prefix);
1134		else
1135			fprintf(config->output, "%s", os->prefix);
1136	}
1137	evsel = evlist__first(evlist);
1138	id = config->aggr_map->map[aggr_idx];
1139	aggr = &evsel->stats->aggr[aggr_idx];
1140	aggr_printout(config, os, evsel, id, aggr->nr);
1141
1142	print_cgroup(config, os, os->cgrp ? : evsel->cgrp);
1143}
1144
1145static void print_metric_end(struct perf_stat_config *config, struct outstate *os)
1146{
1147	FILE *output = config->output;
1148
1149	if (!config->metric_only)
1150		return;
1151
1152	if (config->json_output) {
1153		if (os->first)
1154			fputs("\"metric-value\" : \"none\"", output);
1155		fputc('}', output);
1156	}
1157	fputc('\n', output);
1158}
1159
1160static void print_aggr(struct perf_stat_config *config,
1161		       struct evlist *evlist,
1162		       struct outstate *os)
1163{
1164	struct evsel *counter;
1165	int aggr_idx;
1166
1167	if (!config->aggr_map || !config->aggr_get_id)
1168		return;
1169
1170	/*
1171	 * With metric_only everything is on a single line.
1172	 * Without each counter has its own line.
1173	 */
1174	cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1175		print_metric_begin(config, evlist, os, aggr_idx);
1176
1177		evlist__for_each_entry(evlist, counter) {
1178			print_counter_aggrdata(config, counter, aggr_idx, os);
1179		}
1180		print_metric_end(config, os);
1181	}
1182}
1183
1184static void print_aggr_cgroup(struct perf_stat_config *config,
1185			      struct evlist *evlist,
1186			      struct outstate *os)
1187{
1188	struct evsel *counter, *evsel;
1189	int aggr_idx;
1190
1191	if (!config->aggr_map || !config->aggr_get_id)
1192		return;
1193
1194	evlist__for_each_entry(evlist, evsel) {
1195		if (os->cgrp == evsel->cgrp)
1196			continue;
1197
1198		os->cgrp = evsel->cgrp;
1199
1200		cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1201			print_metric_begin(config, evlist, os, aggr_idx);
1202
1203			evlist__for_each_entry(evlist, counter) {
1204				if (counter->cgrp != os->cgrp)
1205					continue;
1206
1207				print_counter_aggrdata(config, counter, aggr_idx, os);
1208			}
1209			print_metric_end(config, os);
1210		}
1211	}
1212}
1213
1214static void print_counter(struct perf_stat_config *config,
1215			  struct evsel *counter, struct outstate *os)
1216{
1217	int aggr_idx;
1218
1219	/* AGGR_THREAD doesn't have config->aggr_get_id */
1220	if (!config->aggr_map)
1221		return;
1222
1223	cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1224		print_counter_aggrdata(config, counter, aggr_idx, os);
1225	}
1226}
1227
1228static void print_no_aggr_metric(struct perf_stat_config *config,
1229				 struct evlist *evlist,
1230				 struct outstate *os)
1231{
1232	int all_idx;
1233	struct perf_cpu cpu;
1234
1235	perf_cpu_map__for_each_cpu(cpu, all_idx, evlist->core.user_requested_cpus) {
1236		struct evsel *counter;
1237		bool first = true;
1238
1239		evlist__for_each_entry(evlist, counter) {
1240			u64 ena, run, val;
1241			double uval;
1242			struct perf_stat_evsel *ps = counter->stats;
1243			int aggr_idx = 0;
1244
1245			if (!perf_cpu_map__has(evsel__cpus(counter), cpu))
1246				continue;
1247
1248			cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1249				if (config->aggr_map->map[aggr_idx].cpu.cpu == cpu.cpu)
1250					break;
1251			}
1252
1253			os->evsel = counter;
1254			os->id = aggr_cpu_id__cpu(cpu, /*data=*/NULL);
1255			if (first) {
1256				print_metric_begin(config, evlist, os, aggr_idx);
1257				first = false;
1258			}
1259			val = ps->aggr[aggr_idx].counts.val;
1260			ena = ps->aggr[aggr_idx].counts.ena;
1261			run = ps->aggr[aggr_idx].counts.run;
1262
1263			uval = val * counter->scale;
1264			printout(config, os, uval, run, ena, 1.0, aggr_idx);
1265		}
1266		if (!first)
1267			print_metric_end(config, os);
1268	}
1269}
1270
1271static void print_metric_headers_std(struct perf_stat_config *config,
1272				     bool no_indent)
1273{
1274	fputc(' ', config->output);
1275
1276	if (!no_indent) {
1277		int len = aggr_header_lens[config->aggr_mode];
1278
1279		if (nr_cgroups || config->cgroup_list)
1280			len += CGROUP_LEN + 1;
1281
1282		fprintf(config->output, "%*s", len, "");
1283	}
1284}
1285
1286static void print_metric_headers_csv(struct perf_stat_config *config,
1287				     bool no_indent __maybe_unused)
1288{
1289	const char *p;
1290
1291	if (config->interval)
1292		fprintf(config->output, "time%s", config->csv_sep);
1293	if (config->iostat_run)
1294		return;
1295
1296	p = aggr_header_csv[config->aggr_mode];
1297	while (*p) {
1298		if (*p == ',')
1299			fputs(config->csv_sep, config->output);
1300		else
1301			fputc(*p, config->output);
1302		p++;
1303	}
1304}
1305
1306static void print_metric_headers_json(struct perf_stat_config *config __maybe_unused,
1307				      bool no_indent __maybe_unused)
1308{
1309}
1310
1311static void print_metric_headers(struct perf_stat_config *config,
1312				 struct evlist *evlist, bool no_indent)
1313{
1314	struct evsel *counter;
1315	struct outstate os = {
1316		.fh = config->output
1317	};
1318	struct perf_stat_output_ctx out = {
1319		.ctx = &os,
1320		.print_metric = print_metric_header,
1321		.new_line = new_line_metric,
1322		.force_header = true,
1323	};
1324
1325	if (config->json_output)
1326		print_metric_headers_json(config, no_indent);
1327	else if (config->csv_output)
1328		print_metric_headers_csv(config, no_indent);
1329	else
1330		print_metric_headers_std(config, no_indent);
1331
1332	if (config->iostat_run)
1333		iostat_print_header_prefix(config);
1334
1335	if (config->cgroup_list)
1336		os.cgrp = evlist__first(evlist)->cgrp;
1337
1338	/* Print metrics headers only */
1339	evlist__for_each_entry(evlist, counter) {
1340		if (!config->iostat_run &&
1341		    config->aggr_mode != AGGR_NONE && counter->metric_leader != counter)
1342			continue;
1343
1344		os.evsel = counter;
1345
1346		perf_stat__print_shadow_stats(config, counter, 0,
1347					      0,
1348					      &out,
1349					      &config->metric_events);
1350	}
1351
1352	if (!config->json_output)
1353		fputc('\n', config->output);
1354}
1355
1356static void prepare_interval(struct perf_stat_config *config,
1357			     char *prefix, size_t len, struct timespec *ts)
1358{
1359	if (config->iostat_run)
1360		return;
1361
1362	if (config->json_output)
1363		scnprintf(prefix, len, "\"interval\" : %lu.%09lu",
1364			  (unsigned long) ts->tv_sec, ts->tv_nsec);
1365	else if (config->csv_output)
1366		scnprintf(prefix, len, "%lu.%09lu%s",
1367			  (unsigned long) ts->tv_sec, ts->tv_nsec, config->csv_sep);
1368	else
1369		scnprintf(prefix, len, "%6lu.%09lu ",
1370			  (unsigned long) ts->tv_sec, ts->tv_nsec);
1371}
1372
1373static void print_header_interval_std(struct perf_stat_config *config,
1374				      struct target *_target __maybe_unused,
1375				      struct evlist *evlist,
1376				      int argc __maybe_unused,
1377				      const char **argv __maybe_unused)
1378{
1379	FILE *output = config->output;
1380
1381	switch (config->aggr_mode) {
1382	case AGGR_NODE:
1383	case AGGR_SOCKET:
1384	case AGGR_DIE:
1385	case AGGR_CLUSTER:
1386	case AGGR_CACHE:
1387	case AGGR_CORE:
1388		fprintf(output, "#%*s %-*s cpus",
1389			INTERVAL_LEN - 1, "time",
1390			aggr_header_lens[config->aggr_mode],
1391			aggr_header_std[config->aggr_mode]);
1392		break;
1393	case AGGR_NONE:
1394		fprintf(output, "#%*s %-*s",
1395			INTERVAL_LEN - 1, "time",
1396			aggr_header_lens[config->aggr_mode],
1397			aggr_header_std[config->aggr_mode]);
1398		break;
1399	case AGGR_THREAD:
1400		fprintf(output, "#%*s %*s-%-*s",
1401			INTERVAL_LEN - 1, "time",
1402			COMM_LEN, "comm", PID_LEN, "pid");
1403		break;
1404	case AGGR_GLOBAL:
1405	default:
1406		if (!config->iostat_run)
1407			fprintf(output, "#%*s",
1408				INTERVAL_LEN - 1, "time");
1409	case AGGR_UNSET:
1410	case AGGR_MAX:
1411		break;
1412	}
1413
1414	if (config->metric_only)
1415		print_metric_headers(config, evlist, true);
1416	else
1417		fprintf(output, " %*s %*s events\n",
1418			COUNTS_LEN, "counts", config->unit_width, "unit");
1419}
1420
1421static void print_header_std(struct perf_stat_config *config,
1422			     struct target *_target, struct evlist *evlist,
1423			     int argc, const char **argv)
1424{
1425	FILE *output = config->output;
1426	int i;
1427
1428	fprintf(output, "\n");
1429	fprintf(output, " Performance counter stats for ");
1430	if (_target->bpf_str)
1431		fprintf(output, "\'BPF program(s) %s", _target->bpf_str);
1432	else if (_target->system_wide)
1433		fprintf(output, "\'system wide");
1434	else if (_target->cpu_list)
1435		fprintf(output, "\'CPU(s) %s", _target->cpu_list);
1436	else if (!target__has_task(_target)) {
1437		fprintf(output, "\'%s", argv ? argv[0] : "pipe");
1438		for (i = 1; argv && (i < argc); i++)
1439			fprintf(output, " %s", argv[i]);
1440	} else if (_target->pid)
1441		fprintf(output, "process id \'%s", _target->pid);
1442	else
1443		fprintf(output, "thread id \'%s", _target->tid);
1444
1445	fprintf(output, "\'");
1446	if (config->run_count > 1)
1447		fprintf(output, " (%d runs)", config->run_count);
1448	fprintf(output, ":\n\n");
1449
1450	if (config->metric_only)
1451		print_metric_headers(config, evlist, false);
1452}
1453
1454static void print_header_csv(struct perf_stat_config *config,
1455			     struct target *_target __maybe_unused,
1456			     struct evlist *evlist,
1457			     int argc __maybe_unused,
1458			     const char **argv __maybe_unused)
1459{
1460	if (config->metric_only)
1461		print_metric_headers(config, evlist, true);
1462}
1463static void print_header_json(struct perf_stat_config *config,
1464			      struct target *_target __maybe_unused,
1465			      struct evlist *evlist,
1466			      int argc __maybe_unused,
1467			      const char **argv __maybe_unused)
1468{
1469	if (config->metric_only)
1470		print_metric_headers(config, evlist, true);
1471}
1472
1473static void print_header(struct perf_stat_config *config,
1474			 struct target *_target,
1475			 struct evlist *evlist,
1476			 int argc, const char **argv)
1477{
1478	static int num_print_iv;
1479
1480	fflush(stdout);
1481
1482	if (config->interval_clear)
1483		puts(CONSOLE_CLEAR);
1484
1485	if (num_print_iv == 0 || config->interval_clear) {
1486		if (config->json_output)
1487			print_header_json(config, _target, evlist, argc, argv);
1488		else if (config->csv_output)
1489			print_header_csv(config, _target, evlist, argc, argv);
1490		else if (config->interval)
1491			print_header_interval_std(config, _target, evlist, argc, argv);
1492		else
1493			print_header_std(config, _target, evlist, argc, argv);
1494	}
1495
1496	if (num_print_iv++ == 25)
1497		num_print_iv = 0;
1498}
1499
1500static int get_precision(double num)
1501{
1502	if (num > 1)
1503		return 0;
1504
1505	return lround(ceil(-log10(num)));
1506}
1507
1508static void print_table(struct perf_stat_config *config,
1509			FILE *output, int precision, double avg)
1510{
1511	char tmp[64];
1512	int idx, indent = 0;
1513
1514	scnprintf(tmp, 64, " %17.*f", precision, avg);
1515	while (tmp[indent] == ' ')
1516		indent++;
1517
1518	fprintf(output, "%*s# Table of individual measurements:\n", indent, "");
1519
1520	for (idx = 0; idx < config->run_count; idx++) {
1521		double run = (double) config->walltime_run[idx] / NSEC_PER_SEC;
1522		int h, n = 1 + abs((int) (100.0 * (run - avg)/run) / 5);
1523
1524		fprintf(output, " %17.*f (%+.*f) ",
1525			precision, run, precision, run - avg);
1526
1527		for (h = 0; h < n; h++)
1528			fprintf(output, "#");
1529
1530		fprintf(output, "\n");
1531	}
1532
1533	fprintf(output, "\n%*s# Final result:\n", indent, "");
1534}
1535
1536static double timeval2double(struct timeval *t)
1537{
1538	return t->tv_sec + (double) t->tv_usec/USEC_PER_SEC;
1539}
1540
1541static void print_footer(struct perf_stat_config *config)
1542{
1543	double avg = avg_stats(config->walltime_nsecs_stats) / NSEC_PER_SEC;
1544	FILE *output = config->output;
1545
1546	if (config->interval || config->csv_output || config->json_output)
1547		return;
1548
1549	if (!config->null_run)
1550		fprintf(output, "\n");
1551
1552	if (config->run_count == 1) {
1553		fprintf(output, " %17.9f seconds time elapsed", avg);
1554
1555		if (config->ru_display) {
1556			double ru_utime = timeval2double(&config->ru_data.ru_utime);
1557			double ru_stime = timeval2double(&config->ru_data.ru_stime);
1558
1559			fprintf(output, "\n\n");
1560			fprintf(output, " %17.9f seconds user\n", ru_utime);
1561			fprintf(output, " %17.9f seconds sys\n", ru_stime);
1562		}
1563	} else {
1564		double sd = stddev_stats(config->walltime_nsecs_stats) / NSEC_PER_SEC;
1565		/*
1566		 * Display at most 2 more significant
1567		 * digits than the stddev inaccuracy.
1568		 */
1569		int precision = get_precision(sd) + 2;
1570
1571		if (config->walltime_run_table)
1572			print_table(config, output, precision, avg);
1573
1574		fprintf(output, " %17.*f +- %.*f seconds time elapsed",
1575			precision, avg, precision, sd);
1576
1577		print_noise_pct(config, NULL, sd, avg, /*before_metric=*/false);
1578	}
1579	fprintf(output, "\n\n");
1580
1581	if (config->print_free_counters_hint && sysctl__nmi_watchdog_enabled())
1582		fprintf(output,
1583"Some events weren't counted. Try disabling the NMI watchdog:\n"
1584"	echo 0 > /proc/sys/kernel/nmi_watchdog\n"
1585"	perf stat ...\n"
1586"	echo 1 > /proc/sys/kernel/nmi_watchdog\n");
1587
1588	if (config->print_mixed_hw_group_error)
1589		fprintf(output,
1590			"The events in group usually have to be from "
1591			"the same PMU. Try reorganizing the group.\n");
1592}
1593
1594static void print_percore(struct perf_stat_config *config,
1595			  struct evsel *counter, struct outstate *os)
1596{
1597	bool metric_only = config->metric_only;
1598	FILE *output = config->output;
1599	struct cpu_aggr_map *core_map;
1600	int aggr_idx, core_map_len = 0;
1601
1602	if (!config->aggr_map || !config->aggr_get_id)
1603		return;
1604
1605	if (config->percore_show_thread)
1606		return print_counter(config, counter, os);
1607
1608	/*
1609	 * core_map will hold the aggr_cpu_id for the cores that have been
1610	 * printed so that each core is printed just once.
1611	 */
1612	core_map = cpu_aggr_map__empty_new(config->aggr_map->nr);
1613	if (core_map == NULL) {
1614		fprintf(output, "Cannot allocate per-core aggr map for display\n");
1615		return;
1616	}
1617
1618	cpu_aggr_map__for_each_idx(aggr_idx, config->aggr_map) {
1619		struct perf_cpu curr_cpu = config->aggr_map->map[aggr_idx].cpu;
1620		struct aggr_cpu_id core_id = aggr_cpu_id__core(curr_cpu, NULL);
1621		bool found = false;
1622
1623		for (int i = 0; i < core_map_len; i++) {
1624			if (aggr_cpu_id__equal(&core_map->map[i], &core_id)) {
1625				found = true;
1626				break;
1627			}
1628		}
1629		if (found)
1630			continue;
1631
1632		print_counter_aggrdata(config, counter, aggr_idx, os);
1633
1634		core_map->map[core_map_len++] = core_id;
1635	}
1636	free(core_map);
1637
1638	if (metric_only)
1639		fputc('\n', output);
1640}
1641
1642static void print_cgroup_counter(struct perf_stat_config *config, struct evlist *evlist,
1643				 struct outstate *os)
1644{
1645	struct evsel *counter;
1646
1647	evlist__for_each_entry(evlist, counter) {
1648		if (os->cgrp != counter->cgrp) {
1649			if (os->cgrp != NULL)
1650				print_metric_end(config, os);
1651
1652			os->cgrp = counter->cgrp;
1653			print_metric_begin(config, evlist, os, /*aggr_idx=*/0);
1654		}
1655
1656		print_counter(config, counter, os);
1657	}
1658	if (os->cgrp)
1659		print_metric_end(config, os);
1660}
1661
1662static void disable_uniquify(struct evlist *evlist)
1663{
1664	struct evsel *counter;
1665	struct perf_pmu *last_pmu = NULL;
1666	bool first = true;
1667
1668	evlist__for_each_entry(evlist, counter) {
1669		/* If PMUs vary then uniquify can be useful. */
1670		if (!first && counter->pmu != last_pmu)
1671			return;
1672		first = false;
1673		if (counter->pmu) {
1674			/* Allow uniquify for uncore PMUs. */
1675			if (!counter->pmu->is_core)
1676				return;
1677			/* Keep hybrid event names uniquified for clarity. */
1678			if (perf_pmus__num_core_pmus() > 1)
1679				return;
1680		}
1681	}
1682	evlist__for_each_entry_continue(evlist, counter) {
1683		counter->uniquified_name = true;
1684	}
1685}
1686
1687void evlist__print_counters(struct evlist *evlist, struct perf_stat_config *config,
1688			    struct target *_target, struct timespec *ts,
1689			    int argc, const char **argv)
1690{
1691	bool metric_only = config->metric_only;
1692	int interval = config->interval;
1693	struct evsel *counter;
1694	char buf[64];
1695	struct outstate os = {
1696		.fh = config->output,
1697		.first = true,
1698	};
1699
1700	disable_uniquify(evlist);
1701
1702	if (config->iostat_run)
1703		evlist->selected = evlist__first(evlist);
1704
1705	if (interval) {
1706		os.prefix = buf;
1707		prepare_interval(config, buf, sizeof(buf), ts);
1708	}
1709
1710	print_header(config, _target, evlist, argc, argv);
1711
1712	switch (config->aggr_mode) {
1713	case AGGR_CORE:
1714	case AGGR_CACHE:
1715	case AGGR_CLUSTER:
1716	case AGGR_DIE:
1717	case AGGR_SOCKET:
1718	case AGGR_NODE:
1719		if (config->cgroup_list)
1720			print_aggr_cgroup(config, evlist, &os);
1721		else
1722			print_aggr(config, evlist, &os);
1723		break;
1724	case AGGR_THREAD:
1725	case AGGR_GLOBAL:
1726		if (config->iostat_run) {
1727			iostat_print_counters(evlist, config, ts, buf,
1728					      (iostat_print_counter_t)print_counter, &os);
1729		} else if (config->cgroup_list) {
1730			print_cgroup_counter(config, evlist, &os);
1731		} else {
1732			print_metric_begin(config, evlist, &os, /*aggr_idx=*/0);
1733			evlist__for_each_entry(evlist, counter) {
1734				print_counter(config, counter, &os);
1735			}
1736			print_metric_end(config, &os);
1737		}
1738		break;
1739	case AGGR_NONE:
1740		if (metric_only)
1741			print_no_aggr_metric(config, evlist, &os);
1742		else {
1743			evlist__for_each_entry(evlist, counter) {
1744				if (counter->percore)
1745					print_percore(config, counter, &os);
1746				else
1747					print_counter(config, counter, &os);
1748			}
1749		}
1750		break;
1751	case AGGR_MAX:
1752	case AGGR_UNSET:
1753	default:
1754		break;
1755	}
1756
1757	print_footer(config);
1758
1759	fflush(config->output);
1760}