1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/types.h>
16 enum perf_stat_evsel_id
{
17 PERF_STAT_EVSEL_ID__NONE
= 0,
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
,
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
,
27 PERF_STAT_EVSEL_ID__SMI_NUM
,
28 PERF_STAT_EVSEL_ID__APERF
,
29 PERF_STAT_EVSEL_ID__MAX
,
32 struct perf_stat_evsel
{
33 struct stats res_stats
[3];
34 enum perf_stat_evsel_id id
;
48 CTX_BIT_USER
= 1 << 0,
49 CTX_BIT_KERNEL
= 1 << 1,
51 CTX_BIT_HOST
= 1 << 3,
52 CTX_BIT_IDLE
= 1 << 4,
56 #define NUM_CTX CTX_BIT_MAX
62 STAT_STALLED_CYCLES_FRONT
,
63 STAT_STALLED_CYCLES_BACK
,
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
,
85 struct rblist value_list
;
88 struct perf_stat_config
{
89 enum aggr_mode aggr_mode
;
92 unsigned int interval
;
93 struct runtime_stat
*stats
;
97 void update_stats(struct stats
*stats
, u64 val
);
98 double avg_stats(struct stats
*stats
);
99 double stddev_stats(struct stats
*stats
);
100 double rel_stddev_stats(double stddev
, double avg
);
102 static inline void init_stats(struct stats
*stats
)
107 stats
->min
= (u64
) -1;
114 struct perf_aggr_thread_value
{
115 struct perf_evsel
*counter
;
123 bool __perf_evsel_stat__is(struct perf_evsel
*evsel
,
124 enum perf_stat_evsel_id id
);
126 #define perf_stat_evsel__is(evsel, id) \
127 __perf_evsel_stat__is(evsel, PERF_STAT_EVSEL_ID__ ## id)
129 void perf_stat_evsel_id_init(struct perf_evsel
*evsel
);
131 extern struct runtime_stat rt_stat
;
132 extern struct stats walltime_nsecs_stats
;
134 typedef void (*print_metric_t
)(void *ctx
, const char *color
, const char *unit
,
135 const char *fmt
, double val
);
136 typedef void (*new_line_t
)(void *ctx
);
138 void runtime_stat__init(struct runtime_stat
*st
);
139 void runtime_stat__exit(struct runtime_stat
*st
);
140 void perf_stat__init_shadow_stats(void);
141 void perf_stat__reset_shadow_stats(void);
142 void perf_stat__reset_shadow_per_stat(struct runtime_stat
*st
);
143 void perf_stat__update_shadow_stats(struct perf_evsel
*counter
, u64 count
,
144 int cpu
, struct runtime_stat
*st
);
145 struct perf_stat_output_ctx
{
147 print_metric_t print_metric
;
152 void perf_stat__print_shadow_stats(struct perf_evsel
*evsel
,
154 struct perf_stat_output_ctx
*out
,
155 struct rblist
*metric_events
,
156 struct runtime_stat
*st
);
157 void perf_stat__collect_metric_expr(struct perf_evlist
*);
159 int perf_evlist__alloc_stats(struct perf_evlist
*evlist
, bool alloc_raw
);
160 void perf_evlist__free_stats(struct perf_evlist
*evlist
);
161 void perf_evlist__reset_stats(struct perf_evlist
*evlist
);
163 int perf_stat_process_counter(struct perf_stat_config
*config
,
164 struct perf_evsel
*counter
);
168 int perf_event__process_stat_event(struct perf_tool
*tool
,
169 union perf_event
*event
,
170 struct perf_session
*session
);
172 size_t perf_event__fprintf_stat(union perf_event
*event
, FILE *fp
);
173 size_t perf_event__fprintf_stat_round(union perf_event
*event
, FILE *fp
);
174 size_t perf_event__fprintf_stat_config(union perf_event
*event
, FILE *fp
);