1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_CALLCHAIN_H
3 #define __PERF_CALLCHAIN_H
5 #include <linux/list.h>
6 #include <linux/rbtree.h>
7 #include "map_symbol.h"
18 #define HELP_PAD "\t\t\t\t"
20 #define CALLCHAIN_HELP "setup and enables call-graph (stack chain/backtrace):\n\n"
22 # define RECORD_MODE_HELP HELP_PAD "record_mode:\tcall graph recording mode (fp|dwarf|lbr)\n"
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"
28 #define CALLCHAIN_RECORD_HELP CALLCHAIN_HELP RECORD_MODE_HELP RECORD_SIZE_HELP
30 #define CALLCHAIN_REPORT_HELP \
31 HELP_PAD "print_type:\tcall graph printing style (graph|flat|fractal|folded|none)\n" \
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" \
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"
39 enum perf_call_graph_mode
{
60 struct callchain_node
{
61 struct callchain_node
*parent
;
63 struct list_head parent_val
;
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 */
70 unsigned int children_count
;
75 struct callchain_root
{
77 struct callchain_node node
;
80 struct callchain_param
;
82 typedef void (*sort_chain_func_t
)(struct rb_root
*, struct callchain_root
*,
83 u64
, struct callchain_param
*);
97 extern bool dwarf_callchain_users
;
99 struct callchain_param
{
101 enum perf_call_graph_mode record_mode
;
103 enum chain_mode mode
;
107 sort_chain_func_t sort
;
108 enum chain_order order
;
111 bool branch_callstack
;
112 enum chain_value value
;
115 extern struct callchain_param callchain_param
;
116 extern struct callchain_param callchain_param_default
;
118 struct callchain_list
{
119 struct list_head list
;
121 struct map_symbol ms
;
128 struct branch_type_stat
*brtype_stat
;
131 struct /* for TUI */ {
138 * A callchain cursor is a single linked list that
139 * let one feed a callchain progressively.
140 * It keeps persistent allocated entries to minimize
143 struct callchain_cursor_node
{
145 struct map_symbol ms
;
147 /* Indicate valid cursor node for LBR stitch */
151 struct branch_flags branch_flags
;
155 struct callchain_cursor_node
*next
;
159 struct list_head node
;
160 struct callchain_cursor_node cursor
;
163 struct callchain_cursor
{
165 struct callchain_cursor_node
*first
;
166 struct callchain_cursor_node
**last
;
168 struct callchain_cursor_node
*curr
;
171 static inline void callchain_init(struct callchain_root
*root
)
173 INIT_LIST_HEAD(&root
->node
.val
);
174 INIT_LIST_HEAD(&root
->node
.parent_val
);
176 root
->node
.parent
= NULL
;
178 root
->node
.children_hit
= 0;
179 root
->node
.rb_root_in
= RB_ROOT
;
183 static inline u64
callchain_cumul_hits(struct callchain_node
*node
)
185 return node
->hit
+ node
->children_hit
;
188 static inline unsigned callchain_cumul_counts(struct callchain_node
*node
)
190 return node
->count
+ node
->children_count
;
193 int callchain_register_param(struct callchain_param
*param
);
194 int callchain_append(struct callchain_root
*root
,
195 struct callchain_cursor
*cursor
,
198 int callchain_merge(struct callchain_cursor
*cursor
,
199 struct callchain_root
*dst
, struct callchain_root
*src
);
201 void callchain_cursor_reset(struct callchain_cursor
*cursor
);
203 int callchain_cursor_append(struct callchain_cursor
*cursor
, u64 ip
,
204 struct map_symbol
*ms
,
205 bool branch
, struct branch_flags
*flags
,
206 int nr_loop_iter
, u64 iter_cycles
, u64 branch_from
,
207 const char *srcline
);
209 /* Close a cursor writing session. Initialize for the reader */
210 static inline void callchain_cursor_commit(struct callchain_cursor
*cursor
)
214 cursor
->curr
= cursor
->first
;
218 /* Cursor reading iteration helpers */
219 static inline struct callchain_cursor_node
*
220 callchain_cursor_current(struct callchain_cursor
*cursor
)
222 if (cursor
== NULL
|| cursor
->pos
== cursor
->nr
)
228 static inline void callchain_cursor_advance(struct callchain_cursor
*cursor
)
230 cursor
->curr
= cursor
->curr
->next
;
234 struct callchain_cursor
*get_tls_callchain_cursor(void);
236 int callchain_cursor__copy(struct callchain_cursor
*dst
,
237 struct callchain_cursor
*src
);
242 int record_parse_callchain_opt(const struct option
*opt
, const char *arg
, int unset
);
243 int record_callchain_opt(const struct option
*opt
, const char *arg
, int unset
);
247 int record_opts__parse_callchain(struct record_opts
*record
,
248 struct callchain_param
*callchain
,
249 const char *arg
, bool unset
);
251 int sample__resolve_callchain(struct perf_sample
*sample
,
252 struct callchain_cursor
*cursor
, struct symbol
**parent
,
253 struct evsel
*evsel
, struct addr_location
*al
,
255 int hist_entry__append_callchain(struct hist_entry
*he
, struct perf_sample
*sample
);
256 int fill_callchain_info(struct addr_location
*al
, struct callchain_cursor_node
*node
,
257 bool hide_unresolved
);
259 extern const char record_callchain_help
[];
260 int parse_callchain_record(const char *arg
, struct callchain_param
*param
);
261 int parse_callchain_record_opt(const char *arg
, struct callchain_param
*param
);
262 int parse_callchain_report_opt(const char *arg
);
263 int parse_callchain_top_opt(const char *arg
);
264 int perf_callchain_config(const char *var
, const char *value
);
266 static inline void callchain_cursor_snapshot(struct callchain_cursor
*dest
,
267 struct callchain_cursor
*src
)
271 dest
->first
= src
->curr
;
272 dest
->nr
-= src
->pos
;
275 #ifdef HAVE_SKIP_CALLCHAIN_IDX
276 int arch_skip_callchain_idx(struct thread
*thread
, struct ip_callchain
*chain
);
278 static inline int arch_skip_callchain_idx(struct thread
*thread __maybe_unused
,
279 struct ip_callchain
*chain __maybe_unused
)
285 void arch__add_leaf_frame_record_opts(struct record_opts
*opts
);
287 char *callchain_list__sym_name(struct callchain_list
*cl
,
288 char *bf
, size_t bfsize
, bool show_dso
);
289 char *callchain_node__scnprintf_value(struct callchain_node
*node
,
290 char *bf
, size_t bfsize
, u64 total
);
291 int callchain_node__fprintf_value(struct callchain_node
*node
,
292 FILE *fp
, u64 total
);
294 int callchain_list_counts__printf_value(struct callchain_list
*clist
,
295 FILE *fp
, char *bf
, int bfsize
);
297 void free_callchain(struct callchain_root
*root
);
298 void decay_callchain(struct callchain_root
*root
);
299 int callchain_node__make_parent_list(struct callchain_node
*node
);
301 int callchain_branch_counts(struct callchain_root
*root
,
302 u64
*branch_count
, u64
*predicted_count
,
303 u64
*abort_count
, u64
*cycles_count
);
305 void callchain_param_setup(u64 sample_type
, const char *arch
);
307 bool callchain_cnode_matched(struct callchain_node
*base_cnode
,
308 struct callchain_node
*pair_cnode
);
310 u64
callchain_total_hits(struct hists
*hists
);
312 s64
callchain_avg_cycles(struct callchain_node
*cnode
);
314 typedef int (*callchain_iter_fn
)(struct callchain_cursor_node
*node
, void *data
);
316 int sample__for_each_callchain_node(struct thread
*thread
, struct evsel
*evsel
,
317 struct perf_sample
*sample
, int max_stack
,
318 bool symbols
, callchain_iter_fn cb
, void *data
);
320 #endif /* __PERF_CALLCHAIN_H */