perf hists: Move sort__has_dso into struct perf_hpp_list
[deliverable/linux.git] / tools / perf / util / sort.h
CommitLineData
dd68ada2
JK
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
4b6ab94e 21#include <subcmd/parse-options.h>
dd68ada2 22#include "parse-events.h"
14135663 23#include "hist.h"
dd68ada2 24#include "thread.h"
dd68ada2
JK
25
26extern regex_t parent_regex;
edb7c60e 27extern const char *sort_order;
a7d945bc 28extern const char *field_order;
edb7c60e
ACM
29extern const char default_parent_pattern[];
30extern const char *parent_pattern;
31extern const char default_sort_order[];
b21484f1
GP
32extern regex_t ignore_callees_regex;
33extern int have_ignore_callees;
2e7ea3ab 34extern int sort__has_socket;
cfd92dad 35extern int sort__has_thread;
078b8d4a 36extern int sort__has_comm;
55369fc1 37extern enum sort_mode sort__mode;
dd68ada2
JK
38extern struct sort_entry sort_comm;
39extern struct sort_entry sort_dso;
40extern struct sort_entry sort_sym;
41extern struct sort_entry sort_parent;
a68c2c58
SE
42extern struct sort_entry sort_dso_from;
43extern struct sort_entry sort_dso_to;
44extern struct sort_entry sort_sym_from;
45extern struct sort_entry sort_sym_to;
a4fb581b 46extern enum sort_type sort__first_dimension;
228f14f2 47extern const char default_mem_sort_order[];
dd68ada2 48
b24c28f7
NK
49struct he_stat {
50 u64 period;
51 u64 period_sys;
52 u64 period_us;
53 u64 period_guest_sys;
54 u64 period_guest_us;
05484298 55 u64 weight;
b24c28f7
NK
56 u32 nr_events;
57};
58
96c47f19
JO
59struct hist_entry_diff {
60 bool computed;
a0b404f4
NK
61 union {
62 /* PERF_HPP__DELTA */
63 double period_ratio_delta;
96c47f19 64
a0b404f4
NK
65 /* PERF_HPP__RATIO */
66 double period_ratio;
81d5f958 67
a0b404f4
NK
68 /* HISTC_WEIGHTED_DIFF */
69 s64 wdiff;
70 };
96c47f19
JO
71};
72
0f0cbf7a
ACM
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 */
dd68ada2 79struct hist_entry {
1980c2eb 80 struct rb_node rb_node_in;
dd68ada2 81 struct rb_node rb_node;
b821c732
ACM
82 union {
83 struct list_head node;
84 struct list_head head;
85 } pairs;
b24c28f7 86 struct he_stat stat;
f8be1c8c 87 struct he_stat *stat_acc;
59fd5306 88 struct map_symbol ms;
a5e29aca 89 struct thread *thread;
4dfced35 90 struct comm *comm;
dd68ada2 91 u64 ip;
475eeab9 92 u64 transaction;
0c4c4deb 93 s32 socket;
f60f3593 94 s32 cpu;
7365be55 95 u8 cpumode;
aef810ec 96 u8 depth;
0f0cbf7a 97
e0af43d2
JO
98 /* We are added by hists__add_dummy_entry. */
99 bool dummy;
aef810ec 100 bool leaf;
e0af43d2 101
dd68ada2 102 char level;
a5e29aca 103 u8 filtered;
29750821
NK
104 union {
105 /*
106 * Since perf diff only supports the stdio output, TUI
107 * fields are only accessed from perf report (or perf
108 * top). So make it an union to reduce memory usage.
109 */
110 struct hist_entry_diff diff;
111 struct /* for TUI */ {
112 u16 row_offset;
113 u16 nr_rows;
d8a0f800 114 bool init_have_children;
3698dab1
NK
115 bool unfolded;
116 bool has_children;
79dded87 117 bool has_no_entry;
29750821
NK
118 };
119 };
409a8be6 120 char *srcline;
31191a85 121 char *srcfile;
83753190 122 struct symbol *parent;
b5387528 123 struct branch_info *branch_info;
ae359f19 124 struct hists *hists;
98a3b32c 125 struct mem_info *mem_info;
72392834
NK
126 void *raw_data;
127 u32 raw_size;
60517d28 128 void *trace_output;
1b2dbbf4 129 struct perf_hpp_list *hpp_list;
aef810ec
NK
130 struct hist_entry *parent_he;
131 union {
132 /* this is for hierarchical entry structure */
133 struct {
134 struct rb_root hroot_in;
135 struct rb_root hroot_out;
136 }; /* non-leaf entries */
137 struct rb_root sorted_chain; /* leaf entry has callchains */
138 };
98a3b32c 139 struct callchain_root callchain[0]; /* must be last member */
dd68ada2
JK
140};
141
b821c732
ACM
142static inline bool hist_entry__has_pairs(struct hist_entry *he)
143{
144 return !list_empty(&he->pairs.node);
145}
146
147static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he)
148{
149 if (hist_entry__has_pairs(he))
150 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node);
151 return NULL;
152}
153
4d23322a
JO
154static inline void hist_entry__add_pair(struct hist_entry *pair,
155 struct hist_entry *he)
b821c732 156{
4d23322a 157 list_add_tail(&pair->pairs.node, &he->pairs.head);
b821c732
ACM
158}
159
14135663
NK
160static inline float hist_entry__get_percent_limit(struct hist_entry *he)
161{
162 u64 period = he->stat.period;
163 u64 total_period = hists__total_period(he->hists);
164
165 if (unlikely(total_period == 0))
166 return 0;
167
168 if (symbol_conf.cumulate_callchain)
169 period = he->stat_acc->period;
170
171 return period * 100.0 / total_period;
172}
173
e95cf700
JO
174static inline u64 cl_address(u64 address)
175{
176 /* return the cacheline of the address */
177 return (address & ~(cacheline_size - 1));
178}
14135663 179
d3927110
JO
180static inline u64 cl_offset(u64 address)
181{
182 /* return the cacheline of the address */
183 return (address & (cacheline_size - 1));
184}
185
55369fc1
NK
186enum sort_mode {
187 SORT_MODE__NORMAL,
188 SORT_MODE__BRANCH,
189 SORT_MODE__MEMORY,
512ae1bd
NK
190 SORT_MODE__TOP,
191 SORT_MODE__DIFF,
d49dadea 192 SORT_MODE__TRACEPOINT,
55369fc1
NK
193};
194
a4fb581b 195enum sort_type {
fc5871ed 196 /* common sort keys */
a4fb581b
FW
197 SORT_PID,
198 SORT_COMM,
199 SORT_DSO,
200 SORT_SYM,
f60f3593
AS
201 SORT_PARENT,
202 SORT_CPU,
2e7ea3ab 203 SORT_SOCKET,
fc5871ed 204 SORT_SRCLINE,
31191a85 205 SORT_SRCFILE,
f9ea55d0
AK
206 SORT_LOCAL_WEIGHT,
207 SORT_GLOBAL_WEIGHT,
475eeab9 208 SORT_TRANSACTION,
a34bb6a0 209 SORT_TRACE,
fc5871ed
NK
210
211 /* branch stack specific sort keys */
212 __SORT_BRANCH_STACK,
213 SORT_DSO_FROM = __SORT_BRANCH_STACK,
b5387528
RAV
214 SORT_DSO_TO,
215 SORT_SYM_FROM,
216 SORT_SYM_TO,
217 SORT_MISPREDICT,
f5d05bce
AK
218 SORT_ABORT,
219 SORT_IN_TX,
0e332f03 220 SORT_CYCLES,
afab87b9
NK
221
222 /* memory mode specific sort keys */
223 __SORT_MEMORY_MODE,
f9ea55d0 224 SORT_MEM_DADDR_SYMBOL = __SORT_MEMORY_MODE,
afab87b9
NK
225 SORT_MEM_DADDR_DSO,
226 SORT_MEM_LOCKED,
227 SORT_MEM_TLB,
228 SORT_MEM_LVL,
229 SORT_MEM_SNOOP,
9b32ba71 230 SORT_MEM_DCACHELINE,
28e6db20 231 SORT_MEM_IADDR_SYMBOL,
a4fb581b
FW
232};
233
dd68ada2
JK
234/*
235 * configurable sorting bits
236 */
237
238struct sort_entry {
fcd14984 239 const char *se_header;
dd68ada2 240
fcd14984
FW
241 int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
242 int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *);
202e7a6d 243 int64_t (*se_sort)(struct hist_entry *, struct hist_entry *);
316c7136 244 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,
fcd14984 245 unsigned int width);
54430101 246 int (*se_filter)(struct hist_entry *he, int type, const void *arg);
8a6c5b26 247 u8 se_width_idx;
dd68ada2
JK
248};
249
250extern struct sort_entry sort_thread;
251extern struct list_head hist_entry__sort_list;
252
40184c46
NK
253struct perf_evlist;
254struct pevent;
255int setup_sorting(struct perf_evlist *evlist);
a7d945bc 256int setup_output_field(void);
1c89fe9b 257void reset_output_field(void);
08e71542 258void sort__setup_elide(FILE *fp);
f2998422 259void perf_hpp__set_elide(int idx, bool elide);
dd68ada2 260
b21484f1
GP
261int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset);
262
2f3f9bcf 263bool is_strict_order(const char *order);
beeaaeb3
JO
264
265int hpp_dimension__add_output(unsigned col);
dd68ada2 266#endif /* __PERF_SORT_H */
This page took 0.242636 seconds and 5 git commands to generate.