blob: 4bf91b09d62db6684c9e66c985810303b3950af1 [file] [log] [blame]
Namhyung Kimea251d52012-09-03 11:53:06 +09001#include <math.h>
2
3#include "../util/hist.h"
4#include "../util/util.h"
5#include "../util/sort.h"
Namhyung Kim4fb71072013-01-22 18:09:34 +09006#include "../util/evsel.h"
Namhyung Kimea251d52012-09-03 11:53:06 +09007
8/* hist period print (hpp) functions */
Namhyung Kimea251d52012-09-03 11:53:06 +09009
Namhyung Kim4fb71072013-01-22 18:09:34 +090010typedef int (*hpp_snprint_fn)(char *buf, size_t size, const char *fmt, ...);
Namhyung Kimea251d52012-09-03 11:53:06 +090011
Jiri Olsa0c5268b2013-02-04 13:32:55 +010012static int __hpp__fmt(struct perf_hpp *hpp, struct hist_entry *he,
13 u64 (*get_field)(struct hist_entry *),
14 const char *fmt, hpp_snprint_fn print_fn,
15 bool fmt_percent)
Namhyung Kimea251d52012-09-03 11:53:06 +090016{
Namhyung Kim4fb71072013-01-22 18:09:34 +090017 int ret;
Jiri Olsab5ff71c2012-10-04 21:49:40 +090018 struct hists *hists = he->hists;
Namhyung Kim759ff492013-03-05 14:53:26 +090019 struct perf_evsel *evsel = hists_to_evsel(hists);
Namhyung Kimea251d52012-09-03 11:53:06 +090020
Jiri Olsa0c5268b2013-02-04 13:32:55 +010021 if (fmt_percent) {
22 double percent = 0.0;
Namhyung Kim4fb71072013-01-22 18:09:34 +090023
Jiri Olsa0c5268b2013-02-04 13:32:55 +010024 if (hists->stats.total_period)
25 percent = 100.0 * get_field(he) /
26 hists->stats.total_period;
27
28 ret = print_fn(hpp->buf, hpp->size, fmt, percent);
29 } else
30 ret = print_fn(hpp->buf, hpp->size, fmt, get_field(he));
Namhyung Kim5b9e2142013-01-22 18:09:37 +090031
Namhyung Kim759ff492013-03-05 14:53:26 +090032 if (perf_evsel__is_group_event(evsel)) {
Namhyung Kim5b9e2142013-01-22 18:09:37 +090033 int prev_idx, idx_delta;
Namhyung Kim5b9e2142013-01-22 18:09:37 +090034 struct hist_entry *pair;
35 int nr_members = evsel->nr_members;
36
Namhyung Kim5b9e2142013-01-22 18:09:37 +090037 prev_idx = perf_evsel__group_idx(evsel);
38
39 list_for_each_entry(pair, &he->pairs.head, pairs.node) {
40 u64 period = get_field(pair);
41 u64 total = pair->hists->stats.total_period;
42
43 if (!total)
44 continue;
45
46 evsel = hists_to_evsel(pair->hists);
47 idx_delta = perf_evsel__group_idx(evsel) - prev_idx - 1;
48
49 while (idx_delta--) {
50 /*
51 * zero-fill group members in the middle which
52 * have no sample
53 */
54 ret += print_fn(hpp->buf + ret, hpp->size - ret,
Jiri Olsa0c5268b2013-02-04 13:32:55 +010055 fmt, 0);
Namhyung Kim5b9e2142013-01-22 18:09:37 +090056 }
57
Jiri Olsa0c5268b2013-02-04 13:32:55 +010058 if (fmt_percent)
59 ret += print_fn(hpp->buf + ret, hpp->size - ret,
60 fmt, 100.0 * period / total);
61 else
62 ret += print_fn(hpp->buf + ret, hpp->size - ret,
63 fmt, period);
Namhyung Kim5b9e2142013-01-22 18:09:37 +090064
65 prev_idx = perf_evsel__group_idx(evsel);
66 }
67
68 idx_delta = nr_members - prev_idx - 1;
69
70 while (idx_delta--) {
71 /*
72 * zero-fill group members at last which have no sample
73 */
74 ret += print_fn(hpp->buf + ret, hpp->size - ret,
Jiri Olsa0c5268b2013-02-04 13:32:55 +010075 fmt, 0);
Namhyung Kim5b9e2142013-01-22 18:09:37 +090076 }
77 }
Namhyung Kim4fb71072013-01-22 18:09:34 +090078 return ret;
Namhyung Kimea251d52012-09-03 11:53:06 +090079}
80
Namhyung Kim4fb71072013-01-22 18:09:34 +090081#define __HPP_HEADER_FN(_type, _str, _min_width, _unit_width) \
82static int hpp__header_##_type(struct perf_hpp *hpp) \
83{ \
84 int len = _min_width; \
85 \
Namhyung Kim5b9e2142013-01-22 18:09:37 +090086 if (symbol_conf.event_group) { \
87 struct perf_evsel *evsel = hpp->ptr; \
88 \
89 len = max(len, evsel->nr_members * _unit_width); \
90 } \
Namhyung Kim4fb71072013-01-22 18:09:34 +090091 return scnprintf(hpp->buf, hpp->size, "%*s", len, _str); \
Namhyung Kimea251d52012-09-03 11:53:06 +090092}
93
Namhyung Kim4fb71072013-01-22 18:09:34 +090094#define __HPP_WIDTH_FN(_type, _min_width, _unit_width) \
95static int hpp__width_##_type(struct perf_hpp *hpp __maybe_unused) \
96{ \
97 int len = _min_width; \
98 \
Namhyung Kim5b9e2142013-01-22 18:09:37 +090099 if (symbol_conf.event_group) { \
100 struct perf_evsel *evsel = hpp->ptr; \
101 \
102 len = max(len, evsel->nr_members * _unit_width); \
103 } \
Namhyung Kim4fb71072013-01-22 18:09:34 +0900104 return len; \
Namhyung Kimea251d52012-09-03 11:53:06 +0900105}
106
Namhyung Kim4fb71072013-01-22 18:09:34 +0900107#define __HPP_COLOR_PERCENT_FN(_type, _field) \
108static u64 he_get_##_field(struct hist_entry *he) \
109{ \
110 return he->stat._field; \
111} \
112 \
113static int hpp__color_##_type(struct perf_hpp *hpp, struct hist_entry *he) \
114{ \
Jiri Olsa0c5268b2013-02-04 13:32:55 +0100115 return __hpp__fmt(hpp, he, he_get_##_field, " %6.2f%%", \
116 (hpp_snprint_fn)percent_color_snprintf, true); \
Namhyung Kimea251d52012-09-03 11:53:06 +0900117}
118
Namhyung Kim4fb71072013-01-22 18:09:34 +0900119#define __HPP_ENTRY_PERCENT_FN(_type, _field) \
120static int hpp__entry_##_type(struct perf_hpp *hpp, struct hist_entry *he) \
121{ \
122 const char *fmt = symbol_conf.field_sep ? " %.2f" : " %6.2f%%"; \
Jiri Olsa0c5268b2013-02-04 13:32:55 +0100123 return __hpp__fmt(hpp, he, he_get_##_field, fmt, \
124 scnprintf, true); \
Namhyung Kimea251d52012-09-03 11:53:06 +0900125}
126
Namhyung Kim4fb71072013-01-22 18:09:34 +0900127#define __HPP_ENTRY_RAW_FN(_type, _field) \
128static u64 he_get_raw_##_field(struct hist_entry *he) \
129{ \
130 return he->stat._field; \
131} \
132 \
133static int hpp__entry_##_type(struct perf_hpp *hpp, struct hist_entry *he) \
134{ \
135 const char *fmt = symbol_conf.field_sep ? " %"PRIu64 : " %11"PRIu64; \
Jiri Olsa0c5268b2013-02-04 13:32:55 +0100136 return __hpp__fmt(hpp, he, he_get_raw_##_field, fmt, scnprintf, false); \
Namhyung Kimea251d52012-09-03 11:53:06 +0900137}
138
Namhyung Kim4fb71072013-01-22 18:09:34 +0900139#define HPP_PERCENT_FNS(_type, _str, _field, _min_width, _unit_width) \
140__HPP_HEADER_FN(_type, _str, _min_width, _unit_width) \
141__HPP_WIDTH_FN(_type, _min_width, _unit_width) \
142__HPP_COLOR_PERCENT_FN(_type, _field) \
143__HPP_ENTRY_PERCENT_FN(_type, _field)
Namhyung Kimea251d52012-09-03 11:53:06 +0900144
Namhyung Kim4fb71072013-01-22 18:09:34 +0900145#define HPP_RAW_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_ENTRY_RAW_FN(_type, _field)
Jiri Olsab5ff71c2012-10-04 21:49:40 +0900149
Namhyung Kimea251d52012-09-03 11:53:06 +0900150
Namhyung Kim4fb71072013-01-22 18:09:34 +0900151HPP_PERCENT_FNS(overhead, "Overhead", period, 8, 8)
152HPP_PERCENT_FNS(overhead_sys, "sys", period_sys, 8, 8)
153HPP_PERCENT_FNS(overhead_us, "usr", period_us, 8, 8)
154HPP_PERCENT_FNS(overhead_guest_sys, "guest sys", period_guest_sys, 9, 8)
155HPP_PERCENT_FNS(overhead_guest_us, "guest usr", period_guest_us, 9, 8)
Namhyung Kim9ffad982012-09-03 11:53:07 +0900156
Namhyung Kim4fb71072013-01-22 18:09:34 +0900157HPP_RAW_FNS(samples, "Samples", nr_events, 12, 12)
158HPP_RAW_FNS(period, "Period", period, 12, 12)
Namhyung Kimea251d52012-09-03 11:53:06 +0900159
Namhyung Kimea251d52012-09-03 11:53:06 +0900160
Jiri Olsa5395a042012-10-04 21:49:37 +0900161static int hpp__header_baseline(struct perf_hpp *hpp)
162{
163 return scnprintf(hpp->buf, hpp->size, "Baseline");
164}
165
166static int hpp__width_baseline(struct perf_hpp *hpp __maybe_unused)
167{
168 return 8;
169}
170
171static double baseline_percent(struct hist_entry *he)
172{
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200173 struct hist_entry *pair = hist_entry__next_pair(he);
Jiri Olsa5395a042012-10-04 21:49:37 +0900174 struct hists *pair_hists = pair ? pair->hists : NULL;
175 double percent = 0.0;
176
177 if (pair) {
178 u64 total_period = pair_hists->stats.total_period;
Namhyung Kimb24c28f2012-10-04 21:49:41 +0900179 u64 base_period = pair->stat.period;
Jiri Olsa5395a042012-10-04 21:49:37 +0900180
181 percent = 100.0 * base_period / total_period;
182 }
183
184 return percent;
185}
186
187static int hpp__color_baseline(struct perf_hpp *hpp, struct hist_entry *he)
188{
189 double percent = baseline_percent(he);
190
Namhyung Kim4fb71072013-01-22 18:09:34 +0900191 if (hist_entry__has_pairs(he) || symbol_conf.field_sep)
Jiri Olsa6e923492012-10-05 16:44:47 +0200192 return percent_color_snprintf(hpp->buf, hpp->size, " %6.2f%%", percent);
193 else
194 return scnprintf(hpp->buf, hpp->size, " ");
Jiri Olsa5395a042012-10-04 21:49:37 +0900195}
196
197static int hpp__entry_baseline(struct perf_hpp *hpp, struct hist_entry *he)
198{
199 double percent = baseline_percent(he);
200 const char *fmt = symbol_conf.field_sep ? "%.2f" : " %6.2f%%";
201
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200202 if (hist_entry__has_pairs(he) || symbol_conf.field_sep)
Jiri Olsa6e923492012-10-05 16:44:47 +0200203 return scnprintf(hpp->buf, hpp->size, fmt, percent);
204 else
205 return scnprintf(hpp->buf, hpp->size, " ");
Jiri Olsa5395a042012-10-04 21:49:37 +0900206}
207
Jiri Olsa61949b22012-10-05 16:44:44 +0200208static int hpp__header_period_baseline(struct perf_hpp *hpp)
209{
210 const char *fmt = symbol_conf.field_sep ? "%s" : "%12s";
211
212 return scnprintf(hpp->buf, hpp->size, fmt, "Period Base");
213}
214
215static int hpp__width_period_baseline(struct perf_hpp *hpp __maybe_unused)
216{
217 return 12;
218}
219
220static int hpp__entry_period_baseline(struct perf_hpp *hpp, struct hist_entry *he)
221{
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200222 struct hist_entry *pair = hist_entry__next_pair(he);
Jiri Olsa61949b22012-10-05 16:44:44 +0200223 u64 period = pair ? pair->stat.period : 0;
224 const char *fmt = symbol_conf.field_sep ? "%" PRIu64 : "%12" PRIu64;
225
226 return scnprintf(hpp->buf, hpp->size, fmt, period);
227}
Namhyung Kim4fb71072013-01-22 18:09:34 +0900228
Namhyung Kimea251d52012-09-03 11:53:06 +0900229static int hpp__header_delta(struct perf_hpp *hpp)
230{
Namhyung Kim9ffad982012-09-03 11:53:07 +0900231 const char *fmt = symbol_conf.field_sep ? "%s" : "%7s";
232
233 return scnprintf(hpp->buf, hpp->size, fmt, "Delta");
Namhyung Kimea251d52012-09-03 11:53:06 +0900234}
235
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300236static int hpp__width_delta(struct perf_hpp *hpp __maybe_unused)
Namhyung Kimea251d52012-09-03 11:53:06 +0900237{
238 return 7;
239}
240
241static int hpp__entry_delta(struct perf_hpp *hpp, struct hist_entry *he)
242{
Jiri Olsa05472da2012-11-28 14:52:40 +0100243 struct hist_entry *pair = hist_entry__next_pair(he);
Namhyung Kim9ffad982012-09-03 11:53:07 +0900244 const char *fmt = symbol_conf.field_sep ? "%s" : "%7.7s";
245 char buf[32] = " ";
Jiri Olsa05472da2012-11-28 14:52:40 +0100246 double diff = 0.0;
Namhyung Kimea251d52012-09-03 11:53:06 +0900247
Jiri Olsa05472da2012-11-28 14:52:40 +0100248 if (pair) {
249 if (he->diff.computed)
250 diff = he->diff.period_ratio_delta;
251 else
252 diff = perf_diff__compute_delta(he, pair);
253 } else
254 diff = perf_diff__period_percent(he, he->stat.period);
Namhyung Kimea251d52012-09-03 11:53:06 +0900255
Namhyung Kim9ffad982012-09-03 11:53:07 +0900256 if (fabs(diff) >= 0.01)
257 scnprintf(buf, sizeof(buf), "%+4.2F%%", diff);
Namhyung Kimea251d52012-09-03 11:53:06 +0900258
Namhyung Kim9ffad982012-09-03 11:53:07 +0900259 return scnprintf(hpp->buf, hpp->size, fmt, buf);
Namhyung Kimea251d52012-09-03 11:53:06 +0900260}
261
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200262static int hpp__header_ratio(struct perf_hpp *hpp)
263{
264 const char *fmt = symbol_conf.field_sep ? "%s" : "%14s";
265
266 return scnprintf(hpp->buf, hpp->size, fmt, "Ratio");
267}
268
269static int hpp__width_ratio(struct perf_hpp *hpp __maybe_unused)
270{
271 return 14;
272}
273
274static int hpp__entry_ratio(struct perf_hpp *hpp, struct hist_entry *he)
275{
Jiri Olsa05472da2012-11-28 14:52:40 +0100276 struct hist_entry *pair = hist_entry__next_pair(he);
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200277 const char *fmt = symbol_conf.field_sep ? "%s" : "%14s";
278 char buf[32] = " ";
Jiri Olsa05472da2012-11-28 14:52:40 +0100279 double ratio = 0.0;
Jiri Olsa96c47f12012-10-05 16:44:42 +0200280
Jiri Olsa05472da2012-11-28 14:52:40 +0100281 if (pair) {
282 if (he->diff.computed)
283 ratio = he->diff.period_ratio;
284 else
285 ratio = perf_diff__compute_ratio(he, pair);
286 }
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200287
288 if (ratio > 0.0)
289 scnprintf(buf, sizeof(buf), "%+14.6F", ratio);
290
291 return scnprintf(hpp->buf, hpp->size, fmt, buf);
292}
293
Jiri Olsa81d5f952012-10-05 16:44:43 +0200294static int hpp__header_wdiff(struct perf_hpp *hpp)
295{
296 const char *fmt = symbol_conf.field_sep ? "%s" : "%14s";
297
298 return scnprintf(hpp->buf, hpp->size, fmt, "Weighted diff");
299}
300
301static int hpp__width_wdiff(struct perf_hpp *hpp __maybe_unused)
302{
303 return 14;
304}
305
306static int hpp__entry_wdiff(struct perf_hpp *hpp, struct hist_entry *he)
307{
Jiri Olsa05472da2012-11-28 14:52:40 +0100308 struct hist_entry *pair = hist_entry__next_pair(he);
Jiri Olsa81d5f952012-10-05 16:44:43 +0200309 const char *fmt = symbol_conf.field_sep ? "%s" : "%14s";
310 char buf[32] = " ";
Jiri Olsa05472da2012-11-28 14:52:40 +0100311 s64 wdiff = 0;
Jiri Olsa81d5f952012-10-05 16:44:43 +0200312
Jiri Olsa05472da2012-11-28 14:52:40 +0100313 if (pair) {
314 if (he->diff.computed)
315 wdiff = he->diff.wdiff;
316 else
317 wdiff = perf_diff__compute_wdiff(he, pair);
318 }
Jiri Olsa81d5f952012-10-05 16:44:43 +0200319
320 if (wdiff != 0)
321 scnprintf(buf, sizeof(buf), "%14ld", wdiff);
322
323 return scnprintf(hpp->buf, hpp->size, fmt, buf);
324}
325
Jiri Olsaed279da2012-10-05 16:44:45 +0200326static int hpp__header_formula(struct perf_hpp *hpp)
327{
328 const char *fmt = symbol_conf.field_sep ? "%s" : "%70s";
329
330 return scnprintf(hpp->buf, hpp->size, fmt, "Formula");
331}
332
333static int hpp__width_formula(struct perf_hpp *hpp __maybe_unused)
334{
335 return 70;
336}
337
338static int hpp__entry_formula(struct perf_hpp *hpp, struct hist_entry *he)
339{
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100340 struct hist_entry *pair = hist_entry__next_pair(he);
Jiri Olsaed279da2012-10-05 16:44:45 +0200341 const char *fmt = symbol_conf.field_sep ? "%s" : "%-70s";
342 char buf[96] = " ";
343
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100344 if (pair)
345 perf_diff__formula(he, pair, buf, sizeof(buf));
346
Jiri Olsaed279da2012-10-05 16:44:45 +0200347 return scnprintf(hpp->buf, hpp->size, fmt, buf);
348}
349
Jiri Olsa12400052012-10-13 00:06:16 +0200350#define HPP__COLOR_PRINT_FNS(_name) \
351 { \
352 .header = hpp__header_ ## _name, \
353 .width = hpp__width_ ## _name, \
354 .color = hpp__color_ ## _name, \
355 .entry = hpp__entry_ ## _name \
356 }
Namhyung Kimea251d52012-09-03 11:53:06 +0900357
Jiri Olsa12400052012-10-13 00:06:16 +0200358#define HPP__PRINT_FNS(_name) \
359 { \
360 .header = hpp__header_ ## _name, \
361 .width = hpp__width_ ## _name, \
362 .entry = hpp__entry_ ## _name \
363 }
Namhyung Kimea251d52012-09-03 11:53:06 +0900364
365struct perf_hpp_fmt perf_hpp__format[] = {
Jiri Olsa12400052012-10-13 00:06:16 +0200366 HPP__COLOR_PRINT_FNS(baseline),
367 HPP__COLOR_PRINT_FNS(overhead),
368 HPP__COLOR_PRINT_FNS(overhead_sys),
369 HPP__COLOR_PRINT_FNS(overhead_us),
370 HPP__COLOR_PRINT_FNS(overhead_guest_sys),
371 HPP__COLOR_PRINT_FNS(overhead_guest_us),
372 HPP__PRINT_FNS(samples),
373 HPP__PRINT_FNS(period),
374 HPP__PRINT_FNS(period_baseline),
375 HPP__PRINT_FNS(delta),
376 HPP__PRINT_FNS(ratio),
377 HPP__PRINT_FNS(wdiff),
Jiri Olsa12400052012-10-13 00:06:16 +0200378 HPP__PRINT_FNS(formula)
Namhyung Kimea251d52012-09-03 11:53:06 +0900379};
380
Jiri Olsa12400052012-10-13 00:06:16 +0200381LIST_HEAD(perf_hpp__list);
382
Namhyung Kim4fb71072013-01-22 18:09:34 +0900383
Namhyung Kimea251d52012-09-03 11:53:06 +0900384#undef HPP__COLOR_PRINT_FNS
385#undef HPP__PRINT_FNS
386
Namhyung Kim4fb71072013-01-22 18:09:34 +0900387#undef HPP_PERCENT_FNS
388#undef HPP_RAW_FNS
389
390#undef __HPP_HEADER_FN
391#undef __HPP_WIDTH_FN
392#undef __HPP_COLOR_PERCENT_FN
393#undef __HPP_ENTRY_PERCENT_FN
394#undef __HPP_ENTRY_RAW_FN
395
396
Jiri Olsa1d778222012-10-04 21:49:39 +0900397void perf_hpp__init(void)
Namhyung Kimea251d52012-09-03 11:53:06 +0900398{
399 if (symbol_conf.show_cpu_utilization) {
Jiri Olsa12400052012-10-13 00:06:16 +0200400 perf_hpp__column_enable(PERF_HPP__OVERHEAD_SYS);
401 perf_hpp__column_enable(PERF_HPP__OVERHEAD_US);
Namhyung Kimea251d52012-09-03 11:53:06 +0900402
403 if (perf_guest) {
Jiri Olsa12400052012-10-13 00:06:16 +0200404 perf_hpp__column_enable(PERF_HPP__OVERHEAD_GUEST_SYS);
405 perf_hpp__column_enable(PERF_HPP__OVERHEAD_GUEST_US);
Namhyung Kimea251d52012-09-03 11:53:06 +0900406 }
407 }
408
409 if (symbol_conf.show_nr_samples)
Jiri Olsa12400052012-10-13 00:06:16 +0200410 perf_hpp__column_enable(PERF_HPP__SAMPLES);
Namhyung Kimea251d52012-09-03 11:53:06 +0900411
412 if (symbol_conf.show_total_period)
Jiri Olsa12400052012-10-13 00:06:16 +0200413 perf_hpp__column_enable(PERF_HPP__PERIOD);
Jiri Olsa1d778222012-10-04 21:49:39 +0900414}
Namhyung Kimea251d52012-09-03 11:53:06 +0900415
Jiri Olsa12400052012-10-13 00:06:16 +0200416void perf_hpp__column_register(struct perf_hpp_fmt *format)
417{
418 list_add_tail(&format->list, &perf_hpp__list);
419}
420
421void perf_hpp__column_enable(unsigned col)
Jiri Olsa1d778222012-10-04 21:49:39 +0900422{
423 BUG_ON(col >= PERF_HPP__MAX_INDEX);
Jiri Olsa12400052012-10-13 00:06:16 +0200424 perf_hpp__column_register(&perf_hpp__format[col]);
Namhyung Kimea251d52012-09-03 11:53:06 +0900425}
426
427static inline void advance_hpp(struct perf_hpp *hpp, int inc)
428{
429 hpp->buf += inc;
430 hpp->size -= inc;
431}
432
433int hist_entry__period_snprintf(struct perf_hpp *hpp, struct hist_entry *he,
434 bool color)
435{
436 const char *sep = symbol_conf.field_sep;
Jiri Olsa12400052012-10-13 00:06:16 +0200437 struct perf_hpp_fmt *fmt;
Namhyung Kimea251d52012-09-03 11:53:06 +0900438 char *start = hpp->buf;
Jiri Olsa12400052012-10-13 00:06:16 +0200439 int ret;
Jiri Olsa5395a042012-10-04 21:49:37 +0900440 bool first = true;
Namhyung Kimea251d52012-09-03 11:53:06 +0900441
442 if (symbol_conf.exclude_other && !he->parent)
443 return 0;
444
Jiri Olsa12400052012-10-13 00:06:16 +0200445 perf_hpp__for_each_format(fmt) {
Jiri Olsac0d246b2012-10-20 22:14:10 +0200446 /*
447 * If there's no field_sep, we still need
448 * to display initial ' '.
449 */
Jiri Olsa5395a042012-10-04 21:49:37 +0900450 if (!sep || !first) {
Namhyung Kimea251d52012-09-03 11:53:06 +0900451 ret = scnprintf(hpp->buf, hpp->size, "%s", sep ?: " ");
452 advance_hpp(hpp, ret);
Jiri Olsac0d246b2012-10-20 22:14:10 +0200453 } else
Jiri Olsa5395a042012-10-04 21:49:37 +0900454 first = false;
Namhyung Kimea251d52012-09-03 11:53:06 +0900455
Jiri Olsa12400052012-10-13 00:06:16 +0200456 if (color && fmt->color)
457 ret = fmt->color(hpp, he);
Namhyung Kimea251d52012-09-03 11:53:06 +0900458 else
Jiri Olsa12400052012-10-13 00:06:16 +0200459 ret = fmt->entry(hpp, he);
Namhyung Kimea251d52012-09-03 11:53:06 +0900460
461 advance_hpp(hpp, ret);
462 }
463
464 return hpp->buf - start;
465}
466
467int hist_entry__sort_snprintf(struct hist_entry *he, char *s, size_t size,
468 struct hists *hists)
469{
470 const char *sep = symbol_conf.field_sep;
471 struct sort_entry *se;
472 int ret = 0;
473
474 list_for_each_entry(se, &hist_entry__sort_list, list) {
475 if (se->elide)
476 continue;
477
478 ret += scnprintf(s + ret, size - ret, "%s", sep ?: " ");
479 ret += se->se_snprintf(he, s + ret, size - ret,
480 hists__col_len(hists, se->se_width_idx));
481 }
482
483 return ret;
484}
Namhyung Kim7e62ef42012-09-03 11:53:08 +0900485
486/*
487 * See hists__fprintf to match the column widths
488 */
489unsigned int hists__sort_list_width(struct hists *hists)
490{
Jiri Olsa12400052012-10-13 00:06:16 +0200491 struct perf_hpp_fmt *fmt;
Namhyung Kim7e62ef42012-09-03 11:53:08 +0900492 struct sort_entry *se;
Jiri Olsa12400052012-10-13 00:06:16 +0200493 int i = 0, ret = 0;
Namhyung Kim5b9e2142013-01-22 18:09:37 +0900494 struct perf_hpp dummy_hpp = {
495 .ptr = hists_to_evsel(hists),
496 };
Namhyung Kim7e62ef42012-09-03 11:53:08 +0900497
Jiri Olsa12400052012-10-13 00:06:16 +0200498 perf_hpp__for_each_format(fmt) {
Namhyung Kim7e62ef42012-09-03 11:53:08 +0900499 if (i)
500 ret += 2;
501
Namhyung Kim5b9e2142013-01-22 18:09:37 +0900502 ret += fmt->width(&dummy_hpp);
Namhyung Kim7e62ef42012-09-03 11:53:08 +0900503 }
504
505 list_for_each_entry(se, &hist_entry__sort_list, list)
506 if (!se->elide)
507 ret += 2 + hists__col_len(hists, se->se_width_idx);
508
509 if (verbose) /* Addr + origin */
510 ret += 3 + BITS_PER_LONG / 4;
511
512 return ret;
513}