perf report: Add debug help for the finding of symbol bugs - show the symtab origin...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / tools / perf / util / callchain.h
blobb2d128e07c889973d59d66791dfc274dc76ab789
1 #ifndef __PERF_CALLCHAIN_H
2 #define __PERF_CALLCHAIN_H
4 #include "../perf.h"
5 #include <linux/list.h>
6 #include <linux/rbtree.h>
7 #include "symbol.h"
9 enum chain_mode {
10 CHAIN_FLAT,
11 CHAIN_GRAPH_ABS,
12 CHAIN_GRAPH_REL
15 struct callchain_node {
16 struct callchain_node *parent;
17 struct list_head brothers;
18 struct list_head children;
19 struct list_head val;
20 struct rb_node rb_node; /* to sort nodes in an rbtree */
21 struct rb_root rb_root; /* sorted tree of children */
22 unsigned int val_nr;
23 u64 hit;
24 u64 children_hit;
27 struct callchain_param;
29 typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_node *,
30 u64, struct callchain_param *);
32 struct callchain_param {
33 enum chain_mode mode;
34 double min_percent;
35 sort_chain_func_t sort;
38 struct callchain_list {
39 u64 ip;
40 struct symbol *sym;
41 struct list_head list;
44 static inline void callchain_init(struct callchain_node *node)
46 INIT_LIST_HEAD(&node->brothers);
47 INIT_LIST_HEAD(&node->children);
48 INIT_LIST_HEAD(&node->val);
51 static inline u64 cumul_hits(struct callchain_node *node)
53 return node->hit + node->children_hit;
56 int register_callchain_param(struct callchain_param *param);
57 void append_chain(struct callchain_node *root, struct ip_callchain *chain,
58 struct symbol **syms);
59 #endif