]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/perf/util/callchain.c
perf report: Change default callchain parameters
[mirror_ubuntu-artful-kernel.git] / tools / perf / util / callchain.c
CommitLineData
8cb76d99
FW
1/*
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 *
deac911c
FW
7 * 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 *
8cb76d99
FW
10 */
11
12#include <stdlib.h>
13#include <stdio.h>
14#include <stdbool.h>
15#include <errno.h>
16
17#include "callchain.h"
18
14f4654c
FW
19#define chain_for_each_child(child, parent) \
20 list_for_each_entry(child, &parent->children, brothers)
21
deac911c 22static void
4eb3e478
FW
23rb_insert_callchain(struct rb_root *root, struct callchain_node *chain,
24 enum chain_mode mode)
8cb76d99
FW
25{
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
4eb3e478
FW
34 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 }
8cb76d99
FW
50 }
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 */
c20ab37e
FW
60void sort_chain_flat(struct rb_root *rb_root, struct callchain_node *node,
61 u64 min_hit)
8cb76d99
FW
62{
63 struct callchain_node *child;
64
14f4654c 65 chain_for_each_child(child, node)
c20ab37e 66 sort_chain_flat(rb_root, child, min_hit);
8cb76d99 67
c20ab37e 68 if (node->hit && node->hit >= min_hit)
4eb3e478
FW
69 rb_insert_callchain(rb_root, node, FLAT);
70}
71
c20ab37e 72static void __sort_chain_graph(struct callchain_node *node, u64 min_hit)
4eb3e478
FW
73{
74 struct callchain_node *child;
75
76 node->rb_root = RB_ROOT;
77 node->cumul_hit = node->hit;
78
79 chain_for_each_child(child, node) {
c20ab37e
FW
80 __sort_chain_graph(child, min_hit);
81 if (child->cumul_hit >= min_hit)
82 rb_insert_callchain(&node->rb_root, child, GRAPH);
4eb3e478
FW
83 node->cumul_hit += child->cumul_hit;
84 }
85}
86
87void
c20ab37e
FW
88sort_chain_graph(struct rb_root *rb_root, struct callchain_node *chain_root,
89 u64 min_hit)
4eb3e478 90{
c20ab37e 91 __sort_chain_graph(chain_root, min_hit);
4eb3e478 92 rb_root->rb_node = chain_root->rb_root.rb_node;
8cb76d99
FW
93}
94
deac911c
FW
95/*
96 * Create a child for a parent. If inherit_children, then the new child
97 * will become the new parent of it's parent children
98 */
99static struct callchain_node *
100create_child(struct callchain_node *parent, bool inherit_children)
8cb76d99
FW
101{
102 struct callchain_node *new;
103
104 new = malloc(sizeof(*new));
105 if (!new) {
106 perror("not enough memory to create child for code path tree");
107 return NULL;
108 }
109 new->parent = parent;
110 INIT_LIST_HEAD(&new->children);
111 INIT_LIST_HEAD(&new->val);
deac911c
FW
112
113 if (inherit_children) {
114 struct callchain_node *next;
115
116 list_splice(&parent->children, &new->children);
117 INIT_LIST_HEAD(&parent->children);
118
14f4654c 119 chain_for_each_child(next, new)
deac911c
FW
120 next->parent = new;
121 }
8cb76d99
FW
122 list_add_tail(&new->brothers, &parent->children);
123
124 return new;
125}
126
deac911c
FW
127/*
128 * Fill the node with callchain values
129 */
8cb76d99 130static void
deac911c
FW
131fill_node(struct callchain_node *node, struct ip_callchain *chain,
132 int start, struct symbol **syms)
8cb76d99 133{
f37a291c 134 unsigned int i;
8cb76d99
FW
135
136 for (i = start; i < chain->nr; i++) {
137 struct callchain_list *call;
138
9198aa77 139 call = malloc(sizeof(*call));
8cb76d99
FW
140 if (!call) {
141 perror("not enough memory for the code path tree");
142 return;
143 }
144 call->ip = chain->ips[i];
4424961a 145 call->sym = syms[i];
8cb76d99
FW
146 list_add_tail(&call->list, &node->val);
147 }
deac911c
FW
148 node->val_nr = chain->nr - start;
149 if (!node->val_nr)
150 printf("Warning: empty node in callchain tree\n");
8cb76d99
FW
151}
152
deac911c
FW
153static void
154add_child(struct callchain_node *parent, struct ip_callchain *chain,
155 int start, struct symbol **syms)
8cb76d99
FW
156{
157 struct callchain_node *new;
158
deac911c
FW
159 new = create_child(parent, false);
160 fill_node(new, chain, start, syms);
8cb76d99
FW
161
162 new->hit = 1;
163}
164
deac911c
FW
165/*
166 * Split the parent in two parts (a new child is created) and
167 * give a part of its callchain to the created child.
168 * Then create another child to host the given callchain of new branch
169 */
8cb76d99
FW
170static void
171split_add_child(struct callchain_node *parent, struct ip_callchain *chain,
deac911c
FW
172 struct callchain_list *to_split, int idx_parents, int idx_local,
173 struct symbol **syms)
8cb76d99
FW
174{
175 struct callchain_node *new;
deac911c 176 struct list_head *old_tail;
f37a291c 177 unsigned int idx_total = idx_parents + idx_local;
8cb76d99
FW
178
179 /* split */
deac911c
FW
180 new = create_child(parent, true);
181
182 /* split the callchain and move a part to the new child */
183 old_tail = parent->val.prev;
184 list_del_range(&to_split->list, old_tail);
185 new->val.next = &to_split->list;
186 new->val.prev = old_tail;
187 to_split->list.prev = &new->val;
188 old_tail->next = &new->val;
8cb76d99 189
deac911c
FW
190 /* split the hits */
191 new->hit = parent->hit;
192 new->val_nr = parent->val_nr - idx_local;
193 parent->val_nr = idx_local;
194
195 /* create a new child for the new branch if any */
196 if (idx_total < chain->nr) {
197 parent->hit = 0;
198 add_child(parent, chain, idx_total, syms);
199 } else {
200 parent->hit = 1;
201 }
8cb76d99
FW
202}
203
204static int
205__append_chain(struct callchain_node *root, struct ip_callchain *chain,
f37a291c 206 unsigned int start, struct symbol **syms);
8cb76d99 207
deac911c 208static void
4424961a 209__append_chain_children(struct callchain_node *root, struct ip_callchain *chain,
f37a291c 210 struct symbol **syms, unsigned int start)
8cb76d99
FW
211{
212 struct callchain_node *rnode;
213
214 /* lookup in childrens */
14f4654c 215 chain_for_each_child(rnode, root) {
f37a291c
IM
216 unsigned int ret = __append_chain(rnode, chain, start, syms);
217
8cb76d99 218 if (!ret)
deac911c 219 return;
8cb76d99 220 }
deac911c
FW
221 /* nothing in children, add to the current node */
222 add_child(root, chain, start, syms);
8cb76d99
FW
223}
224
225static int
226__append_chain(struct callchain_node *root, struct ip_callchain *chain,
f37a291c 227 unsigned int start, struct symbol **syms)
8cb76d99
FW
228{
229 struct callchain_list *cnode;
f37a291c 230 unsigned int i = start;
8cb76d99
FW
231 bool found = false;
232
deac911c
FW
233 /*
234 * Lookup in the current node
235 * If we have a symbol, then compare the start to match
236 * anywhere inside a function.
237 */
8cb76d99 238 list_for_each_entry(cnode, &root->val, list) {
deac911c
FW
239 if (i == chain->nr)
240 break;
241 if (cnode->sym && syms[i]) {
242 if (cnode->sym->start != syms[i]->start)
243 break;
244 } else if (cnode->ip != chain->ips[i])
8cb76d99
FW
245 break;
246 if (!found)
247 found = true;
deac911c 248 i++;
8cb76d99
FW
249 }
250
251 /* matches not, relay on the parent */
252 if (!found)
253 return -1;
254
255 /* we match only a part of the node. Split it and add the new chain */
deac911c
FW
256 if (i - start < root->val_nr) {
257 split_add_child(root, chain, cnode, start, i - start, syms);
8cb76d99
FW
258 return 0;
259 }
260
261 /* we match 100% of the path, increment the hit */
deac911c 262 if (i - start == root->val_nr && i == chain->nr) {
8cb76d99
FW
263 root->hit++;
264 return 0;
265 }
266
deac911c
FW
267 /* We match the node and still have a part remaining */
268 __append_chain_children(root, chain, syms, i);
269
270 return 0;
8cb76d99
FW
271}
272
4424961a
FW
273void append_chain(struct callchain_node *root, struct ip_callchain *chain,
274 struct symbol **syms)
8cb76d99 275{
deac911c 276 __append_chain_children(root, chain, syms, 0);
8cb76d99 277}