1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/types.h>
9 #include <sys/resource.h>
21 enum perf_stat_evsel_id
{
22 PERF_STAT_EVSEL_ID__NONE
= 0,
23 PERF_STAT_EVSEL_ID__CYCLES_IN_TX
,
24 PERF_STAT_EVSEL_ID__TRANSACTION_START
,
25 PERF_STAT_EVSEL_ID__ELISION_START
,
26 PERF_STAT_EVSEL_ID__CYCLES_IN_TX_CP
,
27 PERF_STAT_EVSEL_ID__TOPDOWN_TOTAL_SLOTS
,
28 PERF_STAT_EVSEL_ID__TOPDOWN_SLOTS_ISSUED
,
29 PERF_STAT_EVSEL_ID__TOPDOWN_SLOTS_RETIRED
,
30 PERF_STAT_EVSEL_ID__TOPDOWN_FETCH_BUBBLES
,
31 PERF_STAT_EVSEL_ID__TOPDOWN_RECOVERY_BUBBLES
,
32 PERF_STAT_EVSEL_ID__SMI_NUM
,
33 PERF_STAT_EVSEL_ID__APERF
,
34 PERF_STAT_EVSEL_ID__MAX
,
37 struct perf_stat_evsel
{
38 struct stats res_stats
[3];
39 enum perf_stat_evsel_id id
;
53 CTX_BIT_USER
= 1 << 0,
54 CTX_BIT_KERNEL
= 1 << 1,
56 CTX_BIT_HOST
= 1 << 3,
57 CTX_BIT_IDLE
= 1 << 4,
61 #define NUM_CTX CTX_BIT_MAX
67 STAT_STALLED_CYCLES_FRONT
,
68 STAT_STALLED_CYCLES_BACK
,
79 STAT_TOPDOWN_TOTAL_SLOTS
,
80 STAT_TOPDOWN_SLOTS_ISSUED
,
81 STAT_TOPDOWN_SLOTS_RETIRED
,
82 STAT_TOPDOWN_FETCH_BUBBLES
,
83 STAT_TOPDOWN_RECOVERY_BUBBLES
,
90 struct rblist value_list
;
93 typedef int (*aggr_get_id_t
)(struct perf_stat_config
*config
,
94 struct cpu_map
*m
, int cpu
);
96 struct perf_stat_config
{
97 enum aggr_mode aggr_mode
;
108 bool walltime_run_table
;
110 unsigned int interval
;
111 unsigned int timeout
;
112 unsigned int initial_delay
;
113 unsigned int unit_width
;
114 unsigned int metric_only_len
;
117 int print_free_counters_hint
;
118 int print_mixed_hw_group_error
;
119 struct runtime_stat
*stats
;
122 struct stats
*walltime_nsecs_stats
;
123 struct rusage ru_data
;
124 struct cpu_map
*aggr_map
;
125 aggr_get_id_t aggr_get_id
;
126 struct cpu_map
*cpus_aggr_map
;
128 struct rblist metric_events
;
131 void update_stats(struct stats
*stats
, u64 val
);
132 double avg_stats(struct stats
*stats
);
133 double stddev_stats(struct stats
*stats
);
134 double rel_stddev_stats(double stddev
, double avg
);
136 static inline void init_stats(struct stats
*stats
)
141 stats
->min
= (u64
) -1;
148 struct perf_aggr_thread_value
{
149 struct perf_evsel
*counter
;
157 bool __perf_evsel_stat__is(struct perf_evsel
*evsel
,
158 enum perf_stat_evsel_id id
);
160 #define perf_stat_evsel__is(evsel, id) \
161 __perf_evsel_stat__is(evsel, PERF_STAT_EVSEL_ID__ ## id)
163 extern struct runtime_stat rt_stat
;
164 extern struct stats walltime_nsecs_stats
;
166 typedef void (*print_metric_t
)(struct perf_stat_config
*config
,
167 void *ctx
, const char *color
, const char *unit
,
168 const char *fmt
, double val
);
169 typedef void (*new_line_t
)(struct perf_stat_config
*config
, void *ctx
);
171 void runtime_stat__init(struct runtime_stat
*st
);
172 void runtime_stat__exit(struct runtime_stat
*st
);
173 void perf_stat__init_shadow_stats(void);
174 void perf_stat__reset_shadow_stats(void);
175 void perf_stat__reset_shadow_per_stat(struct runtime_stat
*st
);
176 void perf_stat__update_shadow_stats(struct perf_evsel
*counter
, u64 count
,
177 int cpu
, struct runtime_stat
*st
);
178 struct perf_stat_output_ctx
{
180 print_metric_t print_metric
;
185 void perf_stat__print_shadow_stats(struct perf_stat_config
*config
,
186 struct perf_evsel
*evsel
,
188 struct perf_stat_output_ctx
*out
,
189 struct rblist
*metric_events
,
190 struct runtime_stat
*st
);
191 void perf_stat__collect_metric_expr(struct perf_evlist
*);
193 int perf_evlist__alloc_stats(struct perf_evlist
*evlist
, bool alloc_raw
);
194 void perf_evlist__free_stats(struct perf_evlist
*evlist
);
195 void perf_evlist__reset_stats(struct perf_evlist
*evlist
);
197 int perf_stat_process_counter(struct perf_stat_config
*config
,
198 struct perf_evsel
*counter
);
202 int perf_event__process_stat_event(struct perf_session
*session
,
203 union perf_event
*event
);
205 size_t perf_event__fprintf_stat(union perf_event
*event
, FILE *fp
);
206 size_t perf_event__fprintf_stat_round(union perf_event
*event
, FILE *fp
);
207 size_t perf_event__fprintf_stat_config(union perf_event
*event
, FILE *fp
);
209 int create_perf_stat_counter(struct perf_evsel
*evsel
,
210 struct perf_stat_config
*config
,
211 struct target
*target
);
212 int perf_stat_synthesize_config(struct perf_stat_config
*config
,
213 struct perf_tool
*tool
,
214 struct perf_evlist
*evlist
,
215 perf_event__handler_t process
,
218 perf_evlist__print_counters(struct perf_evlist
*evlist
,
219 struct perf_stat_config
*config
,
220 struct target
*_target
,
222 int argc
, const char **argv
);