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>
|
2010-05-09 07:47:13 -07:00
|
|
|
#include "event.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 {
|
2009-08-07 17:16:24 -07:00
|
|
|
CHAIN_NONE,
|
2009-07-04 22:39:21 -07:00
|
|
|
CHAIN_FLAT,
|
|
|
|
CHAIN_GRAPH_ABS,
|
|
|
|
CHAIN_GRAPH_REL
|
2009-07-02 08:58:21 -07:00
|
|
|
};
|
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-08-06 22:11:05 -07:00
|
|
|
u64 children_hit;
|
2009-06-26 07:28:00 -07:00
|
|
|
};
|
|
|
|
|
2010-08-22 11:05:22 -07:00
|
|
|
struct callchain_root {
|
|
|
|
u64 max_depth;
|
|
|
|
struct callchain_node node;
|
|
|
|
};
|
|
|
|
|
2009-07-04 22:39:21 -07:00
|
|
|
struct callchain_param;
|
|
|
|
|
2010-08-22 11:05:22 -07:00
|
|
|
typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *,
|
2009-07-04 22:39:21 -07:00
|
|
|
u64, struct callchain_param *);
|
|
|
|
|
|
|
|
struct callchain_param {
|
|
|
|
enum chain_mode mode;
|
2010-05-09 16:28:10 -07:00
|
|
|
u32 print_limit;
|
2009-07-04 22:39:21 -07:00
|
|
|
double min_percent;
|
|
|
|
sort_chain_func_t sort;
|
|
|
|
};
|
|
|
|
|
2009-06-26 07:28:00 -07:00
|
|
|
struct callchain_list {
|
2009-07-01 03:37:06 -07:00
|
|
|
u64 ip;
|
2010-03-24 12:40:18 -07:00
|
|
|
struct map_symbol ms;
|
2009-06-26 07:28:00 -07:00
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
|
2010-08-22 11:05:22 -07:00
|
|
|
static inline void callchain_init(struct callchain_root *root)
|
2009-06-26 07:28:00 -07:00
|
|
|
{
|
2010-08-22 11:05:22 -07:00
|
|
|
INIT_LIST_HEAD(&root->node.brothers);
|
|
|
|
INIT_LIST_HEAD(&root->node.children);
|
|
|
|
INIT_LIST_HEAD(&root->node.val);
|
2010-07-07 21:06:17 -07:00
|
|
|
|
2010-08-22 11:05:22 -07:00
|
|
|
root->node.parent = NULL;
|
|
|
|
root->node.hit = 0;
|
|
|
|
root->max_depth = 0;
|
2009-06-26 07:28:00 -07:00
|
|
|
}
|
|
|
|
|
2009-08-06 22:11:05 -07:00
|
|
|
static inline u64 cumul_hits(struct callchain_node *node)
|
|
|
|
{
|
|
|
|
return node->hit + node->children_hit;
|
|
|
|
}
|
|
|
|
|
2009-07-04 22:39:21 -07:00
|
|
|
int register_callchain_param(struct callchain_param *param);
|
2010-08-22 11:05:22 -07:00
|
|
|
int append_chain(struct callchain_root *root, struct ip_callchain *chain,
|
2010-07-07 18:41:46 -07:00
|
|
|
struct map_symbol *syms, u64 period);
|
2010-05-09 07:47:13 -07:00
|
|
|
|
2010-06-04 04:02:07 -07:00
|
|
|
bool ip_callchain__valid(struct ip_callchain *chain, const event_t *event);
|
2009-09-24 09:02:18 -07:00
|
|
|
#endif /* __PERF_CALLCHAIN_H */
|