blob: d2a9e694810c12c3a6c7fd8e89879b1424a87fa3 [file] [log] [blame]
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +02001#ifndef __PERF_CALLCHAIN_H
2#define __PERF_CALLCHAIN_H
3
4#include "../perf.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -03005#include <linux/list.h>
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -03006#include <linux/rbtree.h>
Arnaldo Carvalho de Melo139633c2010-05-09 11:47:13 -03007#include "event.h"
Frederic Weisbecker44249612009-07-01 05:35:14 +02008#include "symbol.h"
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +02009
Namhyung Kim76a26542015-10-22 23:28:32 +090010#define HELP_PAD "\t\t\t\t"
11
12#define CALLCHAIN_HELP "setup and enables call-graph (stack chain/backtrace):\n\n"
Namhyung Kim21cf6282015-10-22 15:28:48 +090013
14#ifdef HAVE_DWARF_UNWIND_SUPPORT
Namhyung Kim76a26542015-10-22 23:28:32 +090015# define RECORD_MODE_HELP HELP_PAD "record_mode:\tcall graph recording mode (fp|dwarf|lbr)\n"
Namhyung Kim21cf6282015-10-22 15:28:48 +090016#else
Namhyung Kim76a26542015-10-22 23:28:32 +090017# define RECORD_MODE_HELP HELP_PAD "record_mode:\tcall graph recording mode (fp|lbr)\n"
Namhyung Kim21cf6282015-10-22 15:28:48 +090018#endif
19
Namhyung Kim76a26542015-10-22 23:28:32 +090020#define RECORD_SIZE_HELP \
21 HELP_PAD "record_size:\tif record_mode is 'dwarf', max size of stack recording (<bytes>)\n" \
22 HELP_PAD "\t\tdefault: 8192 (bytes)\n"
23
24#define CALLCHAIN_RECORD_HELP CALLCHAIN_HELP RECORD_MODE_HELP RECORD_SIZE_HELP
25
26#define CALLCHAIN_REPORT_HELP \
Namhyung Kim26e77922015-11-09 14:45:37 +090027 HELP_PAD "print_type:\tcall graph printing style (graph|flat|fractal|folded|none)\n" \
Namhyung Kim76a26542015-10-22 23:28:32 +090028 HELP_PAD "threshold:\tminimum call graph inclusion threshold (<percent>)\n" \
29 HELP_PAD "print_limit:\tmaximum number of call graph entry (<number>)\n" \
30 HELP_PAD "order:\t\tcall graph order (caller|callee)\n" \
31 HELP_PAD "sort_key:\tcall graph sort key (function|address)\n" \
Namhyung Kimf2af0082015-11-09 14:45:41 +090032 HELP_PAD "branch:\t\tinclude last branch info to call graph (branch)\n" \
33 HELP_PAD "value:\t\tcall graph value (percent|period|count)\n"
Namhyung Kim21cf6282015-10-22 15:28:48 +090034
Jiri Olsa2c83bc02014-05-05 12:46:17 +020035enum perf_call_graph_mode {
36 CALLCHAIN_NONE,
37 CALLCHAIN_FP,
38 CALLCHAIN_DWARF,
Kan Liangaad2b212015-01-05 13:23:04 -050039 CALLCHAIN_LBR,
Jiri Olsa2c83bc02014-05-05 12:46:17 +020040 CALLCHAIN_MAX
41};
42
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020043enum chain_mode {
Frederic Weisbeckerb1a88342009-08-08 02:16:24 +020044 CHAIN_NONE,
Frederic Weisbecker805d1272009-07-05 07:39:21 +020045 CHAIN_FLAT,
46 CHAIN_GRAPH_ABS,
Namhyung Kim26e77922015-11-09 14:45:37 +090047 CHAIN_GRAPH_REL,
48 CHAIN_FOLDED,
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020049};
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020050
Sam Liaod797fdc2011-06-07 23:49:46 +080051enum chain_order {
52 ORDER_CALLER,
53 ORDER_CALLEE
54};
55
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020056struct callchain_node {
57 struct callchain_node *parent;
Ingo Molnarf37a2912009-07-01 12:37:06 +020058 struct list_head val;
Namhyung Kim4b3a3212015-11-09 14:45:43 +090059 struct list_head parent_val;
Namhyung Kime3695172013-10-11 14:15:36 +090060 struct rb_node rb_node_in; /* to insert nodes in an rbtree */
61 struct rb_node rb_node; /* to sort nodes in an output tree */
62 struct rb_root rb_root_in; /* input tree of children */
63 struct rb_root rb_root; /* sorted output tree of children */
Ingo Molnarf37a2912009-07-01 12:37:06 +020064 unsigned int val_nr;
Namhyung Kim5e47f8f2015-11-09 14:45:40 +090065 unsigned int count;
66 unsigned int children_count;
Ingo Molnarf37a2912009-07-01 12:37:06 +020067 u64 hit;
Frederic Weisbecker19532872009-08-07 07:11:05 +020068 u64 children_hit;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020069};
70
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020071struct callchain_root {
72 u64 max_depth;
73 struct callchain_node node;
74};
75
Frederic Weisbecker805d1272009-07-05 07:39:21 +020076struct callchain_param;
77
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020078typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *,
Frederic Weisbecker805d1272009-07-05 07:39:21 +020079 u64, struct callchain_param *);
80
Andi Kleen99571ab2013-07-18 15:33:57 -070081enum chain_key {
82 CCKEY_FUNCTION,
83 CCKEY_ADDRESS
84};
85
Namhyung Kimf2af0082015-11-09 14:45:41 +090086enum chain_value {
87 CCVAL_PERCENT,
88 CCVAL_PERIOD,
89 CCVAL_COUNT,
90};
91
Frederic Weisbecker805d1272009-07-05 07:39:21 +020092struct callchain_param {
Namhyung Kim72a128a2014-09-23 10:01:41 +090093 bool enabled;
94 enum perf_call_graph_mode record_mode;
95 u32 dump_size;
Frederic Weisbecker805d1272009-07-05 07:39:21 +020096 enum chain_mode mode;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -030097 u32 print_limit;
Frederic Weisbecker805d1272009-07-05 07:39:21 +020098 double min_percent;
99 sort_chain_func_t sort;
Sam Liaod797fdc2011-06-07 23:49:46 +0800100 enum chain_order order;
Namhyung Kim792aeaf2015-10-22 16:45:46 +0900101 bool order_set;
Andi Kleen99571ab2013-07-18 15:33:57 -0700102 enum chain_key key;
Andi Kleen8b7bad52014-11-12 18:05:20 -0800103 bool branch_callstack;
Namhyung Kimf2af0082015-11-09 14:45:41 +0900104 enum chain_value value;
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200105};
106
Arnaldo Carvalho de Melo8f651ea2014-10-09 16:12:24 -0300107extern struct callchain_param callchain_param;
108
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200109struct callchain_list {
Ingo Molnarf37a2912009-07-01 12:37:06 +0200110 u64 ip;
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -0300111 struct map_symbol ms;
Namhyung Kim3698dab2015-05-05 23:55:46 +0900112 struct /* for TUI */ {
113 bool unfolded;
114 bool has_children;
115 };
Andi Kleen23f09812014-11-12 18:05:24 -0800116 char *srcline;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200117 struct list_head list;
118};
119
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100120/*
121 * A callchain cursor is a single linked list that
122 * let one feed a callchain progressively.
Masanari Iida3fd44cd2012-07-18 01:20:59 +0900123 * It keeps persistent allocated entries to minimize
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100124 * allocations.
125 */
126struct callchain_cursor_node {
127 u64 ip;
128 struct map *map;
129 struct symbol *sym;
130 struct callchain_cursor_node *next;
131};
132
133struct callchain_cursor {
134 u64 nr;
135 struct callchain_cursor_node *first;
136 struct callchain_cursor_node **last;
137 u64 pos;
138 struct callchain_cursor_node *curr;
139};
140
Namhyung Kim47260642012-05-31 14:43:26 +0900141extern __thread struct callchain_cursor callchain_cursor;
142
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200143static inline void callchain_init(struct callchain_root *root)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200144{
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200145 INIT_LIST_HEAD(&root->node.val);
Jiri Olsa646a6e82015-11-21 11:23:55 +0100146 INIT_LIST_HEAD(&root->node.parent_val);
Frederic Weisbecker97aa1052010-07-08 06:06:17 +0200147
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200148 root->node.parent = NULL;
149 root->node.hit = 0;
Frederic Weisbecker98ee74a2010-08-27 02:28:40 +0200150 root->node.children_hit = 0;
Namhyung Kime3695172013-10-11 14:15:36 +0900151 root->node.rb_root_in = RB_ROOT;
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200152 root->max_depth = 0;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200153}
154
Frederic Weisbeckerf08c3152011-01-14 04:51:59 +0100155static inline u64 callchain_cumul_hits(struct callchain_node *node)
Frederic Weisbecker19532872009-08-07 07:11:05 +0200156{
157 return node->hit + node->children_hit;
158}
159
Namhyung Kim5e47f8f2015-11-09 14:45:40 +0900160static inline unsigned callchain_cumul_counts(struct callchain_node *node)
161{
162 return node->count + node->children_count;
163}
164
Frederic Weisbecker16537f12011-01-14 04:52:00 +0100165int callchain_register_param(struct callchain_param *param);
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100166int callchain_append(struct callchain_root *root,
167 struct callchain_cursor *cursor,
168 u64 period);
169
170int callchain_merge(struct callchain_cursor *cursor,
171 struct callchain_root *dst, struct callchain_root *src);
Arnaldo Carvalho de Melo139633c2010-05-09 11:47:13 -0300172
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100173/*
174 * Initialize a cursor before adding entries inside, but keep
175 * the previously allocated entries as a cache.
176 */
177static inline void callchain_cursor_reset(struct callchain_cursor *cursor)
178{
179 cursor->nr = 0;
180 cursor->last = &cursor->first;
181}
182
183int callchain_cursor_append(struct callchain_cursor *cursor, u64 ip,
184 struct map *map, struct symbol *sym);
185
186/* Close a cursor writing session. Initialize for the reader */
187static inline void callchain_cursor_commit(struct callchain_cursor *cursor)
188{
189 cursor->curr = cursor->first;
190 cursor->pos = 0;
191}
192
193/* Cursor reading iteration helpers */
194static inline struct callchain_cursor_node *
195callchain_cursor_current(struct callchain_cursor *cursor)
196{
197 if (cursor->pos == cursor->nr)
198 return NULL;
199
200 return cursor->curr;
201}
202
203static inline void callchain_cursor_advance(struct callchain_cursor *cursor)
204{
205 cursor->curr = cursor->curr->next;
206 cursor->pos++;
207}
Arnaldo Carvalho de Melo75d9a1082012-12-11 16:46:05 -0300208
209struct option;
Namhyung Kim2dc9fb12014-01-14 14:25:35 +0900210struct hist_entry;
Arnaldo Carvalho de Melo75d9a1082012-12-11 16:46:05 -0300211
212int record_parse_callchain_opt(const struct option *opt, const char *arg, int unset);
Jiri Olsa09b0fd42013-10-26 16:25:33 +0200213int record_callchain_opt(const struct option *opt, const char *arg, int unset);
214
Namhyung Kim2dc9fb12014-01-14 14:25:35 +0900215int sample__resolve_callchain(struct perf_sample *sample, struct symbol **parent,
216 struct perf_evsel *evsel, struct addr_location *al,
217 int max_stack);
218int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample);
Namhyung Kimc7405d82013-10-31 13:58:30 +0900219int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
220 bool hide_unresolved);
Namhyung Kim2dc9fb12014-01-14 14:25:35 +0900221
Arnaldo Carvalho de Melo75d9a1082012-12-11 16:46:05 -0300222extern const char record_callchain_help[];
Arnaldo Carvalho de Melo3938bad2016-03-23 15:06:35 -0300223int parse_callchain_record(const char *arg, struct callchain_param *param);
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400224int parse_callchain_record_opt(const char *arg, struct callchain_param *param);
Don Zickuscff6bb42014-04-07 14:55:24 -0400225int parse_callchain_report_opt(const char *arg);
Namhyung Kima2c10d32015-10-22 15:28:49 +0900226int parse_callchain_top_opt(const char *arg);
Namhyung Kim2b9240c2014-09-23 10:01:43 +0900227int perf_callchain_config(const char *var, const char *value);
Namhyung Kimbe1f13e2012-09-10 13:38:00 +0900228
229static inline void callchain_cursor_snapshot(struct callchain_cursor *dest,
230 struct callchain_cursor *src)
231{
232 *dest = *src;
233
234 dest->first = src->curr;
235 dest->nr -= src->pos;
236}
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -0700237
238#ifdef HAVE_SKIP_CALLCHAIN_IDX
Arnaldo Carvalho de Melo3938bad2016-03-23 15:06:35 -0300239int arch_skip_callchain_idx(struct thread *thread, struct ip_callchain *chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -0700240#else
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300241static inline int arch_skip_callchain_idx(struct thread *thread __maybe_unused,
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -0700242 struct ip_callchain *chain __maybe_unused)
243{
244 return -1;
245}
246#endif
247
Andi Kleen2989cca2014-11-12 18:05:23 -0800248char *callchain_list__sym_name(struct callchain_list *cl,
249 char *bf, size_t bfsize, bool show_dso);
Namhyung Kim5ab250c2015-11-09 14:45:39 +0900250char *callchain_node__scnprintf_value(struct callchain_node *node,
251 char *bf, size_t bfsize, u64 total);
252int callchain_node__fprintf_value(struct callchain_node *node,
253 FILE *fp, u64 total);
Andi Kleen2989cca2014-11-12 18:05:23 -0800254
Namhyung Kimd1149602014-12-30 14:38:13 +0900255void free_callchain(struct callchain_root *root);
Namhyung Kim42b276a2016-01-05 12:06:00 +0900256void decay_callchain(struct callchain_root *root);
Namhyung Kim4b3a3212015-11-09 14:45:43 +0900257int callchain_node__make_parent_list(struct callchain_node *node);
Namhyung Kimd1149602014-12-30 14:38:13 +0900258
John Kacur8b40f522009-09-24 18:02:18 +0200259#endif /* __PERF_CALLCHAIN_H */