Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 1 | #ifndef __PERF_CALLCHAIN_H |
| 2 | #define __PERF_CALLCHAIN_H |
| 3 | |
| 4 | #include "../perf.h" |
Arnaldo Carvalho de Melo | 5da5025 | 2009-07-01 14:46:08 -0300 | [diff] [blame] | 5 | #include <linux/list.h> |
Arnaldo Carvalho de Melo | 43cbcd8 | 2009-07-01 12:28:37 -0300 | [diff] [blame] | 6 | #include <linux/rbtree.h> |
Arnaldo Carvalho de Melo | 139633c | 2010-05-09 11:47:13 -0300 | [diff] [blame] | 7 | #include "event.h" |
Frederic Weisbecker | 4424961 | 2009-07-01 05:35:14 +0200 | [diff] [blame] | 8 | #include "symbol.h" |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 9 | |
Namhyung Kim | 21cf628 | 2015-10-22 15:28:48 +0900 | [diff] [blame^] | 10 | #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 Olsa | 2c83bc0 | 2014-05-05 12:46:17 +0200 | [diff] [blame] | 22 | enum perf_call_graph_mode { |
| 23 | CALLCHAIN_NONE, |
| 24 | CALLCHAIN_FP, |
| 25 | CALLCHAIN_DWARF, |
Kan Liang | aad2b21 | 2015-01-05 13:23:04 -0500 | [diff] [blame] | 26 | CALLCHAIN_LBR, |
Jiri Olsa | 2c83bc0 | 2014-05-05 12:46:17 +0200 | [diff] [blame] | 27 | CALLCHAIN_MAX |
| 28 | }; |
| 29 | |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 30 | enum chain_mode { |
Frederic Weisbecker | b1a8834 | 2009-08-08 02:16:24 +0200 | [diff] [blame] | 31 | CHAIN_NONE, |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 32 | CHAIN_FLAT, |
| 33 | CHAIN_GRAPH_ABS, |
| 34 | CHAIN_GRAPH_REL |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 35 | }; |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 36 | |
Sam Liao | d797fdc | 2011-06-07 23:49:46 +0800 | [diff] [blame] | 37 | enum chain_order { |
| 38 | ORDER_CALLER, |
| 39 | ORDER_CALLEE |
| 40 | }; |
| 41 | |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 42 | struct callchain_node { |
| 43 | struct callchain_node *parent; |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 44 | struct list_head val; |
Namhyung Kim | e369517 | 2013-10-11 14:15:36 +0900 | [diff] [blame] | 45 | 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 Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 49 | unsigned int val_nr; |
| 50 | u64 hit; |
Frederic Weisbecker | 1953287 | 2009-08-07 07:11:05 +0200 | [diff] [blame] | 51 | u64 children_hit; |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 52 | }; |
| 53 | |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 54 | struct callchain_root { |
| 55 | u64 max_depth; |
| 56 | struct callchain_node node; |
| 57 | }; |
| 58 | |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 59 | struct callchain_param; |
| 60 | |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 61 | typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *, |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 62 | u64, struct callchain_param *); |
| 63 | |
Andi Kleen | 99571ab | 2013-07-18 15:33:57 -0700 | [diff] [blame] | 64 | enum chain_key { |
| 65 | CCKEY_FUNCTION, |
| 66 | CCKEY_ADDRESS |
| 67 | }; |
| 68 | |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 69 | struct callchain_param { |
Namhyung Kim | 72a128a | 2014-09-23 10:01:41 +0900 | [diff] [blame] | 70 | bool enabled; |
| 71 | enum perf_call_graph_mode record_mode; |
| 72 | u32 dump_size; |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 73 | enum chain_mode mode; |
Arnaldo Carvalho de Melo | 232a5c9 | 2010-05-09 20:28:10 -0300 | [diff] [blame] | 74 | u32 print_limit; |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 75 | double min_percent; |
| 76 | sort_chain_func_t sort; |
Sam Liao | d797fdc | 2011-06-07 23:49:46 +0800 | [diff] [blame] | 77 | enum chain_order order; |
Andi Kleen | 99571ab | 2013-07-18 15:33:57 -0700 | [diff] [blame] | 78 | enum chain_key key; |
Andi Kleen | 8b7bad5 | 2014-11-12 18:05:20 -0800 | [diff] [blame] | 79 | bool branch_callstack; |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 80 | }; |
| 81 | |
Arnaldo Carvalho de Melo | 8f651ea | 2014-10-09 16:12:24 -0300 | [diff] [blame] | 82 | extern struct callchain_param callchain_param; |
| 83 | |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 84 | struct callchain_list { |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 85 | u64 ip; |
Arnaldo Carvalho de Melo | b3c9ac0 | 2010-03-24 16:40:18 -0300 | [diff] [blame] | 86 | struct map_symbol ms; |
Namhyung Kim | 3698dab | 2015-05-05 23:55:46 +0900 | [diff] [blame] | 87 | struct /* for TUI */ { |
| 88 | bool unfolded; |
| 89 | bool has_children; |
| 90 | }; |
Andi Kleen | 23f0981 | 2014-11-12 18:05:24 -0800 | [diff] [blame] | 91 | char *srcline; |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 92 | struct list_head list; |
| 93 | }; |
| 94 | |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 95 | /* |
| 96 | * A callchain cursor is a single linked list that |
| 97 | * let one feed a callchain progressively. |
Masanari Iida | 3fd44cd | 2012-07-18 01:20:59 +0900 | [diff] [blame] | 98 | * It keeps persistent allocated entries to minimize |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 99 | * allocations. |
| 100 | */ |
| 101 | struct callchain_cursor_node { |
| 102 | u64 ip; |
| 103 | struct map *map; |
| 104 | struct symbol *sym; |
| 105 | struct callchain_cursor_node *next; |
| 106 | }; |
| 107 | |
| 108 | struct 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 Kim | 4726064 | 2012-05-31 14:43:26 +0900 | [diff] [blame] | 116 | extern __thread struct callchain_cursor callchain_cursor; |
| 117 | |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 118 | static inline void callchain_init(struct callchain_root *root) |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 119 | { |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 120 | INIT_LIST_HEAD(&root->node.val); |
Frederic Weisbecker | 97aa105 | 2010-07-08 06:06:17 +0200 | [diff] [blame] | 121 | |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 122 | root->node.parent = NULL; |
| 123 | root->node.hit = 0; |
Frederic Weisbecker | 98ee74a | 2010-08-27 02:28:40 +0200 | [diff] [blame] | 124 | root->node.children_hit = 0; |
Namhyung Kim | e369517 | 2013-10-11 14:15:36 +0900 | [diff] [blame] | 125 | root->node.rb_root_in = RB_ROOT; |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 126 | root->max_depth = 0; |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 127 | } |
| 128 | |
Frederic Weisbecker | f08c315 | 2011-01-14 04:51:59 +0100 | [diff] [blame] | 129 | static inline u64 callchain_cumul_hits(struct callchain_node *node) |
Frederic Weisbecker | 1953287 | 2009-08-07 07:11:05 +0200 | [diff] [blame] | 130 | { |
| 131 | return node->hit + node->children_hit; |
| 132 | } |
| 133 | |
Frederic Weisbecker | 16537f1 | 2011-01-14 04:52:00 +0100 | [diff] [blame] | 134 | int callchain_register_param(struct callchain_param *param); |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 135 | int callchain_append(struct callchain_root *root, |
| 136 | struct callchain_cursor *cursor, |
| 137 | u64 period); |
| 138 | |
| 139 | int callchain_merge(struct callchain_cursor *cursor, |
| 140 | struct callchain_root *dst, struct callchain_root *src); |
Arnaldo Carvalho de Melo | 139633c | 2010-05-09 11:47:13 -0300 | [diff] [blame] | 141 | |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 142 | /* |
| 143 | * Initialize a cursor before adding entries inside, but keep |
| 144 | * the previously allocated entries as a cache. |
| 145 | */ |
| 146 | static inline void callchain_cursor_reset(struct callchain_cursor *cursor) |
| 147 | { |
| 148 | cursor->nr = 0; |
| 149 | cursor->last = &cursor->first; |
| 150 | } |
| 151 | |
| 152 | int 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 */ |
| 156 | static 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 */ |
| 163 | static inline struct callchain_cursor_node * |
| 164 | callchain_cursor_current(struct callchain_cursor *cursor) |
| 165 | { |
| 166 | if (cursor->pos == cursor->nr) |
| 167 | return NULL; |
| 168 | |
| 169 | return cursor->curr; |
| 170 | } |
| 171 | |
| 172 | static inline void callchain_cursor_advance(struct callchain_cursor *cursor) |
| 173 | { |
| 174 | cursor->curr = cursor->curr->next; |
| 175 | cursor->pos++; |
| 176 | } |
Arnaldo Carvalho de Melo | 75d9a108 | 2012-12-11 16:46:05 -0300 | [diff] [blame] | 177 | |
| 178 | struct option; |
Namhyung Kim | 2dc9fb1 | 2014-01-14 14:25:35 +0900 | [diff] [blame] | 179 | struct hist_entry; |
Arnaldo Carvalho de Melo | 75d9a108 | 2012-12-11 16:46:05 -0300 | [diff] [blame] | 180 | |
| 181 | int record_parse_callchain_opt(const struct option *opt, const char *arg, int unset); |
Jiri Olsa | 09b0fd4 | 2013-10-26 16:25:33 +0200 | [diff] [blame] | 182 | int record_callchain_opt(const struct option *opt, const char *arg, int unset); |
| 183 | |
Namhyung Kim | 2dc9fb1 | 2014-01-14 14:25:35 +0900 | [diff] [blame] | 184 | int sample__resolve_callchain(struct perf_sample *sample, struct symbol **parent, |
| 185 | struct perf_evsel *evsel, struct addr_location *al, |
| 186 | int max_stack); |
| 187 | int hist_entry__append_callchain(struct hist_entry *he, struct perf_sample *sample); |
Namhyung Kim | c7405d8 | 2013-10-31 13:58:30 +0900 | [diff] [blame] | 188 | int fill_callchain_info(struct addr_location *al, struct callchain_cursor_node *node, |
| 189 | bool hide_unresolved); |
Namhyung Kim | 2dc9fb1 | 2014-01-14 14:25:35 +0900 | [diff] [blame] | 190 | |
Arnaldo Carvalho de Melo | 75d9a108 | 2012-12-11 16:46:05 -0300 | [diff] [blame] | 191 | extern const char record_callchain_help[]; |
Kan Liang | 076a30c | 2015-08-06 15:44:52 -0400 | [diff] [blame] | 192 | extern int parse_callchain_record(const char *arg, struct callchain_param *param); |
Kan Liang | c3a6a8c | 2015-08-04 04:30:20 -0400 | [diff] [blame] | 193 | int parse_callchain_record_opt(const char *arg, struct callchain_param *param); |
Don Zickus | cff6bb4 | 2014-04-07 14:55:24 -0400 | [diff] [blame] | 194 | int parse_callchain_report_opt(const char *arg); |
Namhyung Kim | 2b9240c | 2014-09-23 10:01:43 +0900 | [diff] [blame] | 195 | int perf_callchain_config(const char *var, const char *value); |
Namhyung Kim | be1f13e | 2012-09-10 13:38:00 +0900 | [diff] [blame] | 196 | |
| 197 | static 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 Bhattiprolu | a60335b | 2014-06-25 08:49:03 -0700 | [diff] [blame] | 205 | |
| 206 | #ifdef HAVE_SKIP_CALLCHAIN_IDX |
Arnaldo Carvalho de Melo | bb871a9 | 2014-10-23 12:50:25 -0300 | [diff] [blame] | 207 | extern int arch_skip_callchain_idx(struct thread *thread, struct ip_callchain *chain); |
Sukadev Bhattiprolu | a60335b | 2014-06-25 08:49:03 -0700 | [diff] [blame] | 208 | #else |
Arnaldo Carvalho de Melo | bb871a9 | 2014-10-23 12:50:25 -0300 | [diff] [blame] | 209 | static inline int arch_skip_callchain_idx(struct thread *thread __maybe_unused, |
Sukadev Bhattiprolu | a60335b | 2014-06-25 08:49:03 -0700 | [diff] [blame] | 210 | struct ip_callchain *chain __maybe_unused) |
| 211 | { |
| 212 | return -1; |
| 213 | } |
| 214 | #endif |
| 215 | |
Andi Kleen | 2989cca | 2014-11-12 18:05:23 -0800 | [diff] [blame] | 216 | char *callchain_list__sym_name(struct callchain_list *cl, |
| 217 | char *bf, size_t bfsize, bool show_dso); |
| 218 | |
Namhyung Kim | d114960 | 2014-12-30 14:38:13 +0900 | [diff] [blame] | 219 | void free_callchain(struct callchain_root *root); |
| 220 | |
John Kacur | 8b40f52 | 2009-09-24 18:02:18 +0200 | [diff] [blame] | 221 | #endif /* __PERF_CALLCHAIN_H */ |