]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/util/callchain.h
Merge branch 'nvme-4.13' of git://git.infradead.org/nvme into for-linus
[mirror_ubuntu-artful-kernel.git] / tools / perf / util / callchain.h
CommitLineData
8cb76d99
FW
1#ifndef __PERF_CALLCHAIN_H
2#define __PERF_CALLCHAIN_H
3
4#include "../perf.h"
5da50258 5#include <linux/list.h>
43cbcd8a 6#include <linux/rbtree.h>
139633c6 7#include "event.h"
aa33b9b9 8#include "map.h"
4424961a 9#include "symbol.h"
8cb76d99 10
76a26549
NK
11#define HELP_PAD "\t\t\t\t"
12
13#define CALLCHAIN_HELP "setup and enables call-graph (stack chain/backtrace):\n\n"
21cf6284 14
76a26549 15# define RECORD_MODE_HELP HELP_PAD "record_mode:\tcall graph recording mode (fp|dwarf|lbr)\n"
21cf6284 16
76a26549
NK
17#define RECORD_SIZE_HELP \
18 HELP_PAD "record_size:\tif record_mode is 'dwarf', max size of stack recording (<bytes>)\n" \
19 HELP_PAD "\t\tdefault: 8192 (bytes)\n"
20
21#define CALLCHAIN_RECORD_HELP CALLCHAIN_HELP RECORD_MODE_HELP RECORD_SIZE_HELP
22
23#define CALLCHAIN_REPORT_HELP \
26e77924 24 HELP_PAD "print_type:\tcall graph printing style (graph|flat|fractal|folded|none)\n" \
76a26549
NK
25 HELP_PAD "threshold:\tminimum call graph inclusion threshold (<percent>)\n" \
26 HELP_PAD "print_limit:\tmaximum number of call graph entry (<number>)\n" \
27 HELP_PAD "order:\t\tcall graph order (caller|callee)\n" \
28 HELP_PAD "sort_key:\tcall graph sort key (function|address)\n" \
f2af0086
NK
29 HELP_PAD "branch:\t\tinclude last branch info to call graph (branch)\n" \
30 HELP_PAD "value:\t\tcall graph value (percent|period|count)\n"
21cf6284 31
2c83bc08
JO
32enum perf_call_graph_mode {
33 CALLCHAIN_NONE,
34 CALLCHAIN_FP,
35 CALLCHAIN_DWARF,
aad2b21c 36 CALLCHAIN_LBR,
2c83bc08
JO
37 CALLCHAIN_MAX
38};
39
4eb3e478 40enum chain_mode {
b1a88349 41 CHAIN_NONE,
805d127d
FW
42 CHAIN_FLAT,
43 CHAIN_GRAPH_ABS,
26e77924
NK
44 CHAIN_GRAPH_REL,
45 CHAIN_FOLDED,
4eb3e478 46};
8cb76d99 47
d797fdc5
SL
48enum chain_order {
49 ORDER_CALLER,
50 ORDER_CALLEE
51};
52
8cb76d99
FW
53struct callchain_node {
54 struct callchain_node *parent;
f37a291c 55 struct list_head val;
4b3a3212 56 struct list_head parent_val;
e369517c
NK
57 struct rb_node rb_node_in; /* to insert nodes in an rbtree */
58 struct rb_node rb_node; /* to sort nodes in an output tree */
59 struct rb_root rb_root_in; /* input tree of children */
60 struct rb_root rb_root; /* sorted output tree of children */
f37a291c 61 unsigned int val_nr;
5e47f8ff
NK
62 unsigned int count;
63 unsigned int children_count;
f37a291c 64 u64 hit;
1953287b 65 u64 children_hit;
8cb76d99
FW
66};
67
d2009c51
FW
68struct callchain_root {
69 u64 max_depth;
70 struct callchain_node node;
71};
72
805d127d
FW
73struct callchain_param;
74
d2009c51 75typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *,
805d127d
FW
76 u64, struct callchain_param *);
77
99571ab3
AK
78enum chain_key {
79 CCKEY_FUNCTION,
5dfa210e
MW
80 CCKEY_ADDRESS,
81 CCKEY_SRCLINE
99571ab3
AK
82};
83
f2af0086
NK
84enum chain_value {
85 CCVAL_PERCENT,
86 CCVAL_PERIOD,
87 CCVAL_COUNT,
88};
89
805d127d 90struct callchain_param {
72a128aa
NK
91 bool enabled;
92 enum perf_call_graph_mode record_mode;
93 u32 dump_size;
805d127d 94 enum chain_mode mode;
792d48b4 95 u16 max_stack;
232a5c94 96 u32 print_limit;
805d127d
FW
97 double min_percent;
98 sort_chain_func_t sort;
d797fdc5 99 enum chain_order order;
792aeafa 100 bool order_set;
99571ab3 101 enum chain_key key;
8b7bad58 102 bool branch_callstack;
f2af0086 103 enum chain_value value;
805d127d
FW
104};
105
8f651eae 106extern struct callchain_param callchain_param;
347ca878 107extern struct callchain_param callchain_param_default;
8f651eae 108
8cb76d99 109struct callchain_list {
f37a291c 110 u64 ip;
b3c9ac08 111 struct map_symbol ms;
3698dab1
NK
112 struct /* for TUI */ {
113 bool unfolded;
114 bool has_children;
115 };
3dd029ef
JY
116 u64 branch_count;
117 u64 predicted_count;
118 u64 abort_count;
119 u64 cycles_count;
120 u64 iter_count;
121 u64 samples_count;
23f0981b 122 char *srcline;
8cb76d99
FW
123 struct list_head list;
124};
125
1b3a0e95
FW
126/*
127 * A callchain cursor is a single linked list that
128 * let one feed a callchain progressively.
3fd44cd4 129 * It keeps persistent allocated entries to minimize
1b3a0e95
FW
130 * allocations.
131 */
132struct callchain_cursor_node {
133 u64 ip;
134 struct map *map;
135 struct symbol *sym;
410024db
JY
136 bool branch;
137 struct branch_flags branch_flags;
138 int nr_loop_iter;
139 int samples;
1b3a0e95
FW
140 struct callchain_cursor_node *next;
141};
142
143struct callchain_cursor {
144 u64 nr;
145 struct callchain_cursor_node *first;
146 struct callchain_cursor_node **last;
147 u64 pos;
148 struct callchain_cursor_node *curr;
149};
150
47260645
NK
151extern __thread struct callchain_cursor callchain_cursor;
152
d2009c51 153static inline void callchain_init(struct callchain_root *root)
8cb76d99 154{
d2009c51 155 INIT_LIST_HEAD(&root->node.val);
646a6e84 156 INIT_LIST_HEAD(&root->node.parent_val);
97aa1052 157
d2009c51
FW
158 root->node.parent = NULL;
159 root->node.hit = 0;
98ee74a7 160 root->node.children_hit = 0;
e369517c 161 root->node.rb_root_in = RB_ROOT;
d2009c51 162 root->max_depth = 0;
8cb76d99
FW
163}
164
f08c3154 165static inline u64 callchain_cumul_hits(struct callchain_node *node)
1953287b
FW
166{
167 return node->hit + node->children_hit;
168}
169
5e47f8ff
NK
170static inline unsigned callchain_cumul_counts(struct callchain_node *node)
171{
172 return node->count + node->children_count;
173}
174
16537f13 175int callchain_register_param(struct callchain_param *param);
1b3a0e95
FW
176int callchain_append(struct callchain_root *root,
177 struct callchain_cursor *cursor,
178 u64 period);
179
180int callchain_merge(struct callchain_cursor *cursor,
181 struct callchain_root *dst, struct callchain_root *src);
139633c6 182
1b3a0e95
FW
183/*
184 * Initialize a cursor before adding entries inside, but keep
185 * the previously allocated entries as a cache.
186 */
187static inline void callchain_cursor_reset(struct callchain_cursor *cursor)
188{
aa33b9b9
KJ
189 struct callchain_cursor_node *node;
190
1b3a0e95
FW
191 cursor->nr = 0;
192 cursor->last = &cursor->first;
aa33b9b9
KJ
193
194 for (node = cursor->first; node != NULL; node = node->next)
195 map__zput(node->map);
1b3a0e95
FW
196}
197
198int callchain_cursor_append(struct callchain_cursor *cursor, u64 ip,
410024db
JY
199 struct map *map, struct symbol *sym,
200 bool branch, struct branch_flags *flags,
201 int nr_loop_iter, int samples);
1b3a0e95
FW
202
203/* Close a cursor writing session. Initialize for the reader */
204static inline void callchain_cursor_commit(struct callchain_cursor *cursor)
205{
206 cursor->curr = cursor->first;
207 cursor->pos = 0;
208}
209
210/* Cursor reading iteration helpers */
211static inline struct callchain_cursor_node *
212callchain_cursor_current(struct callchain_cursor *cursor)
213{
214 if (cursor->pos == cursor->nr)
215 return NULL;
216
217 return cursor->curr;
218}
219
220static inline void callchain_cursor_advance(struct callchain_cursor *cursor)
221{
222 cursor->curr = cursor->curr->next;
223 cursor->pos++;
224}
75d9a108 225
571f1eb9
NK
226int callchain_cursor__copy(struct callchain_cursor *dst,
227 struct callchain_cursor *src);
228
75d9a108 229struct option;
2dc9fb1a 230struct hist_entry;
75d9a108
ACM
231
232int record_parse_callchain_opt(const struct option *opt, const char *arg, int unset);
09b0fd45
JO
233int record_callchain_opt(const struct option *opt, const char *arg, int unset);
234
0883e820
ACM
235struct record_opts;
236
237int record_opts__parse_callchain(struct record_opts *record,
238 struct callchain_param *callchain,
239 const char *arg, bool unset);
240
91d7b2de
ACM
241int sample__resolve_callchain(struct perf_sample *sample,
242 struct callchain_cursor *cursor, struct symbol **parent,
2dc9fb1a
NK
243 struct perf_evsel *evsel, struct addr_location *al,
244 int max_stack);
245int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample);
c7405d85
NK
246int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
247 bool hide_unresolved);
2dc9fb1a 248
75d9a108 249extern const char record_callchain_help[];
3938bad4 250int parse_callchain_record(const char *arg, struct callchain_param *param);
c3a6a8c4 251int parse_callchain_record_opt(const char *arg, struct callchain_param *param);
cff6bb46 252int parse_callchain_report_opt(const char *arg);
a2c10d39 253int parse_callchain_top_opt(const char *arg);
2b9240ca 254int perf_callchain_config(const char *var, const char *value);
be1f13e3
NK
255
256static inline void callchain_cursor_snapshot(struct callchain_cursor *dest,
257 struct callchain_cursor *src)
258{
259 *dest = *src;
260
261 dest->first = src->curr;
262 dest->nr -= src->pos;
263}
a60335ba
SB
264
265#ifdef HAVE_SKIP_CALLCHAIN_IDX
3938bad4 266int arch_skip_callchain_idx(struct thread *thread, struct ip_callchain *chain);
a60335ba 267#else
bb871a9c 268static inline int arch_skip_callchain_idx(struct thread *thread __maybe_unused,
a60335ba
SB
269 struct ip_callchain *chain __maybe_unused)
270{
271 return -1;
272}
273#endif
274
2989ccaa
AK
275char *callchain_list__sym_name(struct callchain_list *cl,
276 char *bf, size_t bfsize, bool show_dso);
5ab250ca
NK
277char *callchain_node__scnprintf_value(struct callchain_node *node,
278 char *bf, size_t bfsize, u64 total);
279int callchain_node__fprintf_value(struct callchain_node *node,
280 FILE *fp, u64 total);
2989ccaa 281
3dd029ef
JY
282int callchain_list_counts__printf_value(struct callchain_node *node,
283 struct callchain_list *clist,
284 FILE *fp, char *bf, int bfsize);
285
d114960c 286void free_callchain(struct callchain_root *root);
42b276a2 287void decay_callchain(struct callchain_root *root);
4b3a3212 288int callchain_node__make_parent_list(struct callchain_node *node);
d114960c 289
3dd029ef
JY
290int callchain_branch_counts(struct callchain_root *root,
291 u64 *branch_count, u64 *predicted_count,
292 u64 *abort_count, u64 *cycles_count);
293
8b40f521 294#endif /* __PERF_CALLCHAIN_H */