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