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 int i; 136 struct perf_stat_evsel *ps = evsel->stats; 137 138 for (i = 0; i < 3; i++) 139 init_stats(&ps->res_stats[i]); 140 141 perf_stat_evsel_id_init(evsel); 142 } 143 144 static int evsel__alloc_stat_priv(struct evsel *evsel) 145 { 146 evsel->stats = zalloc(sizeof(struct perf_stat_evsel)); 147 if (evsel->stats == NULL) 148 return -ENOMEM; 149 evsel__reset_stat_priv(evsel); 150 return 0; 151 } 152 153 static void evsel__free_stat_priv(struct evsel *evsel) 154 { 155 struct perf_stat_evsel *ps = evsel->stats; 156 157 if (ps) 158 zfree(&ps->group_data); 159 zfree(&evsel->stats); 160 } 161 162 static int evsel__alloc_prev_raw_counts(struct evsel *evsel) 163 { 164 int cpu_map_nr = evsel__nr_cpus(evsel); 165 int nthreads = perf_thread_map__nr(evsel->core.threads); 166 struct perf_counts *counts; 167 168 counts = perf_counts__new(cpu_map_nr, nthreads); 169 if (counts) 170 evsel->prev_raw_counts = counts; 171 172 return counts ? 0 : -ENOMEM; 173 } 174 175 static void evsel__free_prev_raw_counts(struct evsel *evsel) 176 { 177 perf_counts__delete(evsel->prev_raw_counts); 178 evsel->prev_raw_counts = NULL; 179 } 180 181 static void evsel__reset_prev_raw_counts(struct evsel *evsel) 182 { 183 if (evsel->prev_raw_counts) 184 perf_counts__reset(evsel->prev_raw_counts); 185 } 186 187 static int evsel__alloc_stats(struct evsel *evsel, bool alloc_raw) 188 { 189 if (evsel__alloc_stat_priv(evsel) < 0 || 190 evsel__alloc_counts(evsel) < 0 || 191 (alloc_raw && evsel__alloc_prev_raw_counts(evsel) < 0)) 192 return -ENOMEM; 193 194 return 0; 195 } 196 197 int evlist__alloc_stats(struct evlist *evlist, bool alloc_raw) 198 { 199 struct evsel *evsel; 200 201 evlist__for_each_entry(evlist, evsel) { 202 if (evsel__alloc_stats(evsel, alloc_raw)) 203 goto out_free; 204 } 205 206 return 0; 207 208 out_free: 209 evlist__free_stats(evlist); 210 return -1; 211 } 212 213 void evlist__free_stats(struct evlist *evlist) 214 { 215 struct evsel *evsel; 216 217 evlist__for_each_entry(evlist, evsel) { 218 evsel__free_stat_priv(evsel); 219 evsel__free_counts(evsel); 220 evsel__free_prev_raw_counts(evsel); 221 } 222 } 223 224 void evlist__reset_stats(struct evlist *evlist) 225 { 226 struct evsel *evsel; 227 228 evlist__for_each_entry(evlist, evsel) { 229 evsel__reset_stat_priv(evsel); 230 evsel__reset_counts(evsel); 231 } 232 } 233 234 void evlist__reset_prev_raw_counts(struct evlist *evlist) 235 { 236 struct evsel *evsel; 237 238 evlist__for_each_entry(evlist, evsel) 239 evsel__reset_prev_raw_counts(evsel); 240 } 241 242 static void evsel__copy_prev_raw_counts(struct evsel *evsel) 243 { 244 int idx, nthreads = perf_thread_map__nr(evsel->core.threads); 245 246 for (int thread = 0; thread < nthreads; thread++) { 247 perf_cpu_map__for_each_idx(idx, evsel__cpus(evsel)) { 248 *perf_counts(evsel->counts, idx, thread) = 249 *perf_counts(evsel->prev_raw_counts, idx, thread); 250 } 251 } 252 253 evsel->counts->aggr = evsel->prev_raw_counts->aggr; 254 } 255 256 void evlist__copy_prev_raw_counts(struct evlist *evlist) 257 { 258 struct evsel *evsel; 259 260 evlist__for_each_entry(evlist, evsel) 261 evsel__copy_prev_raw_counts(evsel); 262 } 263 264 void evlist__save_aggr_prev_raw_counts(struct evlist *evlist) 265 { 266 struct evsel *evsel; 267 268 /* 269 * To collect the overall statistics for interval mode, 270 * we copy the counts from evsel->prev_raw_counts to 271 * evsel->counts. The perf_stat_process_counter creates 272 * aggr values from per cpu values, but the per cpu values 273 * are 0 for AGGR_GLOBAL. So we use a trick that saves the 274 * previous aggr value to the first member of perf_counts, 275 * then aggr calculation in process_counter_values can work 276 * correctly. 277 */ 278 evlist__for_each_entry(evlist, evsel) { 279 *perf_counts(evsel->prev_raw_counts, 0, 0) = 280 evsel->prev_raw_counts->aggr; 281 } 282 } 283 284 static size_t pkg_id_hash(const void *__key, void *ctx __maybe_unused) 285 { 286 uint64_t *key = (uint64_t *) __key; 287 288 return *key & 0xffffffff; 289 } 290 291 static bool pkg_id_equal(const void *__key1, const void *__key2, 292 void *ctx __maybe_unused) 293 { 294 uint64_t *key1 = (uint64_t *) __key1; 295 uint64_t *key2 = (uint64_t *) __key2; 296 297 return *key1 == *key2; 298 } 299 300 static int check_per_pkg(struct evsel *counter, struct perf_counts_values *vals, 301 int cpu_map_idx, bool *skip) 302 { 303 struct hashmap *mask = counter->per_pkg_mask; 304 struct perf_cpu_map *cpus = evsel__cpus(counter); 305 struct perf_cpu cpu = perf_cpu_map__cpu(cpus, cpu_map_idx); 306 int s, d, ret = 0; 307 uint64_t *key; 308 309 *skip = false; 310 311 if (!counter->per_pkg) 312 return 0; 313 314 if (perf_cpu_map__empty(cpus)) 315 return 0; 316 317 if (!mask) { 318 mask = hashmap__new(pkg_id_hash, pkg_id_equal, NULL); 319 if (IS_ERR(mask)) 320 return -ENOMEM; 321 322 counter->per_pkg_mask = mask; 323 } 324 325 /* 326 * we do not consider an event that has not run as a good 327 * instance to mark a package as used (skip=1). Otherwise 328 * we may run into a situation where the first CPU in a package 329 * is not running anything, yet the second is, and this function 330 * would mark the package as used after the first CPU and would 331 * not read the values from the second CPU. 332 */ 333 if (!(vals->run && vals->ena)) 334 return 0; 335 336 s = cpu__get_socket_id(cpu); 337 if (s < 0) 338 return -1; 339 340 /* 341 * On multi-die system, die_id > 0. On no-die system, die_id = 0. 342 * We use hashmap(socket, die) to check the used socket+die pair. 343 */ 344 d = cpu__get_die_id(cpu); 345 if (d < 0) 346 return -1; 347 348 key = malloc(sizeof(*key)); 349 if (!key) 350 return -ENOMEM; 351 352 *key = (uint64_t)d << 32 | s; 353 if (hashmap__find(mask, (void *)key, NULL)) { 354 *skip = true; 355 free(key); 356 } else 357 ret = hashmap__add(mask, (void *)key, (void *)1); 358 359 return ret; 360 } 361 362 static int 363 process_counter_values(struct perf_stat_config *config, struct evsel *evsel, 364 int cpu_map_idx, int thread, 365 struct perf_counts_values *count) 366 { 367 struct perf_counts_values *aggr = &evsel->counts->aggr; 368 static struct perf_counts_values zero; 369 bool skip = false; 370 371 if (check_per_pkg(evsel, count, cpu_map_idx, &skip)) { 372 pr_err("failed to read per-pkg counter\n"); 373 return -1; 374 } 375 376 if (skip) 377 count = &zero; 378 379 switch (config->aggr_mode) { 380 case AGGR_THREAD: 381 case AGGR_CORE: 382 case AGGR_DIE: 383 case AGGR_SOCKET: 384 case AGGR_NODE: 385 case AGGR_NONE: 386 if (!evsel->snapshot) 387 evsel__compute_deltas(evsel, cpu_map_idx, thread, count); 388 perf_counts_values__scale(count, config->scale, NULL); 389 if ((config->aggr_mode == AGGR_NONE) && (!evsel->percore)) { 390 perf_stat__update_shadow_stats(evsel, count->val, 391 cpu_map_idx, &rt_stat); 392 } 393 394 if (config->aggr_mode == AGGR_THREAD) { 395 if (config->stats) 396 perf_stat__update_shadow_stats(evsel, 397 count->val, 0, &config->stats[thread]); 398 else 399 perf_stat__update_shadow_stats(evsel, 400 count->val, 0, &rt_stat); 401 } 402 break; 403 case AGGR_GLOBAL: 404 aggr->val += count->val; 405 aggr->ena += count->ena; 406 aggr->run += count->run; 407 case AGGR_UNSET: 408 case AGGR_MAX: 409 default: 410 break; 411 } 412 413 return 0; 414 } 415 416 static int process_counter_maps(struct perf_stat_config *config, 417 struct evsel *counter) 418 { 419 int nthreads = perf_thread_map__nr(counter->core.threads); 420 int ncpus = evsel__nr_cpus(counter); 421 int idx, thread; 422 423 if (counter->core.system_wide) 424 nthreads = 1; 425 426 for (thread = 0; thread < nthreads; thread++) { 427 for (idx = 0; idx < ncpus; idx++) { 428 if (process_counter_values(config, counter, idx, thread, 429 perf_counts(counter->counts, idx, thread))) 430 return -1; 431 } 432 } 433 434 return 0; 435 } 436 437 int perf_stat_process_counter(struct perf_stat_config *config, 438 struct evsel *counter) 439 { 440 struct perf_counts_values *aggr = &counter->counts->aggr; 441 struct perf_stat_evsel *ps = counter->stats; 442 u64 *count = counter->counts->aggr.values; 443 int i, ret; 444 445 aggr->val = aggr->ena = aggr->run = 0; 446 447 if (counter->per_pkg) 448 evsel__zero_per_pkg(counter); 449 450 ret = process_counter_maps(config, counter); 451 if (ret) 452 return ret; 453 454 if (config->aggr_mode != AGGR_GLOBAL) 455 return 0; 456 457 if (!counter->snapshot) 458 evsel__compute_deltas(counter, -1, -1, aggr); 459 perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled); 460 461 for (i = 0; i < 3; i++) 462 update_stats(&ps->res_stats[i], count[i]); 463 464 if (verbose > 0) { 465 fprintf(config->output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n", 466 evsel__name(counter), count[0], count[1], count[2]); 467 } 468 469 /* 470 * Save the full runtime - to allow normalization during printout: 471 */ 472 perf_stat__update_shadow_stats(counter, *count, 0, &rt_stat); 473 474 return 0; 475 } 476 477 int perf_event__process_stat_event(struct perf_session *session, 478 union perf_event *event) 479 { 480 struct perf_counts_values count, *ptr; 481 struct perf_record_stat *st = &event->stat; 482 struct evsel *counter; 483 int cpu_map_idx; 484 485 count.val = st->val; 486 count.ena = st->ena; 487 count.run = st->run; 488 489 counter = evlist__id2evsel(session->evlist, st->id); 490 if (!counter) { 491 pr_err("Failed to resolve counter for stat event.\n"); 492 return -EINVAL; 493 } 494 cpu_map_idx = perf_cpu_map__idx(evsel__cpus(counter), (struct perf_cpu){.cpu = st->cpu}); 495 if (cpu_map_idx == -1) { 496 pr_err("Invalid CPU %d for event %s.\n", st->cpu, evsel__name(counter)); 497 return -EINVAL; 498 } 499 ptr = perf_counts(counter->counts, cpu_map_idx, st->thread); 500 if (ptr == NULL) { 501 pr_err("Failed to find perf count for CPU %d thread %d on event %s.\n", 502 st->cpu, st->thread, evsel__name(counter)); 503 return -EINVAL; 504 } 505 *ptr = count; 506 counter->supported = true; 507 return 0; 508 } 509 510 size_t perf_event__fprintf_stat(union perf_event *event, FILE *fp) 511 { 512 struct perf_record_stat *st = (struct perf_record_stat *)event; 513 size_t ret; 514 515 ret = fprintf(fp, "\n... id %" PRI_lu64 ", cpu %d, thread %d\n", 516 st->id, st->cpu, st->thread); 517 ret += fprintf(fp, "... value %" PRI_lu64 ", enabled %" PRI_lu64 ", running %" PRI_lu64 "\n", 518 st->val, st->ena, st->run); 519 520 return ret; 521 } 522 523 size_t perf_event__fprintf_stat_round(union perf_event *event, FILE *fp) 524 { 525 struct perf_record_stat_round *rd = (struct perf_record_stat_round *)event; 526 size_t ret; 527 528 ret = fprintf(fp, "\n... time %" PRI_lu64 ", type %s\n", rd->time, 529 rd->type == PERF_STAT_ROUND_TYPE__FINAL ? "FINAL" : "INTERVAL"); 530 531 return ret; 532 } 533 534 size_t perf_event__fprintf_stat_config(union perf_event *event, FILE *fp) 535 { 536 struct perf_stat_config sc; 537 size_t ret; 538 539 perf_event__read_stat_config(&sc, &event->stat_config); 540 541 ret = fprintf(fp, "\n"); 542 ret += fprintf(fp, "... aggr_mode %d\n", sc.aggr_mode); 543 ret += fprintf(fp, "... scale %d\n", sc.scale); 544 ret += fprintf(fp, "... interval %u\n", sc.interval); 545 546 return ret; 547 } 548 549 int create_perf_stat_counter(struct evsel *evsel, 550 struct perf_stat_config *config, 551 struct target *target, 552 int cpu_map_idx) 553 { 554 struct perf_event_attr *attr = &evsel->core.attr; 555 struct evsel *leader = evsel__leader(evsel); 556 557 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED | 558 PERF_FORMAT_TOTAL_TIME_RUNNING; 559 560 /* 561 * The event is part of non trivial group, let's enable 562 * the group read (for leader) and ID retrieval for all 563 * members. 564 */ 565 if (leader->core.nr_members > 1) 566 attr->read_format |= PERF_FORMAT_ID|PERF_FORMAT_GROUP; 567 568 attr->inherit = !config->no_inherit && list_empty(&evsel->bpf_counter_list); 569 570 /* 571 * Some events get initialized with sample_(period/type) set, 572 * like tracepoints. Clear it up for counting. 573 */ 574 attr->sample_period = 0; 575 576 if (config->identifier) 577 attr->sample_type = PERF_SAMPLE_IDENTIFIER; 578 579 if (config->all_user) { 580 attr->exclude_kernel = 1; 581 attr->exclude_user = 0; 582 } 583 584 if (config->all_kernel) { 585 attr->exclude_kernel = 0; 586 attr->exclude_user = 1; 587 } 588 589 /* 590 * Disabling all counters initially, they will be enabled 591 * either manually by us or by kernel via enable_on_exec 592 * set later. 593 */ 594 if (evsel__is_group_leader(evsel)) { 595 attr->disabled = 1; 596 597 /* 598 * In case of initial_delay we enable tracee 599 * events manually. 600 */ 601 if (target__none(target) && !config->initial_delay) 602 attr->enable_on_exec = 1; 603 } 604 605 if (target__has_cpu(target) && !target__has_per_thread(target)) 606 return evsel__open_per_cpu(evsel, evsel__cpus(evsel), cpu_map_idx); 607 608 return evsel__open_per_thread(evsel, evsel->core.threads); 609 } 610