Merge tag 'probes-fixes-v6.16-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.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>
8897a891 7#include <sys/types.h>
8897a891 8#include <sys/resource.h>
2760f5a1 9#include "cpumap.h"
e5fcc2ab 10#include "rblist.h"
ca68b374 11#include "counts.h"
0007ecea 12
b251892d
ACM
13struct perf_cpu_map;
14struct perf_stat_config;
38b7b678
ACM
15struct timespec;
16
e55c14af 17struct stats {
0007ecea 18 double n, mean, M2;
ffe4f3c0 19 u64 max, min;
0007ecea
XG
20};
21
ca68b374
NK
22/* hold aggregated event info */
23struct perf_stat_aggr {
24 /* aggregated values */
25 struct perf_counts_values counts;
26 /* number of entries (CPUs) aggregated */
27 int nr;
28 /* whether any entry has failed to read/process event */
29 bool failed;
1d6d2bea
NK
30 /* to mark this data is processed already */
31 bool used;
ca68b374
NK
32};
33
34/* per-evsel event stats */
581cc8a2 35struct perf_stat_evsel {
ca68b374 36 /* used for repeated runs */
66b76e30 37 struct stats res_stats;
ca68b374
NK
38 /* number of allocated 'aggr' */
39 int nr_aggr;
40 /* aggregated event values */
41 struct perf_stat_aggr *aggr;
42 /* used for group read */
f7794d52 43 u64 *group_data;
e2f56da1
JO
44};
45
f87027b9
JO
46enum aggr_mode {
47 AGGR_NONE,
48 AGGR_GLOBAL,
49 AGGR_SOCKET,
db5742b6 50 AGGR_DIE,
cbc917a1 51 AGGR_CLUSTER,
995ed074 52 AGGR_CACHE,
f87027b9 53 AGGR_CORE,
32b8af82 54 AGGR_THREAD,
208df99e 55 AGGR_UNSET,
86895b48 56 AGGR_NODE,
df936cad 57 AGGR_MAX
f87027b9
JO
58};
59
c735b0a5
FF
60struct rusage_stats {
61 struct stats ru_utime_usec_stat;
62 struct stats ru_stime_usec_stat;
63};
64
6d18804b 65typedef struct aggr_cpu_id (*aggr_get_id_t)(struct perf_stat_config *config, struct perf_cpu cpu);
6f6b6594 66
421a50f3 67struct perf_stat_config {
728c0ee0 68 enum aggr_mode aggr_mode;
995ed074 69 u32 aggr_level;
728c0ee0 70 bool scale;
5698f26b 71 bool no_inherit;
7d9ad16a 72 bool identifier;
fa7070a3 73 bool csv_output;
df936cad 74 bool json_output;
132c6ba3 75 bool interval_clear;
0ce5aa02 76 bool metric_only;
aea0dca1 77 bool null_run;
8897a891 78 bool ru_display;
34ff0866 79 bool big_num;
2c8e6451 80 bool hybrid_merge;
54ac0b1b 81 bool walltime_run_table;
dd071024
JY
82 bool all_kernel;
83 bool all_user;
1af62ce6 84 bool percore_show_thread;
c7e5b328 85 bool summary;
0bdad978 86 bool no_csv_summary;
05530a79
IR
87 bool metric_no_group;
88 bool metric_no_merge;
1fd09e29 89 bool metric_no_threshold;
03f23570 90 bool hardware_aware_grouping;
ee6a9614 91 bool stop_read_counter;
f07952b1 92 bool iostat_run;
1725e9cd
IR
93 char *user_requested_cpu_list;
94 bool system_wide;
728c0ee0
JO
95 FILE *output;
96 unsigned int interval;
97 unsigned int timeout;
df4f7b4d 98 unsigned int unit_width;
ee1760e2 99 unsigned int metric_only_len;
728c0ee0 100 int times;
d97ae04b 101 int run_count;
31084123 102 int print_free_counters_hint;
fa7070a3 103 const char *csv_sep;
26893a60 104 struct stats *walltime_nsecs_stats;
8897a891 105 struct rusage ru_data;
c735b0a5 106 struct rusage_stats *ru_stats;
d526e1a0 107 struct cpu_aggr_map *aggr_map;
6f6b6594 108 aggr_get_id_t aggr_get_id;
d526e1a0 109 struct cpu_aggr_map *cpus_aggr_map;
54ac0b1b 110 u64 *walltime_run;
d0192fdb 111 struct rblist metric_events;
27e9769a
AB
112 int ctl_fd;
113 int ctl_fd_ack;
a8fcbd26 114 bool ctl_fd_close;
d1c5a0e8 115 const char *cgroup_list;
63e39aa6 116 unsigned int topdown_level;
421a50f3
JO
117};
118
9557d156
IR
119extern struct perf_stat_config stat_config;
120
d778a778
PC
121void perf_stat__set_big_num(int set);
122
0007ecea
XG
123void update_stats(struct stats *stats, u64 val);
124double avg_stats(struct stats *stats);
125double stddev_stats(struct stats *stats);
126double rel_stddev_stats(double stddev, double avg);
127
ffe4f3c0
DA
128static inline void init_stats(struct stats *stats)
129{
130 stats->n = 0.0;
131 stats->mean = 0.0;
132 stats->M2 = 0.0;
133 stats->min = (u64) -1;
134 stats->max = 0;
135}
e2f56da1 136
c735b0a5
FF
137static inline void init_rusage_stats(struct rusage_stats *ru_stats) {
138 init_stats(&ru_stats->ru_utime_usec_stat);
139 init_stats(&ru_stats->ru_stime_usec_stat);
140}
141
142static inline void update_rusage_stats(struct rusage_stats *ru_stats, struct rusage* rusage) {
143 const u64 us_to_ns = 1000;
144 const u64 s_to_ns = 1000000000;
145 update_stats(&ru_stats->ru_utime_usec_stat,
146 (rusage->ru_utime.tv_usec * us_to_ns + rusage->ru_utime.tv_sec * s_to_ns));
147 update_stats(&ru_stats->ru_stime_usec_stat,
148 (rusage->ru_stime.tv_usec * us_to_ns + rusage->ru_stime.tv_sec * s_to_ns));
149}
150
32dcd021 151struct evsel;
63503dba 152struct evlist;
24e34f68 153
f87027b9 154extern struct stats walltime_nsecs_stats;
c735b0a5 155extern struct rusage_stats ru_stats;
f87027b9 156
37b77ae9
IR
157enum metric_threshold_classify {
158 METRIC_THRESHOLD_UNKNOWN,
159 METRIC_THRESHOLD_BAD,
160 METRIC_THRESHOLD_NEARLY_BAD,
161 METRIC_THRESHOLD_LESS_GOOD,
162 METRIC_THRESHOLD_GOOD,
163};
164const char *metric_threshold_classify__color(enum metric_threshold_classify thresh);
165
6ca9a082 166typedef void (*print_metric_t)(struct perf_stat_config *config,
37b77ae9
IR
167 void *ctx,
168 enum metric_threshold_classify thresh,
9809b2b1
IR
169 const char *fmt,
170 const char *unit,
171 double val);
6ca9a082 172typedef void (*new_line_t)(struct perf_stat_config *config, void *ctx);
140aeadc 173
6a80d794
KL
174/* Used to print the display name of the Default metricgroup for now. */
175typedef void (*print_metricgroup_header_t)(struct perf_stat_config *config,
176 void *ctx, const char *metricgroup_name);
177
f87027b9 178void perf_stat__reset_shadow_stats(void);
140aeadc
AK
179struct perf_stat_output_ctx {
180 void *ctx;
181 print_metric_t print_metric;
182 new_line_t new_line;
6a80d794 183 print_metricgroup_header_t print_metricgroup_header;
37932c18 184 bool force_header;
140aeadc
AK
185};
186
6ca9a082 187void perf_stat__print_shadow_stats(struct perf_stat_config *config,
32dcd021 188 struct evsel *evsel,
8945bef3 189 double avg, int aggr_idx,
b18f3e36 190 struct perf_stat_output_ctx *out,
cc26ffaa 191 struct rblist *metric_events);
6a80d794
KL
192bool perf_stat__skip_metric_event(struct evsel *evsel,
193 struct rblist *metric_events,
194 u64 ena, u64 run);
195void *perf_stat__print_shadow_stats_metricgroup(struct perf_stat_config *config,
196 struct evsel *evsel,
197 int aggr_idx,
198 int *num,
199 void *from,
200 struct perf_stat_output_ctx *out,
201 struct rblist *metric_events);
f87027b9 202
1f297a6e
NK
203int evlist__alloc_stats(struct perf_stat_config *config,
204 struct evlist *evlist, bool alloc_raw);
53f5e908
ACM
205void evlist__free_stats(struct evlist *evlist);
206void evlist__reset_stats(struct evlist *evlist);
207void evlist__reset_prev_raw_counts(struct evlist *evlist);
208void evlist__copy_prev_raw_counts(struct evlist *evlist);
209void evlist__save_aggr_prev_raw_counts(struct evlist *evlist);
f80010eb 210
ae7e6492 211int evlist__alloc_aggr_stats(struct evlist *evlist, int nr_aggr);
8f97963e 212void evlist__reset_aggr_stats(struct evlist *evlist);
dada1a1f 213void evlist__copy_res_stats(struct perf_stat_config *config, struct evlist *evlist);
ae7e6492 214
f80010eb 215int perf_stat_process_counter(struct perf_stat_config *config,
32dcd021 216 struct evsel *counter);
942c5593 217void perf_stat_merge_counters(struct perf_stat_config *config, struct evlist *evlist);
1d6d2bea 218void perf_stat_process_percore(struct perf_stat_config *config, struct evlist *evlist);
942c5593 219
0ea0e355
JO
220struct perf_tool;
221union perf_event;
222struct perf_session;
aeb00b1a
ACM
223struct target;
224
89f1688a
JO
225int perf_event__process_stat_event(struct perf_session *session,
226 union perf_event *event);
e08a4564
JO
227
228size_t perf_event__fprintf_stat(union perf_event *event, FILE *fp);
229size_t perf_event__fprintf_stat_round(union perf_event *event, FILE *fp);
230size_t perf_event__fprintf_stat_config(union perf_event *event, FILE *fp);
d09cefd2 231
32dcd021 232int create_perf_stat_counter(struct evsel *evsel,
d09cefd2 233 struct perf_stat_config *config,
4804e011 234 struct target *target,
6f844b1f 235 int cpu_map_idx);
71273724
ACM
236void evlist__print_counters(struct evlist *evlist, struct perf_stat_config *config,
237 struct target *_target, struct timespec *ts, int argc, const char **argv);
6d432c4c
JO
238
239struct metric_expr;
8945bef3 240double test_generic_metric(struct metric_expr *mexp, int aggr_idx);
0007ecea 241#endif