stat.c 13.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 <string.h>
6
#include "counts.h"
7
#include "cpumap.h"
8
#include "debug.h"
9
#include "header.h"
10
#include "stat.h"
11
#include "session.h"
12
#include "target.h"
13
#include "evlist.h"
14
#include "evsel.h"
15
#include "thread_map.h"
16
#include <linux/zalloc.h>
17 18 19 20 21 22 23 24 25

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 已提交
26 27 28 29 30 31

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

	if (val < stats->min)
		stats->min = val;
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
}

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;

59
	if (stats->n < 2)
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
		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;
}
77

78
bool __perf_evsel_stat__is(struct evsel *evsel,
79 80
			   enum perf_stat_evsel_id id)
{
81
	struct perf_stat_evsel *ps = evsel->stats;
82 83 84 85 86 87

	return ps->id == id;
}

#define ID(id, name) [PERF_STAT_EVSEL_ID__##id] = #name
static const char *id_str[PERF_STAT_EVSEL_ID__MAX] = {
88 89 90 91 92
	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/),
93 94 95 96 97
	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),
98 99 100 101
	ID(TOPDOWN_RETIRING, topdown-retiring),
	ID(TOPDOWN_BAD_SPEC, topdown-bad-spec),
	ID(TOPDOWN_FE_BOUND, topdown-fe-bound),
	ID(TOPDOWN_BE_BOUND, topdown-be-bound),
102 103
	ID(SMI_NUM, msr/smi/),
	ID(APERF, msr/aperf/),
104 105 106
};
#undef ID

107
static void perf_stat_evsel_id_init(struct evsel *evsel)
108
{
109
	struct perf_stat_evsel *ps = evsel->stats;
110 111 112 113 114
	int i;

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

	for (i = 0; i < PERF_STAT_EVSEL_ID__MAX; i++) {
115
		if (!strcmp(evsel__name(evsel), id_str[i])) {
116 117 118 119 120
			ps->id = i;
			break;
		}
	}
}
121

122
static void evsel__reset_stat_priv(struct evsel *evsel)
123 124
{
	int i;
125
	struct perf_stat_evsel *ps = evsel->stats;
126 127 128 129 130 131 132

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

	perf_stat_evsel_id_init(evsel);
}

133
static int evsel__alloc_stat_priv(struct evsel *evsel)
134
{
135 136
	evsel->stats = zalloc(sizeof(struct perf_stat_evsel));
	if (evsel->stats == NULL)
137
		return -ENOMEM;
138
	evsel__reset_stat_priv(evsel);
139 140 141
	return 0;
}

142
static void evsel__free_stat_priv(struct evsel *evsel)
143
{
144
	struct perf_stat_evsel *ps = evsel->stats;
J
Jiri Olsa 已提交
145 146

	if (ps)
147
		zfree(&ps->group_data);
148
	zfree(&evsel->stats);
149
}
150

151
static int evsel__alloc_prev_raw_counts(struct evsel *evsel, int ncpus, int nthreads)
152 153 154 155 156 157 158 159 160 161
{
	struct perf_counts *counts;

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

	return counts ? 0 : -ENOMEM;
}

162
static void evsel__free_prev_raw_counts(struct evsel *evsel)
163 164 165 166
{
	perf_counts__delete(evsel->prev_raw_counts);
	evsel->prev_raw_counts = NULL;
}
167

168
static void evsel__reset_prev_raw_counts(struct evsel *evsel)
169
{
170 171
	if (evsel->prev_raw_counts)
		perf_counts__reset(evsel->prev_raw_counts);
172 173
}

174
static int evsel__alloc_stats(struct evsel *evsel, bool alloc_raw)
175
{
176
	int ncpus = evsel__nr_cpus(evsel);
177
	int nthreads = perf_thread_map__nr(evsel->core.threads);
178

179 180 181
	if (evsel__alloc_stat_priv(evsel) < 0 ||
	    evsel__alloc_counts(evsel, ncpus, nthreads) < 0 ||
	    (alloc_raw && evsel__alloc_prev_raw_counts(evsel, ncpus, nthreads) < 0))
182 183 184 185 186
		return -ENOMEM;

	return 0;
}

187
int evlist__alloc_stats(struct evlist *evlist, bool alloc_raw)
188
{
189
	struct evsel *evsel;
190

191
	evlist__for_each_entry(evlist, evsel) {
192
		if (evsel__alloc_stats(evsel, alloc_raw))
193 194 195 196 197 198
			goto out_free;
	}

	return 0;

out_free:
199
	evlist__free_stats(evlist);
200 201 202
	return -1;
}

203
void evlist__free_stats(struct evlist *evlist)
204
{
205
	struct evsel *evsel;
206

207
	evlist__for_each_entry(evlist, evsel) {
208 209 210
		evsel__free_stat_priv(evsel);
		evsel__free_counts(evsel);
		evsel__free_prev_raw_counts(evsel);
211 212 213
	}
}

214
void evlist__reset_stats(struct evlist *evlist)
215
{
216
	struct evsel *evsel;
217

218
	evlist__for_each_entry(evlist, evsel) {
219 220
		evsel__reset_stat_priv(evsel);
		evsel__reset_counts(evsel);
221 222
	}
}
223

224
void evlist__reset_prev_raw_counts(struct evlist *evlist)
225 226 227 228
{
	struct evsel *evsel;

	evlist__for_each_entry(evlist, evsel)
229
		evsel__reset_prev_raw_counts(evsel);
230 231
}

232
static void evsel__copy_prev_raw_counts(struct evsel *evsel)
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
{
	int ncpus = evsel__nr_cpus(evsel);
	int nthreads = perf_thread_map__nr(evsel->core.threads);

	for (int thread = 0; thread < nthreads; thread++) {
		for (int cpu = 0; cpu < ncpus; cpu++) {
			*perf_counts(evsel->counts, cpu, thread) =
				*perf_counts(evsel->prev_raw_counts, cpu,
					     thread);
		}
	}

	evsel->counts->aggr = evsel->prev_raw_counts->aggr;
}

248
void evlist__copy_prev_raw_counts(struct evlist *evlist)
249 250 251 252
{
	struct evsel *evsel;

	evlist__for_each_entry(evlist, evsel)
253
		evsel__copy_prev_raw_counts(evsel);
254 255
}

256
void evlist__save_aggr_prev_raw_counts(struct evlist *evlist)
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
{
	struct evsel *evsel;

	/*
	 * To collect the overall statistics for interval mode,
	 * we copy the counts from evsel->prev_raw_counts to
	 * evsel->counts. The perf_stat_process_counter creates
	 * aggr values from per cpu values, but the per cpu values
	 * are 0 for AGGR_GLOBAL. So we use a trick that saves the
	 * previous aggr value to the first member of perf_counts,
	 * then aggr calculation in process_counter_values can work
	 * correctly.
	 */
	evlist__for_each_entry(evlist, evsel) {
		*perf_counts(evsel->prev_raw_counts, 0, 0) =
			evsel->prev_raw_counts->aggr;
	}
}

276
static void zero_per_pkg(struct evsel *counter)
277 278
{
	if (counter->per_pkg_mask)
279
		memset(counter->per_pkg_mask, 0, cpu__max_cpu());
280 281
}

282
static int check_per_pkg(struct evsel *counter,
283
			 struct perf_counts_values *vals, int cpu, bool *skip)
284 285
{
	unsigned long *mask = counter->per_pkg_mask;
286
	struct perf_cpu_map *cpus = evsel__cpus(counter);
287 288 289 290 291 292 293
	int s;

	*skip = false;

	if (!counter->per_pkg)
		return 0;

294
	if (perf_cpu_map__empty(cpus))
295 296 297
		return 0;

	if (!mask) {
298
		mask = zalloc(cpu__max_cpu());
299 300 301 302 303 304
		if (!mask)
			return -ENOMEM;

		counter->per_pkg_mask = mask;
	}

305 306 307 308 309 310 311 312 313 314 315
	/*
	 * 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;

316
	s = cpu_map__get_socket(cpus, cpu, NULL);
317 318 319 320 321 322 323 324
	if (s < 0)
		return -1;

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

static int
325
process_counter_values(struct perf_stat_config *config, struct evsel *evsel,
326 327 328 329 330 331 332
		       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;

333
	if (check_per_pkg(evsel, count, cpu, &skip)) {
334 335 336 337 338 339 340 341 342 343
		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:
344
	case AGGR_DIE:
345
	case AGGR_SOCKET:
346
	case AGGR_NODE:
347 348
	case AGGR_NONE:
		if (!evsel->snapshot)
349
			evsel__compute_deltas(evsel, cpu, thread, count);
350
		perf_counts_values__scale(count, config->scale, NULL);
351 352 353 354 355
		if ((config->aggr_mode == AGGR_NONE) && (!evsel->percore)) {
			perf_stat__update_shadow_stats(evsel, count->val,
						       cpu, &rt_stat);
		}

356 357 358 359 360 361 362 363
		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);
		}
364 365 366
		break;
	case AGGR_GLOBAL:
		aggr->val += count->val;
A
Andi Kleen 已提交
367 368
		aggr->ena += count->ena;
		aggr->run += count->run;
J
Jiri Olsa 已提交
369
	case AGGR_UNSET:
370 371 372 373 374 375 376 377
	default:
		break;
	}

	return 0;
}

static int process_counter_maps(struct perf_stat_config *config,
378
				struct evsel *counter)
379
{
380
	int nthreads = perf_thread_map__nr(counter->core.threads);
381
	int ncpus = evsel__nr_cpus(counter);
382 383
	int cpu, thread;

384
	if (counter->core.system_wide)
385 386 387 388 389 390 391 392 393 394 395 396 397 398
		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,
399
			      struct evsel *counter)
400 401
{
	struct perf_counts_values *aggr = &counter->counts->aggr;
402
	struct perf_stat_evsel *ps = counter->stats;
403 404 405 406 407
	u64 *count = counter->counts->aggr.values;
	int i, ret;

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

408 409 410 411 412 413 414
	/*
	 * 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.
	 */
415
	if (config->interval || config->summary) {
416 417 418
		for (i = 0; i < 3; i++)
			init_stats(&ps->res_stats[i]);
	}
419

420 421 422 423 424 425 426 427 428 429 430
	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)
431
		evsel__compute_deltas(counter, -1, -1, aggr);
432 433 434 435 436
	perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled);

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

437
	if (verbose > 0) {
438
		fprintf(config->output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
439
			evsel__name(counter), count[0], count[1], count[2]);
440 441 442 443 444
	}

	/*
	 * Save the full runtime - to allow normalization during printout:
	 */
445
	perf_stat__update_shadow_stats(counter, *count, 0, &rt_stat);
446 447 448

	return 0;
}
449

450 451
int perf_event__process_stat_event(struct perf_session *session,
				   union perf_event *event)
452 453
{
	struct perf_counts_values count;
454
	struct perf_record_stat *st = &event->stat;
455
	struct evsel *counter;
456 457 458 459 460

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

461
	counter = evlist__id2evsel(session->evlist, st->id);
462 463 464 465 466 467 468 469 470
	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;
}
471 472 473

size_t perf_event__fprintf_stat(union perf_event *event, FILE *fp)
{
474
	struct perf_record_stat *st = (struct perf_record_stat *)event;
475 476
	size_t ret;

477
	ret  = fprintf(fp, "\n... id %" PRI_lu64 ", cpu %d, thread %d\n",
478
		       st->id, st->cpu, st->thread);
479
	ret += fprintf(fp, "... value %" PRI_lu64 ", enabled %" PRI_lu64 ", running %" PRI_lu64 "\n",
480 481 482 483 484 485 486
		       st->val, st->ena, st->run);

	return ret;
}

size_t perf_event__fprintf_stat_round(union perf_event *event, FILE *fp)
{
487
	struct perf_record_stat_round *rd = (struct perf_record_stat_round *)event;
488 489
	size_t ret;

490
	ret = fprintf(fp, "\n... time %" PRI_lu64 ", type %s\n", rd->time,
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
		      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;
}
510

511
int create_perf_stat_counter(struct evsel *evsel,
512
			     struct perf_stat_config *config,
513 514
			     struct target *target,
			     int cpu)
515
{
516
	struct perf_event_attr *attr = &evsel->core.attr;
517
	struct evsel *leader = evsel->leader;
518

A
Andi Kleen 已提交
519 520
	attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
			    PERF_FORMAT_TOTAL_TIME_RUNNING;
521 522 523 524 525 526

	/*
	 * The event is part of non trivial group, let's enable
	 * the group read (for leader) and ID retrieval for all
	 * members.
	 */
527
	if (leader->core.nr_members > 1)
528 529 530 531 532 533 534 535 536 537 538 539 540
		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;

541 542 543 544 545 546 547 548 549 550
	if (config->all_user) {
		attr->exclude_kernel = 1;
		attr->exclude_user   = 0;
	}

	if (config->all_kernel) {
		attr->exclude_kernel = 0;
		attr->exclude_user   = 1;
	}

551 552 553 554 555
	/*
	 * Disabling all counters initially, they will be enabled
	 * either manually by us or by kernel via enable_on_exec
	 * set later.
	 */
556
	if (evsel__is_group_leader(evsel)) {
557 558 559 560 561 562 563 564 565 566 567
		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))
568
		return evsel__open_per_cpu(evsel, evsel__cpus(evsel), cpu);
569

570
	return evsel__open_per_thread(evsel, evsel->core.threads);
571
}