2009-06-26 22:28:00 +08:00
|
|
|
#ifndef __PERF_CALLCHAIN_H
|
|
|
|
#define __PERF_CALLCHAIN_H
|
|
|
|
|
|
|
|
#include "../perf.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "rbtree.h"
|
2009-07-01 11:35:14 +08:00
|
|
|
#include "symbol.h"
|
2009-06-26 22:28:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
struct callchain_node {
|
|
|
|
struct callchain_node *parent;
|
|
|
|
struct list_head brothers;
|
|
|
|
struct list_head children;
|
|
|
|
struct list_head val;
|
|
|
|
struct rb_node rb_node;
|
|
|
|
int val_nr;
|
|
|
|
int hit;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct callchain_list {
|
|
|
|
unsigned long 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-06-26 22:28:00 +08:00
|
|
|
void sort_chain_to_rbtree(struct rb_root *rb_root, struct callchain_node *node);
|
|
|
|
#endif
|