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 | |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 10 | enum chain_mode { |
Frederic Weisbecker | b1a8834 | 2009-08-08 02:16:24 +0200 | [diff] [blame] | 11 | CHAIN_NONE, |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 12 | CHAIN_FLAT, |
| 13 | CHAIN_GRAPH_ABS, |
| 14 | CHAIN_GRAPH_REL |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 15 | }; |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 16 | |
Sam Liao | d797fdc | 2011-06-07 23:49:46 +0800 | [diff] [blame] | 17 | enum chain_order { |
| 18 | ORDER_CALLER, |
| 19 | ORDER_CALLEE |
| 20 | }; |
| 21 | |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 22 | struct callchain_node { |
| 23 | struct callchain_node *parent; |
Frederic Weisbecker | 529363b | 2011-01-14 04:52:01 +0100 | [diff] [blame] | 24 | struct list_head siblings; |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 25 | struct list_head children; |
| 26 | struct list_head val; |
Frederic Weisbecker | 4eb3e47 | 2009-07-02 17:58:21 +0200 | [diff] [blame] | 27 | struct rb_node rb_node; /* to sort nodes in an rbtree */ |
| 28 | struct rb_root rb_root; /* sorted tree of children */ |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 29 | unsigned int val_nr; |
| 30 | u64 hit; |
Frederic Weisbecker | 1953287 | 2009-08-07 07:11:05 +0200 | [diff] [blame] | 31 | u64 children_hit; |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 32 | }; |
| 33 | |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 34 | struct callchain_root { |
| 35 | u64 max_depth; |
| 36 | struct callchain_node node; |
| 37 | }; |
| 38 | |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 39 | struct callchain_param; |
| 40 | |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 41 | typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *, |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 42 | u64, struct callchain_param *); |
| 43 | |
| 44 | struct callchain_param { |
| 45 | enum chain_mode mode; |
Arnaldo Carvalho de Melo | 232a5c9 | 2010-05-09 20:28:10 -0300 | [diff] [blame] | 46 | u32 print_limit; |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 47 | double min_percent; |
| 48 | sort_chain_func_t sort; |
Sam Liao | d797fdc | 2011-06-07 23:49:46 +0800 | [diff] [blame] | 49 | enum chain_order order; |
Frederic Weisbecker | 805d127 | 2009-07-05 07:39:21 +0200 | [diff] [blame] | 50 | }; |
| 51 | |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 52 | struct callchain_list { |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 53 | u64 ip; |
Arnaldo Carvalho de Melo | b3c9ac0 | 2010-03-24 16:40:18 -0300 | [diff] [blame] | 54 | struct map_symbol ms; |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 55 | struct list_head list; |
| 56 | }; |
| 57 | |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 58 | /* |
| 59 | * A callchain cursor is a single linked list that |
| 60 | * let one feed a callchain progressively. |
| 61 | * It keeps persitent allocated entries to minimize |
| 62 | * allocations. |
| 63 | */ |
| 64 | struct callchain_cursor_node { |
| 65 | u64 ip; |
| 66 | struct map *map; |
| 67 | struct symbol *sym; |
| 68 | struct callchain_cursor_node *next; |
| 69 | }; |
| 70 | |
| 71 | struct callchain_cursor { |
| 72 | u64 nr; |
| 73 | struct callchain_cursor_node *first; |
| 74 | struct callchain_cursor_node **last; |
| 75 | u64 pos; |
| 76 | struct callchain_cursor_node *curr; |
| 77 | }; |
| 78 | |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 79 | static inline void callchain_init(struct callchain_root *root) |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 80 | { |
Frederic Weisbecker | 529363b | 2011-01-14 04:52:01 +0100 | [diff] [blame] | 81 | INIT_LIST_HEAD(&root->node.siblings); |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 82 | INIT_LIST_HEAD(&root->node.children); |
| 83 | INIT_LIST_HEAD(&root->node.val); |
Frederic Weisbecker | 97aa105 | 2010-07-08 06:06:17 +0200 | [diff] [blame] | 84 | |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 85 | root->node.parent = NULL; |
| 86 | root->node.hit = 0; |
Frederic Weisbecker | 98ee74a | 2010-08-27 02:28:40 +0200 | [diff] [blame] | 87 | root->node.children_hit = 0; |
Frederic Weisbecker | d2009c5 | 2010-08-22 20:05:22 +0200 | [diff] [blame] | 88 | root->max_depth = 0; |
Frederic Weisbecker | 8cb76d9 | 2009-06-26 16:28:00 +0200 | [diff] [blame] | 89 | } |
| 90 | |
Frederic Weisbecker | f08c315 | 2011-01-14 04:51:59 +0100 | [diff] [blame] | 91 | static inline u64 callchain_cumul_hits(struct callchain_node *node) |
Frederic Weisbecker | 1953287 | 2009-08-07 07:11:05 +0200 | [diff] [blame] | 92 | { |
| 93 | return node->hit + node->children_hit; |
| 94 | } |
| 95 | |
Frederic Weisbecker | 16537f1 | 2011-01-14 04:52:00 +0100 | [diff] [blame] | 96 | int callchain_register_param(struct callchain_param *param); |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 97 | int callchain_append(struct callchain_root *root, |
| 98 | struct callchain_cursor *cursor, |
| 99 | u64 period); |
| 100 | |
| 101 | int callchain_merge(struct callchain_cursor *cursor, |
| 102 | struct callchain_root *dst, struct callchain_root *src); |
Arnaldo Carvalho de Melo | 139633c | 2010-05-09 11:47:13 -0300 | [diff] [blame] | 103 | |
Arnaldo Carvalho de Melo | d20deb6 | 2011-11-25 08:19:45 -0200 | [diff] [blame] | 104 | struct ip_callchain; |
| 105 | union perf_event; |
| 106 | |
Arnaldo Carvalho de Melo | 8115d60 | 2011-01-29 14:01:45 -0200 | [diff] [blame] | 107 | bool ip_callchain__valid(struct ip_callchain *chain, |
| 108 | const union perf_event *event); |
Frederic Weisbecker | 1b3a0e9 | 2011-01-14 04:51:58 +0100 | [diff] [blame] | 109 | /* |
| 110 | * Initialize a cursor before adding entries inside, but keep |
| 111 | * the previously allocated entries as a cache. |
| 112 | */ |
| 113 | static inline void callchain_cursor_reset(struct callchain_cursor *cursor) |
| 114 | { |
| 115 | cursor->nr = 0; |
| 116 | cursor->last = &cursor->first; |
| 117 | } |
| 118 | |
| 119 | int callchain_cursor_append(struct callchain_cursor *cursor, u64 ip, |
| 120 | struct map *map, struct symbol *sym); |
| 121 | |
| 122 | /* Close a cursor writing session. Initialize for the reader */ |
| 123 | static inline void callchain_cursor_commit(struct callchain_cursor *cursor) |
| 124 | { |
| 125 | cursor->curr = cursor->first; |
| 126 | cursor->pos = 0; |
| 127 | } |
| 128 | |
| 129 | /* Cursor reading iteration helpers */ |
| 130 | static inline struct callchain_cursor_node * |
| 131 | callchain_cursor_current(struct callchain_cursor *cursor) |
| 132 | { |
| 133 | if (cursor->pos == cursor->nr) |
| 134 | return NULL; |
| 135 | |
| 136 | return cursor->curr; |
| 137 | } |
| 138 | |
| 139 | static inline void callchain_cursor_advance(struct callchain_cursor *cursor) |
| 140 | { |
| 141 | cursor->curr = cursor->curr->next; |
| 142 | cursor->pos++; |
| 143 | } |
John Kacur | 8b40f52 | 2009-09-24 18:02:18 +0200 | [diff] [blame] | 144 | #endif /* __PERF_CALLCHAIN_H */ |