blob: 5b9c6246de6d95c5a7d9e74b274000e59351e5ec [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
Josh Poimboeuf4b6ab942015-12-15 09:39:39 -060021#include <subcmd/parse-options.h>
John Kacurdd68ada2009-09-24 18:02:49 +020022#include "parse-events.h"
Namhyung Kim14135662013-10-31 10:17:39 +090023#include "hist.h"
John Kacurdd68ada2009-09-24 18:02:49 +020024#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;
Namhyung Kimb1447a542016-01-22 11:22:41 -030035extern int sort__has_dso;
John Kacurdd68ada2009-09-24 18:02:49 +020036extern int sort__has_parent;
Namhyung Kim1af556402012-09-14 17:35:27 +090037extern int sort__has_sym;
Kan Liang2e7ea3a2015-09-04 10:45:43 -040038extern int sort__has_socket;
Namhyung Kimcfd92da2016-01-21 19:13:24 -030039extern int sort__has_thread;
Namhyung Kim55369fc2013-04-01 20:35:20 +090040extern enum sort_mode sort__mode;
John Kacurdd68ada2009-09-24 18:02:49 +020041extern struct sort_entry sort_comm;
42extern struct sort_entry sort_dso;
43extern struct sort_entry sort_sym;
44extern struct sort_entry sort_parent;
Stephane Eraniana68c2c52012-03-08 23:47:48 +010045extern 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;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020049extern enum sort_type sort__first_dimension;
Yunlong Song228f14f2015-03-23 11:50:05 +080050extern const char default_mem_sort_order[];
John Kacurdd68ada2009-09-24 18:02:49 +020051
Namhyung Kimb24c28f2012-10-04 21:49:41 +090052struct he_stat {
53 u64 period;
54 u64 period_sys;
55 u64 period_us;
56 u64 period_guest_sys;
57 u64 period_guest_us;
Andi Kleen05484292013-01-24 16:10:29 +010058 u64 weight;
Namhyung Kimb24c28f2012-10-04 21:49:41 +090059 u32 nr_events;
60};
61
Jiri Olsa96c47f12012-10-05 16:44:42 +020062struct hist_entry_diff {
63 bool computed;
Namhyung Kima0b404f2015-04-19 13:04:10 +090064 union {
65 /* PERF_HPP__DELTA */
66 double period_ratio_delta;
Jiri Olsa96c47f12012-10-05 16:44:42 +020067
Namhyung Kima0b404f2015-04-19 13:04:10 +090068 /* PERF_HPP__RATIO */
69 double period_ratio;
Jiri Olsa96c47f12012-10-05 16:44:42 +020070
Namhyung Kima0b404f2015-04-19 13:04:10 +090071 /* HISTC_WEIGHTED_DIFF */
72 s64 wdiff;
73 };
Jiri Olsa96c47f12012-10-05 16:44:42 +020074};
75
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -030076/**
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 */
John Kacurdd68ada2009-09-24 18:02:49 +020082struct hist_entry {
Arnaldo Carvalho de Melo1980c2eb2011-10-05 17:50:23 -030083 struct rb_node rb_node_in;
John Kacurdd68ada2009-09-24 18:02:49 +020084 struct rb_node rb_node;
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -020085 union {
86 struct list_head node;
87 struct list_head head;
88 } pairs;
Namhyung Kimb24c28f2012-10-04 21:49:41 +090089 struct he_stat stat;
Namhyung Kimf8be1c82012-09-11 13:15:07 +090090 struct he_stat *stat_acc;
Arnaldo Carvalho de Melo59fd5302010-03-24 16:40:17 -030091 struct map_symbol ms;
Arnaldo Carvalho de Meloa5e29ac2010-04-03 22:44:37 -030092 struct thread *thread;
Namhyung Kim4dfced32013-09-13 16:28:57 +090093 struct comm *comm;
John Kacurdd68ada2009-09-24 18:02:49 +020094 u64 ip;
Andi Kleen475eeab2013-09-20 07:40:43 -070095 u64 transaction;
Kan Liang0c4c4de2015-09-04 10:45:42 -040096 s32 socket;
Arun Sharmaf60f3592010-06-04 11:27:10 -030097 s32 cpu;
Don Zickus7365be52014-05-27 12:28:05 -040098 u8 cpumode;
Arnaldo Carvalho de Melo0f0cbf72010-07-26 17:13:40 -030099
Jiri Olsae0af43d2012-12-01 21:18:20 +0100100 /* We are added by hists__add_dummy_entry. */
101 bool dummy;
102
John Kacurdd68ada2009-09-24 18:02:49 +0200103 char level;
Arnaldo Carvalho de Meloa5e29ac2010-04-03 22:44:37 -0300104 u8 filtered;
Namhyung Kim29750822015-04-22 16:18:12 +0900105 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;
Namhyung Kimd8a0f802015-04-22 16:18:13 +0900115 bool init_have_children;
Namhyung Kim3698dab2015-05-05 23:55:46 +0900116 bool unfolded;
117 bool has_children;
Namhyung Kim29750822015-04-22 16:18:12 +0900118 };
119 };
Arnaldo Carvalho de Melo409a8be2012-05-30 10:33:24 -0300120 char *srcline;
Andi Kleen31191a82015-08-07 15:54:24 -0700121 char *srcfile;
Arnaldo Carvalho de Melo83753192010-04-03 16:30:44 -0300122 struct symbol *parent;
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200123 struct rb_root sorted_chain;
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100124 struct branch_info *branch_info;
Jiri Olsaae359f12012-10-04 21:49:35 +0900125 struct hists *hists;
Stephane Eranian98a3b322013-01-24 16:10:35 +0100126 struct mem_info *mem_info;
Namhyung Kim72392832015-12-24 11:16:17 +0900127 void *raw_data;
128 u32 raw_size;
Namhyung Kim60517d22015-12-23 02:07:03 +0900129 void *trace_output;
Stephane Eranian98a3b322013-01-24 16:10:35 +0100130 struct callchain_root callchain[0]; /* must be last member */
John Kacurdd68ada2009-09-24 18:02:49 +0200131};
132
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200133static 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
Jiri Olsa4d233222012-12-13 14:09:00 +0100145static inline void hist_entry__add_pair(struct hist_entry *pair,
146 struct hist_entry *he)
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200147{
Jiri Olsa4d233222012-12-13 14:09:00 +0100148 list_add_tail(&pair->pairs.node, &he->pairs.head);
Arnaldo Carvalho de Melob821c732012-10-25 14:42:45 -0200149}
150
Namhyung Kim14135662013-10-31 10:17:39 +0900151static 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
Jiri Olsae95cf702016-02-15 09:34:32 +0100165static inline u64 cl_address(u64 address)
166{
167 /* return the cacheline of the address */
168 return (address & ~(cacheline_size - 1));
169}
Namhyung Kim14135662013-10-31 10:17:39 +0900170
Jiri Olsad3927112016-02-15 09:34:33 +0100171static inline u64 cl_offset(u64 address)
172{
173 /* return the cacheline of the address */
174 return (address & (cacheline_size - 1));
175}
176
Namhyung Kim55369fc2013-04-01 20:35:20 +0900177enum sort_mode {
178 SORT_MODE__NORMAL,
179 SORT_MODE__BRANCH,
180 SORT_MODE__MEMORY,
Namhyung Kim512ae1b2014-03-18 11:31:39 +0900181 SORT_MODE__TOP,
182 SORT_MODE__DIFF,
Namhyung Kimd49dade2015-12-23 02:07:10 +0900183 SORT_MODE__TRACEPOINT,
Namhyung Kim55369fc2013-04-01 20:35:20 +0900184};
185
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200186enum sort_type {
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900187 /* common sort keys */
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200188 SORT_PID,
189 SORT_COMM,
190 SORT_DSO,
191 SORT_SYM,
Arun Sharmaf60f3592010-06-04 11:27:10 -0300192 SORT_PARENT,
193 SORT_CPU,
Kan Liang2e7ea3a2015-09-04 10:45:43 -0400194 SORT_SOCKET,
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900195 SORT_SRCLINE,
Andi Kleen31191a82015-08-07 15:54:24 -0700196 SORT_SRCFILE,
Andi Kleenf9ea55d2013-07-18 15:58:53 -0700197 SORT_LOCAL_WEIGHT,
198 SORT_GLOBAL_WEIGHT,
Andi Kleen475eeab2013-09-20 07:40:43 -0700199 SORT_TRANSACTION,
Namhyung Kima34bb6a02015-12-23 02:07:04 +0900200 SORT_TRACE,
Namhyung Kimfc5871e2012-12-27 18:11:46 +0900201
202 /* branch stack specific sort keys */
203 __SORT_BRANCH_STACK,
204 SORT_DSO_FROM = __SORT_BRANCH_STACK,
Roberto Agostino Vitillob5387522012-02-09 23:21:01 +0100205 SORT_DSO_TO,
206 SORT_SYM_FROM,
207 SORT_SYM_TO,
208 SORT_MISPREDICT,
Andi Kleenf5d05bc2013-09-20 07:40:41 -0700209 SORT_ABORT,
210 SORT_IN_TX,
Andi Kleen0e332f02015-07-18 08:24:46 -0700211 SORT_CYCLES,
Namhyung Kimafab87b2013-04-03 21:26:11 +0900212
213 /* memory mode specific sort keys */
214 __SORT_MEMORY_MODE,
Andi Kleenf9ea55d2013-07-18 15:58:53 -0700215 SORT_MEM_DADDR_SYMBOL = __SORT_MEMORY_MODE,
Namhyung Kimafab87b2013-04-03 21:26:11 +0900216 SORT_MEM_DADDR_DSO,
217 SORT_MEM_LOCKED,
218 SORT_MEM_TLB,
219 SORT_MEM_LVL,
220 SORT_MEM_SNOOP,
Don Zickus9b32ba72014-06-01 15:38:29 +0200221 SORT_MEM_DCACHELINE,
Don Zickus28e6db22015-10-05 20:06:07 +0200222 SORT_MEM_IADDR_SYMBOL,
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200223};
224
John Kacurdd68ada2009-09-24 18:02:49 +0200225/*
226 * configurable sorting bits
227 */
228
229struct sort_entry {
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200230 const char *se_header;
John Kacurdd68ada2009-09-24 18:02:49 +0200231
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200232 int64_t (*se_cmp)(struct hist_entry *, struct hist_entry *);
233 int64_t (*se_collapse)(struct hist_entry *, struct hist_entry *);
Namhyung Kim202e7a62014-03-04 11:01:41 +0900234 int64_t (*se_sort)(struct hist_entry *, struct hist_entry *);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -0300235 int (*se_snprintf)(struct hist_entry *he, char *bf, size_t size,
Frederic Weisbeckerfcd14982010-04-14 19:11:29 +0200236 unsigned int width);
Arnaldo Carvalho de Melo8a6c5b22010-07-20 14:42:52 -0300237 u8 se_width_idx;
John Kacurdd68ada2009-09-24 18:02:49 +0200238};
239
240extern struct sort_entry sort_thread;
241extern struct list_head hist_entry__sort_list;
242
Namhyung Kim40184c42015-12-23 02:07:01 +0900243struct perf_evlist;
244struct pevent;
245int setup_sorting(struct perf_evlist *evlist);
Namhyung Kima7d945b2014-03-04 10:46:34 +0900246int setup_output_field(void);
Namhyung Kim1c89fe92014-05-07 18:42:24 +0900247void reset_output_field(void);
Namhyung Kim08e71542013-04-03 21:26:19 +0900248void sort__setup_elide(FILE *fp);
Jiri Olsaf2998422014-05-23 17:15:47 +0200249void perf_hpp__set_elide(int idx, bool elide);
John Kacurdd68ada2009-09-24 18:02:49 +0200250
Greg Priceb21484f2012-12-06 21:48:05 -0800251int report_parse_ignore_callees_opt(const struct option *opt, const char *arg, int unset);
252
Jiri Olsa2f3f9bc2014-08-22 15:58:38 +0200253bool is_strict_order(const char *order);
Jiri Olsabeeaaeb2015-10-06 14:25:11 +0200254
255int hpp_dimension__add_output(unsigned col);
John Kacurdd68ada2009-09-24 18:02:49 +0200256#endif /* __PERF_SORT_H */