callchain.c 10.5 KB
Newer Older
1
/*
2
 * Copyright (C) 2009-2011, Frederic Weisbecker <fweisbec@gmail.com>
3 4 5 6
 *
 * Handle the callchains from the stream in an ad-hoc radix tree and then
 * sort them in an rbtree.
 *
7 8 9
 * Using a radix for code path provides a fast retrieval and factorizes
 * memory use. Also that lets us use the paths in a hierarchical graph view.
 *
10 11 12 13 14 15
 */

#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <errno.h>
16
#include <math.h>
17

18
#include "util.h"
19 20
#include "callchain.h"

21 22
__thread struct callchain_cursor callchain_cursor;

23 24
bool ip_callchain__valid(struct ip_callchain *chain,
			 const union perf_event *event)
25 26 27 28 29 30
{
	unsigned int chain_size = event->header.size;
	chain_size -= (unsigned long)&event->ip.__more_data - (unsigned long)event;
	return chain->nr * sizeof(u64) <= chain_size;
}

31
#define chain_for_each_child(child, parent)	\
32
	list_for_each_entry(child, &parent->children, siblings)
33

34
#define chain_for_each_child_safe(child, next, parent)	\
35
	list_for_each_entry_safe(child, next, &parent->children, siblings)
36

37
static void
38 39
rb_insert_callchain(struct rb_root *root, struct callchain_node *chain,
		    enum chain_mode mode)
40 41 42 43
{
	struct rb_node **p = &root->rb_node;
	struct rb_node *parent = NULL;
	struct callchain_node *rnode;
44
	u64 chain_cumul = callchain_cumul_hits(chain);
45 46

	while (*p) {
47 48
		u64 rnode_cumul;

49 50
		parent = *p;
		rnode = rb_entry(parent, struct callchain_node, rb_node);
51
		rnode_cumul = callchain_cumul_hits(rnode);
52

53
		switch (mode) {
54
		case CHAIN_FLAT:
55 56 57 58 59
			if (rnode->hit < chain->hit)
				p = &(*p)->rb_left;
			else
				p = &(*p)->rb_right;
			break;
60 61
		case CHAIN_GRAPH_ABS: /* Falldown */
		case CHAIN_GRAPH_REL:
62
			if (rnode_cumul < chain_cumul)
63 64 65 66
				p = &(*p)->rb_left;
			else
				p = &(*p)->rb_right;
			break;
67
		case CHAIN_NONE:
68 69 70
		default:
			break;
		}
71 72 73 74 75 76
	}

	rb_link_node(&chain->rb_node, parent, p);
	rb_insert_color(&chain->rb_node, root);
}

77 78 79 80 81 82 83 84 85 86 87 88 89
static void
__sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node,
		  u64 min_hit)
{
	struct callchain_node *child;

	chain_for_each_child(child, node)
		__sort_chain_flat(rb_root, child, min_hit);

	if (node->hit && node->hit >= min_hit)
		rb_insert_callchain(rb_root, node, CHAIN_FLAT);
}

90 91 92 93
/*
 * Once we get every callchains from the stream, we can now
 * sort them by hit
 */
94
static void
95
sort_chain_flat(struct rb_root *rb_root, struct callchain_root *root,
96 97
		u64 min_hit, struct callchain_param *param __used)
{
98
	__sort_chain_flat(rb_root, &root->node, min_hit);
99 100 101 102
}

static void __sort_chain_graph_abs(struct callchain_node *node,
				   u64 min_hit)
103 104 105
{
	struct callchain_node *child;

106
	node->rb_root = RB_ROOT;
107

108 109
	chain_for_each_child(child, node) {
		__sort_chain_graph_abs(child, min_hit);
110
		if (callchain_cumul_hits(child) >= min_hit)
111 112 113 114 115 116
			rb_insert_callchain(&node->rb_root, child,
					    CHAIN_GRAPH_ABS);
	}
}

static void
117
sort_chain_graph_abs(struct rb_root *rb_root, struct callchain_root *chain_root,
118 119
		     u64 min_hit, struct callchain_param *param __used)
{
120 121
	__sort_chain_graph_abs(&chain_root->node, min_hit);
	rb_root->rb_node = chain_root->node.rb_root.rb_node;
122 123
}

124 125
static void __sort_chain_graph_rel(struct callchain_node *node,
				   double min_percent)
126 127
{
	struct callchain_node *child;
128
	u64 min_hit;
129 130

	node->rb_root = RB_ROOT;
131
	min_hit = ceil(node->children_hit * min_percent);
132 133

	chain_for_each_child(child, node) {
134
		__sort_chain_graph_rel(child, min_percent);
135
		if (callchain_cumul_hits(child) >= min_hit)
136 137
			rb_insert_callchain(&node->rb_root, child,
					    CHAIN_GRAPH_REL);
138 139 140
	}
}

141
static void
142
sort_chain_graph_rel(struct rb_root *rb_root, struct callchain_root *chain_root,
143
		     u64 min_hit __used, struct callchain_param *param)
144
{
145 146
	__sort_chain_graph_rel(&chain_root->node, param->min_percent / 100.0);
	rb_root->rb_node = chain_root->node.rb_root.rb_node;
147 148
}

149
int callchain_register_param(struct callchain_param *param)
150 151 152 153 154 155 156 157 158 159 160
{
	switch (param->mode) {
	case CHAIN_GRAPH_ABS:
		param->sort = sort_chain_graph_abs;
		break;
	case CHAIN_GRAPH_REL:
		param->sort = sort_chain_graph_rel;
		break;
	case CHAIN_FLAT:
		param->sort = sort_chain_flat;
		break;
161
	case CHAIN_NONE:
162 163 164 165 166 167
	default:
		return -1;
	}
	return 0;
}

168 169 170 171 172 173
/*
 * Create a child for a parent. If inherit_children, then the new child
 * will become the new parent of it's parent children
 */
static struct callchain_node *
create_child(struct callchain_node *parent, bool inherit_children)
174 175 176
{
	struct callchain_node *new;

177
	new = zalloc(sizeof(*new));
178 179 180 181 182 183 184
	if (!new) {
		perror("not enough memory to create child for code path tree");
		return NULL;
	}
	new->parent = parent;
	INIT_LIST_HEAD(&new->children);
	INIT_LIST_HEAD(&new->val);
185 186 187 188 189 190 191

	if (inherit_children) {
		struct callchain_node *next;

		list_splice(&parent->children, &new->children);
		INIT_LIST_HEAD(&parent->children);

192
		chain_for_each_child(next, new)
193 194
			next->parent = new;
	}
195
	list_add_tail(&new->siblings, &parent->children);
196 197 198 199

	return new;
}

200

201 202 203
/*
 * Fill the node with callchain values
 */
204
static void
205
fill_node(struct callchain_node *node, struct callchain_cursor *cursor)
206
{
207 208 209 210 211
	struct callchain_cursor_node *cursor_node;

	node->val_nr = cursor->nr - cursor->pos;
	if (!node->val_nr)
		pr_warning("Warning: empty node in callchain tree\n");
212

213 214 215
	cursor_node = callchain_cursor_current(cursor);

	while (cursor_node) {
216 217
		struct callchain_list *call;

218
		call = zalloc(sizeof(*call));
219 220 221 222
		if (!call) {
			perror("not enough memory for the code path tree");
			return;
		}
223 224 225
		call->ip = cursor_node->ip;
		call->ms.sym = cursor_node->sym;
		call->ms.map = cursor_node->map;
226
		list_add_tail(&call->list, &node->val);
227 228 229

		callchain_cursor_advance(cursor);
		cursor_node = callchain_cursor_current(cursor);
230 231 232
	}
}

233
static void
234 235 236
add_child(struct callchain_node *parent,
	  struct callchain_cursor *cursor,
	  u64 period)
237 238 239
{
	struct callchain_node *new;

240
	new = create_child(parent, false);
241
	fill_node(new, cursor);
242

243
	new->children_hit = 0;
244
	new->hit = period;
245 246
}

247 248 249 250 251
/*
 * Split the parent in two parts (a new child is created) and
 * give a part of its callchain to the created child.
 * Then create another child to host the given callchain of new branch
 */
252
static void
253 254 255 256
split_add_child(struct callchain_node *parent,
		struct callchain_cursor *cursor,
		struct callchain_list *to_split,
		u64 idx_parents, u64 idx_local, u64 period)
257 258
{
	struct callchain_node *new;
259
	struct list_head *old_tail;
260
	unsigned int idx_total = idx_parents + idx_local;
261 262

	/* split */
263 264 265 266 267 268 269 270 271
	new = create_child(parent, true);

	/* split the callchain and move a part to the new child */
	old_tail = parent->val.prev;
	list_del_range(&to_split->list, old_tail);
	new->val.next = &to_split->list;
	new->val.prev = old_tail;
	to_split->list.prev = &new->val;
	old_tail->next = &new->val;
272

273 274
	/* split the hits */
	new->hit = parent->hit;
275
	new->children_hit = parent->children_hit;
276
	parent->children_hit = callchain_cumul_hits(new);
277 278 279 280
	new->val_nr = parent->val_nr - idx_local;
	parent->val_nr = idx_local;

	/* create a new child for the new branch if any */
281
	if (idx_total < cursor->nr) {
282
		parent->hit = 0;
283
		add_child(parent, cursor, period);
284
		parent->children_hit += period;
285
	} else {
286
		parent->hit = period;
287
	}
288 289 290
}

static int
291 292 293
append_chain(struct callchain_node *root,
	     struct callchain_cursor *cursor,
	     u64 period);
294

295
static void
296 297 298
append_chain_children(struct callchain_node *root,
		      struct callchain_cursor *cursor,
		      u64 period)
299 300 301 302
{
	struct callchain_node *rnode;

	/* lookup in childrens */
303
	chain_for_each_child(rnode, root) {
304
		unsigned int ret = append_chain(rnode, cursor, period);
305

306
		if (!ret)
307
			goto inc_children_hit;
308
	}
309
	/* nothing in children, add to the current node */
310
	add_child(root, cursor, period);
311

312
inc_children_hit:
313
	root->children_hit += period;
314 315 316
}

static int
317 318 319
append_chain(struct callchain_node *root,
	     struct callchain_cursor *cursor,
	     u64 period)
320
{
321
	struct callchain_cursor_node *curr_snap = cursor->curr;
322
	struct callchain_list *cnode;
323
	u64 start = cursor->pos;
324
	bool found = false;
325
	u64 matches;
326

327 328 329 330 331
	/*
	 * Lookup in the current node
	 * If we have a symbol, then compare the start to match
	 * anywhere inside a function.
	 */
332
	list_for_each_entry(cnode, &root->val, list) {
333
		struct callchain_cursor_node *node;
334 335
		struct symbol *sym;

336 337
		node = callchain_cursor_current(cursor);
		if (!node)
338
			break;
339

340
		sym = node->sym;
341

342 343
		if (cnode->ms.sym && sym) {
			if (cnode->ms.sym->start != sym->start)
344
				break;
345
		} else if (cnode->ip != node->ip)
346
			break;
347

348 349
		if (!found)
			found = true;
350 351

		callchain_cursor_advance(cursor);
352 353 354
	}

	/* matches not, relay on the parent */
355 356 357
	if (!found) {
		cursor->curr = curr_snap;
		cursor->pos = start;
358
		return -1;
359 360 361
	}

	matches = cursor->pos - start;
362 363

	/* we match only a part of the node. Split it and add the new chain */
364 365
	if (matches < root->val_nr) {
		split_add_child(root, cursor, cnode, start, matches, period);
366 367 368 369
		return 0;
	}

	/* we match 100% of the path, increment the hit */
370
	if (matches == root->val_nr && cursor->pos == cursor->nr) {
371
		root->hit += period;
372 373 374
		return 0;
	}

375
	/* We match the node and still have a part remaining */
376
	append_chain_children(root, cursor, period);
377 378

	return 0;
379 380
}

381 382 383
int callchain_append(struct callchain_root *root,
		     struct callchain_cursor *cursor,
		     u64 period)
384
{
385
	if (!cursor->nr)
386 387
		return 0;

388
	callchain_cursor_commit(cursor);
389

390
	append_chain_children(&root->node, cursor, period);
391

392 393
	if (cursor->nr > root->max_depth)
		root->max_depth = cursor->nr;
394 395

	return 0;
396
}
397 398

static int
399 400
merge_chain_branch(struct callchain_cursor *cursor,
		   struct callchain_node *dst, struct callchain_node *src)
401
{
402
	struct callchain_cursor_node **old_last = cursor->last;
403 404
	struct callchain_node *child, *next_child;
	struct callchain_list *list, *next_list;
405
	int old_pos = cursor->nr;
406 407 408
	int err = 0;

	list_for_each_entry_safe(list, next_list, &src->val, list) {
409 410
		callchain_cursor_append(cursor, list->ip,
					list->ms.map, list->ms.sym);
411 412 413 414
		list_del(&list->list);
		free(list);
	}

415 416 417 418
	if (src->hit) {
		callchain_cursor_commit(cursor);
		append_chain_children(dst, cursor, src->hit);
	}
419 420

	chain_for_each_child_safe(child, next_child, src) {
421
		err = merge_chain_branch(cursor, dst, child);
422 423 424
		if (err)
			break;

425
		list_del(&child->siblings);
426 427 428
		free(child);
	}

429 430
	cursor->nr = old_pos;
	cursor->last = old_last;
431 432 433 434

	return err;
}

435 436 437 438 439 440 441 442
int callchain_merge(struct callchain_cursor *cursor,
		    struct callchain_root *dst, struct callchain_root *src)
{
	return merge_chain_branch(cursor, &dst->node, &src->node);
}

int callchain_cursor_append(struct callchain_cursor *cursor,
			    u64 ip, struct map *map, struct symbol *sym)
443
{
444
	struct callchain_cursor_node *node = *cursor->last;
445

446 447 448 449
	if (!node) {
		node = calloc(sizeof(*node), 1);
		if (!node)
			return -ENOMEM;
450

451 452
		*cursor->last = node;
	}
453

454 455 456
	node->ip = ip;
	node->map = map;
	node->sym = sym;
457

458
	cursor->nr++;
459

460 461 462
	cursor->last = &node->next;

	return 0;
463
}