blob: 5f38d925e92f4f20917c11c44a9bb6274b7762fd [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;
Namhyung Kima7d945b2014-03-04 10:46:34 +090028extern const char *field_order;
Arnaldo Carvalho de Meloedb7c602010-05-17 16:22:41 -030029extern const char default_parent_pattern[];
30extern const char *parent_pattern;
31extern const char default_sort_order[];
Greg Priceb21484f2012-12-06 21:48:05 -080032extern regex_t ignore_callees_regex;
33extern int have_ignore_callees;
John Kacurdd68ada2009-09-24 18:02:49 +020034extern int sort__need_collapse;
35extern int sort__has_parent;
Namhyung Kim1af556402012-09-14 17:35:27 +090036extern int sort__has_sym;
Namhyung Kim55369fc2013-04-01 20:35:20 +090037extern enum sort_mode sort__mode;
John Kacurdd68ada2009-09-24 18:02:49 +020038extern struct sort_entry sort_comm;
39extern struct sort_entry sort_dso;
40extern struct sort_entry sort_sym;
41extern struct sort_entry sort_parent;
Stephane Eraniana68c2c52012-03-08 23:47:48 +010042extern 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;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020046extern enum sort_type sort__first_dimension;
John Kacurdd68ada2009-09-24 18:02:49 +020047
Namhyung Kimb24c28f2012-10-04 21:49:41 +090048struct he_stat {
49 u64 period;
50 u64 period_sys;
51 u64 period_us;
52 u64 period_guest_sys;
53 u64 period_guest_us;
Andi Kleen05484292013-01-24 16:10:29 +010054 u64 weight;
Namhyung Kimb24c28f2012-10-04 21:49:41 +090055 u32 nr_events;
56};
57
Jiri Olsa96c47f12012-10-05 16:44:42 +020058struct hist_entry_diff {
59 bool computed;
60
Jiri Olsa96c47f12012-10-05 16:44:42 +020061 /* PERF_HPP__DELTA */
62 double period_ratio_delta;
63
64 /* PERF_HPP__RATIO */
65 double period_ratio;
Jiri Olsa81d5f952012-10-05 16:44:43 +020066
67 /* HISTC_WEIGHTED_DIFF */
68 s64 wdiff;
Jiri Olsa96c47f12012-10-05 16:44:42 +020069};
70
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -030071/**
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 */
John Kacurdd68ada2009-09-24 18:02:49 +020077struct hist_entry {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030078 struct rb_node rb_node_in;
John Kacurdd68ada2009-09-24 18:02:49 +020079 struct rb_node rb_node;
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -020080 union {
81 struct list_head node;
82 struct list_head head;
83 } pairs;
Namhyung Kimb24c28f2012-10-04 21:49:41 +090084 struct he_stat stat;
Arnaldo Carvalho de Melo59fd5302010-03-24 16:40:17 -030085 struct map_symbol ms;
Arnaldo Carvalho de Meloa5e29ac2010-04-03 22:44:37 -030086 struct thread *thread;
Namhyung Kim4dfced32013-09-13 16:28:57 +090087 struct comm *comm;
John Kacurdd68ada2009-09-24 18:02:49 +020088 u64 ip;
Andi Kleen475eeab2013-09-20 07:40:43 -070089 u64 transaction;
Arun Sharmaf60f3592010-06-04 11:27:10 -030090 s32 cpu;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -030091
Jiri Olsa96c47f12012-10-05 16:44:42 +020092 struct hist_entry_diff diff;
93
Jiri Olsae0af43d2012-12-01 21:18:20 +010094 /* We are added by hists__add_dummy_entry. */
95 bool dummy;
96
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -030097 /* XXX These two should move to some tree widget lib */
98 u16 row_offset;
99 u16 nr_rows;
100
101 bool init_have_children;
John Kacurdd68ada2009-09-24 18:02:49 +0200102 char level;
Arnaldo Carvalho de Melodf71d952011-10-13 08:01:33 -0300103 bool used;
Arnaldo Carvalho de Meloa5e29ac2010-04-03 22:44:37 -0300104 u8 filtered;
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300105 char *srcline;
Arnaldo Carvalho de Melo83753192010-04-03 16:30:44 -0300106 struct symbol *parent;
Jiri Olsadd464342012-10-04 21:49:36 +0900107 unsigned long position;
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200108 struct rb_root sorted_chain;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100109 struct branch_info *branch_info;
Jiri Olsaae359f12012-10-04 21:49:35 +0900110 struct hists *hists;
Stephane Eranian98a3b322013-01-24 16:10:35 +0100111 struct mem_info *mem_info;
112 struct callchain_root callchain[0]; /* must be last member */
John Kacurdd68ada2009-09-24 18:02:49 +0200113};
114
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200115static inline bool hist_entry__has_pairs(struct hist_entry *he)
116{
117 return !list_empty(&he->pairs.node);
118}
119
120static inline struct hist_entry *hist_entry__next_pair(struct hist_entry *he)
121{
122 if (hist_entry__has_pairs(he))
123 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node);
124 return NULL;
125}
126
Jiri Olsa4d233222012-12-13 14:09:00 +0100127static inline void hist_entry__add_pair(struct hist_entry *pair,
128 struct hist_entry *he)
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200129{
Jiri Olsa4d233222012-12-13 14:09:00 +0100130 list_add_tail(&pair->pairs.node, &he->pairs.head);
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200131}
132
Namhyung Kim55369fc2013-04-01 20:35:20 +0900133enum sort_mode {
134 SORT_MODE__NORMAL,
135 SORT_MODE__BRANCH,
136 SORT_MODE__MEMORY,
Namhyung Kim512ae1b2014-03-18 11:31:39 +0900137 SORT_MODE__TOP,
138 SORT_MODE__DIFF,
Namhyung Kim55369fc2013-04-01 20:35:20 +0900139};
140
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200141enum sort_type {
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900142 /* common sort keys */
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200143 SORT_PID,
144 SORT_COMM,
145 SORT_DSO,
146 SORT_SYM,
Arun Sharmaf60f3592010-06-04 11:27:10 -0300147 SORT_PARENT,
148 SORT_CPU,
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900149 SORT_SRCLINE,
Andi Kleenf9ea55d2013-07-18 15:58:53 -0700150 SORT_LOCAL_WEIGHT,
151 SORT_GLOBAL_WEIGHT,
Andi Kleen475eeab2013-09-20 07:40:43 -0700152 SORT_TRANSACTION,
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900153
154 /* branch stack specific sort keys */
155 __SORT_BRANCH_STACK,
156 SORT_DSO_FROM = __SORT_BRANCH_STACK,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100157 SORT_DSO_TO,
158 SORT_SYM_FROM,
159 SORT_SYM_TO,
160 SORT_MISPREDICT,
Andi Kleenf5d05bc2013-09-20 07:40:41 -0700161 SORT_ABORT,
162 SORT_IN_TX,
Namhyung Kimafab87b2013-04-03 21:26:11 +0900163
164 /* memory mode specific sort keys */
165 __SORT_MEMORY_MODE,
Andi Kleenf9ea55d2013-07-18 15:58:53 -0700166 SORT_MEM_DADDR_SYMBOL = __SORT_MEMORY_MODE,
Namhyung Kimafab87b2013-04-03 21:26:11 +0900167 SORT_MEM_DADDR_DSO,
168 SORT_MEM_LOCKED,
169 SORT_MEM_TLB,
170 SORT_MEM_LVL,
171 SORT_MEM_SNOOP,
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200172};
173
John Kacurdd68ada2009-09-24 18:02:49 +0200174/*
175 * configurable sorting bits
176 */
177
178struct sort_entry {
179 struct list_head list;
180
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200181 const char *se_header;
John Kacurdd68ada2009-09-24 18:02:49 +0200182
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200183 int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
184 int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *);
Namhyung Kim202e7a62014-03-04 11:01:41 +0900185 int64_t (*se_sort)(struct hist_entry *, struct hist_entry *);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300186 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200187 unsigned int width);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300188 u8 se_width_idx;
John Kacurdd68ada2009-09-24 18:02:49 +0200189 bool elide;
190};
191
192extern struct sort_entry sort_thread;
193extern struct list_head hist_entry__sort_list;
194
Namhyung Kim55309982013-02-06 14:57:16 +0900195int setup_sorting(void);
Namhyung Kima7d945b2014-03-04 10:46:34 +0900196int setup_output_field(void);
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900197void reset_output_field(void);
John Kacurdd68ada2009-09-24 18:02:49 +0200198extern int sort_dimension__add(const char *);
Namhyung Kim08e71542013-04-03 21:26:19 +0900199void sort__setup_elide(FILE *fp);
John Kacurdd68ada2009-09-24 18:02:49 +0200200
Greg Priceb21484f2012-12-06 21:48:05 -0800201int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset);
202
John Kacurdd68ada2009-09-24 18:02:49 +0200203#endif /* __PERF_SORT_H */