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" |
| 23 | |
| 24 | #include "thread.h" |
| 25 | #include "sort.h" |
| 26 | |
| 27 | extern regex_t parent_regex; |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 28 | extern const char *sort_order; |
| 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; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 47 | |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 48 | struct he_stat { |
| 49 | u64 period; |
| 50 | u64 period_sys; |
| 51 | u64 period_us; |
| 52 | u64 period_guest_sys; |
| 53 | u64 period_guest_us; |
Andi Kleen | 0548429 | 2013-01-24 16:10:29 +0100 | [diff] [blame] | 54 | u64 weight; |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 55 | u32 nr_events; |
| 56 | }; |
| 57 | |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 58 | struct hist_entry_diff { |
| 59 | bool computed; |
| 60 | |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 61 | /* PERF_HPP__DELTA */ |
| 62 | double period_ratio_delta; |
| 63 | |
| 64 | /* PERF_HPP__RATIO */ |
| 65 | double period_ratio; |
Jiri Olsa | 81d5f95 | 2012-10-05 16:44:43 +0200 | [diff] [blame] | 66 | |
| 67 | /* HISTC_WEIGHTED_DIFF */ |
| 68 | s64 wdiff; |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 69 | }; |
| 70 | |
Arnaldo Carvalho de Melo | 0f0cbf7 | 2010-07-26 17:13:40 -0300 | [diff] [blame] | 71 | /** |
| 72 | * struct hist_entry - histogram entry |
| 73 | * |
| 74 | * @row_offset - offset from the first callchain expanded to appear on screen |
| 75 | * @nr_rows - rows expanded in callchain, recalculated on folding/unfolding |
| 76 | */ |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 77 | struct hist_entry { |
Arnaldo Carvalho de Melo | 1980c2eb | 2011-10-05 17:50:23 -0300 | [diff] [blame] | 78 | struct rb_node rb_node_in; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 79 | struct rb_node rb_node; |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 80 | union { |
| 81 | struct list_head node; |
| 82 | struct list_head head; |
| 83 | } pairs; |
Namhyung Kim | b24c28f | 2012-10-04 21:49:41 +0900 | [diff] [blame] | 84 | struct he_stat stat; |
Arnaldo Carvalho de Melo | 59fd530 | 2010-03-24 16:40:17 -0300 | [diff] [blame] | 85 | struct map_symbol ms; |
Arnaldo Carvalho de Melo | a5e29ac | 2010-04-03 22:44:37 -0300 | [diff] [blame] | 86 | struct thread *thread; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 87 | u64 ip; |
Arun Sharma | f60f359 | 2010-06-04 11:27:10 -0300 | [diff] [blame] | 88 | s32 cpu; |
Arnaldo Carvalho de Melo | 0f0cbf7 | 2010-07-26 17:13:40 -0300 | [diff] [blame] | 89 | |
Jiri Olsa | 96c47f1 | 2012-10-05 16:44:42 +0200 | [diff] [blame] | 90 | struct hist_entry_diff diff; |
| 91 | |
Jiri Olsa | e0af43d | 2012-12-01 21:18:20 +0100 | [diff] [blame^] | 92 | /* We are added by hists__add_dummy_entry. */ |
| 93 | bool dummy; |
| 94 | |
Arnaldo Carvalho de Melo | 0f0cbf7 | 2010-07-26 17:13:40 -0300 | [diff] [blame] | 95 | /* XXX These two should move to some tree widget lib */ |
| 96 | u16 row_offset; |
| 97 | u16 nr_rows; |
| 98 | |
| 99 | bool init_have_children; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 100 | char level; |
Arnaldo Carvalho de Melo | df71d95 | 2011-10-13 08:01:33 -0300 | [diff] [blame] | 101 | bool used; |
Arnaldo Carvalho de Melo | a5e29ac | 2010-04-03 22:44:37 -0300 | [diff] [blame] | 102 | u8 filtered; |
Arnaldo Carvalho de Melo | 409a8be | 2012-05-30 10:33:24 -0300 | [diff] [blame] | 103 | char *srcline; |
Arnaldo Carvalho de Melo | 8375319 | 2010-04-03 16:30:44 -0300 | [diff] [blame] | 104 | struct symbol *parent; |
Jiri Olsa | dd46434 | 2012-10-04 21:49:36 +0900 | [diff] [blame] | 105 | unsigned long position; |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 106 | struct rb_root sorted_chain; |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 107 | struct branch_info *branch_info; |
Jiri Olsa | ae359f1 | 2012-10-04 21:49:35 +0900 | [diff] [blame] | 108 | struct hists *hists; |
Stephane Eranian | 98a3b32 | 2013-01-24 16:10:35 +0100 | [diff] [blame] | 109 | struct mem_info *mem_info; |
| 110 | struct callchain_root callchain[0]; /* must be last member */ |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 111 | }; |
| 112 | |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 113 | static inline bool hist_entry__has_pairs(struct hist_entry *he) |
| 114 | { |
| 115 | return !list_empty(&he->pairs.node); |
| 116 | } |
| 117 | |
| 118 | static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he) |
| 119 | { |
| 120 | if (hist_entry__has_pairs(he)) |
| 121 | return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); |
| 122 | return NULL; |
| 123 | } |
| 124 | |
Jiri Olsa | 4d23322 | 2012-12-13 14:09:00 +0100 | [diff] [blame] | 125 | static inline void hist_entry__add_pair(struct hist_entry *pair, |
| 126 | struct hist_entry *he) |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 127 | { |
Jiri Olsa | 4d23322 | 2012-12-13 14:09:00 +0100 | [diff] [blame] | 128 | list_add_tail(&pair->pairs.node, &he->pairs.head); |
Arnaldo Carvalho de Melo | b821c73 | 2012-10-25 14:42:45 -0200 | [diff] [blame] | 129 | } |
| 130 | |
Namhyung Kim | 55369fc | 2013-04-01 20:35:20 +0900 | [diff] [blame] | 131 | enum sort_mode { |
| 132 | SORT_MODE__NORMAL, |
| 133 | SORT_MODE__BRANCH, |
| 134 | SORT_MODE__MEMORY, |
| 135 | }; |
| 136 | |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 137 | enum sort_type { |
Namhyung Kim | fc5871e | 2012-12-27 18:11:46 +0900 | [diff] [blame] | 138 | /* common sort keys */ |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 139 | SORT_PID, |
| 140 | SORT_COMM, |
| 141 | SORT_DSO, |
| 142 | SORT_SYM, |
Arun Sharma | f60f359 | 2010-06-04 11:27:10 -0300 | [diff] [blame] | 143 | SORT_PARENT, |
| 144 | SORT_CPU, |
Namhyung Kim | fc5871e | 2012-12-27 18:11:46 +0900 | [diff] [blame] | 145 | SORT_SRCLINE, |
| 146 | |
| 147 | /* branch stack specific sort keys */ |
| 148 | __SORT_BRANCH_STACK, |
| 149 | SORT_DSO_FROM = __SORT_BRANCH_STACK, |
Roberto Agostino Vitillo | b538752 | 2012-02-09 23:21:01 +0100 | [diff] [blame] | 150 | SORT_DSO_TO, |
| 151 | SORT_SYM_FROM, |
| 152 | SORT_SYM_TO, |
| 153 | SORT_MISPREDICT, |
Namhyung Kim | afab87b | 2013-04-03 21:26:11 +0900 | [diff] [blame] | 154 | |
| 155 | /* memory mode specific sort keys */ |
| 156 | __SORT_MEMORY_MODE, |
| 157 | SORT_LOCAL_WEIGHT = __SORT_MEMORY_MODE, |
| 158 | SORT_GLOBAL_WEIGHT, |
| 159 | SORT_MEM_DADDR_SYMBOL, |
| 160 | SORT_MEM_DADDR_DSO, |
| 161 | SORT_MEM_LOCKED, |
| 162 | SORT_MEM_TLB, |
| 163 | SORT_MEM_LVL, |
| 164 | SORT_MEM_SNOOP, |
Frederic Weisbecker | a4fb581 | 2009-10-22 23:23:23 +0200 | [diff] [blame] | 165 | }; |
| 166 | |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 167 | /* |
| 168 | * configurable sorting bits |
| 169 | */ |
| 170 | |
| 171 | struct sort_entry { |
| 172 | struct list_head list; |
| 173 | |
Frederic Weisbecker | fcd1498 | 2010-04-14 19:11:29 +0200 | [diff] [blame] | 174 | const char *se_header; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 175 | |
Frederic Weisbecker | fcd1498 | 2010-04-14 19:11:29 +0200 | [diff] [blame] | 176 | int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *); |
| 177 | int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *); |
| 178 | int (*se_snprintf)(struct hist_entry *self, char *bf, size_t size, |
| 179 | unsigned int width); |
Arnaldo Carvalho de Melo | 8a6c5b2 | 2010-07-20 14:42:52 -0300 | [diff] [blame] | 180 | u8 se_width_idx; |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 181 | bool elide; |
| 182 | }; |
| 183 | |
| 184 | extern struct sort_entry sort_thread; |
| 185 | extern struct list_head hist_entry__sort_list; |
| 186 | |
Namhyung Kim | 5530998 | 2013-02-06 14:57:16 +0900 | [diff] [blame] | 187 | int setup_sorting(void); |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 188 | extern int sort_dimension__add(const char *); |
Namhyung Kim | 08e7154 | 2013-04-03 21:26:19 +0900 | [diff] [blame] | 189 | void sort__setup_elide(FILE *fp); |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 190 | |
Greg Price | b21484f | 2012-12-06 21:48:05 -0800 | [diff] [blame] | 191 | int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset); |
| 192 | |
John Kacur | dd68ada | 2009-09-24 18:02:49 +0200 | [diff] [blame] | 193 | #endif /* __PERF_SORT_H */ |