blob: 1a7295255dc96286e334f81bf2ec9a7ebded3d72 [file] [log] [blame]
John Kacurdd68ada2009-09-24 18:02:49 +02001#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"
23
24#include "thread.h"
John Kacurdd68ada2009-09-24 18:02:49 +020025
26extern regex_t parent_regex;
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -030027extern const char *sort_order;
28extern const char default_parent_pattern[];
29extern const char *parent_pattern;
30extern const char default_sort_order[];
Greg Priceb21484f2012-12-06 21:48:05 -080031extern regex_t ignore_callees_regex;
32extern int have_ignore_callees;
John Kacurdd68ada2009-09-24 18:02:49 +020033extern int sort__need_collapse;
34extern int sort__has_parent;
Namhyung Kim1af556402012-09-14 17:35:27 +090035extern int sort__has_sym;
Namhyung Kim55369fc2013-04-01 20:35:20 +090036extern enum sort_mode sort__mode;
John Kacurdd68ada2009-09-24 18:02:49 +020037extern struct sort_entry sort_comm;
38extern struct sort_entry sort_dso;
39extern struct sort_entry sort_sym;
40extern struct sort_entry sort_parent;
Stephane Eraniana68c2c52012-03-08 23:47:48 +010041extern struct sort_entry sort_dso_from;
42extern struct sort_entry sort_dso_to;
43extern struct sort_entry sort_sym_from;
44extern struct sort_entry sort_sym_to;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020045extern enum sort_type sort__first_dimension;
John Kacurdd68ada2009-09-24 18:02:49 +020046
Namhyung Kimb24c28f2012-10-04 21:49:41 +090047struct he_stat {
48 u64 period;
49 u64 period_sys;
50 u64 period_us;
51 u64 period_guest_sys;
52 u64 period_guest_us;
Andi Kleen05484292013-01-24 16:10:29 +010053 u64 weight;
Namhyung Kimb24c28f2012-10-04 21:49:41 +090054 u32 nr_events;
55};
56
Jiri Olsa96c47f12012-10-05 16:44:42 +020057struct hist_entry_diff {
58 bool computed;
59
Jiri Olsa96c47f12012-10-05 16:44:42 +020060 /* PERF_HPP__DELTA */
61 double period_ratio_delta;
62
63 /* PERF_HPP__RATIO */
64 double period_ratio;
Jiri Olsa81d5f952012-10-05 16:44:43 +020065
66 /* HISTC_WEIGHTED_DIFF */
67 s64 wdiff;
Jiri Olsa96c47f12012-10-05 16:44:42 +020068};
69
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -030070/**
71 * struct hist_entry - histogram entry
72 *
73 * @row_offset - offset from the first callchain expanded to appear on screen
74 * @nr_rows - rows expanded in callchain, recalculated on folding/unfolding
75 */
John Kacurdd68ada2009-09-24 18:02:49 +020076struct hist_entry {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030077 struct rb_node rb_node_in;
John Kacurdd68ada2009-09-24 18:02:49 +020078 struct rb_node rb_node;
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -020079 union {
80 struct list_head node;
81 struct list_head head;
82 } pairs;
Namhyung Kimb24c28f2012-10-04 21:49:41 +090083 struct he_stat stat;
Arnaldo Carvalho de Melo59fd5302010-03-24 16:40:17 -030084 struct map_symbol ms;
Arnaldo Carvalho de Meloa5e29ac2010-04-03 22:44:37 -030085 struct thread *thread;
Namhyung Kim4dfced32013-09-13 16:28:57 +090086 struct comm *comm;
John Kacurdd68ada2009-09-24 18:02:49 +020087 u64 ip;
Andi Kleen475eeab2013-09-20 07:40:43 -070088 u64 transaction;
Arun Sharmaf60f3592010-06-04 11:27:10 -030089 s32 cpu;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -030090
Jiri Olsa96c47f12012-10-05 16:44:42 +020091 struct hist_entry_diff diff;
92
Jiri Olsae0af43d2012-12-01 21:18:20 +010093 /* We are added by hists__add_dummy_entry. */
94 bool dummy;
95
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -030096 /* XXX These two should move to some tree widget lib */
97 u16 row_offset;
98 u16 nr_rows;
99
100 bool init_have_children;
John Kacurdd68ada2009-09-24 18:02:49 +0200101 char level;
Arnaldo Carvalho de Melodf71d952011-10-13 08:01:33 -0300102 bool used;
Arnaldo Carvalho de Meloa5e29ac2010-04-03 22:44:37 -0300103 u8 filtered;
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300104 char *srcline;
Arnaldo Carvalho de Melo83753192010-04-03 16:30:44 -0300105 struct symbol *parent;
Jiri Olsadd464342012-10-04 21:49:36 +0900106 unsigned long position;
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200107 struct rb_root sorted_chain;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100108 struct branch_info *branch_info;
Jiri Olsaae359f12012-10-04 21:49:35 +0900109 struct hists *hists;
Stephane Eranian98a3b322013-01-24 16:10:35 +0100110 struct mem_info *mem_info;
111 struct callchain_root callchain[0]; /* must be last member */
John Kacurdd68ada2009-09-24 18:02:49 +0200112};
113
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200114static inline bool hist_entry__has_pairs(struct hist_entry *he)
115{
116 return !list_empty(&he->pairs.node);
117}
118
119static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he)
120{
121 if (hist_entry__has_pairs(he))
122 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node);
123 return NULL;
124}
125
Jiri Olsa4d233222012-12-13 14:09:00 +0100126static inline void hist_entry__add_pair(struct hist_entry *pair,
127 struct hist_entry *he)
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200128{
Jiri Olsa4d233222012-12-13 14:09:00 +0100129 list_add_tail(&pair->pairs.node, &he->pairs.head);
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200130}
131
Namhyung Kim55369fc2013-04-01 20:35:20 +0900132enum sort_mode {
133 SORT_MODE__NORMAL,
134 SORT_MODE__BRANCH,
135 SORT_MODE__MEMORY,
Namhyung Kim512ae1b2014-03-18 11:31:39 +0900136 SORT_MODE__TOP,
137 SORT_MODE__DIFF,
Namhyung Kim55369fc2013-04-01 20:35:20 +0900138};
139
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200140enum sort_type {
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900141 /* common sort keys */
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200142 SORT_PID,
143 SORT_COMM,
144 SORT_DSO,
145 SORT_SYM,
Arun Sharmaf60f3592010-06-04 11:27:10 -0300146 SORT_PARENT,
147 SORT_CPU,
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900148 SORT_SRCLINE,
Andi Kleenf9ea55d2013-07-18 15:58:53 -0700149 SORT_LOCAL_WEIGHT,
150 SORT_GLOBAL_WEIGHT,
Andi Kleen475eeab2013-09-20 07:40:43 -0700151 SORT_TRANSACTION,
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900152
153 /* branch stack specific sort keys */
154 __SORT_BRANCH_STACK,
155 SORT_DSO_FROM = __SORT_BRANCH_STACK,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100156 SORT_DSO_TO,
157 SORT_SYM_FROM,
158 SORT_SYM_TO,
159 SORT_MISPREDICT,
Andi Kleenf5d05bc2013-09-20 07:40:41 -0700160 SORT_ABORT,
161 SORT_IN_TX,
Namhyung Kimafab87b2013-04-03 21:26:11 +0900162
163 /* memory mode specific sort keys */
164 __SORT_MEMORY_MODE,
Andi Kleenf9ea55d2013-07-18 15:58:53 -0700165 SORT_MEM_DADDR_SYMBOL = __SORT_MEMORY_MODE,
Namhyung Kimafab87b2013-04-03 21:26:11 +0900166 SORT_MEM_DADDR_DSO,
167 SORT_MEM_LOCKED,
168 SORT_MEM_TLB,
169 SORT_MEM_LVL,
170 SORT_MEM_SNOOP,
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200171};
172
John Kacurdd68ada2009-09-24 18:02:49 +0200173/*
174 * configurable sorting bits
175 */
176
177struct sort_entry {
178 struct list_head list;
179
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200180 const char *se_header;
John Kacurdd68ada2009-09-24 18:02:49 +0200181
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200182 int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
183 int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300184 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200185 unsigned int width);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300186 u8 se_width_idx;
John Kacurdd68ada2009-09-24 18:02:49 +0200187 bool elide;
188};
189
190extern struct sort_entry sort_thread;
191extern struct list_head hist_entry__sort_list;
192
Namhyung Kim55309982013-02-06 14:57:16 +0900193int setup_sorting(void);
John Kacurdd68ada2009-09-24 18:02:49 +0200194extern int sort_dimension__add(const char *);
Namhyung Kim08e71542013-04-03 21:26:19 +0900195void sort__setup_elide(FILE *fp);
John Kacurdd68ada2009-09-24 18:02:49 +0200196
Greg Priceb21484f2012-12-06 21:48:05 -0800197int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset);
198
John Kacurdd68ada2009-09-24 18:02:49 +0200199#endif /* __PERF_SORT_H */