blob: b621347a1585db4a469b8a08d10acb107406c20f [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
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -030017/*
18 * The kernel collects the number of events it couldn't send in a stretch and
19 * when possible sends this number in a PERF_RECORD_LOST event. The number of
20 * such "chunks" of lost events is stored in .nr_events[PERF_EVENT_LOST] while
21 * total_lost tells exactly how many events the kernel in fact lost, i.e. it is
22 * the sum of all struct lost_event.lost fields reported.
23 *
24 * The total_period is needed because by default auto-freq is used, so
25 * multipling nr_events[PERF_EVENT_SAMPLE] by a frequency isn't possible to get
26 * the total number of low level events, it is necessary to to sum all struct
27 * sample_event.period and stash the result in total_period.
28 */
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030029struct events_stats {
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -030030 u64 total_period;
31 u64 total_lost;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020032 u64 total_invalid_chains;
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -030033 u32 nr_events[PERF_RECORD_HEADER_MAX];
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -020034 u32 nr_lost_warned;
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -030035 u32 nr_unknown_events;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020036 u32 nr_invalid_chains;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030037 u32 nr_unknown_id;
Joerg Roedel0c095712012-02-10 18:05:04 +010038 u32 nr_unprocessable_samples;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030039};
40
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030041enum hist_column {
42 HISTC_SYMBOL,
43 HISTC_DSO,
44 HISTC_THREAD,
45 HISTC_COMM,
46 HISTC_PARENT,
47 HISTC_CPU,
Namhyung Kimdfd3b2f2013-04-05 10:26:31 +090048 HISTC_SRCLINE,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010049 HISTC_MISPREDICT,
Andi Kleenf5d05bc2013-09-20 07:40:41 -070050 HISTC_IN_TX,
51 HISTC_ABORT,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010052 HISTC_SYMBOL_FROM,
53 HISTC_SYMBOL_TO,
54 HISTC_DSO_FROM,
55 HISTC_DSO_TO,
Andi Kleen05484292013-01-24 16:10:29 +010056 HISTC_LOCAL_WEIGHT,
57 HISTC_GLOBAL_WEIGHT,
Stephane Eranian98a3b322013-01-24 16:10:35 +010058 HISTC_MEM_DADDR_SYMBOL,
59 HISTC_MEM_DADDR_DSO,
60 HISTC_MEM_LOCKED,
61 HISTC_MEM_TLB,
62 HISTC_MEM_LVL,
63 HISTC_MEM_SNOOP,
Andi Kleen475eeab2013-09-20 07:40:43 -070064 HISTC_TRANSACTION,
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;
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020077 const struct thread *thread_filter;
78 const struct dso *dso_filter;
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -020079 const char *uid_filter_str;
Namhyung Kime94d53e2012-03-16 17:50:51 +090080 const char *symbol_filter_str;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030081 pthread_mutex_t lock;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030082 struct events_stats stats;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030083 u64 event_stream;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030084 u16 col_len[HISTC_NR_COLS];
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030085};
86
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030087struct hist_entry *__hists__add_entry(struct hists *hists,
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030088 struct addr_location *al,
Namhyung Kim41a4e6e2013-10-31 15:56:03 +090089 struct symbol *parent,
90 struct branch_info *bi,
91 struct mem_info *mi, u64 period,
Andi Kleen475eeab2013-09-20 07:40:43 -070092 u64 weight, u64 transaction);
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -020093int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
94int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
Andi Kleen475eeab2013-09-20 07:40:43 -070095int hist_entry__transaction_len(void);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030096int hist_entry__sort_snprintf(struct hist_entry *he, char *bf, size_t size,
Namhyung Kim000078b2012-08-20 13:52:06 +090097 struct hists *hists);
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020098void hist_entry__free(struct hist_entry *);
99
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300100void hists__output_resort(struct hists *hists);
101void hists__collapse_resort(struct hists *hists, struct ui_progress *prog);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300102
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -0200103void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
Arnaldo Carvalho de Meloab81f3f2011-10-05 19:16:15 -0300104void hists__output_recalc_col_len(struct hists *hists, int max_rows);
105
Namhyung Kim66f97ed2012-12-10 17:29:56 +0900106void hists__inc_nr_entries(struct hists *hists, struct hist_entry *h);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300107void hists__inc_nr_events(struct hists *hists, u32 type);
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300108void events_stats__inc(struct events_stats *stats, u32 type);
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -0300109size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300110
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300111size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
Namhyung Kim064f1982013-05-14 11:09:04 +0900112 int max_cols, float min_pcnt, FILE *fp);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300113
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300114int hist_entry__inc_addr_samples(struct hist_entry *he, int evidx, u64 addr);
115int hist_entry__annotate(struct hist_entry *he, size_t privsize);
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300116
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -0200117void hists__filter_by_dso(struct hists *hists);
118void hists__filter_by_thread(struct hists *hists);
Namhyung Kime94d53e2012-03-16 17:50:51 +0900119void hists__filter_by_symbol(struct hists *hists);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300120
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300121u16 hists__col_len(struct hists *hists, enum hist_column col);
122void hists__set_col_len(struct hists *hists, enum hist_column col, u16 len);
123bool hists__new_col_len(struct hists *hists, enum hist_column col, u16 len);
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900124void hists__reset_col_len(struct hists *hists);
125void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300126
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300127void hists__match(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -0300128int hists__link(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300129
Namhyung Kimea251d52012-09-03 11:53:06 +0900130struct perf_hpp {
131 char *buf;
132 size_t size;
Namhyung Kimea251d52012-09-03 11:53:06 +0900133 const char *sep;
Namhyung Kimea251d52012-09-03 11:53:06 +0900134 void *ptr;
135};
136
137struct perf_hpp_fmt {
Jiri Olsa2c5d4b42013-01-31 23:31:11 +0100138 int (*header)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp);
139 int (*width)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp);
140 int (*color)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
141 struct hist_entry *he);
142 int (*entry)(struct perf_hpp_fmt *fmt, struct perf_hpp *hpp,
143 struct hist_entry *he);
Jiri Olsa12400052012-10-13 00:06:16 +0200144
145 struct list_head list;
Namhyung Kimea251d52012-09-03 11:53:06 +0900146};
147
Jiri Olsa12400052012-10-13 00:06:16 +0200148extern struct list_head perf_hpp__list;
149
150#define perf_hpp__for_each_format(format) \
151 list_for_each_entry(format, &perf_hpp__list, list)
152
Namhyung Kimea251d52012-09-03 11:53:06 +0900153extern struct perf_hpp_fmt perf_hpp__format[];
154
155enum {
Jiri Olsa345dc0b2013-02-03 20:08:34 +0100156 /* Matches perf_hpp__format array. */
Namhyung Kimea251d52012-09-03 11:53:06 +0900157 PERF_HPP__OVERHEAD,
158 PERF_HPP__OVERHEAD_SYS,
159 PERF_HPP__OVERHEAD_US,
160 PERF_HPP__OVERHEAD_GUEST_SYS,
161 PERF_HPP__OVERHEAD_GUEST_US,
162 PERF_HPP__SAMPLES,
163 PERF_HPP__PERIOD,
Namhyung Kimea251d52012-09-03 11:53:06 +0900164
165 PERF_HPP__MAX_INDEX
166};
167
Jiri Olsa1d778222012-10-04 21:49:39 +0900168void perf_hpp__init(void);
Jiri Olsa12400052012-10-13 00:06:16 +0200169void perf_hpp__column_register(struct perf_hpp_fmt *format);
170void perf_hpp__column_enable(unsigned col);
Namhyung Kimea251d52012-09-03 11:53:06 +0900171
Jiri Olsa9754c4f2013-10-25 13:24:53 +0200172static inline size_t perf_hpp__use_color(void)
173{
174 return !symbol_conf.field_sep;
175}
176
177static inline size_t perf_hpp__color_overhead(void)
178{
179 return perf_hpp__use_color() ?
180 (COLOR_MAXLEN + sizeof(PERF_COLOR_RESET)) * PERF_HPP__MAX_INDEX
181 : 0;
182}
183
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300184struct perf_evlist;
185
Namhyung Kim9783adf2012-11-02 14:50:05 +0900186struct hist_browser_timer {
187 void (*timer)(void *arg);
188 void *arg;
189 int refresh;
190};
191
Ingo Molnar89fe8082013-09-30 12:07:11 +0200192#ifdef HAVE_SLANG_SUPPORT
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900193#include "../ui/keysyms.h"
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900194int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900195 struct hist_browser_timer *hbt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900196
197int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
Namhyung Kim68d80752012-11-02 14:50:06 +0900198 struct hist_browser_timer *hbt,
Namhyung Kim064f1982013-05-14 11:09:04 +0900199 float min_pcnt,
Namhyung Kim68d80752012-11-02 14:50:06 +0900200 struct perf_session_env *env);
Feng Tang66517822012-10-30 11:56:04 +0800201int script_browse(const char *script_opt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900202#else
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300203static inline
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300204int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
205 const char *help __maybe_unused,
Namhyung Kim68d80752012-11-02 14:50:06 +0900206 struct hist_browser_timer *hbt __maybe_unused,
Namhyung Kim064f1982013-05-14 11:09:04 +0900207 float min_pcnt __maybe_unused,
Namhyung Kim68d80752012-11-02 14:50:06 +0900208 struct perf_session_env *env __maybe_unused)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300209{
210 return 0;
211}
212
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300213static inline int hist_entry__tui_annotate(struct hist_entry *he __maybe_unused,
214 struct perf_evsel *evsel __maybe_unused,
215 struct hist_browser_timer *hbt __maybe_unused)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300216{
217 return 0;
218}
Feng Tang66517822012-10-30 11:56:04 +0800219
Namhyung Kim4f746c92012-11-12 14:14:00 +0900220static inline int script_browse(const char *script_opt __maybe_unused)
Feng Tang66517822012-10-30 11:56:04 +0800221{
222 return 0;
223}
224
Michael Ellerman1e825ef2013-02-26 16:02:02 +1100225#define K_LEFT -1000
226#define K_RIGHT -2000
Michael Ellerman5f7439e2013-02-26 16:02:03 +1100227#define K_SWITCH_INPUT_DATA -3000
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300228#endif
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300229
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300230unsigned int hists__sort_list_width(struct hists *hists);
John Kacur3d1d07e2009-09-28 15:32:55 +0200231#endif /* __PERF_HIST_H */