2009-06-26 22:28:00 +08:00
|
|
|
#ifndef __PERF_CALLCHAIN_H
|
|
|
|
#define __PERF_CALLCHAIN_H
|
|
|
|
|
|
|
|
#include "../perf.h"
|
2009-07-02 01:46:08 +08:00
|
|
|
#include <linux/list.h>
|
2009-07-01 23:28:37 +08:00
|
|
|
#include <linux/rbtree.h>
|
2009-07-01 11:35:14 +08:00
|
|
|
#include "symbol.h"
|
2009-06-26 22:28:00 +08:00
|
|
|
|
2009-07-02 23:58:21 +08:00
|
|
|
enum chain_mode {
|
|
|
|
FLAT,
|
|
|
|
GRAPH
|
|
|
|
};
|
2009-06-26 22:28:00 +08:00
|
|
|
|
|
|
|
struct callchain_node {
|
|
|
|
struct callchain_node *parent;
|
|
|
|
struct list_head brothers;
|
2009-07-01 18:37:06 +08:00
|
|
|
struct list_head children;
|
|
|
|
struct list_head val;
|
2009-07-02 23:58:21 +08:00
|
|
|
struct rb_node rb_node; /* to sort nodes in an rbtree */
|
|
|
|
struct rb_root rb_root; /* sorted tree of children */
|
2009-07-01 18:37:06 +08:00
|
|
|
unsigned int val_nr;
|
|
|
|
u64 hit;
|
2009-07-02 23:58:21 +08:00
|
|
|
u64 cumul_hit; /* hit + hits of children */
|
2009-06-26 22:28:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct callchain_list {
|
2009-07-01 18:37:06 +08:00
|
|
|
u64 ip;
|
2009-07-01 11:35:14 +08:00
|
|
|
struct symbol *sym;
|
2009-06-26 22:28:00 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2009-07-01 11:35:14 +08:00
|
|
|
void append_chain(struct callchain_node *root, struct ip_callchain *chain,
|
|
|
|
struct symbol **syms);
|
2009-07-03 02:14:33 +08:00
|
|
|
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);
|
2009-06-26 22:28:00 +08:00
|
|
|
#endif
|