blob: 812d5a0ff2bcf7da3ce89315e6ad130a173adf10 [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
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020010enum chain_mode {
Frederic Weisbeckerb1a88342009-08-08 02:16:24 +020011 CHAIN_NONE,
Frederic Weisbecker805d1272009-07-05 07:39:21 +020012 CHAIN_FLAT,
13 CHAIN_GRAPH_ABS,
14 CHAIN_GRAPH_REL
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020015};
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020016
Sam Liaod797fdc2011-06-07 23:49:46 +080017enum chain_order {
18 ORDER_CALLER,
19 ORDER_CALLEE
20};
21
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020022struct callchain_node {
23 struct callchain_node *parent;
Frederic Weisbecker529363b2011-01-14 04:52:01 +010024 struct list_head siblings;
Ingo Molnarf37a2912009-07-01 12:37:06 +020025 struct list_head children;
26 struct list_head val;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020027 struct rb_node rb_node; /* to sort nodes in an rbtree */
28 struct rb_root rb_root; /* sorted tree of children */
Ingo Molnarf37a2912009-07-01 12:37:06 +020029 unsigned int val_nr;
30 u64 hit;
Frederic Weisbecker19532872009-08-07 07:11:05 +020031 u64 children_hit;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020032};
33
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020034struct callchain_root {
35 u64 max_depth;
36 struct callchain_node node;
37};
38
Frederic Weisbecker805d1272009-07-05 07:39:21 +020039struct callchain_param;
40
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020041typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *,
Frederic Weisbecker805d1272009-07-05 07:39:21 +020042 u64, struct callchain_param *);
43
Andi Kleen99571ab2013-07-18 15:33:57 -070044enum chain_key {
45 CCKEY_FUNCTION,
46 CCKEY_ADDRESS
47};
48
Frederic Weisbecker805d1272009-07-05 07:39:21 +020049struct callchain_param {
50 enum chain_mode mode;
Arnaldo Carvalho de Melo232a5c92010-05-09 20:28:10 -030051 u32 print_limit;
Frederic Weisbecker805d1272009-07-05 07:39:21 +020052 double min_percent;
53 sort_chain_func_t sort;
Sam Liaod797fdc2011-06-07 23:49:46 +080054 enum chain_order order;
Andi Kleen99571ab2013-07-18 15:33:57 -070055 enum chain_key key;
Frederic Weisbecker805d1272009-07-05 07:39:21 +020056};
57
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020058struct callchain_list {
Ingo Molnarf37a2912009-07-01 12:37:06 +020059 u64 ip;
Arnaldo Carvalho de Melob3c9ac02010-03-24 16:40:18 -030060 struct map_symbol ms;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020061 struct list_head list;
62};
63
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +010064/*
65 * A callchain cursor is a single linked list that
66 * let one feed a callchain progressively.
Masanari Iida3fd44cd2012-07-18 01:20:59 +090067 * It keeps persistent allocated entries to minimize
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +010068 * allocations.
69 */
70struct callchain_cursor_node {
71 u64 ip;
72 struct map *map;
73 struct symbol *sym;
74 struct callchain_cursor_node *next;
75};
76
77struct callchain_cursor {
78 u64 nr;
79 struct callchain_cursor_node *first;
80 struct callchain_cursor_node **last;
81 u64 pos;
82 struct callchain_cursor_node *curr;
83};
84
Namhyung Kim47260642012-05-31 14:43:26 +090085extern __thread struct callchain_cursor callchain_cursor;
86
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020087static inline void callchain_init(struct callchain_root *root)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020088{
Frederic Weisbecker529363b2011-01-14 04:52:01 +010089 INIT_LIST_HEAD(&root->node.siblings);
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020090 INIT_LIST_HEAD(&root->node.children);
91 INIT_LIST_HEAD(&root->node.val);
Frederic Weisbecker97aa1052010-07-08 06:06:17 +020092
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020093 root->node.parent = NULL;
94 root->node.hit = 0;
Frederic Weisbecker98ee74a2010-08-27 02:28:40 +020095 root->node.children_hit = 0;
Frederic Weisbeckerd2009c52010-08-22 20:05:22 +020096 root->max_depth = 0;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020097}
98
Frederic Weisbeckerf08c3152011-01-14 04:51:59 +010099static inline u64 callchain_cumul_hits(struct callchain_node *node)
Frederic Weisbecker19532872009-08-07 07:11:05 +0200100{
101 return node->hit + node->children_hit;
102}
103
Frederic Weisbecker16537f12011-01-14 04:52:00 +0100104int callchain_register_param(struct callchain_param *param);
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100105int callchain_append(struct callchain_root *root,
106 struct callchain_cursor *cursor,
107 u64 period);
108
109int callchain_merge(struct callchain_cursor *cursor,
110 struct callchain_root *dst, struct callchain_root *src);
Arnaldo Carvalho de Melo139633c2010-05-09 11:47:13 -0300111
Arnaldo Carvalho de Melod20deb62011-11-25 08:19:45 -0200112struct ip_callchain;
113union perf_event;
114
Arnaldo Carvalho de Melo8115d602011-01-29 14:01:45 -0200115bool ip_callchain__valid(struct ip_callchain *chain,
116 const union perf_event *event);
Frederic Weisbecker1b3a0e92011-01-14 04:51:58 +0100117/*
118 * Initialize a cursor before adding entries inside, but keep
119 * the previously allocated entries as a cache.
120 */
121static inline void callchain_cursor_reset(struct callchain_cursor *cursor)
122{
123 cursor->nr = 0;
124 cursor->last = &cursor->first;
125}
126
127int callchain_cursor_append(struct callchain_cursor *cursor, u64 ip,
128 struct map *map, struct symbol *sym);
129
130/* Close a cursor writing session. Initialize for the reader */
131static inline void callchain_cursor_commit(struct callchain_cursor *cursor)
132{
133 cursor->curr = cursor->first;
134 cursor->pos = 0;
135}
136
137/* Cursor reading iteration helpers */
138static inline struct callchain_cursor_node *
139callchain_cursor_current(struct callchain_cursor *cursor)
140{
141 if (cursor->pos == cursor->nr)
142 return NULL;
143
144 return cursor->curr;
145}
146
147static inline void callchain_cursor_advance(struct callchain_cursor *cursor)
148{
149 cursor->curr = cursor->curr->next;
150 cursor->pos++;
151}
Arnaldo Carvalho de Melo75d9a1082012-12-11 16:46:05 -0300152
153struct option;
154
155int record_parse_callchain_opt(const struct option *opt, const char *arg, int unset);
156extern const char record_callchain_help[];
John Kacur8b40f522009-09-24 18:02:18 +0200157#endif /* __PERF_CALLCHAIN_H */