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