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"
17 #define HELP_PAD "\t\t\t\t"
19 #define CALLCHAIN_HELP "setup and enables call-graph (stack chain/backtrace):\n\n"
21 # define RECORD_MODE_HELP HELP_PAD "record_mode:\tcall graph recording mode (fp|dwarf|lbr)\n"
23 #define RECORD_SIZE_HELP \
24 HELP_PAD "record_size:\tif record_mode is 'dwarf', max size of stack recording (<bytes>)\n" \
25 HELP_PAD "\t\tdefault: 8192 (bytes)\n"
27 #define CALLCHAIN_RECORD_HELP CALLCHAIN_HELP RECORD_MODE_HELP RECORD_SIZE_HELP
29 #define CALLCHAIN_REPORT_HELP \
30 HELP_PAD "print_type:\tcall graph printing style (graph|flat|fractal|folded|none)\n" \
31 HELP_PAD "threshold:\tminimum call graph inclusion threshold (<percent>)\n" \
32 HELP_PAD "print_limit:\tmaximum number of call graph entry (<number>)\n" \
33 HELP_PAD "order:\t\tcall graph order (caller|callee)\n" \
34 HELP_PAD "sort_key:\tcall graph sort key (function|address)\n" \
35 HELP_PAD "branch:\t\tinclude last branch info to call graph (branch)\n" \
36 HELP_PAD "value:\t\tcall graph value (percent|period|count)\n"
38 enum perf_call_graph_mode
{
59 struct callchain_node
{
60 struct callchain_node
*parent
;
62 struct list_head parent_val
;
63 struct rb_node rb_node_in
; /* to insert nodes in an rbtree */
64 struct rb_node rb_node
; /* to sort nodes in an output tree */
65 struct rb_root rb_root_in
; /* input tree of children */
66 struct rb_root rb_root
; /* sorted output tree of children */
69 unsigned int children_count
;
74 struct callchain_root
{
76 struct callchain_node node
;
79 struct callchain_param
;
81 typedef void (*sort_chain_func_t
)(struct rb_root
*, struct callchain_root
*,
82 u64
, struct callchain_param
*);
96 extern bool dwarf_callchain_users
;
98 struct callchain_param
{
100 enum perf_call_graph_mode record_mode
;
102 enum chain_mode mode
;
106 sort_chain_func_t sort
;
107 enum chain_order order
;
110 bool branch_callstack
;
111 enum chain_value value
;
114 extern struct callchain_param callchain_param
;
115 extern struct callchain_param callchain_param_default
;
117 struct callchain_list
{
119 struct map_symbol ms
;
120 struct /* for TUI */ {
131 struct branch_type_stat brtype_stat
;
133 struct list_head list
;
137 * A callchain cursor is a single linked list that
138 * let one feed a callchain progressively.
139 * It keeps persistent allocated entries to minimize
142 struct callchain_cursor_node
{
144 struct map_symbol ms
;
146 /* Indicate valid cursor node for LBR stitch */
150 struct branch_flags branch_flags
;
154 struct callchain_cursor_node
*next
;
158 struct list_head node
;
159 struct callchain_cursor_node cursor
;
162 struct callchain_cursor
{
164 struct callchain_cursor_node
*first
;
165 struct callchain_cursor_node
**last
;
167 struct callchain_cursor_node
*curr
;
170 extern __thread
struct callchain_cursor callchain_cursor
;
172 static inline void callchain_init(struct callchain_root
*root
)
174 INIT_LIST_HEAD(&root
->node
.val
);
175 INIT_LIST_HEAD(&root
->node
.parent_val
);
177 root
->node
.parent
= NULL
;
179 root
->node
.children_hit
= 0;
180 root
->node
.rb_root_in
= RB_ROOT
;
184 static inline u64
callchain_cumul_hits(struct callchain_node
*node
)
186 return node
->hit
+ node
->children_hit
;
189 static inline unsigned callchain_cumul_counts(struct callchain_node
*node
)
191 return node
->count
+ node
->children_count
;
194 int callchain_register_param(struct callchain_param
*param
);
195 int callchain_append(struct callchain_root
*root
,
196 struct callchain_cursor
*cursor
,
199 int callchain_merge(struct callchain_cursor
*cursor
,
200 struct callchain_root
*dst
, struct callchain_root
*src
);
202 void callchain_cursor_reset(struct callchain_cursor
*cursor
);
204 int callchain_cursor_append(struct callchain_cursor
*cursor
, u64 ip
,
205 struct map_symbol
*ms
,
206 bool branch
, struct branch_flags
*flags
,
207 int nr_loop_iter
, u64 iter_cycles
, u64 branch_from
,
208 const char *srcline
);
210 /* Close a cursor writing session. Initialize for the reader */
211 static inline void callchain_cursor_commit(struct callchain_cursor
*cursor
)
213 cursor
->curr
= cursor
->first
;
217 /* Cursor reading iteration helpers */
218 static inline struct callchain_cursor_node
*
219 callchain_cursor_current(struct callchain_cursor
*cursor
)
221 if (cursor
->pos
== cursor
->nr
)
227 static inline void callchain_cursor_advance(struct callchain_cursor
*cursor
)
229 cursor
->curr
= cursor
->curr
->next
;
233 int callchain_cursor__copy(struct callchain_cursor
*dst
,
234 struct callchain_cursor
*src
);
239 int record_parse_callchain_opt(const struct option
*opt
, const char *arg
, int unset
);
240 int record_callchain_opt(const struct option
*opt
, const char *arg
, int unset
);
244 int record_opts__parse_callchain(struct record_opts
*record
,
245 struct callchain_param
*callchain
,
246 const char *arg
, bool unset
);
248 int sample__resolve_callchain(struct perf_sample
*sample
,
249 struct callchain_cursor
*cursor
, struct symbol
**parent
,
250 struct evsel
*evsel
, struct addr_location
*al
,
252 int hist_entry__append_callchain(struct hist_entry
*he
, struct perf_sample
*sample
);
253 int fill_callchain_info(struct addr_location
*al
, struct callchain_cursor_node
*node
,
254 bool hide_unresolved
);
256 extern const char record_callchain_help
[];
257 int parse_callchain_record(const char *arg
, struct callchain_param
*param
);
258 int parse_callchain_record_opt(const char *arg
, struct callchain_param
*param
);
259 int parse_callchain_report_opt(const char *arg
);
260 int parse_callchain_top_opt(const char *arg
);
261 int perf_callchain_config(const char *var
, const char *value
);
263 static inline void callchain_cursor_snapshot(struct callchain_cursor
*dest
,
264 struct callchain_cursor
*src
)
268 dest
->first
= src
->curr
;
269 dest
->nr
-= src
->pos
;
272 #ifdef HAVE_SKIP_CALLCHAIN_IDX
273 int arch_skip_callchain_idx(struct thread
*thread
, struct ip_callchain
*chain
);
275 static inline int arch_skip_callchain_idx(struct thread
*thread __maybe_unused
,
276 struct ip_callchain
*chain __maybe_unused
)
282 char *callchain_list__sym_name(struct callchain_list
*cl
,
283 char *bf
, size_t bfsize
, bool show_dso
);
284 char *callchain_node__scnprintf_value(struct callchain_node
*node
,
285 char *bf
, size_t bfsize
, u64 total
);
286 int callchain_node__fprintf_value(struct callchain_node
*node
,
287 FILE *fp
, u64 total
);
289 int callchain_list_counts__printf_value(struct callchain_list
*clist
,
290 FILE *fp
, char *bf
, int bfsize
);
292 void free_callchain(struct callchain_root
*root
);
293 void decay_callchain(struct callchain_root
*root
);
294 int callchain_node__make_parent_list(struct callchain_node
*node
);
296 int callchain_branch_counts(struct callchain_root
*root
,
297 u64
*branch_count
, u64
*predicted_count
,
298 u64
*abort_count
, u64
*cycles_count
);
300 void callchain_param_setup(u64 sample_type
);
301 #endif /* __PERF_CALLCHAIN_H */