blob: fa968312ee7d5c5044e6e186394f1b6d14ca05ab [file] [log] [blame]
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02001#include "../perf.h"
2#include <stdlib.h>
3#include <stdio.h>
4#include <string.h>
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -02005#include "session.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02006#include "thread.h"
7#include "util.h"
Frederic Weisbecker6e086432009-08-18 17:04:03 +02008#include "debug.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02009
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020010void map_groups__init(struct map_groups *self)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020011{
12 int i;
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020013 for (i = 0; i < MAP__NR_TYPES; ++i) {
14 self->maps[i] = RB_ROOT;
15 INIT_LIST_HEAD(&self->removed_maps[i]);
16 }
17}
18
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +020019static struct thread *thread__new(pid_t pid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020020{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -020021 struct thread *self = zalloc(sizeof(*self));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020022
23 if (self != NULL) {
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020024 map_groups__init(&self->mg);
25 self->pid = pid;
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +020026 self->comm = malloc(32);
27 if (self->comm)
28 snprintf(self->comm, 32, ":%d", self->pid);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020029 }
30
31 return self;
32}
33
David S. Miller4385d582010-02-26 12:08:34 -030034static void map_groups__flush(struct map_groups *self)
35{
36 int type;
37
38 for (type = 0; type < MAP__NR_TYPES; type++) {
39 struct rb_root *root = &self->maps[type];
40 struct rb_node *next = rb_first(root);
41
42 while (next) {
43 struct map *pos = rb_entry(next, struct map, rb_node);
44 next = rb_next(&pos->rb_node);
45 rb_erase(&pos->rb_node, root);
46 /*
47 * We may have references to this map, for
48 * instance in some hist_entry instances, so
49 * just move them to a separate list.
50 */
51 list_add_tail(&pos->node, &self->removed_maps[pos->type]);
52 }
53 }
54}
55
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020056int thread__set_comm(struct thread *self, const char *comm)
57{
David S. Miller4385d582010-02-26 12:08:34 -030058 int err;
59
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020060 if (self->comm)
61 free(self->comm);
62 self->comm = strdup(comm);
David S. Miller4385d582010-02-26 12:08:34 -030063 err = self->comm == NULL ? -ENOMEM : 0;
64 if (!err) {
65 self->comm_set = true;
66 map_groups__flush(&self->mg);
67 }
68 return err;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020069}
70
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020071int thread__comm_len(struct thread *self)
72{
73 if (!self->comm_len) {
74 if (!self->comm)
75 return 0;
76 self->comm_len = strlen(self->comm);
77 }
78
79 return self->comm_len;
80}
81
Arnaldo Carvalho de Melo65f2ed22010-03-09 15:58:17 -030082size_t __map_groups__fprintf_maps(struct map_groups *self,
83 enum map_type type, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020084{
85 size_t printed = fprintf(fp, "%s:\n", map_type__name[type]);
86 struct rb_node *nd;
87
88 for (nd = rb_first(&self->maps[type]); nd; nd = rb_next(nd)) {
89 struct map *pos = rb_entry(nd, struct map, rb_node);
90 printed += fprintf(fp, "Map:");
91 printed += map__fprintf(pos, fp);
Arnaldo Carvalho de Melo65f2ed22010-03-09 15:58:17 -030092 if (verbose > 2) {
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020093 printed += dso__fprintf(pos->dso, type, fp);
94 printed += fprintf(fp, "--\n");
95 }
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030096 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020097
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020098 return printed;
99}
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300100
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200101size_t map_groups__fprintf_maps(struct map_groups *self, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200102{
103 size_t printed = 0, i;
104 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200105 printed += __map_groups__fprintf_maps(self, i, fp);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200106 return printed;
107}
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300108
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200109static size_t __map_groups__fprintf_removed_maps(struct map_groups *self,
110 enum map_type type, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200111{
112 struct map *pos;
113 size_t printed = 0;
114
115 list_for_each_entry(pos, &self->removed_maps[type], node) {
116 printed += fprintf(fp, "Map:");
117 printed += map__fprintf(pos, fp);
118 if (verbose > 1) {
119 printed += dso__fprintf(pos->dso, type, fp);
120 printed += fprintf(fp, "--\n");
121 }
122 }
123 return printed;
124}
125
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200126static size_t map_groups__fprintf_removed_maps(struct map_groups *self, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200127{
128 size_t printed = 0, i;
129 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200130 printed += __map_groups__fprintf_removed_maps(self, i, fp);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200131 return printed;
132}
133
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200134static size_t map_groups__fprintf(struct map_groups *self, FILE *fp)
135{
136 size_t printed = map_groups__fprintf_maps(self, fp);
137 printed += fprintf(fp, "Removed maps:\n");
138 return printed + map_groups__fprintf_removed_maps(self, fp);
139}
140
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200141static size_t thread__fprintf(struct thread *self, FILE *fp)
142{
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200143 return fprintf(fp, "Thread %d %s\n", self->pid, self->comm) +
144 map_groups__fprintf(&self->mg, fp);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200145}
146
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200147struct thread *perf_session__findnew(struct perf_session *self, pid_t pid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200148{
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200149 struct rb_node **p = &self->threads.rb_node;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200150 struct rb_node *parent = NULL;
151 struct thread *th;
152
153 /*
154 * Font-end cache - PID lookups come in blocks,
155 * so most of the time we dont have to look up
156 * the full rbtree:
157 */
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200158 if (self->last_match && self->last_match->pid == pid)
159 return self->last_match;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200160
161 while (*p != NULL) {
162 parent = *p;
163 th = rb_entry(parent, struct thread, rb_node);
164
165 if (th->pid == pid) {
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200166 self->last_match = th;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200167 return th;
168 }
169
170 if (pid < th->pid)
171 p = &(*p)->rb_left;
172 else
173 p = &(*p)->rb_right;
174 }
175
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +0200176 th = thread__new(pid);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200177 if (th != NULL) {
178 rb_link_node(&th->rb_node, parent, p);
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200179 rb_insert_color(&th->rb_node, &self->threads);
180 self->last_match = th;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200181 }
182
183 return th;
184}
185
Arnaldo Carvalho de Melo12245502010-03-05 11:54:02 -0300186static int map_groups__fixup_overlappings(struct map_groups *self,
187 struct map *map)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200188{
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200189 struct rb_root *root = &self->maps[map->type];
190 struct rb_node *next = rb_first(root);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200191
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300192 while (next) {
193 struct map *pos = rb_entry(next, struct map, rb_node);
194 next = rb_next(&pos->rb_node);
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200195
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300196 if (!map__overlap(pos, map))
197 continue;
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200198
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300199 if (verbose >= 2) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200200 fputs("overlapping maps:\n", stderr);
201 map__fprintf(map, stderr);
202 map__fprintf(pos, stderr);
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300203 }
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200204
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200205 rb_erase(&pos->rb_node, root);
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300206 /*
207 * We may have references to this map, for instance in some
208 * hist_entry instances, so just move them to a separate
209 * list.
210 */
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200211 list_add_tail(&pos->node, &self->removed_maps[map->type]);
Arnaldo Carvalho de Melo12245502010-03-05 11:54:02 -0300212 /*
213 * Now check if we need to create new maps for areas not
214 * overlapped by the new map:
215 */
216 if (map->start > pos->start) {
217 struct map *before = map__clone(pos);
218
219 if (before == NULL)
220 return -ENOMEM;
221
222 before->end = map->start - 1;
223 map_groups__insert(self, before);
224 if (verbose >= 2)
225 map__fprintf(before, stderr);
226 }
227
228 if (map->end < pos->end) {
229 struct map *after = map__clone(pos);
230
231 if (after == NULL)
232 return -ENOMEM;
233
234 after->start = map->end + 1;
235 map_groups__insert(self, after);
236 if (verbose >= 2)
237 map__fprintf(after, stderr);
238 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200239 }
Arnaldo Carvalho de Melo12245502010-03-05 11:54:02 -0300240
241 return 0;
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300242}
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200243
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300244void maps__insert(struct rb_root *maps, struct map *map)
245{
246 struct rb_node **p = &maps->rb_node;
247 struct rb_node *parent = NULL;
248 const u64 ip = map->start;
249 struct map *m;
250
251 while (*p != NULL) {
252 parent = *p;
253 m = rb_entry(parent, struct map, rb_node);
254 if (ip < m->start)
255 p = &(*p)->rb_left;
256 else
257 p = &(*p)->rb_right;
258 }
259
260 rb_link_node(&map->rb_node, parent, p);
261 rb_insert_color(&map->rb_node, maps);
262}
263
264struct map *maps__find(struct rb_root *maps, u64 ip)
265{
266 struct rb_node **p = &maps->rb_node;
267 struct rb_node *parent = NULL;
268 struct map *m;
269
270 while (*p != NULL) {
271 parent = *p;
272 m = rb_entry(parent, struct map, rb_node);
273 if (ip < m->start)
274 p = &(*p)->rb_left;
275 else if (ip > m->end)
276 p = &(*p)->rb_right;
277 else
278 return m;
279 }
280
281 return NULL;
282}
283
284void thread__insert_map(struct thread *self, struct map *map)
285{
Arnaldo Carvalho de Melo12245502010-03-05 11:54:02 -0300286 map_groups__fixup_overlappings(&self->mg, map);
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200287 map_groups__insert(&self->mg, map);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200288}
289
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200290/*
291 * XXX This should not really _copy_ te maps, but refcount them.
292 */
293static int map_groups__clone(struct map_groups *self,
294 struct map_groups *parent, enum map_type type)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200295{
296 struct rb_node *nd;
297 for (nd = rb_first(&parent->maps[type]); nd; nd = rb_next(nd)) {
298 struct map *map = rb_entry(nd, struct map, rb_node);
299 struct map *new = map__clone(map);
300 if (new == NULL)
301 return -ENOMEM;
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200302 map_groups__insert(self, new);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200303 }
304 return 0;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200305}
306
307int thread__fork(struct thread *self, struct thread *parent)
308{
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200309 int i;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200310
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200311 if (parent->comm_set) {
312 if (self->comm)
313 free(self->comm);
314 self->comm = strdup(parent->comm);
315 if (!self->comm)
316 return -ENOMEM;
317 self->comm_set = true;
318 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200319
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200320 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200321 if (map_groups__clone(&self->mg, &parent->mg, i) < 0)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200322 return -ENOMEM;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200323 return 0;
324}
325
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200326size_t perf_session__fprintf(struct perf_session *self, FILE *fp)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200327{
328 size_t ret = 0;
329 struct rb_node *nd;
330
Arnaldo Carvalho de Melob3165f42009-12-13 19:50:28 -0200331 for (nd = rb_first(&self->threads); nd; nd = rb_next(nd)) {
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200332 struct thread *pos = rb_entry(nd, struct thread, rb_node);
333
334 ret += thread__fprintf(pos, fp);
335 }
336
337 return ret;
338}
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200339
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200340struct symbol *map_groups__find_symbol(struct map_groups *self,
341 enum map_type type, u64 addr,
342 symbol_filter_t filter)
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200343{
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200344 struct map *map = map_groups__find(self, type, addr);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200345
346 if (map != NULL)
Arnaldo Carvalho de Melo9de89fe2010-02-03 16:52:00 -0200347 return map__find_symbol(map, map->map_ip(map, addr), filter);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200348
349 return NULL;
350}