blob: fbabfd8a215df5cb02ade975d4f58e4ebaeb42b2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
John Kacur3d1d07e2009-09-28 15:32:55 +02002#ifndef __PERF_HIST_H
3#define __PERF_HIST_H
John Kacur3d1d07e2009-09-28 15:32:55 +02004
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -02005#include <linux/types.h>
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03006#include <pthread.h>
John Kacur3d1d07e2009-09-28 15:32:55 +02007#include "callchain.h"
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -03008#include "evsel.h"
Namhyung Kim68d80752012-11-02 14:50:06 +09009#include "header.h"
Jiri Olsa9754c4f2013-10-25 13:24:53 +020010#include "color.h"
Namhyung Kimc1fb5652013-10-11 14:15:38 +090011#include "ui/progress.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020012
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020013struct hist_entry;
Jiri Olsaa5051972016-07-05 08:56:05 +020014struct hist_entry_ops;
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020015struct addr_location;
16struct symbol;
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -030017
Namhyung Kimb3cef7f2014-03-17 16:59:21 -030018enum hist_filter {
19 HIST_FILTER__DSO,
20 HIST_FILTER__THREAD,
21 HIST_FILTER__PARENT,
22 HIST_FILTER__SYMBOL,
23 HIST_FILTER__GUEST,
24 HIST_FILTER__HOST,
Kan Liang21394d92015-09-04 10:45:44 -040025 HIST_FILTER__SOCKET,
Jiri Olsa9857b712016-08-17 14:55:23 +020026 HIST_FILTER__C2C,
Namhyung Kimb3cef7f2014-03-17 16:59:21 -030027};
28
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030029enum hist_column {
30 HISTC_SYMBOL,
31 HISTC_DSO,
32 HISTC_THREAD,
33 HISTC_COMM,
Hari Bathinid890a982017-03-08 02:12:13 +053034 HISTC_CGROUP_ID,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030035 HISTC_PARENT,
36 HISTC_CPU,
Kan Liang2e7ea3a2015-09-04 10:45:43 -040037 HISTC_SOCKET,
Namhyung Kimdfd3b2f2013-04-05 10:26:31 +090038 HISTC_SRCLINE,
Andi Kleen31191a82015-08-07 15:54:24 -070039 HISTC_SRCFILE,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010040 HISTC_MISPREDICT,
Andi Kleenf5d05bc2013-09-20 07:40:41 -070041 HISTC_IN_TX,
42 HISTC_ABORT,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010043 HISTC_SYMBOL_FROM,
44 HISTC_SYMBOL_TO,
45 HISTC_DSO_FROM,
46 HISTC_DSO_TO,
Andi Kleen05484292013-01-24 16:10:29 +010047 HISTC_LOCAL_WEIGHT,
48 HISTC_GLOBAL_WEIGHT,
Stephane Eranian98a3b322013-01-24 16:10:35 +010049 HISTC_MEM_DADDR_SYMBOL,
50 HISTC_MEM_DADDR_DSO,
Kan Liang8780fb22017-08-29 13:11:09 -040051 HISTC_MEM_PHYS_DADDR,
Stephane Eranian98a3b322013-01-24 16:10:35 +010052 HISTC_MEM_LOCKED,
53 HISTC_MEM_TLB,
54 HISTC_MEM_LVL,
55 HISTC_MEM_SNOOP,
Don Zickus9b32ba72014-06-01 15:38:29 +020056 HISTC_MEM_DCACHELINE,
Don Zickus28e6db22015-10-05 20:06:07 +020057 HISTC_MEM_IADDR_SYMBOL,
Andi Kleen475eeab2013-09-20 07:40:43 -070058 HISTC_TRANSACTION,
Andi Kleen0e332f02015-07-18 08:24:46 -070059 HISTC_CYCLES,
Andi Kleen508be0d2016-05-20 13:15:08 -070060 HISTC_SRCLINE_FROM,
61 HISTC_SRCLINE_TO,
Namhyung Kima34bb6a2015-12-23 02:07:04 +090062 HISTC_TRACE,
Charles Baylis7768f8d2017-02-24 13:32:56 +000063 HISTC_SYM_SIZE,
Kim Phillipsb74d12d2018-03-27 06:09:56 -050064 HISTC_DSO_SIZE,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030065 HISTC_NR_COLS, /* Last entry */
66};
67
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020068struct thread;
69struct dso;
70
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030071struct hists {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030072 struct rb_root entries_in_array[2];
73 struct rb_root *entries_in;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030074 struct rb_root entries;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030075 struct rb_root entries_collapsed;
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -030076 u64 nr_entries;
Namhyung Kim1ab1fa52013-12-26 15:11:52 +090077 u64 nr_non_filtered_entries;
Namhyung Kim467ef102016-02-16 23:08:19 +090078 u64 callchain_period;
79 u64 callchain_non_filtered_period;
Arnaldo Carvalho de Melof3b623b2015-03-02 22:21:35 -030080 struct thread *thread_filter;
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020081 const struct dso *dso_filter;
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -020082 const char *uid_filter_str;
Namhyung Kime94d53e2012-03-16 17:50:51 +090083 const char *symbol_filter_str;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030084 pthread_mutex_t lock;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030085 struct events_stats stats;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030086 u64 event_stream;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030087 u16 col_len[HISTC_NR_COLS];
Kan Liang21394d92015-09-04 10:45:44 -040088 int socket_filter;
Jiri Olsa5b658552016-01-18 10:24:22 +010089 struct perf_hpp_list *hpp_list;
Namhyung Kimc3bc0c42016-03-07 16:44:45 -030090 struct list_head hpp_formats;
Namhyung Kim2dbbe9f2016-03-07 16:44:48 -030091 int nr_hpp_node;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030092};
93
Jiri Olsa52225032016-05-03 13:54:42 +020094#define hists__has(__h, __f) (__h)->hpp_list->__f
95
Namhyung Kim69bcb012013-10-30 09:40:34 +090096struct hist_entry_iter;
97
98struct hist_iter_ops {
99 int (*prepare_entry)(struct hist_entry_iter *, struct addr_location *);
100 int (*add_single_entry)(struct hist_entry_iter *, struct addr_location *);
101 int (*next_entry)(struct hist_entry_iter *, struct addr_location *);
102 int (*add_next_entry)(struct hist_entry_iter *, struct addr_location *);
103 int (*finish_entry)(struct hist_entry_iter *, struct addr_location *);
104};
105
106struct hist_entry_iter {
107 int total;
108 int curr;
109
110 bool hide_unresolved;
111
112 struct perf_evsel *evsel;
113 struct perf_sample *sample;
114 struct hist_entry *he;
115 struct symbol *parent;
116 void *priv;
117
118 const struct hist_iter_ops *ops;
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900119 /* user-defined callback function (optional) */
120 int (*add_entry_cb)(struct hist_entry_iter *iter,
121 struct addr_location *al, bool single, void *arg);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900122};
123
124extern const struct hist_iter_ops hist_iter_normal;
125extern const struct hist_iter_ops hist_iter_branch;
126extern const struct hist_iter_ops hist_iter_mem;
Namhyung Kim7a13aa22012-09-11 14:13:04 +0900127extern const struct hist_iter_ops hist_iter_cumulative;
Namhyung Kim69bcb012013-10-30 09:40:34 +0900128
Jiri Olsa0102ef32016-06-14 20:19:21 +0200129struct hist_entry *hists__add_entry(struct hists *hists,
130 struct addr_location *al,
131 struct symbol *parent,
132 struct branch_info *bi,
133 struct mem_info *mi,
134 struct perf_sample *sample,
135 bool sample_self);
Jiri Olsaa5051972016-07-05 08:56:05 +0200136
137struct hist_entry *hists__add_entry_ops(struct hists *hists,
138 struct hist_entry_ops *ops,
139 struct addr_location *al,
140 struct symbol *sym_parent,
141 struct branch_info *bi,
142 struct mem_info *mi,
143 struct perf_sample *sample,
144 bool sample_self);
145
Namhyung Kim69bcb012013-10-30 09:40:34 +0900146int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
Namhyung Kim9d3c02d2014-01-07 17:02:25 +0900147 int max_stack_depth, void *arg);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900148
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -0300149struct perf_hpp;
150struct perf_hpp_fmt;
151
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200152int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
153int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
Andi Kleen475eeab2013-09-20 07:40:43 -0700154int hist_entry__transaction_len(void);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300155int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
Namhyung Kim000078b2012-08-20 13:52:06 +0900156 struct hists *hists);
Arnaldo Carvalho de Melo89fee702016-02-11 17:14:13 -0300157int hist_entry__snprintf_alignment(struct hist_entry *he, struct perf_hpp *hpp,
158 struct perf_hpp_fmt *fmt, int printed);
Arnaldo Carvalho de Melo6733d1b2014-12-19 12:31:40 -0300159void hist_entry__delete(struct hist_entry *he);
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -0200160
Jiri Olsa52c5cc32016-08-01 20:02:34 +0200161typedef int (*hists__resort_cb_t)(struct hist_entry *he);
162
Jiri Olsa452ce032016-01-18 10:24:00 +0100163void perf_evsel__output_resort(struct perf_evsel *evsel, struct ui_progress *prog);
Namhyung Kim740b97f2014-12-22 13:44:10 +0900164void hists__output_resort(struct hists *hists, struct ui_progress *prog);
Jiri Olsa52c5cc32016-08-01 20:02:34 +0200165void hists__output_resort_cb(struct hists *hists, struct ui_progress *prog,
166 hists__resort_cb_t cb);
Namhyung Kimbba58cd2016-02-16 23:08:25 +0900167int hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300168
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200169void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
Namhyung Kim701937b2014-08-12 17:16:05 +0900170void hists__delete_entries(struct hists *hists);
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -0300171void hists__output_recalc_col_len(struct hists *hists, int max_rows);
172
Namhyung Kimf2148332014-01-14 11:52:48 +0900173u64 hists__total_period(struct hists *hists);
Namhyung Kim9283ba92014-04-24 16:37:26 +0900174void hists__reset_stats(struct hists *hists);
Namhyung Kim62638352014-04-24 16:21:46 +0900175void hists__inc_stats(struct hists *hists, struct hist_entry *h);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300176void hists__inc_nr_events(struct hists *hists, u32 type);
Namhyung Kim1844dbc2014-05-28 14:12:18 +0900177void hists__inc_nr_samples(struct hists *hists, bool filtered);
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300178void events_stats__inc(struct events_stats *stats, u32 type);
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -0300179size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300180
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300181size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
Jiri Olsad05e3aa2016-06-14 20:19:18 +0200182 int max_cols, float min_pcnt, FILE *fp,
183 bool use_callchain);
Arnaldo Carvalho de Melo2a1731f2014-10-10 15:49:21 -0300184size_t perf_evlist__fprintf_nr_events(struct perf_evlist *evlist, FILE *fp);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300185
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -0200186void hists__filter_by_dso(struct hists *hists);
187void hists__filter_by_thread(struct hists *hists);
Namhyung Kime94d53e2012-03-16 17:50:51 +0900188void hists__filter_by_symbol(struct hists *hists);
Kan Liang84734b02015-09-04 10:45:45 -0400189void hists__filter_by_socket(struct hists *hists);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300190
Namhyung Kim268397c2014-04-22 14:49:31 +0900191static inline bool hists__has_filter(struct hists *hists)
192{
193 return hists->thread_filter || hists->dso_filter ||
Kan Liang21394d92015-09-04 10:45:44 -0400194 hists->symbol_filter_str || (hists->socket_filter > -1);
Namhyung Kim268397c2014-04-22 14:49:31 +0900195}
196
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300197u16 hists__col_len(struct hists *hists, enum hist_column col);
198void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
199bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900200void hists__reset_col_len(struct hists *hists);
201void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300202
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300203void hists__match(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -0300204int hists__link(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300205
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -0300206struct hists_evsel {
207 struct perf_evsel evsel;
208 struct hists hists;
209};
210
211static inline struct perf_evsel *hists_to_evsel(struct hists *hists)
212{
213 struct hists_evsel *hevsel = container_of(hists, struct hists_evsel, hists);
214 return &hevsel->evsel;
215}
216
217static inline struct hists *evsel__hists(struct perf_evsel *evsel)
218{
219 struct hists_evsel *hevsel = (struct hists_evsel *)evsel;
220 return &hevsel->hists;
221}
222
223int hists__init(void);
Jiri Olsa5b658552016-01-18 10:24:22 +0100224int __hists__init(struct hists *hists, struct perf_hpp_list *hpp_list);
Namhyung Kimfc284be2016-01-07 10:14:10 +0100225
226struct rb_root *hists__get_rotate_entries_in(struct hists *hists);
Arnaldo Carvalho de Meloa635fc52014-10-09 16:16:00 -0300227
Namhyung Kimea251d52012-09-03 11:53:06 +0900228struct perf_hpp {
229 char *buf;
230 size_t size;
Namhyung Kimea251d52012-09-03 11:53:06 +0900231 const char *sep;
Namhyung Kimea251d52012-09-03 11:53:06 +0900232 void *ptr;
233};
234
235struct perf_hpp_fmt {
Namhyung Kim1ecd4452014-07-31 14:47:40 +0900236 const char *name;
Namhyung Kim94a07932014-03-10 16:43:52 +0900237 int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
Jiri Olsa29659ab2016-08-07 17:28:30 +0200238 struct hists *hists, int line, int *span);
Namhyung Kim94a07932014-03-10 16:43:52 +0900239 int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
Jiri Olsada1b0402016-06-14 20:19:20 +0200240 struct hists *hists);
Jiri Olsa2c5d4b42013-01-31 23:31:11 +0100241 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
242 struct hist_entry *he);
243 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
244 struct hist_entry *he);
Namhyung Kim87bbdf72015-01-08 09:45:46 +0900245 int64_t (*cmp)(struct perf_hpp_fmt *fmt,
246 struct hist_entry *a, struct hist_entry *b);
247 int64_t (*collapse)(struct perf_hpp_fmt *fmt,
248 struct hist_entry *a, struct hist_entry *b);
249 int64_t (*sort)(struct perf_hpp_fmt *fmt,
250 struct hist_entry *a, struct hist_entry *b);
Jiri Olsa97358082016-01-18 10:24:03 +0100251 bool (*equal)(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b);
Jiri Olsa564132f2016-01-18 10:24:09 +0100252 void (*free)(struct perf_hpp_fmt *fmt);
Jiri Olsa12400052012-10-13 00:06:16 +0200253
254 struct list_head list;
Namhyung Kim8b536992014-03-03 11:46:55 +0900255 struct list_head sort_list;
Jiri Olsaf2998422014-05-23 17:15:47 +0200256 bool elide;
Namhyung Kime0d66c72014-07-31 14:47:37 +0900257 int len;
Namhyung Kim5b591662014-07-31 14:47:38 +0900258 int user_len;
Jiri Olsab21a7632016-01-18 10:24:01 +0100259 int idx;
Namhyung Kim4b633eb2016-03-07 16:44:43 -0300260 int level;
Namhyung Kimea251d52012-09-03 11:53:06 +0900261};
262
Jiri Olsa7c31e102016-01-18 10:24:12 +0100263struct perf_hpp_list {
264 struct list_head fields;
265 struct list_head sorts;
Jiri Olsa52225032016-05-03 13:54:42 +0200266
Jiri Olsaf8e67102016-08-07 17:28:26 +0200267 int nr_header_lines;
Jiri Olsa52225032016-05-03 13:54:42 +0200268 int need_collapse;
Jiri Olsade7e6a72016-05-03 13:54:43 +0200269 int parent;
Jiri Olsa2e0453a2016-05-03 13:54:44 +0200270 int sym;
Jiri Olsa69849fc2016-05-03 13:54:45 +0200271 int dso;
Jiri Olsa35a634f2016-05-03 13:54:46 +0200272 int socket;
Jiri Olsafa829112016-05-03 13:54:47 +0200273 int thread;
Jiri Olsa7cecb7f2016-05-03 13:54:48 +0200274 int comm;
Jiri Olsa7c31e102016-01-18 10:24:12 +0100275};
276
277extern struct perf_hpp_list perf_hpp_list;
Jiri Olsa12400052012-10-13 00:06:16 +0200278
Namhyung Kimc3bc0c42016-03-07 16:44:45 -0300279struct perf_hpp_list_node {
280 struct list_head list;
281 struct perf_hpp_list hpp;
282 int level;
Namhyung Kim1b2dbbf2016-03-07 16:44:46 -0300283 bool skip;
Namhyung Kimc3bc0c42016-03-07 16:44:45 -0300284};
285
Jiri Olsaebdd98e2016-01-18 10:24:14 +0100286void perf_hpp_list__column_register(struct perf_hpp_list *list,
287 struct perf_hpp_fmt *format);
288void perf_hpp_list__register_sort_field(struct perf_hpp_list *list,
289 struct perf_hpp_fmt *format);
Namhyung Kima1c9f972017-01-18 14:14:57 +0900290void perf_hpp_list__prepend_sort_field(struct perf_hpp_list *list,
291 struct perf_hpp_fmt *format);
Jiri Olsaebdd98e2016-01-18 10:24:14 +0100292
293static inline void perf_hpp__column_register(struct perf_hpp_fmt *format)
294{
295 perf_hpp_list__column_register(&perf_hpp_list, format);
296}
297
298static inline void perf_hpp__register_sort_field(struct perf_hpp_fmt *format)
299{
300 perf_hpp_list__register_sort_field(&perf_hpp_list, format);
301}
302
Namhyung Kima1c9f972017-01-18 14:14:57 +0900303static inline void perf_hpp__prepend_sort_field(struct perf_hpp_fmt *format)
304{
305 perf_hpp_list__prepend_sort_field(&perf_hpp_list, format);
306}
307
Jiri Olsacf094042016-01-18 10:24:17 +0100308#define perf_hpp_list__for_each_format(_list, format) \
309 list_for_each_entry(format, &(_list)->fields, list)
Jiri Olsa12400052012-10-13 00:06:16 +0200310
Jiri Olsa7a1799e2016-01-18 10:24:18 +0100311#define perf_hpp_list__for_each_format_safe(_list, format, tmp) \
312 list_for_each_entry_safe(format, tmp, &(_list)->fields, list)
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900313
Jiri Olsad29a4972016-01-18 10:24:19 +0100314#define perf_hpp_list__for_each_sort_list(_list, format) \
315 list_for_each_entry(format, &(_list)->sorts, sort_list)
Namhyung Kim8b536992014-03-03 11:46:55 +0900316
Jiri Olsa1a8ebd22016-01-18 10:24:20 +0100317#define perf_hpp_list__for_each_sort_list_safe(_list, format, tmp) \
318 list_for_each_entry_safe(format, tmp, &(_list)->sorts, sort_list)
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900319
Jiri Olsaf0786af2016-01-18 10:24:23 +0100320#define hists__for_each_format(hists, format) \
321 perf_hpp_list__for_each_format((hists)->hpp_list, fmt)
322
Jiri Olsaaa6f50a2016-01-18 10:24:24 +0100323#define hists__for_each_sort_list(hists, format) \
324 perf_hpp_list__for_each_sort_list((hists)->hpp_list, fmt)
325
Namhyung Kimea251d52012-09-03 11:53:06 +0900326extern struct perf_hpp_fmt perf_hpp__format[];
327
328enum {
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100329 /* Matches perf_hpp__format array. */
Namhyung Kimea251d52012-09-03 11:53:06 +0900330 PERF_HPP__OVERHEAD,
331 PERF_HPP__OVERHEAD_SYS,
332 PERF_HPP__OVERHEAD_US,
333 PERF_HPP__OVERHEAD_GUEST_SYS,
334 PERF_HPP__OVERHEAD_GUEST_US,
Namhyung Kim594dcbf2013-10-30 16:06:59 +0900335 PERF_HPP__OVERHEAD_ACC,
Namhyung Kimea251d52012-09-03 11:53:06 +0900336 PERF_HPP__SAMPLES,
337 PERF_HPP__PERIOD,
Namhyung Kimea251d52012-09-03 11:53:06 +0900338
339 PERF_HPP__MAX_INDEX
340};
341
Jiri Olsa1d778222012-10-04 21:49:39 +0900342void perf_hpp__init(void);
Namhyung Kim77284de2013-12-16 16:55:13 +0900343void perf_hpp__column_unregister(struct perf_hpp_fmt *format);
Namhyung Kim77284de2013-12-16 16:55:13 +0900344void perf_hpp__cancel_cumulate(void);
Jiri Olsa43e0a682016-01-18 10:24:21 +0100345void perf_hpp__setup_output_field(struct perf_hpp_list *list);
346void perf_hpp__reset_output_field(struct perf_hpp_list *list);
347void perf_hpp__append_sort_keys(struct perf_hpp_list *list);
Namhyung Kimc3bc0c42016-03-07 16:44:45 -0300348int perf_hpp__setup_hists_formats(struct perf_hpp_list *list,
349 struct perf_evlist *evlist);
Jiri Olsa43e0a682016-01-18 10:24:21 +0100350
Namhyung Kima7d945b2014-03-04 10:46:34 +0900351
352bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format);
Namhyung Kim361459f2015-12-23 02:07:08 +0900353bool perf_hpp__is_dynamic_entry(struct perf_hpp_fmt *format);
354bool perf_hpp__defined_dynamic_entry(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kima9c6e462016-02-25 00:13:33 +0900355bool perf_hpp__is_trace_entry(struct perf_hpp_fmt *fmt);
356bool perf_hpp__is_srcline_entry(struct perf_hpp_fmt *fmt);
357bool perf_hpp__is_srcfile_entry(struct perf_hpp_fmt *fmt);
Namhyung Kim4945cf22016-03-09 22:46:57 +0900358bool perf_hpp__is_thread_entry(struct perf_hpp_fmt *fmt);
359bool perf_hpp__is_comm_entry(struct perf_hpp_fmt *fmt);
360bool perf_hpp__is_dso_entry(struct perf_hpp_fmt *fmt);
361bool perf_hpp__is_sym_entry(struct perf_hpp_fmt *fmt);
Jiri Olsaf2998422014-05-23 17:15:47 +0200362
Namhyung Kimc3bc0c42016-03-07 16:44:45 -0300363struct perf_hpp_fmt *perf_hpp_fmt__dup(struct perf_hpp_fmt *fmt);
364
Namhyung Kim54430102016-02-25 00:13:37 +0900365int hist_entry__filter(struct hist_entry *he, int type, const void *arg);
366
Namhyung Kim361459f2015-12-23 02:07:08 +0900367static inline bool perf_hpp__should_skip(struct perf_hpp_fmt *format,
368 struct hists *hists)
Jiri Olsaf2998422014-05-23 17:15:47 +0200369{
Namhyung Kim361459f2015-12-23 02:07:08 +0900370 if (format->elide)
371 return true;
372
373 if (perf_hpp__is_dynamic_entry(format) &&
374 !perf_hpp__defined_dynamic_entry(format, hists))
375 return true;
376
377 return false;
Jiri Olsaf2998422014-05-23 17:15:47 +0200378}
379
Namhyung Kim678a5002014-03-20 11:18:54 +0900380void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kime0d66c72014-07-31 14:47:37 +0900381void perf_hpp__reset_sort_width(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kim5b591662014-07-31 14:47:38 +0900382void perf_hpp__set_user_width(const char *width_list_str);
Namhyung Kime3b60bc2016-09-20 14:30:24 +0900383void hists__reset_column_width(struct hists *hists);
Namhyung Kimea251d52012-09-03 11:53:06 +0900384
Namhyung Kim2f6d9002014-03-03 10:14:05 +0900385typedef u64 (*hpp_field_fn)(struct hist_entry *he);
386typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
Namhyung Kima0088ad2014-03-03 10:14:04 +0900387typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
Namhyung Kim4a621092014-03-03 10:14:03 +0900388
Namhyung Kim5b591662014-07-31 14:47:38 +0900389int hpp__fmt(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
390 struct hist_entry *he, hpp_field_fn get_field,
391 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
392int hpp__fmt_acc(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
393 struct hist_entry *he, hpp_field_fn get_field,
394 const char *fmtstr, hpp_snprint_fn print_fn, bool fmt_percent);
Namhyung Kim4a621092014-03-03 10:14:03 +0900395
Namhyung Kima0088ad2014-03-03 10:14:04 +0900396static inline void advance_hpp(struct perf_hpp *hpp, int inc)
397{
398 hpp->buf += inc;
399 hpp->size -= inc;
400}
401
Jiri Olsa9754c4f2013-10-25 13:24:53 +0200402static inline size_t perf_hpp__use_color(void)
403{
404 return !symbol_conf.field_sep;
405}
406
407static inline size_t perf_hpp__color_overhead(void)
408{
409 return perf_hpp__use_color() ?
410 (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX
411 : 0;
412}
413
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300414struct perf_evlist;
415
Namhyung Kim9783adf2012-11-02 14:50:05 +0900416struct hist_browser_timer {
417 void (*timer)(void *arg);
418 void *arg;
419 int refresh;
420};
421
Ingo Molnar89fe8082013-09-30 12:07:11 +0200422#ifdef HAVE_SLANG_SUPPORT
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900423#include "../ui/keysyms.h"
Arnaldo Carvalho de Melod5dbc512015-03-17 18:27:28 -0300424int map_symbol__tui_annotate(struct map_symbol *ms, struct perf_evsel *evsel,
425 struct hist_browser_timer *hbt);
426
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900427int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900428 struct hist_browser_timer *hbt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900429
430int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
Namhyung Kim68d80752012-11-02 14:50:06 +0900431 struct hist_browser_timer *hbt,
Namhyung Kim064f1982013-05-14 11:09:04 +0900432 float min_pcnt,
Kan Liang06cc1a42018-01-18 13:26:29 -0800433 struct perf_env *env,
434 bool warn_lost_event);
Feng Tang66517822012-10-30 11:56:04 +0800435int script_browse(const char *script_opt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900436#else
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300437static inline
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300438int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
439 const char *help __maybe_unused,
Namhyung Kim68d80752012-11-02 14:50:06 +0900440 struct hist_browser_timer *hbt __maybe_unused,
Namhyung Kim064f1982013-05-14 11:09:04 +0900441 float min_pcnt __maybe_unused,
Kan Liang06cc1a42018-01-18 13:26:29 -0800442 struct perf_env *env __maybe_unused,
443 bool warn_lost_event __maybe_unused)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300444{
445 return 0;
446}
Arnaldo Carvalho de Melod5dbc512015-03-17 18:27:28 -0300447static inline int map_symbol__tui_annotate(struct map_symbol *ms __maybe_unused,
448 struct perf_evsel *evsel __maybe_unused,
449 struct hist_browser_timer *hbt __maybe_unused)
450{
451 return 0;
452}
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300453
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300454static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
455 struct perf_evsel *evsel __maybe_unused,
456 struct hist_browser_timer *hbt __maybe_unused)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300457{
458 return 0;
459}
Feng Tang66517822012-10-30 11:56:04 +0800460
Namhyung Kim4f746c92012-11-12 14:14:00 +0900461static inline int script_browse(const char *script_opt __maybe_unused)
Feng Tang66517822012-10-30 11:56:04 +0800462{
463 return 0;
464}
465
Michael Ellerman1e825ef2013-02-26 16:02:02 +1100466#define K_LEFT -1000
467#define K_RIGHT -2000
Michael Ellerman5f7439e2013-02-26 16:02:03 +1100468#define K_SWITCH_INPUT_DATA -3000
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300469#endif
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300470
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300471unsigned int hists__sort_list_width(struct hists *hists);
Namhyung Kima7b58952016-02-26 21:13:16 +0900472unsigned int hists__overhead_width(struct hists *hists);
Namhyung Kim33db4562014-02-07 12:06:07 +0900473
Andi Kleen578499982015-07-18 08:24:49 -0700474void hist__account_cycles(struct branch_stack *bs, struct addr_location *al,
475 struct perf_sample *sample, bool nonany_branch_mode);
476
Namhyung Kim33db4562014-02-07 12:06:07 +0900477struct option;
Arnaldo Carvalho de Melob8f8eb82016-03-22 13:09:37 -0300478int parse_filter_percentage(const struct option *opt, const char *arg, int unset);
Namhyung Kim0b93da12014-01-14 12:02:15 +0900479int perf_hist_config(const char *var, const char *value);
Namhyung Kim33db4562014-02-07 12:06:07 +0900480
Jiri Olsa94b3dc32016-01-18 10:24:13 +0100481void perf_hpp_list__init(struct perf_hpp_list *list);
482
Namhyung Kim8c018722016-02-25 00:13:36 +0900483enum hierarchy_move_dir {
484 HMD_NORMAL,
485 HMD_FORCE_SIBLING,
486 HMD_FORCE_CHILD,
487};
488
489struct rb_node *rb_hierarchy_last(struct rb_node *node);
490struct rb_node *__rb_hierarchy_next(struct rb_node *node,
491 enum hierarchy_move_dir hmd);
492struct rb_node *rb_hierarchy_prev(struct rb_node *node);
493
494static inline struct rb_node *rb_hierarchy_next(struct rb_node *node)
495{
496 return __rb_hierarchy_next(node, HMD_NORMAL);
497}
498
Namhyung Kimef86d682016-02-25 00:13:41 +0900499#define HIERARCHY_INDENT 3
500
Namhyung Kima7b58952016-02-26 21:13:16 +0900501bool hist_entry__has_hierarchy_children(struct hist_entry *he, float limit);
Jiri Olsa98ba1602016-09-22 17:36:35 +0200502int hpp_color_scnprintf(struct perf_hpp *hpp, const char *fmt, ...);
503int __hpp__slsmg_color_printf(struct perf_hpp *hpp, const char *fmt, ...);
Jiri Olsabd28d0c2016-09-22 17:36:36 +0200504int __hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp,
505 struct perf_hpp_list *hpp_list);
Jiri Olsa2d831452016-09-22 17:36:37 +0200506int hists__fprintf_headers(struct hists *hists, FILE *fp);
Arnaldo Carvalho de Melo967a4642018-04-02 14:20:20 -0300507int __hists__scnprintf_title(struct hists *hists, char *bf, size_t size, bool show_freq);
508
509static inline int hists__scnprintf_title(struct hists *hists, char *bf, size_t size)
510{
511 return __hists__scnprintf_title(hists, bf, size, true);
512}
Namhyung Kima7b58952016-02-26 21:13:16 +0900513
John Kacur3d1d07e2009-09-28 15:32:55 +0200514#endif /* __PERF_HIST_H */