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>
|
2010-05-09 22:47:13 +08:00
|
|
|
#include "event.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 {
|
2009-08-08 08:16:24 +08:00
|
|
|
CHAIN_NONE,
|
2009-07-05 13:39:21 +08:00
|
|
|
CHAIN_FLAT,
|
|
|
|
CHAIN_GRAPH_ABS,
|
|
|
|
CHAIN_GRAPH_REL
|
2009-07-02 23:58:21 +08:00
|
|
|
};
|
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-08-07 13:11:05 +08:00
|
|
|
u64 children_hit;
|
2009-06-26 22:28:00 +08:00
|
|
|
};
|
|
|
|
|
2010-08-23 02:05:22 +08:00
|
|
|
struct callchain_root {
|
|
|
|
u64 max_depth;
|
|
|
|
struct callchain_node node;
|
|
|
|
};
|
|
|
|
|
2009-07-05 13:39:21 +08:00
|
|
|
struct callchain_param;
|
|
|
|
|
2010-08-23 02:05:22 +08:00
|
|
|
typedef void (*sort_chain_func_t)(struct rb_root *, struct callchain_root *,
|
2009-07-05 13:39:21 +08:00
|
|
|
u64, struct callchain_param *);
|
|
|
|
|
|
|
|
struct callchain_param {
|
|
|
|
enum chain_mode mode;
|
2010-05-10 07:28:10 +08:00
|
|
|
u32 print_limit;
|
2009-07-05 13:39:21 +08:00
|
|
|
double min_percent;
|
|
|
|
sort_chain_func_t sort;
|
|
|
|
};
|
|
|
|
|
2009-06-26 22:28:00 +08:00
|
|
|
struct callchain_list {
|
2009-07-01 18:37:06 +08:00
|
|
|
u64 ip;
|
2010-03-25 03:40:18 +08:00
|
|
|
struct map_symbol ms;
|
2009-06-26 22:28:00 +08:00
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
|
2010-08-23 02:05:22 +08:00
|
|
|
static inline void callchain_init(struct callchain_root *root)
|
2009-06-26 22:28:00 +08:00
|
|
|
{
|
2010-08-23 02:05:22 +08:00
|
|
|
INIT_LIST_HEAD(&root->node.brothers);
|
|
|
|
INIT_LIST_HEAD(&root->node.children);
|
|
|
|
INIT_LIST_HEAD(&root->node.val);
|
2010-07-08 12:06:17 +08:00
|
|
|
|
2010-08-23 02:05:22 +08:00
|
|
|
root->node.parent = NULL;
|
|
|
|
root->node.hit = 0;
|
2010-08-27 08:28:40 +08:00
|
|
|
root->node.children_hit = 0;
|
2010-08-23 02:05:22 +08:00
|
|
|
root->max_depth = 0;
|
2009-06-26 22:28:00 +08:00
|
|
|
}
|
|
|
|
|
2009-08-07 13:11:05 +08:00
|
|
|
static inline u64 cumul_hits(struct callchain_node *node)
|
|
|
|
{
|
|
|
|
return node->hit + node->children_hit;
|
|
|
|
}
|
|
|
|
|
2009-07-05 13:39:21 +08:00
|
|
|
int register_callchain_param(struct callchain_param *param);
|
2010-08-23 02:18:01 +08:00
|
|
|
int callchain_append(struct callchain_root *root, struct ip_callchain *chain,
|
|
|
|
struct map_symbol *syms, u64 period);
|
perf: Support for callchains merge
If we sort the histograms by comm, which is the default,
we need to merge some of them, typically different thread
histograms of a same process, or just same comm. But during
this merge, we forgot to merge callchains.
So imagine we have three threads (tids: 1000, 1001, 1002) that
belong to comm "foo".
tid 1000 got 100 events
tid 1001 got 10 events
tid 1002 got 3 events
Once we merge these histograms to get a per comm result, we'll
finally get:
"foo" got 113 events
The problem is if we merge 1000 and 1001 histograms into 1002, then
the end merge result, wrt callchains, will be only callchains that
belong to 1002.
This is because we haven't handled callchains in the merge. Only those
from one of the threads inside a common comm survive.
It means during this merge, we can lose a lot of callchains.
Fix this by implementing callchains merge and apply it on histograms
that collapse.
Reported-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Paul Mackerras <paulus@samba.org>
2010-08-23 03:10:35 +08:00
|
|
|
int callchain_merge(struct callchain_root *dst, struct callchain_root *src);
|
2010-05-09 22:47:13 +08:00
|
|
|
|
2010-06-04 19:02:07 +08:00
|
|
|
bool ip_callchain__valid(struct ip_callchain *chain, const event_t *event);
|
2009-09-25 00:02:18 +08:00
|
|
|
#endif /* __PERF_CALLCHAIN_H */
|