2009-06-26 16:28:00 +02:00
|
|
|
#ifndef __PERF_CALLCHAIN_H
|
|
|
|
#define __PERF_CALLCHAIN_H
|
|
|
|
|
|
|
|
#include "../perf.h"
|
2009-07-01 19:46:08 +02:00
|
|
|
#include <linux/list.h>
|
2009-07-01 17:28:37 +02:00
|
|
|
#include <linux/rbtree.h>
|
2009-08-12 11:07:25 +02:00
|
|
|
#include "util.h"
|
2009-07-01 05:35:14 +02:00
|
|
|
#include "symbol.h"
|
2009-06-26 16:28:00 +02:00
|
|
|
|
2009-07-02 17:58:21 +02:00
|
|
|
enum chain_mode {
|
2009-08-08 02:16:24 +02:00
|
|
|
CHAIN_NONE,
|
2009-07-05 07:39:21 +02:00
|
|
|
CHAIN_FLAT,
|
|
|
|
CHAIN_GRAPH_ABS,
|
|
|
|
CHAIN_GRAPH_REL
|
2009-07-02 17:58:21 +02:00
|
|
|
};
|
2009-06-26 16:28:00 +02:00
|
|
|
|
|
|
|
struct callchain_node {
|
|
|
|
struct callchain_node *parent;
|
|
|
|
struct list_head brothers;
|
2009-07-01 12:37:06 +02:00
|
|
|
struct list_head children;
|
|
|
|
struct list_head val;
|
2009-07-02 17:58:21 +02:00
|
|
|
struct rb_node rb_node; /* to sort nodes in an rbtree */
|
|
|
|
struct rb_root rb_root; /* sorted tree of children */
|
2009-07-01 12:37:06 +02:00
|
|
|
unsigned int val_nr;
|
|
|
|
u64 hit;
|
2009-08-07 07:11:05 +02:00
|
|
|
u64 children_hit;
|
2009-06-26 16:28:00 +02:00
|
|
|
};
|
|
|
|
|
2009-07-05 07:39:21 +02:00
|
|
|
struct callchain_param;
|
|
|
|
|
|
|
|
typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_node *,
|
|
|
|
u64, struct callchain_param *);
|
|
|
|
|
|
|
|
struct callchain_param {
|
|
|
|
enum chain_mode mode;
|
|
|
|
double min_percent;
|
|
|
|
sort_chain_func_t sort;
|
|
|
|
};
|
|
|
|
|
2009-06-26 16:28:00 +02:00
|
|
|
struct callchain_list {
|
2009-07-01 12:37:06 +02:00
|
|
|
u64 ip;
|
2009-07-01 05:35:14 +02:00
|
|
|
struct symbol *sym;
|
2009-06-26 16:28:00 +02: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-08-07 07:11:05 +02:00
|
|
|
static inline u64 cumul_hits(struct callchain_node *node)
|
|
|
|
{
|
|
|
|
return node->hit + node->children_hit;
|
|
|
|
}
|
|
|
|
|
2009-07-05 07:39:21 +02:00
|
|
|
int register_callchain_param(struct callchain_param *param);
|
2009-07-01 05:35:14 +02:00
|
|
|
void append_chain(struct callchain_node *root, struct ip_callchain *chain,
|
|
|
|
struct symbol **syms);
|
2009-06-26 16:28:00 +02:00
|
|
|
#endif
|