blob: 5d244afb7cdf17e39dc1fed08c2424b83f487e6c [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) {
35 case FLAT:
36 if (rnode->hit < chain->hit)
37 p = &(*p)->rb_left;
38 else
39 p = &(*p)->rb_right;
40 break;
41 case GRAPH:
42 if (rnode->cumul_hit < chain->cumul_hit)
43 p = &(*p)->rb_left;
44 else
45 p = &(*p)->rb_right;
46 break;
47 default:
48 break;
49 }
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020050 }
51
52 rb_link_node(&chain->rb_node, parent, p);
53 rb_insert_color(&chain->rb_node, root);
54}
55
56/*
57 * Once we get every callchains from the stream, we can now
58 * sort them by hit
59 */
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020060void sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node,
61 u64 min_hit)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020062{
63 struct callchain_node *child;
64
Frederic Weisbecker14f46542009-07-02 17:58:19 +020065 chain_for_each_child(child, node)
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020066 sort_chain_flat(rb_root, child, min_hit);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020067
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020068 if (node->hit && node->hit >= min_hit)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020069 rb_insert_callchain(rb_root, node, FLAT);
70}
71
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020072static void __sort_chain_graph(struct callchain_node *node, u64 min_hit)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020073{
74 struct callchain_node *child;
75
76 node->rb_root = RB_ROOT;
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020077
78 chain_for_each_child(child, node) {
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020079 __sort_chain_graph(child, min_hit);
80 if (child->cumul_hit >= min_hit)
81 rb_insert_callchain(&node->rb_root, child, GRAPH);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020082 }
83}
84
85void
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020086sort_chain_graph(struct rb_root *rb_root, struct callchain_node *chain_root,
87 u64 min_hit)
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020088{
Frederic Weisbeckerc20ab372009-07-02 20:14:33 +020089 __sort_chain_graph(chain_root, min_hit);
Frederic Weisbecker4eb3e472009-07-02 17:58:21 +020090 rb_root->rb_node = chain_root->rb_root.rb_node;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020091}
92
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +020093/*
94 * Create a child for a parent. If inherit_children, then the new child
95 * will become the new parent of it's parent children
96 */
97static struct callchain_node *
98create_child(struct callchain_node *parent, bool inherit_children)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +020099{
100 struct callchain_node *new;
101
102 new = malloc(sizeof(*new));
103 if (!new) {
104 perror("not enough memory to create child for code path tree");
105 return NULL;
106 }
107 new->parent = parent;
108 INIT_LIST_HEAD(&new->children);
109 INIT_LIST_HEAD(&new->val);
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200110
111 if (inherit_children) {
112 struct callchain_node *next;
113
114 list_splice(&parent->children, &new->children);
115 INIT_LIST_HEAD(&parent->children);
116
Frederic Weisbecker14f46542009-07-02 17:58:19 +0200117 chain_for_each_child(next, new)
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200118 next->parent = new;
119 }
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200120 list_add_tail(&new->brothers, &parent->children);
121
122 return new;
123}
124
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200125/*
126 * Fill the node with callchain values
127 */
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200128static void
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200129fill_node(struct callchain_node *node, struct ip_callchain *chain,
130 int start, struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200131{
Ingo Molnarf37a2912009-07-01 12:37:06 +0200132 unsigned int i;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200133
134 for (i = start; i < chain->nr; i++) {
135 struct callchain_list *call;
136
Frederic Weisbecker9198aa72009-07-01 05:35:13 +0200137 call = malloc(sizeof(*call));
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200138 if (!call) {
139 perror("not enough memory for the code path tree");
140 return;
141 }
142 call->ip = chain->ips[i];
Frederic Weisbecker44249612009-07-01 05:35:14 +0200143 call->sym = syms[i];
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200144 list_add_tail(&call->list, &node->val);
145 }
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200146 node->val_nr = chain->nr - start;
147 if (!node->val_nr)
148 printf("Warning: empty node in callchain tree\n");
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200149}
150
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200151static void
152add_child(struct callchain_node *parent, struct ip_callchain *chain,
153 int start, struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200154{
155 struct callchain_node *new;
156
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200157 new = create_child(parent, false);
158 fill_node(new, chain, start, syms);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200159
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200160 new->cumul_hit = new->hit = 1;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200161}
162
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200163/*
164 * Split the parent in two parts (a new child is created) and
165 * give a part of its callchain to the created child.
166 * Then create another child to host the given callchain of new branch
167 */
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200168static void
169split_add_child(struct callchain_node *parent, struct ip_callchain *chain,
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200170 struct callchain_list *to_split, int idx_parents, int idx_local,
171 struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200172{
173 struct callchain_node *new;
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200174 struct list_head *old_tail;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200175 unsigned int idx_total = idx_parents + idx_local;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200176
177 /* split */
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200178 new = create_child(parent, true);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200179
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200180 /* split the callchain and move a part to the new child */
181 old_tail = parent->val.prev;
182 list_del_range(&to_split->list, old_tail);
183 new->val.next = &to_split->list;
184 new->val.prev = old_tail;
185 to_split->list.prev = &new->val;
186 old_tail->next = &new->val;
187
188 /* split the hits */
189 new->hit = parent->hit;
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200190 new->cumul_hit = parent->cumul_hit;
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200191 new->val_nr = parent->val_nr - idx_local;
192 parent->val_nr = idx_local;
193
194 /* create a new child for the new branch if any */
195 if (idx_total < chain->nr) {
196 parent->hit = 0;
197 add_child(parent, chain, idx_total, syms);
198 } else {
199 parent->hit = 1;
200 }
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200201}
202
203static int
204__append_chain(struct callchain_node *root, struct ip_callchain *chain,
Ingo Molnarf37a2912009-07-01 12:37:06 +0200205 unsigned int start, struct symbol **syms);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200206
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200207static void
Frederic Weisbecker44249612009-07-01 05:35:14 +0200208__append_chain_children(struct callchain_node *root, struct ip_callchain *chain,
Ingo Molnarf37a2912009-07-01 12:37:06 +0200209 struct symbol **syms, unsigned int start)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200210{
211 struct callchain_node *rnode;
212
213 /* lookup in childrens */
Frederic Weisbecker14f46542009-07-02 17:58:19 +0200214 chain_for_each_child(rnode, root) {
Ingo Molnarf37a2912009-07-01 12:37:06 +0200215 unsigned int ret = __append_chain(rnode, chain, start, syms);
216
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200217 if (!ret)
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200218 goto cumul;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200219 }
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200220 /* nothing in children, add to the current node */
221 add_child(root, chain, start, syms);
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200222
223cumul:
224 root->cumul_hit++;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200225}
226
227static int
228__append_chain(struct callchain_node *root, struct ip_callchain *chain,
Ingo Molnarf37a2912009-07-01 12:37:06 +0200229 unsigned int start, struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200230{
231 struct callchain_list *cnode;
Ingo Molnarf37a2912009-07-01 12:37:06 +0200232 unsigned int i = start;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200233 bool found = false;
234
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200235 /*
236 * Lookup in the current node
237 * If we have a symbol, then compare the start to match
238 * anywhere inside a function.
239 */
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200240 list_for_each_entry(cnode, &root->val, list) {
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200241 if (i == chain->nr)
242 break;
243 if (cnode->sym && syms[i]) {
244 if (cnode->sym->start != syms[i]->start)
245 break;
246 } else if (cnode->ip != chain->ips[i])
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200247 break;
248 if (!found)
249 found = true;
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200250 i++;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200251 }
252
253 /* matches not, relay on the parent */
254 if (!found)
255 return -1;
256
257 /* we match only a part of the node. Split it and add the new chain */
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200258 if (i - start < root->val_nr) {
259 split_add_child(root, chain, cnode, start, i - start, syms);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200260 return 0;
261 }
262
263 /* we match 100% of the path, increment the hit */
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200264 if (i - start == root->val_nr && i == chain->nr) {
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200265 root->hit++;
Frederic Weisbeckere05b8762009-07-05 07:39:20 +0200266 root->cumul_hit++;
267
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200268 return 0;
269 }
270
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200271 /* We match the node and still have a part remaining */
272 __append_chain_children(root, chain, syms, i);
273
274 return 0;
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200275}
276
Frederic Weisbecker44249612009-07-01 05:35:14 +0200277void append_chain(struct callchain_node *root, struct ip_callchain *chain,
278 struct symbol **syms)
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200279{
Frederic Weisbeckerdeac9112009-07-01 05:35:15 +0200280 __append_chain_children(root, chain, syms, 0);
Frederic Weisbecker8cb76d92009-06-26 16:28:00 +0200281}