]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - tools/perf/util/stat.h
perf stat: Use 'evsel->evlist' instead of 'evsel_list' in collect_all_aliases()
[mirror_ubuntu-hirsute-kernel.git] / tools / perf / util / stat.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
0007ecea
XG
2#ifndef __PERF_STATS_H
3#define __PERF_STATS_H
4
d944c4ee 5#include <linux/types.h>
f87027b9 6#include <stdio.h>
a8e02324 7#include "xyarray.h"
e5fcc2ab 8#include "rblist.h"
728c0ee0 9#include "perf.h"
0a4e64d3 10#include "event.h"
0007ecea 11
e55c14af 12struct stats {
0007ecea 13 double n, mean, M2;
ffe4f3c0 14 u64 max, min;
0007ecea
XG
15};
16
e2f56da1
JO
17enum perf_stat_evsel_id {
18 PERF_STAT_EVSEL_ID__NONE = 0,
4c358d5c
JO
19 PERF_STAT_EVSEL_ID__CYCLES_IN_TX,
20 PERF_STAT_EVSEL_ID__TRANSACTION_START,
21 PERF_STAT_EVSEL_ID__ELISION_START,
22 PERF_STAT_EVSEL_ID__CYCLES_IN_TX_CP,
239bd47f
AK
23 PERF_STAT_EVSEL_ID__TOPDOWN_TOTAL_SLOTS,
24 PERF_STAT_EVSEL_ID__TOPDOWN_SLOTS_ISSUED,
25 PERF_STAT_EVSEL_ID__TOPDOWN_SLOTS_RETIRED,
26 PERF_STAT_EVSEL_ID__TOPDOWN_FETCH_BUBBLES,
27 PERF_STAT_EVSEL_ID__TOPDOWN_RECOVERY_BUBBLES,
daefd0bc
KL
28 PERF_STAT_EVSEL_ID__SMI_NUM,
29 PERF_STAT_EVSEL_ID__APERF,
e2f56da1
JO
30 PERF_STAT_EVSEL_ID__MAX,
31};
32
581cc8a2 33struct perf_stat_evsel {
f7794d52
JO
34 struct stats res_stats[3];
35 enum perf_stat_evsel_id id;
36 u64 *group_data;
e2f56da1
JO
37};
38
f87027b9
JO
39enum aggr_mode {
40 AGGR_NONE,
41 AGGR_GLOBAL,
42 AGGR_SOCKET,
43 AGGR_CORE,
32b8af82 44 AGGR_THREAD,
208df99e 45 AGGR_UNSET,
f87027b9
JO
46};
47
e5fcc2ab
JY
48enum {
49 CTX_BIT_USER = 1 << 0,
50 CTX_BIT_KERNEL = 1 << 1,
51 CTX_BIT_HV = 1 << 2,
52 CTX_BIT_HOST = 1 << 3,
53 CTX_BIT_IDLE = 1 << 4,
54 CTX_BIT_MAX = 1 << 5,
55};
56
57#define NUM_CTX CTX_BIT_MAX
58
59enum stat_type {
60 STAT_NONE = 0,
61 STAT_NSECS,
62 STAT_CYCLES,
63 STAT_STALLED_CYCLES_FRONT,
64 STAT_STALLED_CYCLES_BACK,
65 STAT_BRANCHES,
66 STAT_CACHEREFS,
67 STAT_L1_DCACHE,
68 STAT_L1_ICACHE,
69 STAT_LL_CACHE,
70 STAT_ITLB_CACHE,
71 STAT_DTLB_CACHE,
72 STAT_CYCLES_IN_TX,
73 STAT_TRANSACTION,
74 STAT_ELISION,
75 STAT_TOPDOWN_TOTAL_SLOTS,
76 STAT_TOPDOWN_SLOTS_ISSUED,
77 STAT_TOPDOWN_SLOTS_RETIRED,
78 STAT_TOPDOWN_FETCH_BUBBLES,
79 STAT_TOPDOWN_RECOVERY_BUBBLES,
80 STAT_SMI_NUM,
81 STAT_APERF,
82 STAT_MAX
83};
84
85struct runtime_stat {
86 struct rblist value_list;
87};
88
421a50f3 89struct perf_stat_config {
728c0ee0
JO
90 enum aggr_mode aggr_mode;
91 bool scale;
5698f26b 92 bool no_inherit;
7d9ad16a 93 bool identifier;
fa7070a3 94 bool csv_output;
132c6ba3 95 bool interval_clear;
0ce5aa02 96 bool metric_only;
728c0ee0
JO
97 FILE *output;
98 unsigned int interval;
99 unsigned int timeout;
100 unsigned int initial_delay;
df4f7b4d 101 unsigned int unit_width;
728c0ee0
JO
102 int times;
103 struct runtime_stat *stats;
104 int stats_num;
fa7070a3 105 const char *csv_sep;
421a50f3
JO
106};
107
0007ecea
XG
108void update_stats(struct stats *stats, u64 val);
109double avg_stats(struct stats *stats);
110double stddev_stats(struct stats *stats);
111double rel_stddev_stats(double stddev, double avg);
112
ffe4f3c0
DA
113static inline void init_stats(struct stats *stats)
114{
115 stats->n = 0.0;
116 stats->mean = 0.0;
117 stats->M2 = 0.0;
118 stats->min = (u64) -1;
119 stats->max = 0;
120}
e2f56da1
JO
121
122struct perf_evsel;
24e34f68
JO
123struct perf_evlist;
124
29734550
JY
125struct perf_aggr_thread_value {
126 struct perf_evsel *counter;
127 int id;
128 double uval;
129 u64 val;
130 u64 run;
131 u64 ena;
132};
133
e2f56da1
JO
134bool __perf_evsel_stat__is(struct perf_evsel *evsel,
135 enum perf_stat_evsel_id id);
136
137#define perf_stat_evsel__is(evsel, id) \
138 __perf_evsel_stat__is(evsel, PERF_STAT_EVSEL_ID__ ## id)
139
8efb2df1 140extern struct runtime_stat rt_stat;
f87027b9
JO
141extern struct stats walltime_nsecs_stats;
142
6ca9a082
JO
143typedef void (*print_metric_t)(struct perf_stat_config *config,
144 void *ctx, const char *color, const char *unit,
140aeadc 145 const char *fmt, double val);
6ca9a082 146typedef void (*new_line_t)(struct perf_stat_config *config, void *ctx);
140aeadc 147
8efb2df1
JY
148void runtime_stat__init(struct runtime_stat *st);
149void runtime_stat__exit(struct runtime_stat *st);
fb4605ba 150void perf_stat__init_shadow_stats(void);
f87027b9 151void perf_stat__reset_shadow_stats(void);
6a1e2c5c 152void perf_stat__reset_shadow_per_stat(struct runtime_stat *st);
54830dd0 153void perf_stat__update_shadow_stats(struct perf_evsel *counter, u64 count,
1fcd0394 154 int cpu, struct runtime_stat *st);
140aeadc
AK
155struct perf_stat_output_ctx {
156 void *ctx;
157 print_metric_t print_metric;
158 new_line_t new_line;
37932c18 159 bool force_header;
140aeadc
AK
160};
161
6ca9a082
JO
162void perf_stat__print_shadow_stats(struct perf_stat_config *config,
163 struct perf_evsel *evsel,
140aeadc 164 double avg, int cpu,
b18f3e36 165 struct perf_stat_output_ctx *out,
e0128b30
JY
166 struct rblist *metric_events,
167 struct runtime_stat *st);
37932c18 168void perf_stat__collect_metric_expr(struct perf_evlist *);
f87027b9 169
24e34f68
JO
170int perf_evlist__alloc_stats(struct perf_evlist *evlist, bool alloc_raw);
171void perf_evlist__free_stats(struct perf_evlist *evlist);
172void perf_evlist__reset_stats(struct perf_evlist *evlist);
f80010eb
JO
173
174int perf_stat_process_counter(struct perf_stat_config *config,
175 struct perf_evsel *counter);
0ea0e355
JO
176struct perf_tool;
177union perf_event;
178struct perf_session;
179int perf_event__process_stat_event(struct perf_tool *tool,
180 union perf_event *event,
181 struct perf_session *session);
e08a4564
JO
182
183size_t perf_event__fprintf_stat(union perf_event *event, FILE *fp);
184size_t perf_event__fprintf_stat_round(union perf_event *event, FILE *fp);
185size_t perf_event__fprintf_stat_config(union perf_event *event, FILE *fp);
d09cefd2
JO
186
187int create_perf_stat_counter(struct perf_evsel *evsel,
188 struct perf_stat_config *config,
189 struct target *target);
0a4e64d3
JO
190int perf_stat_synthesize_config(struct perf_stat_config *config,
191 struct perf_tool *tool,
192 struct perf_evlist *evlist,
193 perf_event__handler_t process,
194 bool attrs);
0007ecea 195#endif