]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - tools/perf/util/stat.h
perf stat: Pass a 'struct perf_stat_config' argument to global print functions
[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;
728c0ee0
JO
94 FILE *output;
95 unsigned int interval;
96 unsigned int timeout;
97 unsigned int initial_delay;
98 int times;
99 struct runtime_stat *stats;
100 int stats_num;
421a50f3
JO
101};
102
0007ecea
XG
103void update_stats(struct stats *stats, u64 val);
104double avg_stats(struct stats *stats);
105double stddev_stats(struct stats *stats);
106double rel_stddev_stats(double stddev, double avg);
107
ffe4f3c0
DA
108static inline void init_stats(struct stats *stats)
109{
110 stats->n = 0.0;
111 stats->mean = 0.0;
112 stats->M2 = 0.0;
113 stats->min = (u64) -1;
114 stats->max = 0;
115}
e2f56da1
JO
116
117struct perf_evsel;
24e34f68
JO
118struct perf_evlist;
119
29734550
JY
120struct perf_aggr_thread_value {
121 struct perf_evsel *counter;
122 int id;
123 double uval;
124 u64 val;
125 u64 run;
126 u64 ena;
127};
128
e2f56da1
JO
129bool __perf_evsel_stat__is(struct perf_evsel *evsel,
130 enum perf_stat_evsel_id id);
131
132#define perf_stat_evsel__is(evsel, id) \
133 __perf_evsel_stat__is(evsel, PERF_STAT_EVSEL_ID__ ## id)
134
8efb2df1 135extern struct runtime_stat rt_stat;
f87027b9
JO
136extern struct stats walltime_nsecs_stats;
137
6ca9a082
JO
138typedef void (*print_metric_t)(struct perf_stat_config *config,
139 void *ctx, const char *color, const char *unit,
140aeadc 140 const char *fmt, double val);
6ca9a082 141typedef void (*new_line_t)(struct perf_stat_config *config, void *ctx);
140aeadc 142
8efb2df1
JY
143void runtime_stat__init(struct runtime_stat *st);
144void runtime_stat__exit(struct runtime_stat *st);
fb4605ba 145void perf_stat__init_shadow_stats(void);
f87027b9 146void perf_stat__reset_shadow_stats(void);
6a1e2c5c 147void perf_stat__reset_shadow_per_stat(struct runtime_stat *st);
54830dd0 148void perf_stat__update_shadow_stats(struct perf_evsel *counter, u64 count,
1fcd0394 149 int cpu, struct runtime_stat *st);
140aeadc
AK
150struct perf_stat_output_ctx {
151 void *ctx;
152 print_metric_t print_metric;
153 new_line_t new_line;
37932c18 154 bool force_header;
140aeadc
AK
155};
156
6ca9a082
JO
157void perf_stat__print_shadow_stats(struct perf_stat_config *config,
158 struct perf_evsel *evsel,
140aeadc 159 double avg, int cpu,
b18f3e36 160 struct perf_stat_output_ctx *out,
e0128b30
JY
161 struct rblist *metric_events,
162 struct runtime_stat *st);
37932c18 163void perf_stat__collect_metric_expr(struct perf_evlist *);
f87027b9 164
24e34f68
JO
165int perf_evlist__alloc_stats(struct perf_evlist *evlist, bool alloc_raw);
166void perf_evlist__free_stats(struct perf_evlist *evlist);
167void perf_evlist__reset_stats(struct perf_evlist *evlist);
f80010eb
JO
168
169int perf_stat_process_counter(struct perf_stat_config *config,
170 struct perf_evsel *counter);
0ea0e355
JO
171struct perf_tool;
172union perf_event;
173struct perf_session;
174int perf_event__process_stat_event(struct perf_tool *tool,
175 union perf_event *event,
176 struct perf_session *session);
e08a4564
JO
177
178size_t perf_event__fprintf_stat(union perf_event *event, FILE *fp);
179size_t perf_event__fprintf_stat_round(union perf_event *event, FILE *fp);
180size_t perf_event__fprintf_stat_config(union perf_event *event, FILE *fp);
d09cefd2
JO
181
182int create_perf_stat_counter(struct perf_evsel *evsel,
183 struct perf_stat_config *config,
184 struct target *target);
0a4e64d3
JO
185int perf_stat_synthesize_config(struct perf_stat_config *config,
186 struct perf_tool *tool,
187 struct perf_evlist *evlist,
188 perf_event__handler_t process,
189 bool attrs);
0007ecea 190#endif