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