Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef __PERF_CALLCHAIN_H
2#define __PERF_CALLCHAIN_H
3
4#include "../perf.h"
5#include <linux/list.h>
6#include <linux/rbtree.h>
7#include "event.h"
8#include "map.h"
9#include "symbol.h"
10
11#define HELP_PAD "\t\t\t\t"
12
13#define CALLCHAIN_HELP "setup and enables call-graph (stack chain/backtrace):\n\n"
14
15# define RECORD_MODE_HELP HELP_PAD "record_mode:\tcall graph recording mode (fp|dwarf|lbr)\n"
16
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 \
24 HELP_PAD "print_type:\tcall graph printing style (graph|flat|fractal|folded|none)\n" \
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" \
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"
31
32enum perf_call_graph_mode {
33 CALLCHAIN_NONE,
34 CALLCHAIN_FP,
35 CALLCHAIN_DWARF,
36 CALLCHAIN_LBR,
37 CALLCHAIN_MAX
38};
39
40enum chain_mode {
41 CHAIN_NONE,
42 CHAIN_FLAT,
43 CHAIN_GRAPH_ABS,
44 CHAIN_GRAPH_REL,
45 CHAIN_FOLDED,
46};
47
48enum chain_order {
49 ORDER_CALLER,
50 ORDER_CALLEE
51};
52
53struct callchain_node {
54 struct callchain_node *parent;
55 struct list_head val;
56 struct list_head parent_val;
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 */
61 unsigned int val_nr;
62 unsigned int count;
63 unsigned int children_count;
64 u64 hit;
65 u64 children_hit;
66};
67
68struct callchain_root {
69 u64 max_depth;
70 struct callchain_node node;
71};
72
73struct callchain_param;
74
75typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *,
76 u64, struct callchain_param *);
77
78enum chain_key {
79 CCKEY_FUNCTION,
80 CCKEY_ADDRESS
81};
82
83enum chain_value {
84 CCVAL_PERCENT,
85 CCVAL_PERIOD,
86 CCVAL_COUNT,
87};
88
89struct callchain_param {
90 bool enabled;
91 enum perf_call_graph_mode record_mode;
92 u32 dump_size;
93 enum chain_mode mode;
94 u16 max_stack;
95 u32 print_limit;
96 double min_percent;
97 sort_chain_func_t sort;
98 enum chain_order order;
99 bool order_set;
100 enum chain_key key;
101 bool branch_callstack;
102 enum chain_value value;
103};
104
105extern struct callchain_param callchain_param;
106extern struct callchain_param callchain_param_default;
107
108struct callchain_list {
109 u64 ip;
110 struct map_symbol ms;
111 struct /* for TUI */ {
112 bool unfolded;
113 bool has_children;
114 };
115 u64 branch_count;
116 u64 predicted_count;
117 u64 abort_count;
118 u64 cycles_count;
119 u64 iter_count;
120 u64 samples_count;
121 char *srcline;
122 struct list_head list;
123};
124
125/*
126 * A callchain cursor is a single linked list that
127 * let one feed a callchain progressively.
128 * It keeps persistent allocated entries to minimize
129 * allocations.
130 */
131struct callchain_cursor_node {
132 u64 ip;
133 struct map *map;
134 struct symbol *sym;
135 bool branch;
136 struct branch_flags branch_flags;
137 int nr_loop_iter;
138 int samples;
139 struct callchain_cursor_node *next;
140};
141
142struct callchain_cursor {
143 u64 nr;
144 struct callchain_cursor_node *first;
145 struct callchain_cursor_node **last;
146 u64 pos;
147 struct callchain_cursor_node *curr;
148};
149
150extern __thread struct callchain_cursor callchain_cursor;
151
152static inline void callchain_init(struct callchain_root *root)
153{
154 INIT_LIST_HEAD(&root->node.val);
155 INIT_LIST_HEAD(&root->node.parent_val);
156
157 root->node.parent = NULL;
158 root->node.hit = 0;
159 root->node.children_hit = 0;
160 root->node.rb_root_in = RB_ROOT;
161 root->max_depth = 0;
162}
163
164static inline u64 callchain_cumul_hits(struct callchain_node *node)
165{
166 return node->hit + node->children_hit;
167}
168
169static inline unsigned callchain_cumul_counts(struct callchain_node *node)
170{
171 return node->count + node->children_count;
172}
173
174int callchain_register_param(struct callchain_param *param);
175int callchain_append(struct callchain_root *root,
176 struct callchain_cursor *cursor,
177 u64 period);
178
179int callchain_merge(struct callchain_cursor *cursor,
180 struct callchain_root *dst, struct callchain_root *src);
181
182/*
183 * Initialize a cursor before adding entries inside, but keep
184 * the previously allocated entries as a cache.
185 */
186static inline void callchain_cursor_reset(struct callchain_cursor *cursor)
187{
188 struct callchain_cursor_node *node;
189
190 cursor->nr = 0;
191 cursor->last = &cursor->first;
192
193 for (node = cursor->first; node != NULL; node = node->next)
194 map__zput(node->map);
195}
196
197int callchain_cursor_append(struct callchain_cursor *cursor, u64 ip,
198 struct map *map, struct symbol *sym,
199 bool branch, struct branch_flags *flags,
200 int nr_loop_iter, int samples);
201
202/* Close a cursor writing session. Initialize for the reader */
203static inline void callchain_cursor_commit(struct callchain_cursor *cursor)
204{
205 cursor->curr = cursor->first;
206 cursor->pos = 0;
207}
208
209/* Cursor reading iteration helpers */
210static inline struct callchain_cursor_node *
211callchain_cursor_current(struct callchain_cursor *cursor)
212{
213 if (cursor->pos == cursor->nr)
214 return NULL;
215
216 return cursor->curr;
217}
218
219static inline void callchain_cursor_advance(struct callchain_cursor *cursor)
220{
221 cursor->curr = cursor->curr->next;
222 cursor->pos++;
223}
224
225int callchain_cursor__copy(struct callchain_cursor *dst,
226 struct callchain_cursor *src);
227
228struct option;
229struct hist_entry;
230
231int record_parse_callchain_opt(const struct option *opt, const char *arg, int unset);
232int record_callchain_opt(const struct option *opt, const char *arg, int unset);
233
234struct record_opts;
235
236int record_opts__parse_callchain(struct record_opts *record,
237 struct callchain_param *callchain,
238 const char *arg, bool unset);
239
240int sample__resolve_callchain(struct perf_sample *sample,
241 struct callchain_cursor *cursor, struct symbol **parent,
242 struct perf_evsel *evsel, struct addr_location *al,
243 int max_stack);
244int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample);
245int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
246 bool hide_unresolved);
247
248extern const char record_callchain_help[];
249int parse_callchain_record(const char *arg, struct callchain_param *param);
250int parse_callchain_record_opt(const char *arg, struct callchain_param *param);
251int parse_callchain_report_opt(const char *arg);
252int parse_callchain_top_opt(const char *arg);
253int perf_callchain_config(const char *var, const char *value);
254
255static inline void callchain_cursor_snapshot(struct callchain_cursor *dest,
256 struct callchain_cursor *src)
257{
258 *dest = *src;
259
260 dest->first = src->curr;
261 dest->nr -= src->pos;
262}
263
264#ifdef HAVE_SKIP_CALLCHAIN_IDX
265int arch_skip_callchain_idx(struct thread *thread, struct ip_callchain *chain);
266#else
267static inline int arch_skip_callchain_idx(struct thread *thread __maybe_unused,
268 struct ip_callchain *chain __maybe_unused)
269{
270 return -1;
271}
272#endif
273
274char *callchain_list__sym_name(struct callchain_list *cl,
275 char *bf, size_t bfsize, bool show_dso);
276char *callchain_node__scnprintf_value(struct callchain_node *node,
277 char *bf, size_t bfsize, u64 total);
278int callchain_node__fprintf_value(struct callchain_node *node,
279 FILE *fp, u64 total);
280
281int callchain_list_counts__printf_value(struct callchain_node *node,
282 struct callchain_list *clist,
283 FILE *fp, char *bf, int bfsize);
284
285void free_callchain(struct callchain_root *root);
286void decay_callchain(struct callchain_root *root);
287int callchain_node__make_parent_list(struct callchain_node *node);
288
289int callchain_branch_counts(struct callchain_root *root,
290 u64 *branch_count, u64 *predicted_count,
291 u64 *abort_count, u64 *cycles_count);
292
293#endif /* __PERF_CALLCHAIN_H */