stat.c 12.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2
#include <errno.h>
3
#include <inttypes.h>
4
#include <math.h>
5
#include "counts.h"
6
#include "stat.h"
7
#include "target.h"
8
#include "evlist.h"
9
#include "evsel.h"
10
#include "thread_map.h"
11
#include <linux/zalloc.h>
12 13 14 15 16 17 18 19 20

void update_stats(struct stats *stats, u64 val)
{
	double delta;

	stats->n++;
	delta = val - stats->mean;
	stats->mean += delta / stats->n;
	stats->M2 += delta*(val - stats->mean);
D
David Ahern 已提交
21 22 23 24 25 26

	if (val > stats->max)
		stats->max = val;

	if (val < stats->min)
		stats->min = val;
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
}

double avg_stats(struct stats *stats)
{
	return stats->mean;
}

/*
 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
 *
 *       (\Sum n_i^2) - ((\Sum n_i)^2)/n
 * s^2 = -------------------------------
 *                  n - 1
 *
 * http://en.wikipedia.org/wiki/Stddev
 *
 * The std dev of the mean is related to the std dev by:
 *
 *             s
 * s_mean = -------
 *          sqrt(n)
 *
 */
double stddev_stats(struct stats *stats)
{
	double variance, variance_mean;

54
	if (stats->n < 2)
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
		return 0.0;

	variance = stats->M2 / (stats->n - 1);
	variance_mean = variance / stats->n;

	return sqrt(variance_mean);
}

double rel_stddev_stats(double stddev, double avg)
{
	double pct = 0.0;

	if (avg)
		pct = 100.0 * stddev/avg;

	return pct;
}
72

73
bool __perf_evsel_stat__is(struct evsel *evsel,
74 75
			   enum perf_stat_evsel_id id)
{
76
	struct perf_stat_evsel *ps = evsel->stats;
77 78 79 80 81 82

	return ps->id == id;
}

#define ID(id, name) [PERF_STAT_EVSEL_ID__##id] = #name
static const char *id_str[PERF_STAT_EVSEL_ID__MAX] = {
83 84 85 86 87
	ID(NONE,		x),
	ID(CYCLES_IN_TX,	cpu/cycles-t/),
	ID(TRANSACTION_START,	cpu/tx-start/),
	ID(ELISION_START,	cpu/el-start/),
	ID(CYCLES_IN_TX_CP,	cpu/cycles-ct/),
88 89 90 91 92
	ID(TOPDOWN_TOTAL_SLOTS, topdown-total-slots),
	ID(TOPDOWN_SLOTS_ISSUED, topdown-slots-issued),
	ID(TOPDOWN_SLOTS_RETIRED, topdown-slots-retired),
	ID(TOPDOWN_FETCH_BUBBLES, topdown-fetch-bubbles),
	ID(TOPDOWN_RECOVERY_BUBBLES, topdown-recovery-bubbles),
93 94
	ID(SMI_NUM, msr/smi/),
	ID(APERF, msr/aperf/),
95 96 97
};
#undef ID

98
static void perf_stat_evsel_id_init(struct evsel *evsel)
99
{
100
	struct perf_stat_evsel *ps = evsel->stats;
101 102 103 104 105 106 107 108 109 110 111
	int i;

	/* ps->id is 0 hence PERF_STAT_EVSEL_ID__NONE by default */

	for (i = 0; i < PERF_STAT_EVSEL_ID__MAX; i++) {
		if (!strcmp(perf_evsel__name(evsel), id_str[i])) {
			ps->id = i;
			break;
		}
	}
}
112

113
static void perf_evsel__reset_stat_priv(struct evsel *evsel)
114 115
{
	int i;
116
	struct perf_stat_evsel *ps = evsel->stats;
117 118 119 120 121 122 123

	for (i = 0; i < 3; i++)
		init_stats(&ps->res_stats[i]);

	perf_stat_evsel_id_init(evsel);
}

124
static int perf_evsel__alloc_stat_priv(struct evsel *evsel)
125
{
126 127
	evsel->stats = zalloc(sizeof(struct perf_stat_evsel));
	if (evsel->stats == NULL)
128 129 130 131 132
		return -ENOMEM;
	perf_evsel__reset_stat_priv(evsel);
	return 0;
}

133
static void perf_evsel__free_stat_priv(struct evsel *evsel)
134
{
135
	struct perf_stat_evsel *ps = evsel->stats;
J
Jiri Olsa 已提交
136 137

	if (ps)
138
		zfree(&ps->group_data);
139
	zfree(&evsel->stats);
140
}
141

142
static int perf_evsel__alloc_prev_raw_counts(struct evsel *evsel,
143
					     int ncpus, int nthreads)
144 145 146 147 148 149 150 151 152 153
{
	struct perf_counts *counts;

	counts = perf_counts__new(ncpus, nthreads);
	if (counts)
		evsel->prev_raw_counts = counts;

	return counts ? 0 : -ENOMEM;
}

154
static void perf_evsel__free_prev_raw_counts(struct evsel *evsel)
155 156 157 158
{
	perf_counts__delete(evsel->prev_raw_counts);
	evsel->prev_raw_counts = NULL;
}
159

160
static int perf_evsel__alloc_stats(struct evsel *evsel, bool alloc_raw)
161 162
{
	int ncpus = perf_evsel__nr_cpus(evsel);
163
	int nthreads = perf_thread_map__nr(evsel->core.threads);
164 165 166 167 168 169 170 171 172

	if (perf_evsel__alloc_stat_priv(evsel) < 0 ||
	    perf_evsel__alloc_counts(evsel, ncpus, nthreads) < 0 ||
	    (alloc_raw && perf_evsel__alloc_prev_raw_counts(evsel, ncpus, nthreads) < 0))
		return -ENOMEM;

	return 0;
}

173
int perf_evlist__alloc_stats(struct evlist *evlist, bool alloc_raw)
174
{
175
	struct evsel *evsel;
176

177
	evlist__for_each_entry(evlist, evsel) {
178
		if (perf_evsel__alloc_stats(evsel, alloc_raw))
179 180 181 182 183 184 185 186 187 188
			goto out_free;
	}

	return 0;

out_free:
	perf_evlist__free_stats(evlist);
	return -1;
}

189
void perf_evlist__free_stats(struct evlist *evlist)
190
{
191
	struct evsel *evsel;
192

193
	evlist__for_each_entry(evlist, evsel) {
194 195 196 197 198 199
		perf_evsel__free_stat_priv(evsel);
		perf_evsel__free_counts(evsel);
		perf_evsel__free_prev_raw_counts(evsel);
	}
}

200
void perf_evlist__reset_stats(struct evlist *evlist)
201
{
202
	struct evsel *evsel;
203

204
	evlist__for_each_entry(evlist, evsel) {
205 206 207 208
		perf_evsel__reset_stat_priv(evsel);
		perf_evsel__reset_counts(evsel);
	}
}
209

210
static void zero_per_pkg(struct evsel *counter)
211 212
{
	if (counter->per_pkg_mask)
213
		memset(counter->per_pkg_mask, 0, cpu__max_cpu());
214 215
}

216
static int check_per_pkg(struct evsel *counter,
217
			 struct perf_counts_values *vals, int cpu, bool *skip)
218 219
{
	unsigned long *mask = counter->per_pkg_mask;
220
	struct perf_cpu_map *cpus = evsel__cpus(counter);
221 222 223 224 225 226 227
	int s;

	*skip = false;

	if (!counter->per_pkg)
		return 0;

228
	if (perf_cpu_map__empty(cpus))
229 230 231
		return 0;

	if (!mask) {
232
		mask = zalloc(cpu__max_cpu());
233 234 235 236 237 238
		if (!mask)
			return -ENOMEM;

		counter->per_pkg_mask = mask;
	}

239 240 241 242 243 244 245 246 247 248 249
	/*
	 * we do not consider an event that has not run as a good
	 * instance to mark a package as used (skip=1). Otherwise
	 * we may run into a situation where the first CPU in a package
	 * is not running anything, yet the second is, and this function
	 * would mark the package as used after the first CPU and would
	 * not read the values from the second CPU.
	 */
	if (!(vals->run && vals->ena))
		return 0;

250
	s = cpu_map__get_socket(cpus, cpu, NULL);
251 252 253 254 255 256 257 258
	if (s < 0)
		return -1;

	*skip = test_and_set_bit(s, mask) == 1;
	return 0;
}

static int
259
process_counter_values(struct perf_stat_config *config, struct evsel *evsel,
260 261 262 263 264 265 266
		       int cpu, int thread,
		       struct perf_counts_values *count)
{
	struct perf_counts_values *aggr = &evsel->counts->aggr;
	static struct perf_counts_values zero;
	bool skip = false;

267
	if (check_per_pkg(evsel, count, cpu, &skip)) {
268 269 270 271 272 273 274 275 276 277
		pr_err("failed to read per-pkg counter\n");
		return -1;
	}

	if (skip)
		count = &zero;

	switch (config->aggr_mode) {
	case AGGR_THREAD:
	case AGGR_CORE:
278
	case AGGR_DIE:
279 280 281 282 283
	case AGGR_SOCKET:
	case AGGR_NONE:
		if (!evsel->snapshot)
			perf_evsel__compute_deltas(evsel, cpu, thread, count);
		perf_counts_values__scale(count, config->scale, NULL);
284 285 286 287 288
		if ((config->aggr_mode == AGGR_NONE) && (!evsel->percore)) {
			perf_stat__update_shadow_stats(evsel, count->val,
						       cpu, &rt_stat);
		}

289 290 291 292 293 294 295 296
		if (config->aggr_mode == AGGR_THREAD) {
			if (config->stats)
				perf_stat__update_shadow_stats(evsel,
					count->val, 0, &config->stats[thread]);
			else
				perf_stat__update_shadow_stats(evsel,
					count->val, 0, &rt_stat);
		}
297 298 299
		break;
	case AGGR_GLOBAL:
		aggr->val += count->val;
A
Andi Kleen 已提交
300 301
		aggr->ena += count->ena;
		aggr->run += count->run;
J
Jiri Olsa 已提交
302
	case AGGR_UNSET:
303 304 305 306 307 308 309 310
	default:
		break;
	}

	return 0;
}

static int process_counter_maps(struct perf_stat_config *config,
311
				struct evsel *counter)
312
{
313
	int nthreads = perf_thread_map__nr(counter->core.threads);
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
	int ncpus = perf_evsel__nr_cpus(counter);
	int cpu, thread;

	if (counter->system_wide)
		nthreads = 1;

	for (thread = 0; thread < nthreads; thread++) {
		for (cpu = 0; cpu < ncpus; cpu++) {
			if (process_counter_values(config, counter, cpu, thread,
						   perf_counts(counter->counts, cpu, thread)))
				return -1;
		}
	}

	return 0;
}

int perf_stat_process_counter(struct perf_stat_config *config,
332
			      struct evsel *counter)
333 334
{
	struct perf_counts_values *aggr = &counter->counts->aggr;
335
	struct perf_stat_evsel *ps = counter->stats;
336 337 338 339 340
	u64 *count = counter->counts->aggr.values;
	int i, ret;

	aggr->val = aggr->ena = aggr->run = 0;

341 342 343 344 345 346 347 348 349 350
	/*
	 * We calculate counter's data every interval,
	 * and the display code shows ps->res_stats
	 * avg value. We need to zero the stats for
	 * interval mode, otherwise overall avg running
	 * averages will be shown for each interval.
	 */
	if (config->interval)
		init_stats(ps->res_stats);

351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
	if (counter->per_pkg)
		zero_per_pkg(counter);

	ret = process_counter_maps(config, counter);
	if (ret)
		return ret;

	if (config->aggr_mode != AGGR_GLOBAL)
		return 0;

	if (!counter->snapshot)
		perf_evsel__compute_deltas(counter, -1, -1, aggr);
	perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled);

	for (i = 0; i < 3; i++)
		update_stats(&ps->res_stats[i], count[i]);

368
	if (verbose > 0) {
369 370 371 372 373 374 375
		fprintf(config->output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
			perf_evsel__name(counter), count[0], count[1], count[2]);
	}

	/*
	 * Save the full runtime - to allow normalization during printout:
	 */
376
	perf_stat__update_shadow_stats(counter, *count, 0, &rt_stat);
377 378 379

	return 0;
}
380

381 382
int perf_event__process_stat_event(struct perf_session *session,
				   union perf_event *event)
383 384
{
	struct perf_counts_values count;
385
	struct perf_record_stat *st = &event->stat;
386
	struct evsel *counter;
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401

	count.val = st->val;
	count.ena = st->ena;
	count.run = st->run;

	counter = perf_evlist__id2evsel(session->evlist, st->id);
	if (!counter) {
		pr_err("Failed to resolve counter for stat event.\n");
		return -EINVAL;
	}

	*perf_counts(counter->counts, st->cpu, st->thread) = count;
	counter->supported = true;
	return 0;
}
402 403 404

size_t perf_event__fprintf_stat(union perf_event *event, FILE *fp)
{
405
	struct perf_record_stat *st = (struct perf_record_stat *)event;
406 407
	size_t ret;

408
	ret  = fprintf(fp, "\n... id %" PRI_lu64 ", cpu %d, thread %d\n",
409
		       st->id, st->cpu, st->thread);
410
	ret += fprintf(fp, "... value %" PRI_lu64 ", enabled %" PRI_lu64 ", running %" PRI_lu64 "\n",
411 412 413 414 415 416 417
		       st->val, st->ena, st->run);

	return ret;
}

size_t perf_event__fprintf_stat_round(union perf_event *event, FILE *fp)
{
418
	struct perf_record_stat_round *rd = (struct perf_record_stat_round *)event;
419 420
	size_t ret;

421
	ret = fprintf(fp, "\n... time %" PRI_lu64 ", type %s\n", rd->time,
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
		      rd->type == PERF_STAT_ROUND_TYPE__FINAL ? "FINAL" : "INTERVAL");

	return ret;
}

size_t perf_event__fprintf_stat_config(union perf_event *event, FILE *fp)
{
	struct perf_stat_config sc;
	size_t ret;

	perf_event__read_stat_config(&sc, &event->stat_config);

	ret  = fprintf(fp, "\n");
	ret += fprintf(fp, "... aggr_mode %d\n", sc.aggr_mode);
	ret += fprintf(fp, "... scale     %d\n", sc.scale);
	ret += fprintf(fp, "... interval  %u\n", sc.interval);

	return ret;
}
441

442
int create_perf_stat_counter(struct evsel *evsel,
443 444 445
			     struct perf_stat_config *config,
			     struct target *target)
{
446
	struct perf_event_attr *attr = &evsel->core.attr;
447
	struct evsel *leader = evsel->leader;
448

A
Andi Kleen 已提交
449 450
	attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
			    PERF_FORMAT_TOTAL_TIME_RUNNING;
451 452 453 454 455 456

	/*
	 * The event is part of non trivial group, let's enable
	 * the group read (for leader) and ID retrieval for all
	 * members.
	 */
457
	if (leader->core.nr_members > 1)
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487
		attr->read_format |= PERF_FORMAT_ID|PERF_FORMAT_GROUP;

	attr->inherit = !config->no_inherit;

	/*
	 * Some events get initialized with sample_(period/type) set,
	 * like tracepoints. Clear it up for counting.
	 */
	attr->sample_period = 0;

	if (config->identifier)
		attr->sample_type = PERF_SAMPLE_IDENTIFIER;

	/*
	 * Disabling all counters initially, they will be enabled
	 * either manually by us or by kernel via enable_on_exec
	 * set later.
	 */
	if (perf_evsel__is_group_leader(evsel)) {
		attr->disabled = 1;

		/*
		 * In case of initial_delay we enable tracee
		 * events manually.
		 */
		if (target__none(target) && !config->initial_delay)
			attr->enable_on_exec = 1;
	}

	if (target__has_cpu(target) && !target__has_per_thread(target))
488
		return perf_evsel__open_per_cpu(evsel, evsel__cpus(evsel));
489

490
	return perf_evsel__open_per_thread(evsel, evsel->core.threads);
491
}
492 493 494

int perf_stat_synthesize_config(struct perf_stat_config *config,
				struct perf_tool *tool,
495
				struct evlist *evlist,
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511
				perf_event__handler_t process,
				bool attrs)
{
	int err;

	if (attrs) {
		err = perf_event__synthesize_attrs(tool, evlist, process);
		if (err < 0) {
			pr_err("Couldn't synthesize attrs.\n");
			return err;
		}
	}

	err = perf_event__synthesize_extra_attr(tool, evlist, process,
						attrs);

512
	err = perf_event__synthesize_thread_map2(tool, evlist->core.threads,
513 514 515 516 517 518
						 process, NULL);
	if (err < 0) {
		pr_err("Couldn't synthesize thread map.\n");
		return err;
	}

519
	err = perf_event__synthesize_cpu_map(tool, evlist->core.cpus,
520 521 522 523 524 525 526 527 528 529 530 531 532 533
					     process, NULL);
	if (err < 0) {
		pr_err("Couldn't synthesize thread map.\n");
		return err;
	}

	err = perf_event__synthesize_stat_config(tool, config, process, NULL);
	if (err < 0) {
		pr_err("Couldn't synthesize config.\n");
		return err;
	}

	return 0;
}