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