OSDN Git Service

19dceb7f61450ed8367707bf3357dbead19095dc
[uclinux-h8/linux.git] / tools / perf / util / sort.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_SORT_H
3 #define __PERF_SORT_H
4 #include "../builtin.h"
5
6 #include <regex.h>
7
8 #include "color.h"
9 #include <linux/list.h>
10 #include "cache.h"
11 #include <linux/rbtree.h>
12 #include "map_symbol.h"
13 #include "symbol_conf.h"
14 #include "string.h"
15 #include "callchain.h"
16 #include "values.h"
17
18 #include "../perf.h"
19 #include "debug.h"
20 #include "header.h"
21
22 #include <subcmd/parse-options.h>
23 #include "parse-events.h"
24 #include "hist.h"
25 #include "srcline.h"
26
27 struct thread;
28
29 extern regex_t parent_regex;
30 extern const char *sort_order;
31 extern const char *field_order;
32 extern const char default_parent_pattern[];
33 extern const char *parent_pattern;
34 extern const char *default_sort_order;
35 extern regex_t ignore_callees_regex;
36 extern int have_ignore_callees;
37 extern enum sort_mode sort__mode;
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;
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;
46 extern struct sort_entry sort_srcline;
47 extern enum sort_type sort__first_dimension;
48 extern const char default_mem_sort_order[];
49
50 struct he_stat {
51         u64                     period;
52         u64                     period_sys;
53         u64                     period_us;
54         u64                     period_guest_sys;
55         u64                     period_guest_us;
56         u64                     weight;
57         u32                     nr_events;
58 };
59
60 struct namespace_id {
61         u64                     dev;
62         u64                     ino;
63 };
64
65 struct hist_entry_diff {
66         bool    computed;
67         union {
68                 /* PERF_HPP__DELTA */
69                 double  period_ratio_delta;
70
71                 /* PERF_HPP__RATIO */
72                 double  period_ratio;
73
74                 /* HISTC_WEIGHTED_DIFF */
75                 s64     wdiff;
76         };
77 };
78
79 struct hist_entry_ops {
80         void    *(*new)(size_t size);
81         void    (*free)(void *ptr);
82 };
83
84 /**
85  * struct hist_entry - histogram entry
86  *
87  * @row_offset - offset from the first callchain expanded to appear on screen
88  * @nr_rows - rows expanded in callchain, recalculated on folding/unfolding
89  */
90 struct hist_entry {
91         struct rb_node          rb_node_in;
92         struct rb_node          rb_node;
93         union {
94                 struct list_head node;
95                 struct list_head head;
96         } pairs;
97         struct he_stat          stat;
98         struct he_stat          *stat_acc;
99         struct map_symbol       ms;
100         struct thread           *thread;
101         struct comm             *comm;
102         struct namespace_id     cgroup_id;
103         u64                     ip;
104         u64                     transaction;
105         s32                     socket;
106         s32                     cpu;
107         u8                      cpumode;
108         u8                      depth;
109
110         /* We are added by hists__add_dummy_entry. */
111         bool                    dummy;
112         bool                    leaf;
113
114         char                    level;
115         u8                      filtered;
116
117         u16                     callchain_size;
118         union {
119                 /*
120                  * Since perf diff only supports the stdio output, TUI
121                  * fields are only accessed from perf report (or perf
122                  * top).  So make it a union to reduce memory usage.
123                  */
124                 struct hist_entry_diff  diff;
125                 struct /* for TUI */ {
126                         u16     row_offset;
127                         u16     nr_rows;
128                         bool    init_have_children;
129                         bool    unfolded;
130                         bool    has_children;
131                         bool    has_no_entry;
132                 };
133         };
134         char                    *srcline;
135         char                    *srcfile;
136         struct symbol           *parent;
137         struct branch_info      *branch_info;
138         long                    time;
139         struct hists            *hists;
140         struct mem_info         *mem_info;
141         void                    *raw_data;
142         u32                     raw_size;
143         void                    *trace_output;
144         struct perf_hpp_list    *hpp_list;
145         struct hist_entry       *parent_he;
146         struct hist_entry_ops   *ops;
147         union {
148                 /* this is for hierarchical entry structure */
149                 struct {
150                         struct rb_root_cached   hroot_in;
151                         struct rb_root_cached   hroot_out;
152                 };                              /* non-leaf entries */
153                 struct rb_root  sorted_chain;   /* leaf entry has callchains */
154         };
155         struct callchain_root   callchain[0]; /* must be last member */
156 };
157
158 static __pure inline bool hist_entry__has_callchains(struct hist_entry *he)
159 {
160         return he->callchain_size != 0;
161 }
162
163 static inline bool hist_entry__has_pairs(struct hist_entry *he)
164 {
165         return !list_empty(&he->pairs.node);
166 }
167
168 static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he)
169 {
170         if (hist_entry__has_pairs(he))
171                 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node);
172         return NULL;
173 }
174
175 static inline void hist_entry__add_pair(struct hist_entry *pair,
176                                         struct hist_entry *he)
177 {
178         list_add_tail(&pair->pairs.node, &he->pairs.head);
179 }
180
181 static inline float hist_entry__get_percent_limit(struct hist_entry *he)
182 {
183         u64 period = he->stat.period;
184         u64 total_period = hists__total_period(he->hists);
185
186         if (unlikely(total_period == 0))
187                 return 0;
188
189         if (symbol_conf.cumulate_callchain)
190                 period = he->stat_acc->period;
191
192         return period * 100.0 / total_period;
193 }
194
195 static inline u64 cl_address(u64 address)
196 {
197         /* return the cacheline of the address */
198         return (address & ~(cacheline_size() - 1));
199 }
200
201 static inline u64 cl_offset(u64 address)
202 {
203         /* return the cacheline of the address */
204         return (address & (cacheline_size() - 1));
205 }
206
207 enum sort_mode {
208         SORT_MODE__NORMAL,
209         SORT_MODE__BRANCH,
210         SORT_MODE__MEMORY,
211         SORT_MODE__TOP,
212         SORT_MODE__DIFF,
213         SORT_MODE__TRACEPOINT,
214 };
215
216 enum sort_type {
217         /* common sort keys */
218         SORT_PID,
219         SORT_COMM,
220         SORT_DSO,
221         SORT_SYM,
222         SORT_PARENT,
223         SORT_CPU,
224         SORT_SOCKET,
225         SORT_SRCLINE,
226         SORT_SRCFILE,
227         SORT_LOCAL_WEIGHT,
228         SORT_GLOBAL_WEIGHT,
229         SORT_TRANSACTION,
230         SORT_TRACE,
231         SORT_SYM_SIZE,
232         SORT_DSO_SIZE,
233         SORT_CGROUP_ID,
234         SORT_SYM_IPC_NULL,
235         SORT_TIME,
236
237         /* branch stack specific sort keys */
238         __SORT_BRANCH_STACK,
239         SORT_DSO_FROM = __SORT_BRANCH_STACK,
240         SORT_DSO_TO,
241         SORT_SYM_FROM,
242         SORT_SYM_TO,
243         SORT_MISPREDICT,
244         SORT_ABORT,
245         SORT_IN_TX,
246         SORT_CYCLES,
247         SORT_SRCLINE_FROM,
248         SORT_SRCLINE_TO,
249         SORT_SYM_IPC,
250
251         /* memory mode specific sort keys */
252         __SORT_MEMORY_MODE,
253         SORT_MEM_DADDR_SYMBOL = __SORT_MEMORY_MODE,
254         SORT_MEM_DADDR_DSO,
255         SORT_MEM_LOCKED,
256         SORT_MEM_TLB,
257         SORT_MEM_LVL,
258         SORT_MEM_SNOOP,
259         SORT_MEM_DCACHELINE,
260         SORT_MEM_IADDR_SYMBOL,
261         SORT_MEM_PHYS_DADDR,
262 };
263
264 /*
265  * configurable sorting bits
266  */
267
268 struct sort_entry {
269         const char *se_header;
270
271         int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
272         int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *);
273         int64_t (*se_sort)(struct hist_entry *, struct hist_entry *);
274         int     (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,
275                                unsigned int width);
276         int     (*se_filter)(struct hist_entry *he, int type, const void *arg);
277         u8      se_width_idx;
278 };
279
280 extern struct sort_entry sort_thread;
281 extern struct list_head hist_entry__sort_list;
282
283 struct perf_evlist;
284 struct tep_handle;
285 int setup_sorting(struct perf_evlist *evlist);
286 int setup_output_field(void);
287 void reset_output_field(void);
288 void sort__setup_elide(FILE *fp);
289 void perf_hpp__set_elide(int idx, bool elide);
290
291 int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset);
292
293 bool is_strict_order(const char *order);
294
295 int hpp_dimension__add_output(unsigned col);
296 void reset_dimensions(void);
297 int sort_dimension__add(struct perf_hpp_list *list, const char *tok,
298                         struct perf_evlist *evlist,
299                         int level);
300 int output_field_add(struct perf_hpp_list *list, char *tok);
301 int64_t
302 sort__iaddr_cmp(struct hist_entry *left, struct hist_entry *right);
303 int64_t
304 sort__daddr_cmp(struct hist_entry *left, struct hist_entry *right);
305 int64_t
306 sort__dcacheline_cmp(struct hist_entry *left, struct hist_entry *right);
307 char *hist_entry__srcline(struct hist_entry *he);
308 #endif  /* __PERF_SORT_H */