blob: 8894f184357cd89e570447121eb7822ca1aac55c [file] [log] [blame]
John Kacur3d1d07e2009-09-28 15:32:55 +02001#ifndef __PERF_HIST_H
2#define __PERF_HIST_H
John Kacur3d1d07e2009-09-28 15:32:55 +02003
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -02004#include <linux/types.h>
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -03005#include <pthread.h>
John Kacur3d1d07e2009-09-28 15:32:55 +02006#include "callchain.h"
Namhyung Kim68d80752012-11-02 14:50:06 +09007#include "header.h"
Jiri Olsa9754c4f2013-10-25 13:24:53 +02008#include "color.h"
Namhyung Kimc1fb5652013-10-11 14:15:38 +09009#include "ui/progress.h"
John Kacur3d1d07e2009-09-28 15:32:55 +020010
John Kacur3d1d07e2009-09-28 15:32:55 +020011extern struct callchain_param callchain_param;
John Kacur3d1d07e2009-09-28 15:32:55 +020012
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020013struct hist_entry;
14struct addr_location;
15struct symbol;
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -030016
Namhyung Kimb3cef7f2014-03-17 16:59:21 -030017enum hist_filter {
18 HIST_FILTER__DSO,
19 HIST_FILTER__THREAD,
20 HIST_FILTER__PARENT,
21 HIST_FILTER__SYMBOL,
22 HIST_FILTER__GUEST,
23 HIST_FILTER__HOST,
24};
25
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -030026/*
27 * The kernel collects the number of events it couldn't send in a stretch and
28 * when possible sends this number in a PERF_RECORD_LOST event. The number of
29 * such "chunks" of lost events is stored in .nr_events[PERF_EVENT_LOST] while
30 * total_lost tells exactly how many events the kernel in fact lost, i.e. it is
31 * the sum of all struct lost_event.lost fields reported.
32 *
33 * The total_period is needed because by default auto-freq is used, so
34 * multipling nr_events[PERF_EVENT_SAMPLE] by a frequency isn't possible to get
35 * the total number of low level events, it is necessary to to sum all struct
36 * sample_event.period and stash the result in total_period.
37 */
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030038struct events_stats {
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -030039 u64 total_period;
Namhyung Kim1ab1fa52013-12-26 15:11:52 +090040 u64 total_non_filtered_period;
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -030041 u64 total_lost;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020042 u64 total_invalid_chains;
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -030043 u32 nr_events[PERF_RECORD_HEADER_MAX];
Namhyung Kim1ab1fa52013-12-26 15:11:52 +090044 u32 nr_non_filtered_samples;
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -020045 u32 nr_lost_warned;
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -030046 u32 nr_unknown_events;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020047 u32 nr_invalid_chains;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030048 u32 nr_unknown_id;
Joerg Roedel0c095712012-02-10 18:05:04 +010049 u32 nr_unprocessable_samples;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030050};
51
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030052enum hist_column {
53 HISTC_SYMBOL,
54 HISTC_DSO,
55 HISTC_THREAD,
56 HISTC_COMM,
57 HISTC_PARENT,
58 HISTC_CPU,
Namhyung Kimdfd3b2f2013-04-05 10:26:31 +090059 HISTC_SRCLINE,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010060 HISTC_MISPREDICT,
Andi Kleenf5d05bc2013-09-20 07:40:41 -070061 HISTC_IN_TX,
62 HISTC_ABORT,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010063 HISTC_SYMBOL_FROM,
64 HISTC_SYMBOL_TO,
65 HISTC_DSO_FROM,
66 HISTC_DSO_TO,
Andi Kleen05484292013-01-24 16:10:29 +010067 HISTC_LOCAL_WEIGHT,
68 HISTC_GLOBAL_WEIGHT,
Stephane Eranian98a3b322013-01-24 16:10:35 +010069 HISTC_MEM_DADDR_SYMBOL,
70 HISTC_MEM_DADDR_DSO,
71 HISTC_MEM_LOCKED,
72 HISTC_MEM_TLB,
73 HISTC_MEM_LVL,
74 HISTC_MEM_SNOOP,
Andi Kleen475eeab2013-09-20 07:40:43 -070075 HISTC_TRANSACTION,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030076 HISTC_NR_COLS, /* Last entry */
77};
78
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020079struct thread;
80struct dso;
81
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030082struct hists {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030083 struct rb_root entries_in_array[2];
84 struct rb_root *entries_in;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030085 struct rb_root entries;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030086 struct rb_root entries_collapsed;
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -030087 u64 nr_entries;
Namhyung Kim1ab1fa52013-12-26 15:11:52 +090088 u64 nr_non_filtered_entries;
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020089 const struct thread *thread_filter;
90 const struct dso *dso_filter;
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -020091 const char *uid_filter_str;
Namhyung Kime94d53e2012-03-16 17:50:51 +090092 const char *symbol_filter_str;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030093 pthread_mutex_t lock;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030094 struct events_stats stats;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030095 u64 event_stream;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030096 u16 col_len[HISTC_NR_COLS];
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030097};
98
Namhyung Kim69bcb012013-10-30 09:40:34 +090099struct hist_entry_iter;
100
101struct hist_iter_ops {
102 int (*prepare_entry)(struct hist_entry_iter *, struct addr_location *);
103 int (*add_single_entry)(struct hist_entry_iter *, struct addr_location *);
104 int (*next_entry)(struct hist_entry_iter *, struct addr_location *);
105 int (*add_next_entry)(struct hist_entry_iter *, struct addr_location *);
106 int (*finish_entry)(struct hist_entry_iter *, struct addr_location *);
107};
108
109struct hist_entry_iter {
110 int total;
111 int curr;
112
113 bool hide_unresolved;
114
115 struct perf_evsel *evsel;
116 struct perf_sample *sample;
117 struct hist_entry *he;
118 struct symbol *parent;
119 void *priv;
120
121 const struct hist_iter_ops *ops;
122};
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;
127
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300128struct hist_entry *__hists__add_entry(struct hists *hists,
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -0300129 struct addr_location *al,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +0900130 struct symbol *parent,
131 struct branch_info *bi,
132 struct mem_info *mi, u64 period,
Andi Kleen475eeab2013-09-20 07:40:43 -0700133 u64 weight, u64 transaction);
Namhyung Kim69bcb012013-10-30 09:40:34 +0900134int hist_entry_iter__add(struct hist_entry_iter *iter, struct addr_location *al,
135 struct perf_evsel *evsel, struct perf_sample *sample,
136 int max_stack_depth);
137
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -0200138int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
139int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
Andi Kleen475eeab2013-09-20 07:40:43 -0700140int hist_entry__transaction_len(void);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300141int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
Namhyung Kim000078b2012-08-20 13:52:06 +0900142 struct hists *hists);
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -0200143void hist_entry__free(struct hist_entry *);
144
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300145void hists__output_resort(struct hists *hists);
146void hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300147
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200148void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300149void hists__output_recalc_col_len(struct hists *hists, int max_rows);
150
Namhyung Kimf2148332014-01-14 11:52:48 +0900151u64 hists__total_period(struct hists *hists);
Namhyung Kim9283ba92014-04-24 16:37:26 +0900152void hists__reset_stats(struct hists *hists);
Namhyung Kim62638352014-04-24 16:21:46 +0900153void hists__inc_stats(struct hists *hists, struct hist_entry *h);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300154void hists__inc_nr_events(struct hists *hists, u32 type);
Namhyung Kim1844dbc2014-05-28 14:12:18 +0900155void hists__inc_nr_samples(struct hists *hists, bool filtered);
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300156void events_stats__inc(struct events_stats *stats, u32 type);
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -0300157size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300158
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300159size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
Namhyung Kim064f1982013-05-14 11:09:04 +0900160 int max_cols, float min_pcnt, FILE *fp);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300161
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -0200162void hists__filter_by_dso(struct hists *hists);
163void hists__filter_by_thread(struct hists *hists);
Namhyung Kime94d53e2012-03-16 17:50:51 +0900164void hists__filter_by_symbol(struct hists *hists);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300165
Namhyung Kim268397c2014-04-22 14:49:31 +0900166static inline bool hists__has_filter(struct hists *hists)
167{
168 return hists->thread_filter || hists->dso_filter ||
169 hists->symbol_filter_str;
170}
171
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300172u16 hists__col_len(struct hists *hists, enum hist_column col);
173void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
174bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900175void hists__reset_col_len(struct hists *hists);
176void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300177
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300178void hists__match(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -0300179int hists__link(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300180
Namhyung Kimea251d52012-09-03 11:53:06 +0900181struct perf_hpp {
182 char *buf;
183 size_t size;
Namhyung Kimea251d52012-09-03 11:53:06 +0900184 const char *sep;
Namhyung Kimea251d52012-09-03 11:53:06 +0900185 void *ptr;
186};
187
188struct perf_hpp_fmt {
Namhyung Kim94a07932014-03-10 16:43:52 +0900189 int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
190 struct perf_evsel *evsel);
191 int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
192 struct perf_evsel *evsel);
Jiri Olsa2c5d4b42013-01-31 23:31:11 +0100193 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
194 struct hist_entry *he);
195 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
196 struct hist_entry *he);
Namhyung Kimbc18b7f2014-03-03 10:59:57 +0900197 int64_t (*cmp)(struct hist_entry *a, struct hist_entry *b);
198 int64_t (*collapse)(struct hist_entry *a, struct hist_entry *b);
199 int64_t (*sort)(struct hist_entry *a, struct hist_entry *b);
Jiri Olsa12400052012-10-13 00:06:16 +0200200
201 struct list_head list;
Namhyung Kim8b536992014-03-03 11:46:55 +0900202 struct list_head sort_list;
Namhyung Kimea251d52012-09-03 11:53:06 +0900203};
204
Jiri Olsa12400052012-10-13 00:06:16 +0200205extern struct list_head perf_hpp__list;
Namhyung Kim8b536992014-03-03 11:46:55 +0900206extern struct list_head perf_hpp__sort_list;
Jiri Olsa12400052012-10-13 00:06:16 +0200207
208#define perf_hpp__for_each_format(format) \
209 list_for_each_entry(format, &perf_hpp__list, list)
210
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900211#define perf_hpp__for_each_format_safe(format, tmp) \
212 list_for_each_entry_safe(format, tmp, &perf_hpp__list, list)
213
Namhyung Kim8b536992014-03-03 11:46:55 +0900214#define perf_hpp__for_each_sort_list(format) \
215 list_for_each_entry(format, &perf_hpp__sort_list, sort_list)
216
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900217#define perf_hpp__for_each_sort_list_safe(format, tmp) \
218 list_for_each_entry_safe(format, tmp, &perf_hpp__sort_list, sort_list)
219
Namhyung Kimea251d52012-09-03 11:53:06 +0900220extern struct perf_hpp_fmt perf_hpp__format[];
221
222enum {
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100223 /* Matches perf_hpp__format array. */
Namhyung Kimea251d52012-09-03 11:53:06 +0900224 PERF_HPP__OVERHEAD,
225 PERF_HPP__OVERHEAD_SYS,
226 PERF_HPP__OVERHEAD_US,
227 PERF_HPP__OVERHEAD_GUEST_SYS,
228 PERF_HPP__OVERHEAD_GUEST_US,
229 PERF_HPP__SAMPLES,
230 PERF_HPP__PERIOD,
Namhyung Kimea251d52012-09-03 11:53:06 +0900231
232 PERF_HPP__MAX_INDEX
233};
234
Jiri Olsa1d778222012-10-04 21:49:39 +0900235void perf_hpp__init(void);
Jiri Olsa12400052012-10-13 00:06:16 +0200236void perf_hpp__column_register(struct perf_hpp_fmt *format);
237void perf_hpp__column_enable(unsigned col);
Namhyung Kim8b536992014-03-03 11:46:55 +0900238void perf_hpp__register_sort_field(struct perf_hpp_fmt *format);
Namhyung Kim26d8b332014-03-03 16:16:20 +0900239void perf_hpp__setup_output_field(void);
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900240void perf_hpp__reset_output_field(void);
Namhyung Kima7d945b2014-03-04 10:46:34 +0900241void perf_hpp__append_sort_keys(void);
242
243bool perf_hpp__is_sort_entry(struct perf_hpp_fmt *format);
244bool perf_hpp__same_sort_entry(struct perf_hpp_fmt *a, struct perf_hpp_fmt *b);
Namhyung Kime67d49a2014-03-18 13:00:59 +0900245bool perf_hpp__should_skip(struct perf_hpp_fmt *format);
Namhyung Kim678a5002014-03-20 11:18:54 +0900246void perf_hpp__reset_width(struct perf_hpp_fmt *fmt, struct hists *hists);
Namhyung Kimea251d52012-09-03 11:53:06 +0900247
Namhyung Kim2f6d9002014-03-03 10:14:05 +0900248typedef u64 (*hpp_field_fn)(struct hist_entry *he);
249typedef int (*hpp_callback_fn)(struct perf_hpp *hpp, bool front);
Namhyung Kima0088ad2014-03-03 10:14:04 +0900250typedef int (*hpp_snprint_fn)(struct perf_hpp *hpp, const char *fmt, ...);
Namhyung Kim4a621092014-03-03 10:14:03 +0900251
252int __hpp__fmt(struct perf_hpp *hpp, struct hist_entry *he,
Namhyung Kimfb821c9e2014-03-03 17:05:19 +0900253 hpp_field_fn get_field, const char *fmt,
254 hpp_snprint_fn print_fn, bool fmt_percent);
Namhyung Kim4a621092014-03-03 10:14:03 +0900255
Namhyung Kima0088ad2014-03-03 10:14:04 +0900256static inline void advance_hpp(struct perf_hpp *hpp, int inc)
257{
258 hpp->buf += inc;
259 hpp->size -= inc;
260}
261
Jiri Olsa9754c4f2013-10-25 13:24:53 +0200262static inline size_t perf_hpp__use_color(void)
263{
264 return !symbol_conf.field_sep;
265}
266
267static inline size_t perf_hpp__color_overhead(void)
268{
269 return perf_hpp__use_color() ?
270 (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX
271 : 0;
272}
273
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300274struct perf_evlist;
275
Namhyung Kim9783adf2012-11-02 14:50:05 +0900276struct hist_browser_timer {
277 void (*timer)(void *arg);
278 void *arg;
279 int refresh;
280};
281
Ingo Molnar89fe8082013-09-30 12:07:11 +0200282#ifdef HAVE_SLANG_SUPPORT
Namhyung Kim1254b512012-09-28 18:32:02 +0900283#include "../ui/keysyms.h"
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900284int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900285 struct hist_browser_timer *hbt);
Namhyung Kim1254b512012-09-28 18:32:02 +0900286
287int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
Namhyung Kim68d80752012-11-02 14:50:06 +0900288 struct hist_browser_timer *hbt,
Namhyung Kim064f1982013-05-14 11:09:04 +0900289 float min_pcnt,
Namhyung Kim68d80752012-11-02 14:50:06 +0900290 struct perf_session_env *env);
Feng Tang66517822012-10-30 11:56:04 +0800291int script_browse(const char *script_opt);
Namhyung Kim1254b512012-09-28 18:32:02 +0900292#else
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300293static inline
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300294int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
295 const char *help __maybe_unused,
Namhyung Kim68d80752012-11-02 14:50:06 +0900296 struct hist_browser_timer *hbt __maybe_unused,
Namhyung Kim064f1982013-05-14 11:09:04 +0900297 float min_pcnt __maybe_unused,
Namhyung Kim68d80752012-11-02 14:50:06 +0900298 struct perf_session_env *env __maybe_unused)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300299{
300 return 0;
301}
302
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300303static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
304 struct perf_evsel *evsel __maybe_unused,
305 struct hist_browser_timer *hbt __maybe_unused)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300306{
307 return 0;
308}
Feng Tang66517822012-10-30 11:56:04 +0800309
Namhyung Kim4f746c92012-11-12 14:14:00 +0900310static inline int script_browse(const char *script_opt __maybe_unused)
Feng Tang66517822012-10-30 11:56:04 +0800311{
312 return 0;
313}
314
Michael Ellerman1e825ef2013-02-26 16:02:02 +1100315#define K_LEFT -1000
316#define K_RIGHT -2000
Michael Ellerman5f7439e2013-02-26 16:02:03 +1100317#define K_SWITCH_INPUT_DATA -3000
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300318#endif
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300319
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300320unsigned int hists__sort_list_width(struct hists *hists);
Namhyung Kim33db4562014-02-07 12:06:07 +0900321
322struct option;
323int parse_filter_percentage(const struct option *opt __maybe_unused,
324 const char *arg, int unset __maybe_unused);
Namhyung Kim0b93da12014-01-14 12:02:15 +0900325int perf_hist_config(const char *var, const char *value);
Namhyung Kim33db4562014-02-07 12:06:07 +0900326
John Kacur3d1d07e2009-09-28 15:32:55 +0200327#endif /* __PERF_HIST_H */