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 | |
| 21 | #include "parse-options.h" |
| 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; |
| 35 | extern int sort__has_parent; |
Namhyung Kim | 1af55640 | 2012-09-14 17:35:27 +0900 | [diff] [blame] | 36 | extern int sort__has_sym; |
Namhyung Kim | 55369fc | 2013-04-01 20:35:20 +0900 | [diff] [blame] | 37 | extern enum sort_mode sort__mode; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 38 | extern struct sort_entry sort_comm; |
| 39 | extern struct sort_entry sort_dso; |
| 40 | extern struct sort_entry sort_sym; |
| 41 | extern struct sort_entry sort_parent; |
Stephane Eranian | a68c2c5 | 2012-03-08 23:47:48 +0100 | [diff] [blame] | 42 | extern struct sort_entry sort_dso_from; |
| 43 | extern struct sort_entry sort_dso_to; |
| 44 | extern struct sort_entry sort_sym_from; |
| 45 | extern struct sort_entry sort_sym_to; |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 46 | extern enum sort_type sort__first_dimension; |
Yunlong Song | 228f14f | 2015-03-23 11:50:05 +0800 | [diff] [blame] | 47 | extern const char default_mem_sort_order[]; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 48 | |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 49 | struct he_stat { |
| 50 | u64 period; |
| 51 | u64 period_sys; |
| 52 | u64 period_us; |
| 53 | u64 period_guest_sys; |
| 54 | u64 period_guest_us; |
Andi Kleen | 0548429 | 2013-01-24 16:10:29 +0100 | [diff] [blame] | 55 | u64 weight; |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 56 | u32 nr_events; |
| 57 | }; |
| 58 | |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 59 | struct hist_entry_diff { |
| 60 | bool computed; |
Namhyung Kim | a0b404f | 2015-04-19 13:04:10 +0900 | [diff] [blame] | 61 | union { |
| 62 | /* PERF_HPP__DELTA */ |
| 63 | double period_ratio_delta; |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 64 | |
Namhyung Kim | a0b404f | 2015-04-19 13:04:10 +0900 | [diff] [blame] | 65 | /* PERF_HPP__RATIO */ |
| 66 | double period_ratio; |
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 | /* HISTC_WEIGHTED_DIFF */ |
| 69 | s64 wdiff; |
| 70 | }; |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 71 | }; |
| 72 | |
Arnaldo Carvalho de Melo | 0f0cbf7 | 2010-07-26 17:13:40 -0300 | [diff] [blame] | 73 | /** |
| 74 | * struct hist_entry - histogram entry |
| 75 | * |
| 76 | * @row_offset - offset from the first callchain expanded to appear on screen |
| 77 | * @nr_rows - rows expanded in callchain, recalculated on folding/unfolding |
| 78 | */ |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 79 | struct hist_entry { |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 80 | struct rb_node rb_node_in; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 81 | struct rb_node rb_node; |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 82 | union { |
| 83 | struct list_head node; |
| 84 | struct list_head head; |
| 85 | } pairs; |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 86 | struct he_stat stat; |
Namhyung Kim | f8be1c8 | 2012-09-11 13:15:07 +0900 | [diff] [blame] | 87 | struct he_stat *stat_acc; |
Arnaldo Carvalho de Melo | 59fd530 | 2010-03-24 16:40:17 -0300 | [diff] [blame] | 88 | struct map_symbol ms; |
Arnaldo Carvalho de Melo | a5e29ac | 2010-04-03 22:44:37 -0300 | [diff] [blame] | 89 | struct thread *thread; |
Namhyung Kim | 4dfced3 | 2013-09-13 16:28:57 +0900 | [diff] [blame] | 90 | struct comm *comm; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 91 | u64 ip; |
Andi Kleen | 475eeab | 2013-09-20 07:40:43 -0700 | [diff] [blame] | 92 | u64 transaction; |
Arun Sharma | f60f359 | 2010-06-04 11:27:10 -0300 | [diff] [blame] | 93 | s32 cpu; |
Don Zickus | 7365be5 | 2014-05-27 12:28:05 -0400 | [diff] [blame] | 94 | u8 cpumode; |
Arnaldo Carvalho de Melo | 0f0cbf7 | 2010-07-26 17:13:40 -0300 | [diff] [blame] | 95 | |
Jiri Olsa | e0af43d | 2012-12-01 21:18:20 +0100 | [diff] [blame] | 96 | /* We are added by hists__add_dummy_entry. */ |
| 97 | bool dummy; |
| 98 | |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 99 | char level; |
Arnaldo Carvalho de Melo | a5e29ac | 2010-04-03 22:44:37 -0300 | [diff] [blame] | 100 | u8 filtered; |
Namhyung Kim | 2975082 | 2015-04-22 16:18:12 +0900 | [diff] [blame] | 101 | union { |
| 102 | /* |
| 103 | * Since perf diff only supports the stdio output, TUI |
| 104 | * fields are only accessed from perf report (or perf |
| 105 | * top). So make it an union to reduce memory usage. |
| 106 | */ |
| 107 | struct hist_entry_diff diff; |
| 108 | struct /* for TUI */ { |
| 109 | u16 row_offset; |
| 110 | u16 nr_rows; |
Namhyung Kim | d8a0f80 | 2015-04-22 16:18:13 +0900 | [diff] [blame] | 111 | bool init_have_children; |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 112 | bool unfolded; |
| 113 | bool has_children; |
Namhyung Kim | 2975082 | 2015-04-22 16:18:12 +0900 | [diff] [blame] | 114 | }; |
| 115 | }; |
Arnaldo Carvalho de Melo | 409a8be | 2012-05-30 10:33:24 -0300 | [diff] [blame] | 116 | char *srcline; |
Arnaldo Carvalho de Melo | 8375319 | 2010-04-03 16:30:44 -0300 | [diff] [blame] | 117 | struct symbol *parent; |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 118 | struct rb_root sorted_chain; |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 119 | struct branch_info *branch_info; |
Jiri Olsa | ae359f1 | 2012-10-04 21:49:35 +0900 | [diff] [blame] | 120 | struct hists *hists; |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 121 | struct mem_info *mem_info; |
| 122 | struct callchain_root callchain[0]; /* must be last member */ |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 123 | }; |
| 124 | |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 125 | static inline bool hist_entry__has_pairs(struct hist_entry *he) |
| 126 | { |
| 127 | return !list_empty(&he->pairs.node); |
| 128 | } |
| 129 | |
| 130 | static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) |
| 131 | { |
| 132 | if (hist_entry__has_pairs(he)) |
| 133 | return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); |
| 134 | return NULL; |
| 135 | } |
| 136 | |
Jiri Olsa | 4d23322 | 2012-12-13 14:09:00 +0100 | [diff] [blame] | 137 | static inline void hist_entry__add_pair(struct hist_entry *pair, |
| 138 | struct hist_entry *he) |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 139 | { |
Jiri Olsa | 4d23322 | 2012-12-13 14:09:00 +0100 | [diff] [blame] | 140 | list_add_tail(&pair->pairs.node, &he->pairs.head); |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 141 | } |
| 142 | |
Namhyung Kim | 1413566 | 2013-10-31 10:17:39 +0900 | [diff] [blame] | 143 | static inline float hist_entry__get_percent_limit(struct hist_entry *he) |
| 144 | { |
| 145 | u64 period = he->stat.period; |
| 146 | u64 total_period = hists__total_period(he->hists); |
| 147 | |
| 148 | if (unlikely(total_period == 0)) |
| 149 | return 0; |
| 150 | |
| 151 | if (symbol_conf.cumulate_callchain) |
| 152 | period = he->stat_acc->period; |
| 153 | |
| 154 | return period * 100.0 / total_period; |
| 155 | } |
| 156 | |
| 157 | |
Namhyung Kim | 55369fc | 2013-04-01 20:35:20 +0900 | [diff] [blame] | 158 | enum sort_mode { |
| 159 | SORT_MODE__NORMAL, |
| 160 | SORT_MODE__BRANCH, |
| 161 | SORT_MODE__MEMORY, |
Namhyung Kim | 512ae1b | 2014-03-18 11:31:39 +0900 | [diff] [blame] | 162 | SORT_MODE__TOP, |
| 163 | SORT_MODE__DIFF, |
Namhyung Kim | 55369fc | 2013-04-01 20:35:20 +0900 | [diff] [blame] | 164 | }; |
| 165 | |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 166 | enum sort_type { |
Namhyung Kim | fc5871e | 2012-12-27 18:11:46 +0900 | [diff] [blame] | 167 | /* common sort keys */ |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 168 | SORT_PID, |
| 169 | SORT_COMM, |
| 170 | SORT_DSO, |
| 171 | SORT_SYM, |
Arun Sharma | f60f359 | 2010-06-04 11:27:10 -0300 | [diff] [blame] | 172 | SORT_PARENT, |
| 173 | SORT_CPU, |
Namhyung Kim | fc5871e | 2012-12-27 18:11:46 +0900 | [diff] [blame] | 174 | SORT_SRCLINE, |
Andi Kleen | f9ea55d | 2013-07-18 15:58:53 -0700 | [diff] [blame] | 175 | SORT_LOCAL_WEIGHT, |
| 176 | SORT_GLOBAL_WEIGHT, |
Andi Kleen | 475eeab | 2013-09-20 07:40:43 -0700 | [diff] [blame] | 177 | SORT_TRANSACTION, |
Namhyung Kim | fc5871e | 2012-12-27 18:11:46 +0900 | [diff] [blame] | 178 | |
| 179 | /* branch stack specific sort keys */ |
| 180 | __SORT_BRANCH_STACK, |
| 181 | SORT_DSO_FROM = __SORT_BRANCH_STACK, |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 182 | SORT_DSO_TO, |
| 183 | SORT_SYM_FROM, |
| 184 | SORT_SYM_TO, |
| 185 | SORT_MISPREDICT, |
Andi Kleen | f5d05bc | 2013-09-20 07:40:41 -0700 | [diff] [blame] | 186 | SORT_ABORT, |
| 187 | SORT_IN_TX, |
Namhyung Kim | afab87b | 2013-04-03 21:26:11 +0900 | [diff] [blame] | 188 | |
| 189 | /* memory mode specific sort keys */ |
| 190 | __SORT_MEMORY_MODE, |
Andi Kleen | f9ea55d | 2013-07-18 15:58:53 -0700 | [diff] [blame] | 191 | SORT_MEM_DADDR_SYMBOL = __SORT_MEMORY_MODE, |
Namhyung Kim | afab87b | 2013-04-03 21:26:11 +0900 | [diff] [blame] | 192 | SORT_MEM_DADDR_DSO, |
| 193 | SORT_MEM_LOCKED, |
| 194 | SORT_MEM_TLB, |
| 195 | SORT_MEM_LVL, |
| 196 | SORT_MEM_SNOOP, |
Don Zickus | 9b32ba7 | 2014-06-01 15:38:29 +0200 | [diff] [blame] | 197 | SORT_MEM_DCACHELINE, |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 198 | }; |
| 199 | |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 200 | /* |
| 201 | * configurable sorting bits |
| 202 | */ |
| 203 | |
| 204 | struct sort_entry { |
| 205 | struct list_head list; |
| 206 | |
Frederic Weisbecker | fcd1498 | 2010-04-14 19:11:29 +0200 | [diff] [blame] | 207 | const char *se_header; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 208 | |
Frederic Weisbecker | fcd1498 | 2010-04-14 19:11:29 +0200 | [diff] [blame] | 209 | int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *); |
| 210 | int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *); |
Namhyung Kim | 202e7a6 | 2014-03-04 11:01:41 +0900 | [diff] [blame] | 211 | int64_t (*se_sort)(struct hist_entry *, struct hist_entry *); |
Arnaldo Carvalho de Melo | 316c713 | 2013-11-05 15:32:36 -0300 | [diff] [blame] | 212 | int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size, |
Frederic Weisbecker | fcd1498 | 2010-04-14 19:11:29 +0200 | [diff] [blame] | 213 | unsigned int width); |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 214 | u8 se_width_idx; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 215 | }; |
| 216 | |
| 217 | extern struct sort_entry sort_thread; |
| 218 | extern struct list_head hist_entry__sort_list; |
| 219 | |
Namhyung Kim | 5530998 | 2013-02-06 14:57:16 +0900 | [diff] [blame] | 220 | int setup_sorting(void); |
Namhyung Kim | a7d945b | 2014-03-04 10:46:34 +0900 | [diff] [blame] | 221 | int setup_output_field(void); |
Namhyung Kim | 1c89fe9 | 2014-05-07 18:42:24 +0900 | [diff] [blame] | 222 | void reset_output_field(void); |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 223 | extern int sort_dimension__add(const char *); |
Namhyung Kim | 08e7154 | 2013-04-03 21:26:19 +0900 | [diff] [blame] | 224 | void sort__setup_elide(FILE *fp); |
Jiri Olsa | f299842 | 2014-05-23 17:15:47 +0200 | [diff] [blame] | 225 | void perf_hpp__set_elide(int idx, bool elide); |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 226 | |
Greg Price | b21484f | 2012-12-06 21:48:05 -0800 | [diff] [blame] | 227 | int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset); |
| 228 | |
Jiri Olsa | 2f3f9bc | 2014-08-22 15:58:38 +0200 | [diff] [blame] | 229 | bool is_strict_order(const char *order); |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 230 | #endif /* __PERF_SORT_H */ |