John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 1 | #ifndef __PERF_SORT_H |
| 2 | #define __PERF_SORT_H |
| 3 | #include "../builtin.h" |
| 4 | |
| 5 | #include "util.h" |
| 6 | |
| 7 | #include "color.h" |
| 8 | #include <linux/list.h> |
| 9 | #include "cache.h" |
| 10 | #include <linux/rbtree.h> |
| 11 | #include "symbol.h" |
| 12 | #include "string.h" |
| 13 | #include "callchain.h" |
| 14 | #include "strlist.h" |
| 15 | #include "values.h" |
| 16 | |
| 17 | #include "../perf.h" |
| 18 | #include "debug.h" |
| 19 | #include "header.h" |
| 20 | |
Josh Poimboeuf | 4b6ab94 | 2015-12-15 09:39:39 -0600 | [diff] [blame] | 21 | #include <subcmd/parse-options.h> |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 22 | #include "parse-events.h" |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 23 | #include "hist.h" |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 24 | #include "thread.h" |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 25 | |
| 26 | extern regex_t parent_regex; |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 27 | extern const char *sort_order; |
Namhyung Kim | a7d945b | 2014-03-04 10:46:34 +0900 | [diff] [blame] | 28 | extern const char *field_order; |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 29 | extern const char default_parent_pattern[]; |
| 30 | extern const char *parent_pattern; |
| 31 | extern const char default_sort_order[]; |
Greg Price | b21484f | 2012-12-06 21:48:05 -0800 | [diff] [blame] | 32 | extern regex_t ignore_callees_regex; |
| 33 | extern int have_ignore_callees; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 34 | extern int sort__need_collapse; |
Namhyung Kim | b1447a54 | 2016-01-22 11:22:41 -0300 | [diff] [blame] | 35 | extern int sort__has_dso; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 36 | extern int sort__has_parent; |
Namhyung Kim | 1af55640 | 2012-09-14 17:35:27 +0900 | [diff] [blame] | 37 | extern int sort__has_sym; |
Kan Liang | 2e7ea3a | 2015-09-04 10:45:43 -0400 | [diff] [blame] | 38 | extern int sort__has_socket; |
Namhyung Kim | cfd92da | 2016-01-21 19:13:24 -0300 | [diff] [blame] | 39 | extern int sort__has_thread; |
Namhyung Kim | 55369fc | 2013-04-01 20:35:20 +0900 | [diff] [blame] | 40 | extern enum sort_mode sort__mode; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 41 | extern struct sort_entry sort_comm; |
| 42 | extern struct sort_entry sort_dso; |
| 43 | extern struct sort_entry sort_sym; |
| 44 | extern struct sort_entry sort_parent; |
Stephane Eranian | a68c2c5 | 2012-03-08 23:47:48 +0100 | [diff] [blame] | 45 | extern struct sort_entry sort_dso_from; |
| 46 | extern struct sort_entry sort_dso_to; |
| 47 | extern struct sort_entry sort_sym_from; |
| 48 | extern struct sort_entry sort_sym_to; |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 49 | extern enum sort_type sort__first_dimension; |
Yunlong Song | 228f14f | 2015-03-23 11:50:05 +0800 | [diff] [blame] | 50 | extern const char default_mem_sort_order[]; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 51 | |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 52 | struct he_stat { |
| 53 | u64 period; |
| 54 | u64 period_sys; |
| 55 | u64 period_us; |
| 56 | u64 period_guest_sys; |
| 57 | u64 period_guest_us; |
Andi Kleen | 0548429 | 2013-01-24 16:10:29 +0100 | [diff] [blame] | 58 | u64 weight; |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 59 | u32 nr_events; |
| 60 | }; |
| 61 | |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 62 | struct hist_entry_diff { |
| 63 | bool computed; |
Namhyung Kim | a0b404f | 2015-04-19 13:04:10 +0900 | [diff] [blame] | 64 | union { |
| 65 | /* PERF_HPP__DELTA */ |
| 66 | double period_ratio_delta; |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 67 | |
Namhyung Kim | a0b404f | 2015-04-19 13:04:10 +0900 | [diff] [blame] | 68 | /* PERF_HPP__RATIO */ |
| 69 | double period_ratio; |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 70 | |
Namhyung Kim | a0b404f | 2015-04-19 13:04:10 +0900 | [diff] [blame] | 71 | /* HISTC_WEIGHTED_DIFF */ |
| 72 | s64 wdiff; |
| 73 | }; |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 74 | }; |
| 75 | |
Arnaldo Carvalho de Melo | 0f0cbf7 | 2010-07-26 17:13:40 -0300 | [diff] [blame] | 76 | /** |
| 77 | * struct hist_entry - histogram entry |
| 78 | * |
| 79 | * @row_offset - offset from the first callchain expanded to appear on screen |
| 80 | * @nr_rows - rows expanded in callchain, recalculated on folding/unfolding |
| 81 | */ |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 82 | struct hist_entry { |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 83 | struct rb_node rb_node_in; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 84 | struct rb_node rb_node; |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 85 | union { |
| 86 | struct list_head node; |
| 87 | struct list_head head; |
| 88 | } pairs; |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 89 | struct he_stat stat; |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 90 | struct he_stat *stat_acc; |
Arnaldo Carvalho de Melo | 59fd530 | 2010-03-24 16:40:17 -0300 | [diff] [blame] | 91 | struct map_symbol ms; |
Arnaldo Carvalho de Melo | a5e29ac | 2010-04-03 22:44:37 -0300 | [diff] [blame] | 92 | struct thread *thread; |
Namhyung Kim | 4dfced3 | 2013-09-13 16:28:57 +0900 | [diff] [blame] | 93 | struct comm *comm; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 94 | u64 ip; |
Andi Kleen | 475eeab | 2013-09-20 07:40:43 -0700 | [diff] [blame] | 95 | u64 transaction; |
Kan Liang | 0c4c4de | 2015-09-04 10:45:42 -0400 | [diff] [blame] | 96 | s32 socket; |
Arun Sharma | f60f359 | 2010-06-04 11:27:10 -0300 | [diff] [blame] | 97 | s32 cpu; |
Don Zickus | 7365be5 | 2014-05-27 12:28:05 -0400 | [diff] [blame] | 98 | u8 cpumode; |
Namhyung Kim | aef810e | 2016-02-25 00:13:34 +0900 | [diff] [blame] | 99 | u8 depth; |
Arnaldo Carvalho de Melo | 0f0cbf7 | 2010-07-26 17:13:40 -0300 | [diff] [blame] | 100 | |
Jiri Olsa | e0af43d | 2012-12-01 21:18:20 +0100 | [diff] [blame] | 101 | /* We are added by hists__add_dummy_entry. */ |
| 102 | bool dummy; |
Namhyung Kim | aef810e | 2016-02-25 00:13:34 +0900 | [diff] [blame] | 103 | bool leaf; |
Jiri Olsa | e0af43d | 2012-12-01 21:18:20 +0100 | [diff] [blame] | 104 | |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 105 | char level; |
Arnaldo Carvalho de Melo | a5e29ac | 2010-04-03 22:44:37 -0300 | [diff] [blame] | 106 | u8 filtered; |
Namhyung Kim | 2975082 | 2015-04-22 16:18:12 +0900 | [diff] [blame] | 107 | union { |
| 108 | /* |
| 109 | * Since perf diff only supports the stdio output, TUI |
| 110 | * fields are only accessed from perf report (or perf |
| 111 | * top). So make it an union to reduce memory usage. |
| 112 | */ |
| 113 | struct hist_entry_diff diff; |
| 114 | struct /* for TUI */ { |
| 115 | u16 row_offset; |
| 116 | u16 nr_rows; |
Namhyung Kim | d8a0f80 | 2015-04-22 16:18:13 +0900 | [diff] [blame] | 117 | bool init_have_children; |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 118 | bool unfolded; |
| 119 | bool has_children; |
Namhyung Kim | 79dded8 | 2016-02-26 21:13:19 +0900 | [diff] [blame] | 120 | bool has_no_entry; |
Namhyung Kim | 2975082 | 2015-04-22 16:18:12 +0900 | [diff] [blame] | 121 | }; |
| 122 | }; |
Arnaldo Carvalho de Melo | 409a8be | 2012-05-30 10:33:24 -0300 | [diff] [blame] | 123 | char *srcline; |
Andi Kleen | 31191a8 | 2015-08-07 15:54:24 -0700 | [diff] [blame] | 124 | char *srcfile; |
Arnaldo Carvalho de Melo | 8375319 | 2010-04-03 16:30:44 -0300 | [diff] [blame] | 125 | struct symbol *parent; |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 126 | struct branch_info *branch_info; |
Jiri Olsa | ae359f1 | 2012-10-04 21:49:35 +0900 | [diff] [blame] | 127 | struct hists *hists; |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 128 | struct mem_info *mem_info; |
Namhyung Kim | 7239283 | 2015-12-24 11:16:17 +0900 | [diff] [blame] | 129 | void *raw_data; |
| 130 | u32 raw_size; |
Namhyung Kim | 60517d2 | 2015-12-23 02:07:03 +0900 | [diff] [blame] | 131 | void *trace_output; |
Namhyung Kim | aef810e | 2016-02-25 00:13:34 +0900 | [diff] [blame] | 132 | struct perf_hpp_fmt *fmt; |
Namhyung Kim | 1b2dbbf | 2016-03-07 16:44:46 -0300 | [diff] [blame^] | 133 | struct perf_hpp_list *hpp_list; |
Namhyung Kim | aef810e | 2016-02-25 00:13:34 +0900 | [diff] [blame] | 134 | struct hist_entry *parent_he; |
| 135 | union { |
| 136 | /* this is for hierarchical entry structure */ |
| 137 | struct { |
| 138 | struct rb_root hroot_in; |
| 139 | struct rb_root hroot_out; |
| 140 | }; /* non-leaf entries */ |
| 141 | struct rb_root sorted_chain; /* leaf entry has callchains */ |
| 142 | }; |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 143 | struct callchain_root callchain[0]; /* must be last member */ |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 144 | }; |
| 145 | |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 146 | static inline bool hist_entry__has_pairs(struct hist_entry *he) |
| 147 | { |
| 148 | return !list_empty(&he->pairs.node); |
| 149 | } |
| 150 | |
| 151 | static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) |
| 152 | { |
| 153 | if (hist_entry__has_pairs(he)) |
| 154 | return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); |
| 155 | return NULL; |
| 156 | } |
| 157 | |
Jiri Olsa | 4d23322 | 2012-12-13 14:09:00 +0100 | [diff] [blame] | 158 | static inline void hist_entry__add_pair(struct hist_entry *pair, |
| 159 | struct hist_entry *he) |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 160 | { |
Jiri Olsa | 4d23322 | 2012-12-13 14:09:00 +0100 | [diff] [blame] | 161 | list_add_tail(&pair->pairs.node, &he->pairs.head); |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 162 | } |
| 163 | |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 164 | static inline float hist_entry__get_percent_limit(struct hist_entry *he) |
| 165 | { |
| 166 | u64 period = he->stat.period; |
| 167 | u64 total_period = hists__total_period(he->hists); |
| 168 | |
| 169 | if (unlikely(total_period == 0)) |
| 170 | return 0; |
| 171 | |
| 172 | if (symbol_conf.cumulate_callchain) |
| 173 | period = he->stat_acc->period; |
| 174 | |
| 175 | return period * 100.0 / total_period; |
| 176 | } |
| 177 | |
Jiri Olsa | e95cf70 | 2016-02-15 09:34:32 +0100 | [diff] [blame] | 178 | static inline u64 cl_address(u64 address) |
| 179 | { |
| 180 | /* return the cacheline of the address */ |
| 181 | return (address & ~(cacheline_size - 1)); |
| 182 | } |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 183 | |
Jiri Olsa | d392711 | 2016-02-15 09:34:33 +0100 | [diff] [blame] | 184 | static inline u64 cl_offset(u64 address) |
| 185 | { |
| 186 | /* return the cacheline of the address */ |
| 187 | return (address & (cacheline_size - 1)); |
| 188 | } |
| 189 | |
Namhyung Kim | 55369fc | 2013-04-01 20:35:20 +0900 | [diff] [blame] | 190 | enum sort_mode { |
| 191 | SORT_MODE__NORMAL, |
| 192 | SORT_MODE__BRANCH, |
| 193 | SORT_MODE__MEMORY, |
Namhyung Kim | 512ae1b | 2014-03-18 11:31:39 +0900 | [diff] [blame] | 194 | SORT_MODE__TOP, |
| 195 | SORT_MODE__DIFF, |
Namhyung Kim | d49dade | 2015-12-23 02:07:10 +0900 | [diff] [blame] | 196 | SORT_MODE__TRACEPOINT, |
Namhyung Kim | 55369fc | 2013-04-01 20:35:20 +0900 | [diff] [blame] | 197 | }; |
| 198 | |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 199 | enum sort_type { |
Namhyung Kim | fc5871e | 2012-12-27 18:11:46 +0900 | [diff] [blame] | 200 | /* common sort keys */ |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 201 | SORT_PID, |
| 202 | SORT_COMM, |
| 203 | SORT_DSO, |
| 204 | SORT_SYM, |
Arun Sharma | f60f359 | 2010-06-04 11:27:10 -0300 | [diff] [blame] | 205 | SORT_PARENT, |
| 206 | SORT_CPU, |
Kan Liang | 2e7ea3a | 2015-09-04 10:45:43 -0400 | [diff] [blame] | 207 | SORT_SOCKET, |
Namhyung Kim | fc5871e | 2012-12-27 18:11:46 +0900 | [diff] [blame] | 208 | SORT_SRCLINE, |
Andi Kleen | 31191a8 | 2015-08-07 15:54:24 -0700 | [diff] [blame] | 209 | SORT_SRCFILE, |
Andi Kleen | f9ea55d | 2013-07-18 15:58:53 -0700 | [diff] [blame] | 210 | SORT_LOCAL_WEIGHT, |
| 211 | SORT_GLOBAL_WEIGHT, |
Andi Kleen | 475eeab | 2013-09-20 07:40:43 -0700 | [diff] [blame] | 212 | SORT_TRANSACTION, |
Namhyung Kim | a34bb6a | 2015-12-23 02:07:04 +0900 | [diff] [blame] | 213 | SORT_TRACE, |
Namhyung Kim | fc5871e | 2012-12-27 18:11:46 +0900 | [diff] [blame] | 214 | |
| 215 | /* branch stack specific sort keys */ |
| 216 | __SORT_BRANCH_STACK, |
| 217 | SORT_DSO_FROM = __SORT_BRANCH_STACK, |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 218 | SORT_DSO_TO, |
| 219 | SORT_SYM_FROM, |
| 220 | SORT_SYM_TO, |
| 221 | SORT_MISPREDICT, |
Andi Kleen | f5d05bc | 2013-09-20 07:40:41 -0700 | [diff] [blame] | 222 | SORT_ABORT, |
| 223 | SORT_IN_TX, |
Andi Kleen | 0e332f0 | 2015-07-18 08:24:46 -0700 | [diff] [blame] | 224 | SORT_CYCLES, |
Namhyung Kim | afab87b | 2013-04-03 21:26:11 +0900 | [diff] [blame] | 225 | |
| 226 | /* memory mode specific sort keys */ |
| 227 | __SORT_MEMORY_MODE, |
Andi Kleen | f9ea55d | 2013-07-18 15:58:53 -0700 | [diff] [blame] | 228 | SORT_MEM_DADDR_SYMBOL = __SORT_MEMORY_MODE, |
Namhyung Kim | afab87b | 2013-04-03 21:26:11 +0900 | [diff] [blame] | 229 | SORT_MEM_DADDR_DSO, |
| 230 | SORT_MEM_LOCKED, |
| 231 | SORT_MEM_TLB, |
| 232 | SORT_MEM_LVL, |
| 233 | SORT_MEM_SNOOP, |
Don Zickus | 9b32ba7 | 2014-06-01 15:38:29 +0200 | [diff] [blame] | 234 | SORT_MEM_DCACHELINE, |
Don Zickus | 28e6db2 | 2015-10-05 20:06:07 +0200 | [diff] [blame] | 235 | SORT_MEM_IADDR_SYMBOL, |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 236 | }; |
| 237 | |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 238 | /* |
| 239 | * configurable sorting bits |
| 240 | */ |
| 241 | |
| 242 | struct sort_entry { |
Frederic Weisbecker | fcd1498 | 2010-04-14 19:11:29 +0200 | [diff] [blame] | 243 | const char *se_header; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 244 | |
Frederic Weisbecker | fcd1498 | 2010-04-14 19:11:29 +0200 | [diff] [blame] | 245 | int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *); |
| 246 | int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *); |
Namhyung Kim | 202e7a6 | 2014-03-04 11:01:41 +0900 | [diff] [blame] | 247 | int64_t (*se_sort)(struct hist_entry *, struct hist_entry *); |
Arnaldo Carvalho de Melo | 316c713 | 2013-11-05 15:32:36 -0300 | [diff] [blame] | 248 | int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size, |
Frederic Weisbecker | fcd1498 | 2010-04-14 19:11:29 +0200 | [diff] [blame] | 249 | unsigned int width); |
Namhyung Kim | 5443010 | 2016-02-25 00:13:37 +0900 | [diff] [blame] | 250 | int (*se_filter)(struct hist_entry *he, int type, const void *arg); |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 251 | u8 se_width_idx; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | extern struct sort_entry sort_thread; |
| 255 | extern struct list_head hist_entry__sort_list; |
| 256 | |
Namhyung Kim | 40184c4 | 2015-12-23 02:07:01 +0900 | [diff] [blame] | 257 | struct perf_evlist; |
| 258 | struct pevent; |
| 259 | int setup_sorting(struct perf_evlist *evlist); |
Namhyung Kim | a7d945b | 2014-03-04 10:46:34 +0900 | [diff] [blame] | 260 | int setup_output_field(void); |
Namhyung Kim | 1c89fe9 | 2014-05-07 18:42:24 +0900 | [diff] [blame] | 261 | void reset_output_field(void); |
Namhyung Kim | 08e7154 | 2013-04-03 21:26:19 +0900 | [diff] [blame] | 262 | void sort__setup_elide(FILE *fp); |
Jiri Olsa | f299842 | 2014-05-23 17:15:47 +0200 | [diff] [blame] | 263 | void perf_hpp__set_elide(int idx, bool elide); |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 264 | |
Greg Price | b21484f | 2012-12-06 21:48:05 -0800 | [diff] [blame] | 265 | int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset); |
| 266 | |
Jiri Olsa | 2f3f9bc | 2014-08-22 15:58:38 +0200 | [diff] [blame] | 267 | bool is_strict_order(const char *order); |
Jiri Olsa | beeaaeb | 2015-10-06 14:25:11 +0200 | [diff] [blame] | 268 | |
| 269 | int hpp_dimension__add_output(unsigned col); |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 270 | #endif /* __PERF_SORT_H */ |