2 #include <linux/compiler.h>
4 #include "../util/hist.h"
5 #include "../util/util.h"
6 #include "../util/sort.h"
7 #include "../util/evsel.h"
9 /* hist period print (hpp) functions */
11 typedef int (*hpp_snprint_fn
)(char *buf
, size_t size
, const char *fmt
, ...);
13 static int __hpp__fmt(struct perf_hpp
*hpp
, struct hist_entry
*he
,
14 u64 (*get_field
)(struct hist_entry
*),
15 const char *fmt
, hpp_snprint_fn print_fn
,
19 struct hists
*hists
= he
->hists
;
20 struct perf_evsel
*evsel
= hists_to_evsel(hists
);
25 if (hists
->stats
.total_period
)
26 percent
= 100.0 * get_field(he
) /
27 hists
->stats
.total_period
;
29 ret
= print_fn(hpp
->buf
, hpp
->size
, fmt
, percent
);
31 ret
= print_fn(hpp
->buf
, hpp
->size
, fmt
, get_field(he
));
33 if (perf_evsel__is_group_event(evsel
)) {
34 int prev_idx
, idx_delta
;
35 struct hist_entry
*pair
;
36 int nr_members
= evsel
->nr_members
;
38 prev_idx
= perf_evsel__group_idx(evsel
);
40 list_for_each_entry(pair
, &he
->pairs
.head
, pairs
.node
) {
41 u64 period
= get_field(pair
);
42 u64 total
= pair
->hists
->stats
.total_period
;
47 evsel
= hists_to_evsel(pair
->hists
);
48 idx_delta
= perf_evsel__group_idx(evsel
) - prev_idx
- 1;
52 * zero-fill group members in the middle which
55 ret
+= print_fn(hpp
->buf
+ ret
, hpp
->size
- ret
,
60 ret
+= print_fn(hpp
->buf
+ ret
, hpp
->size
- ret
,
61 fmt
, 100.0 * period
/ total
);
63 ret
+= print_fn(hpp
->buf
+ ret
, hpp
->size
- ret
,
66 prev_idx
= perf_evsel__group_idx(evsel
);
69 idx_delta
= nr_members
- prev_idx
- 1;
73 * zero-fill group members at last which have no sample
75 ret
+= print_fn(hpp
->buf
+ ret
, hpp
->size
- ret
,
82 #define __HPP_HEADER_FN(_type, _str, _min_width, _unit_width) \
83 static int hpp__header_##_type(struct perf_hpp_fmt *fmt __maybe_unused, \
84 struct perf_hpp *hpp) \
86 int len = _min_width; \
88 if (symbol_conf.event_group) { \
89 struct perf_evsel *evsel = hpp->ptr; \
91 len = max(len, evsel->nr_members * _unit_width); \
93 return scnprintf(hpp->buf, hpp->size, "%*s", len, _str); \
96 #define __HPP_WIDTH_FN(_type, _min_width, _unit_width) \
97 static int hpp__width_##_type(struct perf_hpp_fmt *fmt __maybe_unused, \
98 struct perf_hpp *hpp __maybe_unused) \
100 int len = _min_width; \
102 if (symbol_conf.event_group) { \
103 struct perf_evsel *evsel = hpp->ptr; \
105 len = max(len, evsel->nr_members * _unit_width); \
110 #define __HPP_COLOR_PERCENT_FN(_type, _field) \
111 static u64 he_get_##_field(struct hist_entry *he) \
113 return he->stat._field; \
116 static int hpp__color_##_type(struct perf_hpp_fmt *fmt __maybe_unused, \
117 struct perf_hpp *hpp, struct hist_entry *he) \
119 return __hpp__fmt(hpp, he, he_get_##_field, " %6.2f%%", \
120 percent_color_snprintf, true); \
123 #define __HPP_ENTRY_PERCENT_FN(_type, _field) \
124 static int hpp__entry_##_type(struct perf_hpp_fmt *_fmt __maybe_unused, \
125 struct perf_hpp *hpp, struct hist_entry *he) \
127 const char *fmt = symbol_conf.field_sep ? " %.2f" : " %6.2f%%"; \
128 return __hpp__fmt(hpp, he, he_get_##_field, fmt, \
132 #define __HPP_ENTRY_RAW_FN(_type, _field) \
133 static u64 he_get_raw_##_field(struct hist_entry *he) \
135 return he->stat._field; \
138 static int hpp__entry_##_type(struct perf_hpp_fmt *_fmt __maybe_unused, \
139 struct perf_hpp *hpp, struct hist_entry *he) \
141 const char *fmt = symbol_conf.field_sep ? " %"PRIu64 : " %11"PRIu64; \
142 return __hpp__fmt(hpp, he, he_get_raw_##_field, fmt, scnprintf, false); \
145 #define HPP_PERCENT_FNS(_type, _str, _field, _min_width, _unit_width) \
146 __HPP_HEADER_FN(_type, _str, _min_width, _unit_width) \
147 __HPP_WIDTH_FN(_type, _min_width, _unit_width) \
148 __HPP_COLOR_PERCENT_FN(_type, _field) \
149 __HPP_ENTRY_PERCENT_FN(_type, _field)
151 #define HPP_RAW_FNS(_type, _str, _field, _min_width, _unit_width) \
152 __HPP_HEADER_FN(_type, _str, _min_width, _unit_width) \
153 __HPP_WIDTH_FN(_type, _min_width, _unit_width) \
154 __HPP_ENTRY_RAW_FN(_type, _field)
157 HPP_PERCENT_FNS(overhead
, "Overhead", period
, 8, 8)
158 HPP_PERCENT_FNS(overhead_sys
, "sys", period_sys
, 8, 8)
159 HPP_PERCENT_FNS(overhead_us
, "usr", period_us
, 8, 8)
160 HPP_PERCENT_FNS(overhead_guest_sys
, "guest sys", period_guest_sys
, 9, 8)
161 HPP_PERCENT_FNS(overhead_guest_us
, "guest usr", period_guest_us
, 9, 8)
163 HPP_RAW_FNS(samples
, "Samples", nr_events
, 12, 12)
164 HPP_RAW_FNS(period
, "Period", period
, 12, 12)
166 #define HPP__COLOR_PRINT_FNS(_name) \
168 .header = hpp__header_ ## _name, \
169 .width = hpp__width_ ## _name, \
170 .color = hpp__color_ ## _name, \
171 .entry = hpp__entry_ ## _name \
174 #define HPP__PRINT_FNS(_name) \
176 .header = hpp__header_ ## _name, \
177 .width = hpp__width_ ## _name, \
178 .entry = hpp__entry_ ## _name \
181 struct perf_hpp_fmt perf_hpp__format
[] = {
182 HPP__COLOR_PRINT_FNS(overhead
),
183 HPP__COLOR_PRINT_FNS(overhead_sys
),
184 HPP__COLOR_PRINT_FNS(overhead_us
),
185 HPP__COLOR_PRINT_FNS(overhead_guest_sys
),
186 HPP__COLOR_PRINT_FNS(overhead_guest_us
),
187 HPP__PRINT_FNS(samples
),
188 HPP__PRINT_FNS(period
)
191 LIST_HEAD(perf_hpp__list
);
194 #undef HPP__COLOR_PRINT_FNS
195 #undef HPP__PRINT_FNS
197 #undef HPP_PERCENT_FNS
200 #undef __HPP_HEADER_FN
201 #undef __HPP_WIDTH_FN
202 #undef __HPP_COLOR_PERCENT_FN
203 #undef __HPP_ENTRY_PERCENT_FN
204 #undef __HPP_ENTRY_RAW_FN
207 void perf_hpp__init(void)
209 perf_hpp__column_enable(PERF_HPP__OVERHEAD
);
211 if (symbol_conf
.show_cpu_utilization
) {
212 perf_hpp__column_enable(PERF_HPP__OVERHEAD_SYS
);
213 perf_hpp__column_enable(PERF_HPP__OVERHEAD_US
);
216 perf_hpp__column_enable(PERF_HPP__OVERHEAD_GUEST_SYS
);
217 perf_hpp__column_enable(PERF_HPP__OVERHEAD_GUEST_US
);
221 if (symbol_conf
.show_nr_samples
)
222 perf_hpp__column_enable(PERF_HPP__SAMPLES
);
224 if (symbol_conf
.show_total_period
)
225 perf_hpp__column_enable(PERF_HPP__PERIOD
);
228 void perf_hpp__column_register(struct perf_hpp_fmt
*format
)
230 list_add_tail(&format
->list
, &perf_hpp__list
);
233 void perf_hpp__column_enable(unsigned col
)
235 BUG_ON(col
>= PERF_HPP__MAX_INDEX
);
236 perf_hpp__column_register(&perf_hpp__format
[col
]);
239 int hist_entry__sort_snprintf(struct hist_entry
*he
, char *s
, size_t size
,
242 const char *sep
= symbol_conf
.field_sep
;
243 struct sort_entry
*se
;
246 list_for_each_entry(se
, &hist_entry__sort_list
, list
) {
250 ret
+= scnprintf(s
+ ret
, size
- ret
, "%s", sep
?: " ");
251 ret
+= se
->se_snprintf(he
, s
+ ret
, size
- ret
,
252 hists__col_len(hists
, se
->se_width_idx
));
259 * See hists__fprintf to match the column widths
261 unsigned int hists__sort_list_width(struct hists
*hists
)
263 struct perf_hpp_fmt
*fmt
;
264 struct sort_entry
*se
;
266 struct perf_hpp dummy_hpp
= {
267 .ptr
= hists_to_evsel(hists
),
270 perf_hpp__for_each_format(fmt
) {
274 ret
+= fmt
->width(fmt
, &dummy_hpp
);
277 list_for_each_entry(se
, &hist_entry__sort_list
, list
)
279 ret
+= 2 + hists__col_len(hists
, se
->se_width_idx
);
281 if (verbose
) /* Addr + origin */
282 ret
+= 3 + BITS_PER_LONG
/ 4;