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