blob: c9e3a2e85a72092551a07117fd10fa291b03995e [file] [log] [blame]
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +02001#ifndef __PERF_CALLCHAIN_H
2#define __PERF_CALLCHAIN_H
3
4#include "../perf.h"
Arnaldo Carvalho de Melo5da50252009-07-01 14:46:08 -03005#include <linux/list.h>
Arnaldo Carvalho de Melo43cbcd82009-07-01 12:28:37 -03006#include <linux/rbtree.h>
Arnaldo Carvalho de Melo139633c2010-05-09 11:47:13 -03007#include "event.h"
Frederic Weisbecker44249612009-07-01 05:35:14 +02008#include "symbol.h"
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +02009
Namhyung Kim21cf6282015-10-22 15:28:48 +090010#define CALLCHAIN_HELP "setup and enables call-graph (stack chain/backtrace) recording: "
11
12#ifdef HAVE_DWARF_UNWIND_SUPPORT
13#define CALLCHAIN_RECORD_HELP CALLCHAIN_HELP "fp dwarf lbr"
14#else
15#define CALLCHAIN_RECORD_HELP CALLCHAIN_HELP "fp lbr"
16#endif
17
18#define CALLCHAIN_REPORT_HELP "output_type (graph, flat, fractal, or none), " \
19 "min percent threshold, optional print limit, callchain order, " \
20 "key (function or address), add branches"
21
Jiri Olsa2c83bc02014-05-05 12:46:17 +020022enum perf_call_graph_mode {
23 CALLCHAIN_NONE,
24 CALLCHAIN_FP,
25 CALLCHAIN_DWARF,
Kan Liangaad2b212015-01-05 13:23:04 -050026 CALLCHAIN_LBR,
Jiri Olsa2c83bc02014-05-05 12:46:17 +020027 CALLCHAIN_MAX
28};
29
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020030enum chain_mode {
Frederic Weisbeckerb1a88342009-08-08 02:16:24 +020031 CHAIN_NONE,
Frederic Weisbecker805d1272009-07-05 07:39:21 +020032 CHAIN_FLAT,
33 CHAIN_GRAPH_ABS,
34 CHAIN_GRAPH_REL
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020035};
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020036
Sam Liaod797fdc2011-06-07 23:49:46 +080037enum chain_order {
38 ORDER_CALLER,
39 ORDER_CALLEE
40};
41
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020042struct callchain_node {
43 struct callchain_node *parent;
Ingo Molnarf37a2912009-07-01 12:37:06 +020044 struct list_head val;
Namhyung Kime3695172013-10-11 14:15:36 +090045 struct rb_node rb_node_in; /* to insert nodes in an rbtree */
46 struct rb_node rb_node; /* to sort nodes in an output tree */
47 struct rb_root rb_root_in; /* input tree of children */
48 struct rb_root rb_root; /* sorted output tree of children */
Ingo Molnarf37a2912009-07-01 12:37:06 +020049 unsigned int val_nr;
50 u64 hit;
Frederic Weisbecker19532872009-08-07 07:11:05 +020051 u64 children_hit;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020052};
53
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020054struct callchain_root {
55 u64 max_depth;
56 struct callchain_node node;
57};
58
Frederic Weisbecker805d1272009-07-05 07:39:21 +020059struct callchain_param;
60
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020061typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *,
Frederic Weisbecker805d1272009-07-05 07:39:21 +020062 u64, struct callchain_param *);
63
Andi Kleen99571ab2013-07-18 15:33:57 -070064enum chain_key {
65 CCKEY_FUNCTION,
66 CCKEY_ADDRESS
67};
68
Frederic Weisbecker805d1272009-07-05 07:39:21 +020069struct callchain_param {
Namhyung Kim72a128a2014-09-23 10:01:41 +090070 bool enabled;
71 enum perf_call_graph_mode record_mode;
72 u32 dump_size;
Frederic Weisbecker805d1272009-07-05 07:39:21 +020073 enum chain_mode mode;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -030074 u32 print_limit;
Frederic Weisbecker805d1272009-07-05 07:39:21 +020075 double min_percent;
76 sort_chain_func_t sort;
Sam Liaod797fdc2011-06-07 23:49:46 +080077 enum chain_order order;
Andi Kleen99571ab2013-07-18 15:33:57 -070078 enum chain_key key;
Andi Kleen8b7bad52014-11-12 18:05:20 -080079 bool branch_callstack;
Frederic Weisbecker805d1272009-07-05 07:39:21 +020080};
81
Arnaldo Carvalho de Melo8f651ea2014-10-09 16:12:24 -030082extern struct callchain_param callchain_param;
83
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020084struct callchain_list {
Ingo Molnarf37a2912009-07-01 12:37:06 +020085 u64 ip;
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -030086 struct map_symbol ms;
Namhyung Kim3698dab2015-05-05 23:55:46 +090087 struct /* for TUI */ {
88 bool unfolded;
89 bool has_children;
90 };
Andi Kleen23f09812014-11-12 18:05:24 -080091 char *srcline;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020092 struct list_head list;
93};
94
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +010095/*
96 * A callchain cursor is a single linked list that
97 * let one feed a callchain progressively.
Masanari Iida3fd44cd2012-07-18 01:20:59 +090098 * It keeps persistent allocated entries to minimize
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +010099 * allocations.
100 */
101struct callchain_cursor_node {
102 u64 ip;
103 struct map *map;
104 struct symbol *sym;
105 struct callchain_cursor_node *next;
106};
107
108struct callchain_cursor {
109 u64 nr;
110 struct callchain_cursor_node *first;
111 struct callchain_cursor_node **last;
112 u64 pos;
113 struct callchain_cursor_node *curr;
114};
115
Namhyung Kim47260642012-05-31 14:43:26 +0900116extern __thread struct callchain_cursor callchain_cursor;
117
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200118static inline void callchain_init(struct callchain_root *root)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200119{
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200120 INIT_LIST_HEAD(&root->node.val);
Frederic Weisbecker97aa1052010-07-08 06:06:17 +0200121
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200122 root->node.parent = NULL;
123 root->node.hit = 0;
Frederic Weisbecker98ee74a2010-08-27 02:28:40 +0200124 root->node.children_hit = 0;
Namhyung Kime3695172013-10-11 14:15:36 +0900125 root->node.rb_root_in = RB_ROOT;
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +0200126 root->max_depth = 0;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200127}
128
Frederic Weisbeckerf08c3152011-01-14 04:51:59 +0100129static inline u64 callchain_cumul_hits(struct callchain_node *node)
Frederic Weisbecker19532872009-08-07 07:11:05 +0200130{
131 return node->hit + node->children_hit;
132}
133
Frederic Weisbecker16537f12011-01-14 04:52:00 +0100134int callchain_register_param(struct callchain_param *param);
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100135int callchain_append(struct callchain_root *root,
136 struct callchain_cursor *cursor,
137 u64 period);
138
139int callchain_merge(struct callchain_cursor *cursor,
140 struct callchain_root *dst, struct callchain_root *src);
Arnaldo Carvalho de Melo139633c2010-05-09 11:47:13 -0300141
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100142/*
143 * Initialize a cursor before adding entries inside, but keep
144 * the previously allocated entries as a cache.
145 */
146static inline void callchain_cursor_reset(struct callchain_cursor *cursor)
147{
148 cursor->nr = 0;
149 cursor->last = &cursor->first;
150}
151
152int callchain_cursor_append(struct callchain_cursor *cursor, u64 ip,
153 struct map *map, struct symbol *sym);
154
155/* Close a cursor writing session. Initialize for the reader */
156static inline void callchain_cursor_commit(struct callchain_cursor *cursor)
157{
158 cursor->curr = cursor->first;
159 cursor->pos = 0;
160}
161
162/* Cursor reading iteration helpers */
163static inline struct callchain_cursor_node *
164callchain_cursor_current(struct callchain_cursor *cursor)
165{
166 if (cursor->pos == cursor->nr)
167 return NULL;
168
169 return cursor->curr;
170}
171
172static inline void callchain_cursor_advance(struct callchain_cursor *cursor)
173{
174 cursor->curr = cursor->curr->next;
175 cursor->pos++;
176}
Arnaldo Carvalho de Melo75d9a1082012-12-11 16:46:05 -0300177
178struct option;
Namhyung Kim2dc9fb12014-01-14 14:25:35 +0900179struct hist_entry;
Arnaldo Carvalho de Melo75d9a1082012-12-11 16:46:05 -0300180
181int record_parse_callchain_opt(const struct option *opt, const char *arg, int unset);
Jiri Olsa09b0fd42013-10-26 16:25:33 +0200182int record_callchain_opt(const struct option *opt, const char *arg, int unset);
183
Namhyung Kim2dc9fb12014-01-14 14:25:35 +0900184int sample__resolve_callchain(struct perf_sample *sample, struct symbol **parent,
185 struct perf_evsel *evsel, struct addr_location *al,
186 int max_stack);
187int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample);
Namhyung Kimc7405d82013-10-31 13:58:30 +0900188int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node,
189 bool hide_unresolved);
Namhyung Kim2dc9fb12014-01-14 14:25:35 +0900190
Arnaldo Carvalho de Melo75d9a1082012-12-11 16:46:05 -0300191extern const char record_callchain_help[];
Kan Liang076a30c2015-08-06 15:44:52 -0400192extern int parse_callchain_record(const char *arg, struct callchain_param *param);
Kan Liangc3a6a8c2015-08-04 04:30:20 -0400193int parse_callchain_record_opt(const char *arg, struct callchain_param *param);
Don Zickuscff6bb42014-04-07 14:55:24 -0400194int parse_callchain_report_opt(const char *arg);
Namhyung Kim2b9240c2014-09-23 10:01:43 +0900195int perf_callchain_config(const char *var, const char *value);
Namhyung Kimbe1f13e2012-09-10 13:38:00 +0900196
197static inline void callchain_cursor_snapshot(struct callchain_cursor *dest,
198 struct callchain_cursor *src)
199{
200 *dest = *src;
201
202 dest->first = src->curr;
203 dest->nr -= src->pos;
204}
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -0700205
206#ifdef HAVE_SKIP_CALLCHAIN_IDX
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300207extern int arch_skip_callchain_idx(struct thread *thread, struct ip_callchain *chain);
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -0700208#else
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300209static inline int arch_skip_callchain_idx(struct thread *thread __maybe_unused,
Sukadev Bhattiprolua60335b2014-06-25 08:49:03 -0700210 struct ip_callchain *chain __maybe_unused)
211{
212 return -1;
213}
214#endif
215
Andi Kleen2989cca2014-11-12 18:05:23 -0800216char *callchain_list__sym_name(struct callchain_list *cl,
217 char *bf, size_t bfsize, bool show_dso);
218
Namhyung Kimd1149602014-12-30 14:38:13 +0900219void free_callchain(struct callchain_root *root);
220
John Kacur8b40f522009-09-24 18:02:18 +0200221#endif /* __PERF_CALLCHAIN_H */