blob: 9d3c8141b8c158cf80a4028acabc81c1c9895336 [file] [log] [blame]
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +02001/*
2 * Copyright (C) 2009, Frederic Weisbecker <fweisbec@gmail.com>
3 *
4 * Handle the callchains from the stream in an ad-hoc radix tree and then
5 * sort them in an rbtree.
6 *
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +02007 * Using a radix for code path provides a fast retrieval and factorizes
8 * memory use. Also that lets us use the paths in a hierarchical graph view.
9 *
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020010 */
11
12#include <stdlib.h>
13#include <stdio.h>
14#include <stdbool.h>
15#include <errno.h>
16
17#include "callchain.h"
18
Frederic Weisbecker14f46542009-07-02 17:58:19 +020019#define chain_for_each_child(child, parent) \
20 list_for_each_entry(child, &parent->children, brothers)
21
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +020022static void
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020023rb_insert_callchain(struct rb_root *root, struct callchain_node *chain,
24 enum chain_mode mode)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020025{
26 struct rb_node **p = &root->rb_node;
27 struct rb_node *parent = NULL;
28 struct callchain_node *rnode;
29
30 while (*p) {
31 parent = *p;
32 rnode = rb_entry(parent, struct callchain_node, rb_node);
33
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020034 switch (mode) {
Frederic Weisbecker805d1272009-07-05 07:39:21 +020035 case CHAIN_FLAT:
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020036 if (rnode->hit < chain->hit)
37 p = &(*p)->rb_left;
38 else
39 p = &(*p)->rb_right;
40 break;
Frederic Weisbecker805d1272009-07-05 07:39:21 +020041 case CHAIN_GRAPH_ABS: /* Falldown */
42 case CHAIN_GRAPH_REL:
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020043 if (rnode->cumul_hit < chain->cumul_hit)
44 p = &(*p)->rb_left;
45 else
46 p = &(*p)->rb_right;
47 break;
48 default:
49 break;
50 }
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020051 }
52
53 rb_link_node(&chain->rb_node, parent, p);
54 rb_insert_color(&chain->rb_node, root);
55}
56
Frederic Weisbecker805d1272009-07-05 07:39:21 +020057static void
58__sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node,
59 u64 min_hit)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020060{
61 struct callchain_node *child;
62
Frederic Weisbecker14f46542009-07-02 17:58:19 +020063 chain_for_each_child(child, node)
Frederic Weisbecker805d1272009-07-05 07:39:21 +020064 __sort_chain_flat(rb_root, child, min_hit);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020065
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020066 if (node->hit && node->hit >= min_hit)
Frederic Weisbecker805d1272009-07-05 07:39:21 +020067 rb_insert_callchain(rb_root, node, CHAIN_FLAT);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020068}
69
Frederic Weisbecker805d1272009-07-05 07:39:21 +020070/*
71 * Once we get every callchains from the stream, we can now
72 * sort them by hit
73 */
74static void
75sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node,
76 u64 min_hit, struct callchain_param *param __used)
77{
78 __sort_chain_flat(rb_root, node, min_hit);
79}
80
81static void __sort_chain_graph_abs(struct callchain_node *node,
82 u64 min_hit)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020083{
84 struct callchain_node *child;
85
86 node->rb_root = RB_ROOT;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020087
88 chain_for_each_child(child, node) {
Frederic Weisbecker805d1272009-07-05 07:39:21 +020089 __sort_chain_graph_abs(child, min_hit);
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020090 if (child->cumul_hit >= min_hit)
Frederic Weisbecker805d1272009-07-05 07:39:21 +020091 rb_insert_callchain(&node->rb_root, child,
92 CHAIN_GRAPH_ABS);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020093 }
94}
95
Frederic Weisbecker805d1272009-07-05 07:39:21 +020096static void
97sort_chain_graph_abs(struct rb_root *rb_root, struct callchain_node *chain_root,
98 u64 min_hit, struct callchain_param *param __used)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020099{
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200100 __sort_chain_graph_abs(chain_root, min_hit);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +0200101 rb_root->rb_node = chain_root->rb_root.rb_node;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200102}
103
Frederic Weisbecker805d1272009-07-05 07:39:21 +0200104static void __sort_chain_graph_rel(struct callchain_node *node,
105 double min_percent)
106{
107 struct callchain_node *child;
108 u64 min_hit;
109
110 node->rb_root = RB_ROOT;
111 min_hit = node->cumul_hit * min_percent / 100.0;
112
113 chain_for_each_child(child, node) {
114 __sort_chain_graph_rel(child, min_percent);
115 if (child->cumul_hit >= min_hit)
116 rb_insert_callchain(&node->rb_root, child,
117 CHAIN_GRAPH_REL);
118 }
119}
120
121static void
122sort_chain_graph_rel(struct rb_root *rb_root, struct callchain_node *chain_root,
123 u64 min_hit __used, struct callchain_param *param)
124{
125 __sort_chain_graph_rel(chain_root, param->min_percent);
126 rb_root->rb_node = chain_root->rb_root.rb_node;
127}
128
129int register_callchain_param(struct callchain_param *param)
130{
131 switch (param->mode) {
132 case CHAIN_GRAPH_ABS:
133 param->sort = sort_chain_graph_abs;
134 break;
135 case CHAIN_GRAPH_REL:
136 param->sort = sort_chain_graph_rel;
137 break;
138 case CHAIN_FLAT:
139 param->sort = sort_chain_flat;
140 break;
141 default:
142 return -1;
143 }
144 return 0;
145}
146
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200147/*
148 * Create a child for a parent. If inherit_children, then the new child
149 * will become the new parent of it's parent children
150 */
151static struct callchain_node *
152create_child(struct callchain_node *parent, bool inherit_children)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200153{
154 struct callchain_node *new;
155
156 new = malloc(sizeof(*new));
157 if (!new) {
158 perror("not enough memory to create child for code path tree");
159 return NULL;
160 }
161 new->parent = parent;
162 INIT_LIST_HEAD(&new->children);
163 INIT_LIST_HEAD(&new->val);
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200164
165 if (inherit_children) {
166 struct callchain_node *next;
167
168 list_splice(&parent->children, &new->children);
169 INIT_LIST_HEAD(&parent->children);
170
Frederic Weisbecker14f46542009-07-02 17:58:19 +0200171 chain_for_each_child(next, new)
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200172 next->parent = new;
173 }
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200174 list_add_tail(&new->brothers, &parent->children);
175
176 return new;
177}
178
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200179/*
180 * Fill the node with callchain values
181 */
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200182static void
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200183fill_node(struct callchain_node *node, struct ip_callchain *chain,
184 int start, struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200185{
Ingo Molnarf37a2912009-07-01 12:37:06 +0200186 unsigned int i;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200187
188 for (i = start; i < chain->nr; i++) {
189 struct callchain_list *call;
190
Frederic Weisbecker9198aa72009-07-01 05:35:13 +0200191 call = malloc(sizeof(*call));
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200192 if (!call) {
193 perror("not enough memory for the code path tree");
194 return;
195 }
196 call->ip = chain->ips[i];
Frederic Weisbecker44249612009-07-01 05:35:14 +0200197 call->sym = syms[i];
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200198 list_add_tail(&call->list, &node->val);
199 }
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200200 node->val_nr = chain->nr - start;
201 if (!node->val_nr)
202 printf("Warning: empty node in callchain tree\n");
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200203}
204
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200205static void
206add_child(struct callchain_node *parent, struct ip_callchain *chain,
207 int start, struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200208{
209 struct callchain_node *new;
210
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200211 new = create_child(parent, false);
212 fill_node(new, chain, start, syms);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200213
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200214 new->cumul_hit = new->hit = 1;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200215}
216
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200217/*
218 * Split the parent in two parts (a new child is created) and
219 * give a part of its callchain to the created child.
220 * Then create another child to host the given callchain of new branch
221 */
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200222static void
223split_add_child(struct callchain_node *parent, struct ip_callchain *chain,
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200224 struct callchain_list *to_split, int idx_parents, int idx_local,
225 struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200226{
227 struct callchain_node *new;
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200228 struct list_head *old_tail;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200229 unsigned int idx_total = idx_parents + idx_local;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200230
231 /* split */
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200232 new = create_child(parent, true);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200233
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200234 /* split the callchain and move a part to the new child */
235 old_tail = parent->val.prev;
236 list_del_range(&to_split->list, old_tail);
237 new->val.next = &to_split->list;
238 new->val.prev = old_tail;
239 to_split->list.prev = &new->val;
240 old_tail->next = &new->val;
241
242 /* split the hits */
243 new->hit = parent->hit;
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200244 new->cumul_hit = parent->cumul_hit;
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200245 new->val_nr = parent->val_nr - idx_local;
246 parent->val_nr = idx_local;
247
248 /* create a new child for the new branch if any */
249 if (idx_total < chain->nr) {
250 parent->hit = 0;
251 add_child(parent, chain, idx_total, syms);
252 } else {
253 parent->hit = 1;
254 }
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200255}
256
257static int
258__append_chain(struct callchain_node *root, struct ip_callchain *chain,
Ingo Molnarf37a2912009-07-01 12:37:06 +0200259 unsigned int start, struct symbol **syms);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200260
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200261static void
Frederic Weisbecker44249612009-07-01 05:35:14 +0200262__append_chain_children(struct callchain_node *root, struct ip_callchain *chain,
Ingo Molnarf37a2912009-07-01 12:37:06 +0200263 struct symbol **syms, unsigned int start)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200264{
265 struct callchain_node *rnode;
266
267 /* lookup in childrens */
Frederic Weisbecker14f46542009-07-02 17:58:19 +0200268 chain_for_each_child(rnode, root) {
Ingo Molnarf37a2912009-07-01 12:37:06 +0200269 unsigned int ret = __append_chain(rnode, chain, start, syms);
270
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200271 if (!ret)
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200272 goto cumul;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200273 }
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200274 /* nothing in children, add to the current node */
275 add_child(root, chain, start, syms);
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200276
277cumul:
278 root->cumul_hit++;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200279}
280
281static int
282__append_chain(struct callchain_node *root, struct ip_callchain *chain,
Ingo Molnarf37a2912009-07-01 12:37:06 +0200283 unsigned int start, struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200284{
285 struct callchain_list *cnode;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200286 unsigned int i = start;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200287 bool found = false;
288
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200289 /*
290 * Lookup in the current node
291 * If we have a symbol, then compare the start to match
292 * anywhere inside a function.
293 */
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200294 list_for_each_entry(cnode, &root->val, list) {
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200295 if (i == chain->nr)
296 break;
297 if (cnode->sym && syms[i]) {
298 if (cnode->sym->start != syms[i]->start)
299 break;
300 } else if (cnode->ip != chain->ips[i])
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200301 break;
302 if (!found)
303 found = true;
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200304 i++;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200305 }
306
307 /* matches not, relay on the parent */
308 if (!found)
309 return -1;
310
311 /* we match only a part of the node. Split it and add the new chain */
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200312 if (i - start < root->val_nr) {
313 split_add_child(root, chain, cnode, start, i - start, syms);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200314 return 0;
315 }
316
317 /* we match 100% of the path, increment the hit */
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200318 if (i - start == root->val_nr && i == chain->nr) {
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200319 root->hit++;
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200320 root->cumul_hit++;
321
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200322 return 0;
323 }
324
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200325 /* We match the node and still have a part remaining */
326 __append_chain_children(root, chain, syms, i);
327
328 return 0;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200329}
330
Frederic Weisbecker44249612009-07-01 05:35:14 +0200331void append_chain(struct callchain_node *root, struct ip_callchain *chain,
332 struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200333{
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200334 __append_chain_children(root, chain, syms, 0);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200335}