1 // SPDX-License-Identifier: GPL-2.0 2 #include <errno.h> 3 #include <linux/err.h> 4 #include <inttypes.h> 5 #include <math.h> 6 #include <string.h> 7 #include "counts.h" 8 #include "cpumap.h" 9 #include "debug.h" 10 #include "header.h" 11 #include "stat.h" 12 #include "session.h" 13 #include "target.h" 14 #include "evlist.h" 15 #include "evsel.h" 16 #include "thread_map.h" 17 #ifdef HAVE_LIBBPF_SUPPORT 18 #include <bpf/hashmap.h> 19 #else 20 #include "util/hashmap.h" 21 #endif 22 #include <linux/zalloc.h> 23 24 void update_stats(struct stats *stats, u64 val) 25 { 26 double delta; 27 28 stats->n++; 29 delta = val - stats->mean; 30 stats->mean += delta / stats->n; 31 stats->M2 += delta*(val - stats->mean); 32 33 if (val > stats->max) 34 stats->max = val; 35 36 if (val < stats->min) 37 stats->min = val; 38 } 39 40 double avg_stats(struct stats *stats) 41 { 42 return stats->mean; 43 } 44 45 /* 46 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance 47 * 48 * (\Sum n_i^2) - ((\Sum n_i)^2)/n 49 * s^2 = ------------------------------- 50 * n - 1 51 * 52 * http://en.wikipedia.org/wiki/Stddev 53 * 54 * The std dev of the mean is related to the std dev by: 55 * 56 * s 57 * s_mean = ------- 58 * sqrt(n) 59 * 60 */ 61 double stddev_stats(struct stats *stats) 62 { 63 double variance, variance_mean; 64 65 if (stats->n < 2) 66 return 0.0; 67 68 variance = stats->M2 / (stats->n - 1); 69 variance_mean = variance / stats->n; 70 71 return sqrt(variance_mean); 72 } 73 74 double rel_stddev_stats(double stddev, double avg) 75 { 76 double pct = 0.0; 77 78 if (avg) 79 pct = 100.0 * stddev/avg; 80 81 return pct; 82 } 83 84 bool __perf_stat_evsel__is(struct evsel *evsel, enum perf_stat_evsel_id id) 85 { 86 struct perf_stat_evsel *ps = evsel->stats; 87 88 return ps->id == id; 89 } 90 91 #define ID(id, name) [PERF_STAT_EVSEL_ID__##id] = #name 92 static const char *id_str[PERF_STAT_EVSEL_ID__MAX] = { 93 ID(NONE, x), 94 ID(CYCLES_IN_TX, cpu/cycles-t/), 95 ID(TRANSACTION_START, cpu/tx-start/), 96 ID(ELISION_START, cpu/el-start/), 97 ID(CYCLES_IN_TX_CP, cpu/cycles-ct/), 98 ID(TOPDOWN_TOTAL_SLOTS, topdown-total-slots), 99 ID(TOPDOWN_SLOTS_ISSUED, topdown-slots-issued), 100 ID(TOPDOWN_SLOTS_RETIRED, topdown-slots-retired), 101 ID(TOPDOWN_FETCH_BUBBLES, topdown-fetch-bubbles), 102 ID(TOPDOWN_RECOVERY_BUBBLES, topdown-recovery-bubbles), 103 ID(TOPDOWN_RETIRING, topdown-retiring), 104 ID(TOPDOWN_BAD_SPEC, topdown-bad-spec), 105 ID(TOPDOWN_FE_BOUND, topdown-fe-bound), 106 ID(TOPDOWN_BE_BOUND, topdown-be-bound), 107 ID(TOPDOWN_HEAVY_OPS, topdown-heavy-ops), 108 ID(TOPDOWN_BR_MISPREDICT, topdown-br-mispredict), 109 ID(TOPDOWN_FETCH_LAT, topdown-fetch-lat), 110 ID(TOPDOWN_MEM_BOUND, topdown-mem-bound), 111 ID(SMI_NUM, msr/smi/), 112 ID(APERF, msr/aperf/), 113 }; 114 #undef ID 115 116 static void perf_stat_evsel_id_init(struct evsel *evsel) 117 { 118 struct perf_stat_evsel *ps = evsel->stats; 119 int i; 120 121 /* ps->id is 0 hence PERF_STAT_EVSEL_ID__NONE by default */ 122 123 for (i = 0; i < PERF_STAT_EVSEL_ID__MAX; i++) { 124 if (!strcmp(evsel__name(evsel), id_str[i]) || 125 (strstr(evsel__name(evsel), id_str[i]) && evsel->pmu_name 126 && strstr(evsel__name(evsel), evsel->pmu_name))) { 127 ps->id = i; 128 break; 129 } 130 } 131 } 132 133 static void evsel__reset_stat_priv(struct evsel *evsel) 134 { 135 struct perf_stat_evsel *ps = evsel->stats; 136 137 init_stats(&ps->res_stats); 138 } 139 140 static int evsel__alloc_stat_priv(struct evsel *evsel) 141 { 142 evsel->stats = zalloc(sizeof(struct perf_stat_evsel)); 143 if (evsel->stats == NULL) 144 return -ENOMEM; 145 perf_stat_evsel_id_init(evsel); 146 evsel__reset_stat_priv(evsel); 147 return 0; 148 } 149 150 static void evsel__free_stat_priv(struct evsel *evsel) 151 { 152 struct perf_stat_evsel *ps = evsel->stats; 153 154 if (ps) 155 zfree(&ps->group_data); 156 zfree(&evsel->stats); 157 } 158 159 static int evsel__alloc_prev_raw_counts(struct evsel *evsel) 160 { 161 int cpu_map_nr = evsel__nr_cpus(evsel); 162 int nthreads = perf_thread_map__nr(evsel->core.threads); 163 struct perf_counts *counts; 164 165 counts = perf_counts__new(cpu_map_nr, nthreads); 166 if (counts) 167 evsel->prev_raw_counts = counts; 168 169 return counts ? 0 : -ENOMEM; 170 } 171 172 static void evsel__free_prev_raw_counts(struct evsel *evsel) 173 { 174 perf_counts__delete(evsel->prev_raw_counts); 175 evsel->prev_raw_counts = NULL; 176 } 177 178 static void evsel__reset_prev_raw_counts(struct evsel *evsel) 179 { 180 if (evsel->prev_raw_counts) 181 perf_counts__reset(evsel->prev_raw_counts); 182 } 183 184 static int evsel__alloc_stats(struct evsel *evsel, bool alloc_raw) 185 { 186 if (evsel__alloc_stat_priv(evsel) < 0 || 187 evsel__alloc_counts(evsel) < 0 || 188 (alloc_raw && evsel__alloc_prev_raw_counts(evsel) < 0)) 189 return -ENOMEM; 190 191 return 0; 192 } 193 194 int evlist__alloc_stats(struct evlist *evlist, bool alloc_raw) 195 { 196 struct evsel *evsel; 197 198 evlist__for_each_entry(evlist, evsel) { 199 if (evsel__alloc_stats(evsel, alloc_raw)) 200 goto out_free; 201 } 202 203 return 0; 204 205 out_free: 206 evlist__free_stats(evlist); 207 return -1; 208 } 209 210 void evlist__free_stats(struct evlist *evlist) 211 { 212 struct evsel *evsel; 213 214 evlist__for_each_entry(evlist, evsel) { 215 evsel__free_stat_priv(evsel); 216 evsel__free_counts(evsel); 217 evsel__free_prev_raw_counts(evsel); 218 } 219 } 220 221 void evlist__reset_stats(struct evlist *evlist) 222 { 223 struct evsel *evsel; 224 225 evlist__for_each_entry(evlist, evsel) { 226 evsel__reset_stat_priv(evsel); 227 evsel__reset_counts(evsel); 228 } 229 } 230 231 void evlist__reset_prev_raw_counts(struct evlist *evlist) 232 { 233 struct evsel *evsel; 234 235 evlist__for_each_entry(evlist, evsel) 236 evsel__reset_prev_raw_counts(evsel); 237 } 238 239 static void evsel__copy_prev_raw_counts(struct evsel *evsel) 240 { 241 int idx, nthreads = perf_thread_map__nr(evsel->core.threads); 242 243 for (int thread = 0; thread < nthreads; thread++) { 244 perf_cpu_map__for_each_idx(idx, evsel__cpus(evsel)) { 245 *perf_counts(evsel->counts, idx, thread) = 246 *perf_counts(evsel->prev_raw_counts, idx, thread); 247 } 248 } 249 250 evsel->counts->aggr = evsel->prev_raw_counts->aggr; 251 } 252 253 void evlist__copy_prev_raw_counts(struct evlist *evlist) 254 { 255 struct evsel *evsel; 256 257 evlist__for_each_entry(evlist, evsel) 258 evsel__copy_prev_raw_counts(evsel); 259 } 260 261 void evlist__save_aggr_prev_raw_counts(struct evlist *evlist) 262 { 263 struct evsel *evsel; 264 265 /* 266 * To collect the overall statistics for interval mode, 267 * we copy the counts from evsel->prev_raw_counts to 268 * evsel->counts. The perf_stat_process_counter creates 269 * aggr values from per cpu values, but the per cpu values 270 * are 0 for AGGR_GLOBAL. So we use a trick that saves the 271 * previous aggr value to the first member of perf_counts, 272 * then aggr calculation in process_counter_values can work 273 * correctly. 274 */ 275 evlist__for_each_entry(evlist, evsel) { 276 *perf_counts(evsel->prev_raw_counts, 0, 0) = 277 evsel->prev_raw_counts->aggr; 278 } 279 } 280 281 static size_t pkg_id_hash(long __key, void *ctx __maybe_unused) 282 { 283 uint64_t *key = (uint64_t *) __key; 284 285 return *key & 0xffffffff; 286 } 287 288 static bool pkg_id_equal(long __key1, long __key2, void *ctx __maybe_unused) 289 { 290 uint64_t *key1 = (uint64_t *) __key1; 291 uint64_t *key2 = (uint64_t *) __key2; 292 293 return *key1 == *key2; 294 } 295 296 static int check_per_pkg(struct evsel *counter, struct perf_counts_values *vals, 297 int cpu_map_idx, bool *skip) 298 { 299 struct hashmap *mask = counter->per_pkg_mask; 300 struct perf_cpu_map *cpus = evsel__cpus(counter); 301 struct perf_cpu cpu = perf_cpu_map__cpu(cpus, cpu_map_idx); 302 int s, d, ret = 0; 303 uint64_t *key; 304 305 *skip = false; 306 307 if (!counter->per_pkg) 308 return 0; 309 310 if (perf_cpu_map__empty(cpus)) 311 return 0; 312 313 if (!mask) { 314 mask = hashmap__new(pkg_id_hash, pkg_id_equal, NULL); 315 if (IS_ERR(mask)) 316 return -ENOMEM; 317 318 counter->per_pkg_mask = mask; 319 } 320 321 /* 322 * we do not consider an event that has not run as a good 323 * instance to mark a package as used (skip=1). Otherwise 324 * we may run into a situation where the first CPU in a package 325 * is not running anything, yet the second is, and this function 326 * would mark the package as used after the first CPU and would 327 * not read the values from the second CPU. 328 */ 329 if (!(vals->run && vals->ena)) 330 return 0; 331 332 s = cpu__get_socket_id(cpu); 333 if (s < 0) 334 return -1; 335 336 /* 337 * On multi-die system, die_id > 0. On no-die system, die_id = 0. 338 * We use hashmap(socket, die) to check the used socket+die pair. 339 */ 340 d = cpu__get_die_id(cpu); 341 if (d < 0) 342 return -1; 343 344 key = malloc(sizeof(*key)); 345 if (!key) 346 return -ENOMEM; 347 348 *key = (uint64_t)d << 32 | s; 349 if (hashmap__find(mask, key, NULL)) { 350 *skip = true; 351 free(key); 352 } else 353 ret = hashmap__add(mask, key, 1); 354 355 return ret; 356 } 357 358 static int 359 process_counter_values(struct perf_stat_config *config, struct evsel *evsel, 360 int cpu_map_idx, int thread, 361 struct perf_counts_values *count) 362 { 363 struct perf_counts_values *aggr = &evsel->counts->aggr; 364 static struct perf_counts_values zero; 365 bool skip = false; 366 367 if (check_per_pkg(evsel, count, cpu_map_idx, &skip)) { 368 pr_err("failed to read per-pkg counter\n"); 369 return -1; 370 } 371 372 if (skip) 373 count = &zero; 374 375 switch (config->aggr_mode) { 376 case AGGR_THREAD: 377 case AGGR_CORE: 378 case AGGR_DIE: 379 case AGGR_SOCKET: 380 case AGGR_NODE: 381 case AGGR_NONE: 382 if (!evsel->snapshot) 383 evsel__compute_deltas(evsel, cpu_map_idx, thread, count); 384 perf_counts_values__scale(count, config->scale, NULL); 385 if ((config->aggr_mode == AGGR_NONE) && (!evsel->percore)) { 386 perf_stat__update_shadow_stats(evsel, count->val, 387 cpu_map_idx, &rt_stat); 388 } 389 390 if (config->aggr_mode == AGGR_THREAD) { 391 perf_stat__update_shadow_stats(evsel, count->val, 392 thread, &rt_stat); 393 } 394 break; 395 case AGGR_GLOBAL: 396 aggr->val += count->val; 397 aggr->ena += count->ena; 398 aggr->run += count->run; 399 case AGGR_UNSET: 400 case AGGR_MAX: 401 default: 402 break; 403 } 404 405 return 0; 406 } 407 408 static int process_counter_maps(struct perf_stat_config *config, 409 struct evsel *counter) 410 { 411 int nthreads = perf_thread_map__nr(counter->core.threads); 412 int ncpus = evsel__nr_cpus(counter); 413 int idx, thread; 414 415 for (thread = 0; thread < nthreads; thread++) { 416 for (idx = 0; idx < ncpus; idx++) { 417 if (process_counter_values(config, counter, idx, thread, 418 perf_counts(counter->counts, idx, thread))) 419 return -1; 420 } 421 } 422 423 return 0; 424 } 425 426 int perf_stat_process_counter(struct perf_stat_config *config, 427 struct evsel *counter) 428 { 429 struct perf_counts_values *aggr = &counter->counts->aggr; 430 struct perf_stat_evsel *ps = counter->stats; 431 u64 *count = counter->counts->aggr.values; 432 int ret; 433 434 aggr->val = aggr->ena = aggr->run = 0; 435 436 if (counter->per_pkg) 437 evsel__zero_per_pkg(counter); 438 439 ret = process_counter_maps(config, counter); 440 if (ret) 441 return ret; 442 443 if (config->aggr_mode != AGGR_GLOBAL) 444 return 0; 445 446 if (!counter->snapshot) 447 evsel__compute_deltas(counter, -1, -1, aggr); 448 perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled); 449 450 update_stats(&ps->res_stats, *count); 451 452 if (verbose > 0) { 453 fprintf(config->output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n", 454 evsel__name(counter), count[0], count[1], count[2]); 455 } 456 457 /* 458 * Save the full runtime - to allow normalization during printout: 459 */ 460 perf_stat__update_shadow_stats(counter, *count, 0, &rt_stat); 461 462 return 0; 463 } 464 465 int perf_event__process_stat_event(struct perf_session *session, 466 union perf_event *event) 467 { 468 struct perf_counts_values count, *ptr; 469 struct perf_record_stat *st = &event->stat; 470 struct evsel *counter; 471 int cpu_map_idx; 472 473 count.val = st->val; 474 count.ena = st->ena; 475 count.run = st->run; 476 477 counter = evlist__id2evsel(session->evlist, st->id); 478 if (!counter) { 479 pr_err("Failed to resolve counter for stat event.\n"); 480 return -EINVAL; 481 } 482 cpu_map_idx = perf_cpu_map__idx(evsel__cpus(counter), (struct perf_cpu){.cpu = st->cpu}); 483 if (cpu_map_idx == -1) { 484 pr_err("Invalid CPU %d for event %s.\n", st->cpu, evsel__name(counter)); 485 return -EINVAL; 486 } 487 ptr = perf_counts(counter->counts, cpu_map_idx, st->thread); 488 if (ptr == NULL) { 489 pr_err("Failed to find perf count for CPU %d thread %d on event %s.\n", 490 st->cpu, st->thread, evsel__name(counter)); 491 return -EINVAL; 492 } 493 *ptr = count; 494 counter->supported = true; 495 return 0; 496 } 497 498 size_t perf_event__fprintf_stat(union perf_event *event, FILE *fp) 499 { 500 struct perf_record_stat *st = (struct perf_record_stat *)event; 501 size_t ret; 502 503 ret = fprintf(fp, "\n... id %" PRI_lu64 ", cpu %d, thread %d\n", 504 st->id, st->cpu, st->thread); 505 ret += fprintf(fp, "... value %" PRI_lu64 ", enabled %" PRI_lu64 ", running %" PRI_lu64 "\n", 506 st->val, st->ena, st->run); 507 508 return ret; 509 } 510 511 size_t perf_event__fprintf_stat_round(union perf_event *event, FILE *fp) 512 { 513 struct perf_record_stat_round *rd = (struct perf_record_stat_round *)event; 514 size_t ret; 515 516 ret = fprintf(fp, "\n... time %" PRI_lu64 ", type %s\n", rd->time, 517 rd->type == PERF_STAT_ROUND_TYPE__FINAL ? "FINAL" : "INTERVAL"); 518 519 return ret; 520 } 521 522 size_t perf_event__fprintf_stat_config(union perf_event *event, FILE *fp) 523 { 524 struct perf_stat_config sc; 525 size_t ret; 526 527 perf_event__read_stat_config(&sc, &event->stat_config); 528 529 ret = fprintf(fp, "\n"); 530 ret += fprintf(fp, "... aggr_mode %d\n", sc.aggr_mode); 531 ret += fprintf(fp, "... scale %d\n", sc.scale); 532 ret += fprintf(fp, "... interval %u\n", sc.interval); 533 534 return ret; 535 } 536 537 int create_perf_stat_counter(struct evsel *evsel, 538 struct perf_stat_config *config, 539 struct target *target, 540 int cpu_map_idx) 541 { 542 struct perf_event_attr *attr = &evsel->core.attr; 543 struct evsel *leader = evsel__leader(evsel); 544 545 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED | 546 PERF_FORMAT_TOTAL_TIME_RUNNING; 547 548 /* 549 * The event is part of non trivial group, let's enable 550 * the group read (for leader) and ID retrieval for all 551 * members. 552 */ 553 if (leader->core.nr_members > 1) 554 attr->read_format |= PERF_FORMAT_ID|PERF_FORMAT_GROUP; 555 556 attr->inherit = !config->no_inherit && list_empty(&evsel->bpf_counter_list); 557 558 /* 559 * Some events get initialized with sample_(period/type) set, 560 * like tracepoints. Clear it up for counting. 561 */ 562 attr->sample_period = 0; 563 564 if (config->identifier) 565 attr->sample_type = PERF_SAMPLE_IDENTIFIER; 566 567 if (config->all_user) { 568 attr->exclude_kernel = 1; 569 attr->exclude_user = 0; 570 } 571 572 if (config->all_kernel) { 573 attr->exclude_kernel = 0; 574 attr->exclude_user = 1; 575 } 576 577 /* 578 * Disabling all counters initially, they will be enabled 579 * either manually by us or by kernel via enable_on_exec 580 * set later. 581 */ 582 if (evsel__is_group_leader(evsel)) { 583 attr->disabled = 1; 584 585 /* 586 * In case of initial_delay we enable tracee 587 * events manually. 588 */ 589 if (target__none(target) && !config->initial_delay) 590 attr->enable_on_exec = 1; 591 } 592 593 if (target__has_cpu(target) && !target__has_per_thread(target)) 594 return evsel__open_per_cpu(evsel, evsel__cpus(evsel), cpu_map_idx); 595 596 return evsel__open_per_thread(evsel, evsel->core.threads); 597 } 598