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