123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef __PERF_CALLCHAIN_H
- #define __PERF_CALLCHAIN_H
- #include "../perf.h"
- #include <linux/list.h>
- #include <linux/rbtree.h>
- #include "symbol.h"
- enum chain_mode {
- FLAT,
- GRAPH
- };
- struct callchain_node {
- struct callchain_node *parent;
- struct list_head brothers;
- struct list_head children;
- struct list_head val;
- struct rb_node rb_node; /* to sort nodes in an rbtree */
- struct rb_root rb_root; /* sorted tree of children */
- unsigned int val_nr;
- u64 hit;
- u64 cumul_hit; /* hit + hits of children */
- };
- struct callchain_list {
- u64 ip;
- struct symbol *sym;
- struct list_head list;
- };
- static inline void callchain_init(struct callchain_node *node)
- {
- INIT_LIST_HEAD(&node->brothers);
- INIT_LIST_HEAD(&node->children);
- INIT_LIST_HEAD(&node->val);
- }
- void append_chain(struct callchain_node *root, struct ip_callchain *chain,
- struct symbol **syms);
- void sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node,
- u64 min_hit);
- void sort_chain_graph(struct rb_root *rb_root, struct callchain_node *node,
- u64 min_hit);
- #endif
|