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