1 // SPDX-License-Identifier: GPL-2.0
16 #include "thread_map.h"
17 #ifdef HAVE_LIBBPF_SUPPORT
18 #include <bpf/hashmap.h>
20 #include "util/hashmap.h"
22 #include <linux/zalloc.h>
24 void update_stats(struct stats *stats, u64 val)
29 delta = val - stats->mean;
30 stats->mean += delta / stats->n;
31 stats->M2 += delta*(val - stats->mean);
40 double avg_stats(struct stats *stats)
46 * http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
48 * (\Sum n_i^2) - ((\Sum n_i)^2)/n
49 * s^2 = -------------------------------
52 * http://en.wikipedia.org/wiki/Stddev
54 * The std dev of the mean is related to the std dev by:
61 double stddev_stats(struct stats *stats)
63 double variance, variance_mean;
68 variance = stats->M2 / (stats->n - 1);
69 variance_mean = variance / stats->n;
71 return sqrt(variance_mean);
74 double rel_stddev_stats(double stddev, double avg)
79 pct = 100.0 * stddev/avg;
84 bool __perf_stat_evsel__is(struct evsel *evsel, enum perf_stat_evsel_id id)
86 struct perf_stat_evsel *ps = evsel->stats;
91 #define ID(id, name) [PERF_STAT_EVSEL_ID__##id] = #name
92 static const char *id_str[PERF_STAT_EVSEL_ID__MAX] = {
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/),
116 static void perf_stat_evsel_id_init(struct evsel *evsel)
118 struct perf_stat_evsel *ps = evsel->stats;
121 /* ps->id is 0 hence PERF_STAT_EVSEL_ID__NONE by default */
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))) {
133 static void evsel__reset_stat_priv(struct evsel *evsel)
135 struct perf_stat_evsel *ps = evsel->stats;
137 init_stats(&ps->res_stats);
140 static int evsel__alloc_stat_priv(struct evsel *evsel)
142 evsel->stats = zalloc(sizeof(struct perf_stat_evsel));
143 if (evsel->stats == NULL)
145 perf_stat_evsel_id_init(evsel);
146 evsel__reset_stat_priv(evsel);
150 static void evsel__free_stat_priv(struct evsel *evsel)
152 struct perf_stat_evsel *ps = evsel->stats;
155 zfree(&ps->group_data);
156 zfree(&evsel->stats);
159 static int evsel__alloc_prev_raw_counts(struct evsel *evsel)
161 int cpu_map_nr = evsel__nr_cpus(evsel);
162 int nthreads = perf_thread_map__nr(evsel->core.threads);
163 struct perf_counts *counts;
165 counts = perf_counts__new(cpu_map_nr, nthreads);
167 evsel->prev_raw_counts = counts;
169 return counts ? 0 : -ENOMEM;
172 static void evsel__free_prev_raw_counts(struct evsel *evsel)
174 perf_counts__delete(evsel->prev_raw_counts);
175 evsel->prev_raw_counts = NULL;
178 static void evsel__reset_prev_raw_counts(struct evsel *evsel)
180 if (evsel->prev_raw_counts)
181 perf_counts__reset(evsel->prev_raw_counts);
184 static int evsel__alloc_stats(struct evsel *evsel, bool alloc_raw)
186 if (evsel__alloc_stat_priv(evsel) < 0 ||
187 evsel__alloc_counts(evsel) < 0 ||
188 (alloc_raw && evsel__alloc_prev_raw_counts(evsel) < 0))
194 int evlist__alloc_stats(struct evlist *evlist, bool alloc_raw)
198 evlist__for_each_entry(evlist, evsel) {
199 if (evsel__alloc_stats(evsel, alloc_raw))
206 evlist__free_stats(evlist);
210 void evlist__free_stats(struct evlist *evlist)
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);
221 void evlist__reset_stats(struct evlist *evlist)
225 evlist__for_each_entry(evlist, evsel) {
226 evsel__reset_stat_priv(evsel);
227 evsel__reset_counts(evsel);
231 void evlist__reset_prev_raw_counts(struct evlist *evlist)
235 evlist__for_each_entry(evlist, evsel)
236 evsel__reset_prev_raw_counts(evsel);
239 static void evsel__copy_prev_raw_counts(struct evsel *evsel)
241 int idx, nthreads = perf_thread_map__nr(evsel->core.threads);
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);
250 evsel->counts->aggr = evsel->prev_raw_counts->aggr;
253 void evlist__copy_prev_raw_counts(struct evlist *evlist)
257 evlist__for_each_entry(evlist, evsel)
258 evsel__copy_prev_raw_counts(evsel);
261 void evlist__save_aggr_prev_raw_counts(struct evlist *evlist)
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
275 evlist__for_each_entry(evlist, evsel) {
276 *perf_counts(evsel->prev_raw_counts, 0, 0) =
277 evsel->prev_raw_counts->aggr;
281 static size_t pkg_id_hash(const void *__key, void *ctx __maybe_unused)
283 uint64_t *key = (uint64_t *) __key;
285 return *key & 0xffffffff;
288 static bool pkg_id_equal(const void *__key1, const void *__key2,
289 void *ctx __maybe_unused)
291 uint64_t *key1 = (uint64_t *) __key1;
292 uint64_t *key2 = (uint64_t *) __key2;
294 return *key1 == *key2;
297 static int check_per_pkg(struct evsel *counter, struct perf_counts_values *vals,
298 int cpu_map_idx, bool *skip)
300 struct hashmap *mask = counter->per_pkg_mask;
301 struct perf_cpu_map *cpus = evsel__cpus(counter);
302 struct perf_cpu cpu = perf_cpu_map__cpu(cpus, cpu_map_idx);
308 if (!counter->per_pkg)
311 if (perf_cpu_map__empty(cpus))
315 mask = hashmap__new(pkg_id_hash, pkg_id_equal, NULL);
319 counter->per_pkg_mask = mask;
323 * we do not consider an event that has not run as a good
324 * instance to mark a package as used (skip=1). Otherwise
325 * we may run into a situation where the first CPU in a package
326 * is not running anything, yet the second is, and this function
327 * would mark the package as used after the first CPU and would
328 * not read the values from the second CPU.
330 if (!(vals->run && vals->ena))
333 s = cpu__get_socket_id(cpu);
338 * On multi-die system, die_id > 0. On no-die system, die_id = 0.
339 * We use hashmap(socket, die) to check the used socket+die pair.
341 d = cpu__get_die_id(cpu);
345 key = malloc(sizeof(*key));
349 *key = (uint64_t)d << 32 | s;
350 if (hashmap__find(mask, (void *)key, NULL)) {
354 ret = hashmap__add(mask, (void *)key, (void *)1);
360 process_counter_values(struct perf_stat_config *config, struct evsel *evsel,
361 int cpu_map_idx, int thread,
362 struct perf_counts_values *count)
364 struct perf_counts_values *aggr = &evsel->counts->aggr;
365 static struct perf_counts_values zero;
368 if (check_per_pkg(evsel, count, cpu_map_idx, &skip)) {
369 pr_err("failed to read per-pkg counter\n");
376 switch (config->aggr_mode) {
383 if (!evsel->snapshot)
384 evsel__compute_deltas(evsel, cpu_map_idx, thread, count);
385 perf_counts_values__scale(count, config->scale, NULL);
386 if ((config->aggr_mode == AGGR_NONE) && (!evsel->percore)) {
387 perf_stat__update_shadow_stats(evsel, count->val,
388 cpu_map_idx, &rt_stat);
391 if (config->aggr_mode == AGGR_THREAD) {
392 perf_stat__update_shadow_stats(evsel, count->val,
397 aggr->val += count->val;
398 aggr->ena += count->ena;
399 aggr->run += count->run;
409 static int process_counter_maps(struct perf_stat_config *config,
410 struct evsel *counter)
412 int nthreads = perf_thread_map__nr(counter->core.threads);
413 int ncpus = evsel__nr_cpus(counter);
416 for (thread = 0; thread < nthreads; thread++) {
417 for (idx = 0; idx < ncpus; idx++) {
418 if (process_counter_values(config, counter, idx, thread,
419 perf_counts(counter->counts, idx, thread)))
427 int perf_stat_process_counter(struct perf_stat_config *config,
428 struct evsel *counter)
430 struct perf_counts_values *aggr = &counter->counts->aggr;
431 struct perf_stat_evsel *ps = counter->stats;
432 u64 *count = counter->counts->aggr.values;
435 aggr->val = aggr->ena = aggr->run = 0;
437 if (counter->per_pkg)
438 evsel__zero_per_pkg(counter);
440 ret = process_counter_maps(config, counter);
444 if (config->aggr_mode != AGGR_GLOBAL)
447 if (!counter->snapshot)
448 evsel__compute_deltas(counter, -1, -1, aggr);
449 perf_counts_values__scale(aggr, config->scale, &counter->counts->scaled);
451 update_stats(&ps->res_stats, *count);
454 fprintf(config->output, "%s: %" PRIu64 " %" PRIu64 " %" PRIu64 "\n",
455 evsel__name(counter), count[0], count[1], count[2]);
459 * Save the full runtime - to allow normalization during printout:
461 perf_stat__update_shadow_stats(counter, *count, 0, &rt_stat);
466 int perf_event__process_stat_event(struct perf_session *session,
467 union perf_event *event)
469 struct perf_counts_values count, *ptr;
470 struct perf_record_stat *st = &event->stat;
471 struct evsel *counter;
478 counter = evlist__id2evsel(session->evlist, st->id);
480 pr_err("Failed to resolve counter for stat event.\n");
483 cpu_map_idx = perf_cpu_map__idx(evsel__cpus(counter), (struct perf_cpu){.cpu = st->cpu});
484 if (cpu_map_idx == -1) {
485 pr_err("Invalid CPU %d for event %s.\n", st->cpu, evsel__name(counter));
488 ptr = perf_counts(counter->counts, cpu_map_idx, st->thread);
490 pr_err("Failed to find perf count for CPU %d thread %d on event %s.\n",
491 st->cpu, st->thread, evsel__name(counter));
495 counter->supported = true;
499 size_t perf_event__fprintf_stat(union perf_event *event, FILE *fp)
501 struct perf_record_stat *st = (struct perf_record_stat *)event;
504 ret = fprintf(fp, "\n... id %" PRI_lu64 ", cpu %d, thread %d\n",
505 st->id, st->cpu, st->thread);
506 ret += fprintf(fp, "... value %" PRI_lu64 ", enabled %" PRI_lu64 ", running %" PRI_lu64 "\n",
507 st->val, st->ena, st->run);
512 size_t perf_event__fprintf_stat_round(union perf_event *event, FILE *fp)
514 struct perf_record_stat_round *rd = (struct perf_record_stat_round *)event;
517 ret = fprintf(fp, "\n... time %" PRI_lu64 ", type %s\n", rd->time,
518 rd->type == PERF_STAT_ROUND_TYPE__FINAL ? "FINAL" : "INTERVAL");
523 size_t perf_event__fprintf_stat_config(union perf_event *event, FILE *fp)
525 struct perf_stat_config sc;
528 perf_event__read_stat_config(&sc, &event->stat_config);
530 ret = fprintf(fp, "\n");
531 ret += fprintf(fp, "... aggr_mode %d\n", sc.aggr_mode);
532 ret += fprintf(fp, "... scale %d\n", sc.scale);
533 ret += fprintf(fp, "... interval %u\n", sc.interval);
538 int create_perf_stat_counter(struct evsel *evsel,
539 struct perf_stat_config *config,
540 struct target *target,
543 struct perf_event_attr *attr = &evsel->core.attr;
544 struct evsel *leader = evsel__leader(evsel);
546 attr->read_format = PERF_FORMAT_TOTAL_TIME_ENABLED |
547 PERF_FORMAT_TOTAL_TIME_RUNNING;
550 * The event is part of non trivial group, let's enable
551 * the group read (for leader) and ID retrieval for all
554 if (leader->core.nr_members > 1)
555 attr->read_format |= PERF_FORMAT_ID|PERF_FORMAT_GROUP;
557 attr->inherit = !config->no_inherit && list_empty(&evsel->bpf_counter_list);
560 * Some events get initialized with sample_(period/type) set,
561 * like tracepoints. Clear it up for counting.
563 attr->sample_period = 0;
565 if (config->identifier)
566 attr->sample_type = PERF_SAMPLE_IDENTIFIER;
568 if (config->all_user) {
569 attr->exclude_kernel = 1;
570 attr->exclude_user = 0;
573 if (config->all_kernel) {
574 attr->exclude_kernel = 0;
575 attr->exclude_user = 1;
579 * Disabling all counters initially, they will be enabled
580 * either manually by us or by kernel via enable_on_exec
583 if (evsel__is_group_leader(evsel)) {
587 * In case of initial_delay we enable tracee
590 if (target__none(target) && !config->initial_delay)
591 attr->enable_on_exec = 1;
594 if (target__has_cpu(target) && !target__has_per_thread(target))
595 return evsel__open_per_cpu(evsel, evsel__cpus(evsel), cpu_map_idx);
597 return evsel__open_per_thread(evsel, evsel->core.threads);