perf top: Use set_term_quiet() instead of open coded equivalent
[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
21#include "parse-options.h"
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;
dd68ada2
JK
34extern int sort__need_collapse;
35extern int sort__has_parent;
1af55640 36extern int sort__has_sym;
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;
dd68ada2 47
b24c28f7
NK
48struct he_stat {
49 u64 period;
50 u64 period_sys;
51 u64 period_us;
52 u64 period_guest_sys;
53 u64 period_guest_us;
05484298 54 u64 weight;
b24c28f7
NK
55 u32 nr_events;
56};
57
96c47f19
JO
58struct hist_entry_diff {
59 bool computed;
60
96c47f19
JO
61 /* PERF_HPP__DELTA */
62 double period_ratio_delta;
63
64 /* PERF_HPP__RATIO */
65 double period_ratio;
81d5f958
JO
66
67 /* HISTC_WEIGHTED_DIFF */
68 s64 wdiff;
96c47f19
JO
69};
70
0f0cbf7a
ACM
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 */
dd68ada2 77struct hist_entry {
1980c2eb 78 struct rb_node rb_node_in;
dd68ada2 79 struct rb_node rb_node;
b821c732
ACM
80 union {
81 struct list_head node;
82 struct list_head head;
83 } pairs;
b24c28f7 84 struct he_stat stat;
f8be1c8c 85 struct he_stat *stat_acc;
59fd5306 86 struct map_symbol ms;
a5e29aca 87 struct thread *thread;
4dfced35 88 struct comm *comm;
dd68ada2 89 u64 ip;
475eeab9 90 u64 transaction;
f60f3593 91 s32 cpu;
7365be55 92 u8 cpumode;
0f0cbf7a 93
96c47f19
JO
94 struct hist_entry_diff diff;
95
e0af43d2
JO
96 /* We are added by hists__add_dummy_entry. */
97 bool dummy;
98
0f0cbf7a
ACM
99 /* XXX These two should move to some tree widget lib */
100 u16 row_offset;
101 u16 nr_rows;
102
103 bool init_have_children;
dd68ada2 104 char level;
df71d95f 105 bool used;
a5e29aca 106 u8 filtered;
409a8be6 107 char *srcline;
83753190 108 struct symbol *parent;
dd464345 109 unsigned long position;
b821c732 110 struct rb_root sorted_chain;
b5387528 111 struct branch_info *branch_info;
ae359f19 112 struct hists *hists;
98a3b32c
SE
113 struct mem_info *mem_info;
114 struct callchain_root callchain[0]; /* must be last member */
dd68ada2
JK
115};
116
b821c732
ACM
117static inline bool hist_entry__has_pairs(struct hist_entry *he)
118{
119 return !list_empty(&he->pairs.node);
120}
121
122static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he)
123{
124 if (hist_entry__has_pairs(he))
125 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node);
126 return NULL;
127}
128
4d23322a
JO
129static inline void hist_entry__add_pair(struct hist_entry *pair,
130 struct hist_entry *he)
b821c732 131{
4d23322a 132 list_add_tail(&pair->pairs.node, &he->pairs.head);
b821c732
ACM
133}
134
14135663
NK
135static inline float hist_entry__get_percent_limit(struct hist_entry *he)
136{
137 u64 period = he->stat.period;
138 u64 total_period = hists__total_period(he->hists);
139
140 if (unlikely(total_period == 0))
141 return 0;
142
143 if (symbol_conf.cumulate_callchain)
144 period = he->stat_acc->period;
145
146 return period * 100.0 / total_period;
147}
148
149
55369fc1
NK
150enum sort_mode {
151 SORT_MODE__NORMAL,
152 SORT_MODE__BRANCH,
153 SORT_MODE__MEMORY,
512ae1bd
NK
154 SORT_MODE__TOP,
155 SORT_MODE__DIFF,
55369fc1
NK
156};
157
a4fb581b 158enum sort_type {
fc5871ed 159 /* common sort keys */
a4fb581b
FW
160 SORT_PID,
161 SORT_COMM,
162 SORT_DSO,
163 SORT_SYM,
f60f3593
AS
164 SORT_PARENT,
165 SORT_CPU,
fc5871ed 166 SORT_SRCLINE,
f9ea55d0
AK
167 SORT_LOCAL_WEIGHT,
168 SORT_GLOBAL_WEIGHT,
475eeab9 169 SORT_TRANSACTION,
fc5871ed
NK
170
171 /* branch stack specific sort keys */
172 __SORT_BRANCH_STACK,
173 SORT_DSO_FROM = __SORT_BRANCH_STACK,
b5387528
RAV
174 SORT_DSO_TO,
175 SORT_SYM_FROM,
176 SORT_SYM_TO,
177 SORT_MISPREDICT,
f5d05bce
AK
178 SORT_ABORT,
179 SORT_IN_TX,
afab87b9
NK
180
181 /* memory mode specific sort keys */
182 __SORT_MEMORY_MODE,
f9ea55d0 183 SORT_MEM_DADDR_SYMBOL = __SORT_MEMORY_MODE,
afab87b9
NK
184 SORT_MEM_DADDR_DSO,
185 SORT_MEM_LOCKED,
186 SORT_MEM_TLB,
187 SORT_MEM_LVL,
188 SORT_MEM_SNOOP,
9b32ba71 189 SORT_MEM_DCACHELINE,
a4fb581b
FW
190};
191
dd68ada2
JK
192/*
193 * configurable sorting bits
194 */
195
196struct sort_entry {
197 struct list_head list;
198
fcd14984 199 const char *se_header;
dd68ada2 200
fcd14984
FW
201 int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
202 int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *);
202e7a6d 203 int64_t (*se_sort)(struct hist_entry *, struct hist_entry *);
316c7136 204 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,
fcd14984 205 unsigned int width);
8a6c5b26 206 u8 se_width_idx;
dd68ada2
JK
207};
208
209extern struct sort_entry sort_thread;
210extern struct list_head hist_entry__sort_list;
211
55309985 212int setup_sorting(void);
a7d945bc 213int setup_output_field(void);
1c89fe9b 214void reset_output_field(void);
dd68ada2 215extern int sort_dimension__add(const char *);
08e71542 216void sort__setup_elide(FILE *fp);
f2998422 217void perf_hpp__set_elide(int idx, bool elide);
dd68ada2 218
b21484f1
GP
219int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset);
220
dd68ada2 221#endif /* __PERF_SORT_H */
This page took 0.195462 seconds and 5 git commands to generate.