1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/types.h>
8 #include <sys/resource.h>
12 struct perf_stat_config
;
20 enum perf_stat_evsel_id
{
21 PERF_STAT_EVSEL_ID__NONE
= 0,
22 PERF_STAT_EVSEL_ID__CYCLES_IN_TX
,
23 PERF_STAT_EVSEL_ID__TRANSACTION_START
,
24 PERF_STAT_EVSEL_ID__ELISION_START
,
25 PERF_STAT_EVSEL_ID__CYCLES_IN_TX_CP
,
26 PERF_STAT_EVSEL_ID__TOPDOWN_TOTAL_SLOTS
,
27 PERF_STAT_EVSEL_ID__TOPDOWN_SLOTS_ISSUED
,
28 PERF_STAT_EVSEL_ID__TOPDOWN_SLOTS_RETIRED
,
29 PERF_STAT_EVSEL_ID__TOPDOWN_FETCH_BUBBLES
,
30 PERF_STAT_EVSEL_ID__TOPDOWN_RECOVERY_BUBBLES
,
31 PERF_STAT_EVSEL_ID__SMI_NUM
,
32 PERF_STAT_EVSEL_ID__APERF
,
33 PERF_STAT_EVSEL_ID__MAX
,
36 struct perf_stat_evsel
{
37 struct stats res_stats
[3];
38 enum perf_stat_evsel_id id
;
54 CTX_BIT_USER
= 1 << 0,
55 CTX_BIT_KERNEL
= 1 << 1,
57 CTX_BIT_HOST
= 1 << 3,
58 CTX_BIT_IDLE
= 1 << 4,
62 #define NUM_CTX CTX_BIT_MAX
68 STAT_STALLED_CYCLES_FRONT
,
69 STAT_STALLED_CYCLES_BACK
,
80 STAT_TOPDOWN_TOTAL_SLOTS
,
81 STAT_TOPDOWN_SLOTS_ISSUED
,
82 STAT_TOPDOWN_SLOTS_RETIRED
,
83 STAT_TOPDOWN_FETCH_BUBBLES
,
84 STAT_TOPDOWN_RECOVERY_BUBBLES
,
91 struct rblist value_list
;
94 typedef int (*aggr_get_id_t
)(struct perf_stat_config
*config
,
95 struct perf_cpu_map
*m
, int cpu
);
97 struct perf_stat_config
{
98 enum aggr_mode aggr_mode
;
109 bool walltime_run_table
;
113 unsigned int interval
;
114 unsigned int timeout
;
115 unsigned int initial_delay
;
116 unsigned int unit_width
;
117 unsigned int metric_only_len
;
120 int print_free_counters_hint
;
121 int print_mixed_hw_group_error
;
122 struct runtime_stat
*stats
;
125 struct stats
*walltime_nsecs_stats
;
126 struct rusage ru_data
;
127 struct perf_cpu_map
*aggr_map
;
128 aggr_get_id_t aggr_get_id
;
129 struct perf_cpu_map
*cpus_aggr_map
;
131 struct rblist metric_events
;
134 void update_stats(struct stats
*stats
, u64 val
);
135 double avg_stats(struct stats
*stats
);
136 double stddev_stats(struct stats
*stats
);
137 double rel_stddev_stats(double stddev
, double avg
);
139 static inline void init_stats(struct stats
*stats
)
144 stats
->min
= (u64
) -1;
151 struct perf_aggr_thread_value
{
152 struct evsel
*counter
;
160 bool __perf_evsel_stat__is(struct evsel
*evsel
,
161 enum perf_stat_evsel_id id
);
163 #define perf_stat_evsel__is(evsel, id) \
164 __perf_evsel_stat__is(evsel, PERF_STAT_EVSEL_ID__ ## id)
166 extern struct runtime_stat rt_stat
;
167 extern struct stats walltime_nsecs_stats
;
169 typedef void (*print_metric_t
)(struct perf_stat_config
*config
,
170 void *ctx
, const char *color
, const char *unit
,
171 const char *fmt
, double val
);
172 typedef void (*new_line_t
)(struct perf_stat_config
*config
, void *ctx
);
174 void runtime_stat__init(struct runtime_stat
*st
);
175 void runtime_stat__exit(struct runtime_stat
*st
);
176 void perf_stat__init_shadow_stats(void);
177 void perf_stat__reset_shadow_stats(void);
178 void perf_stat__reset_shadow_per_stat(struct runtime_stat
*st
);
179 void perf_stat__update_shadow_stats(struct evsel
*counter
, u64 count
,
180 int cpu
, struct runtime_stat
*st
);
181 struct perf_stat_output_ctx
{
183 print_metric_t print_metric
;
188 void perf_stat__print_shadow_stats(struct perf_stat_config
*config
,
191 struct perf_stat_output_ctx
*out
,
192 struct rblist
*metric_events
,
193 struct runtime_stat
*st
);
194 void perf_stat__collect_metric_expr(struct evlist
*);
196 int perf_evlist__alloc_stats(struct evlist
*evlist
, bool alloc_raw
);
197 void perf_evlist__free_stats(struct evlist
*evlist
);
198 void perf_evlist__reset_stats(struct evlist
*evlist
);
199 void perf_evlist__reset_prev_raw_counts(struct evlist
*evlist
);
201 int perf_stat_process_counter(struct perf_stat_config
*config
,
202 struct evsel
*counter
);
208 int perf_event__process_stat_event(struct perf_session
*session
,
209 union perf_event
*event
);
211 size_t perf_event__fprintf_stat(union perf_event
*event
, FILE *fp
);
212 size_t perf_event__fprintf_stat_round(union perf_event
*event
, FILE *fp
);
213 size_t perf_event__fprintf_stat_config(union perf_event
*event
, FILE *fp
);
215 int create_perf_stat_counter(struct evsel
*evsel
,
216 struct perf_stat_config
*config
,
217 struct target
*target
,
220 perf_evlist__print_counters(struct evlist
*evlist
,
221 struct perf_stat_config
*config
,
222 struct target
*_target
,
224 int argc
, const char **argv
);