blob: 848331377bdbf9f2466ed35a715a89133118c9a8 [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"
John Kacur3d1d07e2009-09-28 15:32:55 +02008
John Kacur3d1d07e2009-09-28 15:32:55 +02009extern struct callchain_param callchain_param;
John Kacur3d1d07e2009-09-28 15:32:55 +020010
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020011struct hist_entry;
12struct addr_location;
13struct symbol;
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -030014
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -030015/*
16 * The kernel collects the number of events it couldn't send in a stretch and
17 * when possible sends this number in a PERF_RECORD_LOST event. The number of
18 * such "chunks" of lost events is stored in .nr_events[PERF_EVENT_LOST] while
19 * total_lost tells exactly how many events the kernel in fact lost, i.e. it is
20 * the sum of all struct lost_event.lost fields reported.
21 *
22 * The total_period is needed because by default auto-freq is used, so
23 * multipling nr_events[PERF_EVENT_SAMPLE] by a frequency isn't possible to get
24 * the total number of low level events, it is necessary to to sum all struct
25 * sample_event.period and stash the result in total_period.
26 */
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030027struct events_stats {
Arnaldo Carvalho de Melocee75ac2010-05-14 13:16:55 -030028 u64 total_period;
29 u64 total_lost;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020030 u64 total_invalid_chains;
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -030031 u32 nr_events[PERF_RECORD_HEADER_MAX];
Arnaldo Carvalho de Melo7b275092011-10-29 12:15:04 -020032 u32 nr_lost_warned;
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -030033 u32 nr_unknown_events;
Arnaldo Carvalho de Melo640c03c2010-12-02 14:10:21 -020034 u32 nr_invalid_chains;
Arnaldo Carvalho de Melo9e69c212011-03-15 15:44:01 -030035 u32 nr_unknown_id;
Joerg Roedel0c095712012-02-10 18:05:04 +010036 u32 nr_unprocessable_samples;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030037};
38
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030039enum hist_column {
40 HISTC_SYMBOL,
41 HISTC_DSO,
42 HISTC_THREAD,
43 HISTC_COMM,
44 HISTC_PARENT,
45 HISTC_CPU,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010046 HISTC_MISPREDICT,
47 HISTC_SYMBOL_FROM,
48 HISTC_SYMBOL_TO,
49 HISTC_DSO_FROM,
50 HISTC_DSO_TO,
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -030051 HISTC_SRCLINE,
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030052 HISTC_NR_COLS, /* Last entry */
53};
54
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020055struct thread;
56struct dso;
57
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030058struct hists {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030059 struct rb_root entries_in_array[2];
60 struct rb_root *entries_in;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030061 struct rb_root entries;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030062 struct rb_root entries_collapsed;
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -030063 u64 nr_entries;
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -020064 const struct thread *thread_filter;
65 const struct dso *dso_filter;
Arnaldo Carvalho de Melo0d37aa32012-01-19 14:08:15 -020066 const char *uid_filter_str;
Namhyung Kime94d53e2012-03-16 17:50:51 +090067 const char *symbol_filter_str;
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030068 pthread_mutex_t lock;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030069 struct events_stats stats;
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030070 u64 event_stream;
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -030071 u16 col_len[HISTC_NR_COLS];
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030072};
73
74struct hist_entry *__hists__add_entry(struct hists *self,
75 struct addr_location *al,
Arnaldo Carvalho de Meloc82ee822010-05-14 14:19:35 -030076 struct symbol *parent, u64 period);
Arnaldo Carvalho de Melo12c14272012-01-04 12:27:03 -020077int64_t hist_entry__cmp(struct hist_entry *left, struct hist_entry *right);
78int64_t hist_entry__collapse(struct hist_entry *left, struct hist_entry *right);
Namhyung Kim000078b2012-08-20 13:52:06 +090079int hist_entry__sort_snprintf(struct hist_entry *self, char *bf, size_t size,
80 struct hists *hists);
Arnaldo Carvalho de Melo4e4f06e2009-12-14 13:10:39 -020081void hist_entry__free(struct hist_entry *);
82
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +010083struct hist_entry *__hists__add_branch_entry(struct hists *self,
84 struct addr_location *al,
85 struct symbol *sym_parent,
86 struct branch_info *bi,
87 u64 period);
88
Arnaldo Carvalho de Melofefb0b92010-05-10 13:57:51 -030089void hists__output_resort(struct hists *self);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030090void hists__output_resort_threaded(struct hists *hists);
Arnaldo Carvalho de Melo1c02c4d2010-05-10 13:04:11 -030091void hists__collapse_resort(struct hists *self);
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030092void hists__collapse_resort_threaded(struct hists *hists);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -030093
Arnaldo Carvalho de Melob079d4e2011-10-17 09:05:04 -020094void hists__decay_entries(struct hists *hists, bool zap_user, bool zap_kernel);
95void hists__decay_entries_threaded(struct hists *hists, bool zap_user,
96 bool zap_kernel);
Arnaldo Carvalho de Meloab81f3fd2011-10-05 19:16:15 -030097void hists__output_recalc_col_len(struct hists *hists, int max_rows);
98
Namhyung Kim66f97ed2012-12-10 17:29:56 +090099void hists__inc_nr_entries(struct hists *hists, struct hist_entry *h);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300100void hists__inc_nr_events(struct hists *self, u32 type);
Arnaldo Carvalho de Melo28a6b6a2012-12-18 16:24:46 -0300101void events_stats__inc(struct events_stats *stats, u32 type);
Arnaldo Carvalho de Melo52168ee2012-12-18 16:02:17 -0300102size_t events_stats__fprintf(struct events_stats *stats, FILE *fp);
Arnaldo Carvalho de Meloc8446b92010-05-14 10:36:42 -0300103
Jiri Olsa41724e42012-10-04 21:49:38 +0900104size_t hists__fprintf(struct hists *self, bool show_header, int max_rows,
105 int max_cols, FILE *fp);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300106
Arnaldo Carvalho de Melo2f525d02011-02-04 13:43:24 -0200107int hist_entry__inc_addr_samples(struct hist_entry *self, int evidx, u64 addr);
Arnaldo Carvalho de Meloce6f4fa2011-02-08 13:27:39 -0200108int hist_entry__annotate(struct hist_entry *self, size_t privsize);
Arnaldo Carvalho de Meloef7b93a2010-05-11 23:18:06 -0300109
Arnaldo Carvalho de Melod7b76f02011-10-18 19:07:34 -0200110void hists__filter_by_dso(struct hists *hists);
111void hists__filter_by_thread(struct hists *hists);
Namhyung Kime94d53e2012-03-16 17:50:51 +0900112void hists__filter_by_symbol(struct hists *hists);
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300113
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300114u16 hists__col_len(struct hists *self, enum hist_column col);
115void hists__set_col_len(struct hists *self, enum hist_column col, u16 len);
116bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len);
Namhyung Kim7ccf4f92012-08-20 13:52:05 +0900117void hists__reset_col_len(struct hists *hists);
118void hists__calc_col_len(struct hists *hists, struct hist_entry *he);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300119
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300120void hists__match(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo494d70a2012-11-08 18:03:09 -0300121int hists__link(struct hists *leader, struct hists *other);
Arnaldo Carvalho de Melo95529be2012-11-08 17:54:33 -0300122
Namhyung Kimea251d52012-09-03 11:53:06 +0900123struct perf_hpp {
124 char *buf;
125 size_t size;
Namhyung Kimea251d52012-09-03 11:53:06 +0900126 const char *sep;
Namhyung Kimea251d52012-09-03 11:53:06 +0900127 void *ptr;
128};
129
130struct perf_hpp_fmt {
Namhyung Kimea251d52012-09-03 11:53:06 +0900131 int (*header)(struct perf_hpp *hpp);
132 int (*width)(struct perf_hpp *hpp);
133 int (*color)(struct perf_hpp *hpp, struct hist_entry *he);
134 int (*entry)(struct perf_hpp *hpp, struct hist_entry *he);
Jiri Olsa12400052012-10-13 00:06:16 +0200135
136 struct list_head list;
Namhyung Kimea251d52012-09-03 11:53:06 +0900137};
138
Jiri Olsa12400052012-10-13 00:06:16 +0200139extern struct list_head perf_hpp__list;
140
141#define perf_hpp__for_each_format(format) \
142 list_for_each_entry(format, &perf_hpp__list, list)
143
Namhyung Kimea251d52012-09-03 11:53:06 +0900144extern struct perf_hpp_fmt perf_hpp__format[];
145
146enum {
Jiri Olsa5395a042012-10-04 21:49:37 +0900147 PERF_HPP__BASELINE,
Namhyung Kimea251d52012-09-03 11:53:06 +0900148 PERF_HPP__OVERHEAD,
149 PERF_HPP__OVERHEAD_SYS,
150 PERF_HPP__OVERHEAD_US,
151 PERF_HPP__OVERHEAD_GUEST_SYS,
152 PERF_HPP__OVERHEAD_GUEST_US,
153 PERF_HPP__SAMPLES,
154 PERF_HPP__PERIOD,
Jiri Olsa61949b22012-10-05 16:44:44 +0200155 PERF_HPP__PERIOD_BASELINE,
Namhyung Kimea251d52012-09-03 11:53:06 +0900156 PERF_HPP__DELTA,
Jiri Olsa7aaf6b32012-10-05 16:44:41 +0200157 PERF_HPP__RATIO,
Jiri Olsa81d5f952012-10-05 16:44:43 +0200158 PERF_HPP__WEIGHTED_DIFF,
Jiri Olsaed279da2012-10-05 16:44:45 +0200159 PERF_HPP__FORMULA,
Namhyung Kimea251d52012-09-03 11:53:06 +0900160
161 PERF_HPP__MAX_INDEX
162};
163
Jiri Olsa1d778222012-10-04 21:49:39 +0900164void perf_hpp__init(void);
Jiri Olsa12400052012-10-13 00:06:16 +0200165void perf_hpp__column_register(struct perf_hpp_fmt *format);
166void perf_hpp__column_enable(unsigned col);
Namhyung Kimea251d52012-09-03 11:53:06 +0900167int hist_entry__period_snprintf(struct perf_hpp *hpp, struct hist_entry *he,
168 bool color);
169
Arnaldo Carvalho de Meloe248de32011-03-05 21:40:06 -0300170struct perf_evlist;
171
Namhyung Kim9783adf2012-11-02 14:50:05 +0900172struct hist_browser_timer {
173 void (*timer)(void *arg);
174 void *arg;
175 int refresh;
176};
177
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900178#ifdef NEWT_SUPPORT
179#include "../ui/keysyms.h"
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900180int hist_entry__tui_annotate(struct hist_entry *he, struct perf_evsel *evsel,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900181 struct hist_browser_timer *hbt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900182
183int perf_evlist__tui_browse_hists(struct perf_evlist *evlist, const char *help,
Namhyung Kim68d80752012-11-02 14:50:06 +0900184 struct hist_browser_timer *hbt,
185 struct perf_session_env *env);
Feng Tang66517822012-10-30 11:56:04 +0800186int script_browse(const char *script_opt);
Namhyung Kim1254b51e2012-09-28 18:32:02 +0900187#else
Arnaldo Carvalho de Melo7f0030b2011-03-06 13:07:30 -0300188static inline
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300189int perf_evlist__tui_browse_hists(struct perf_evlist *evlist __maybe_unused,
190 const char *help __maybe_unused,
Namhyung Kim68d80752012-11-02 14:50:06 +0900191 struct hist_browser_timer *hbt __maybe_unused,
192 struct perf_session_env *env __maybe_unused)
Arnaldo Carvalho de Melod67f0882010-05-23 22:36:51 -0300193{
194 return 0;
195}
196
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300197static inline int hist_entry__tui_annotate(struct hist_entry *self
198 __maybe_unused,
Namhyung Kimdb8fd072013-03-05 14:53:21 +0900199 struct perf_evsel *evsel
200 __maybe_unused,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900201 struct hist_browser_timer *hbt
202 __maybe_unused)
Arnaldo Carvalho de Melo46e3e052010-05-22 11:25:40 -0300203{
204 return 0;
205}
Feng Tang66517822012-10-30 11:56:04 +0800206
Namhyung Kim4f746c92012-11-12 14:14:00 +0900207static inline int script_browse(const char *script_opt __maybe_unused)
Feng Tang66517822012-10-30 11:56:04 +0800208{
209 return 0;
210}
211
Michael Ellerman1e825ef2013-02-26 16:02:02 +1100212#define K_LEFT -1000
213#define K_RIGHT -2000
Michael Ellerman5f7439e2013-02-26 16:02:03 +1100214#define K_SWITCH_INPUT_DATA -3000
Arnaldo Carvalho de Melob09e0192010-05-11 11:10:15 -0300215#endif
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300216
Namhyung Kimf9f526e2012-09-28 18:32:03 +0900217#ifdef GTK2_SUPPORT
218int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, const char *help,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900219 struct hist_browser_timer *hbt __maybe_unused);
Namhyung Kimf9f526e2012-09-28 18:32:03 +0900220#else
Pekka Enbergc31a9452012-03-19 15:13:29 -0300221static inline
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300222int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist __maybe_unused,
223 const char *help __maybe_unused,
Namhyung Kim9783adf2012-11-02 14:50:05 +0900224 struct hist_browser_timer *hbt __maybe_unused)
Pekka Enbergc31a9452012-03-19 15:13:29 -0300225{
226 return 0;
227}
Pekka Enbergc31a9452012-03-19 15:13:29 -0300228#endif
229
Arnaldo Carvalho de Melo06daaab2010-07-21 17:58:25 -0300230unsigned int hists__sort_list_width(struct hists *self);
231
Jiri Olsa05472da2012-11-28 14:52:40 +0100232double perf_diff__compute_delta(struct hist_entry *he, struct hist_entry *pair);
233double perf_diff__compute_ratio(struct hist_entry *he, struct hist_entry *pair);
234s64 perf_diff__compute_wdiff(struct hist_entry *he, struct hist_entry *pair);
Jiri Olsaf4c8bae2012-11-28 14:52:41 +0100235int perf_diff__formula(struct hist_entry *he, struct hist_entry *pair,
236 char *buf, size_t size);
Jiri Olsa05472da2012-11-28 14:52:40 +0100237double perf_diff__period_percent(struct hist_entry *he, u64 period);
John Kacur3d1d07e2009-09-28 15:32:55 +0200238#endif /* __PERF_HIST_H */