blob: a1285129c831b12d6079a6d598e0f3e5de437d62 [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>
5#include "thread.h"
6#include "util.h"
Frederic Weisbecker6e086432009-08-18 17:04:03 +02007#include "debug.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02008
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -03009static struct rb_root threads;
10static struct thread *last_match;
11
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020012void map_groups__init(struct map_groups *self)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020013{
14 int i;
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020015 for (i = 0; i < MAP__NR_TYPES; ++i) {
16 self->maps[i] = RB_ROOT;
17 INIT_LIST_HEAD(&self->removed_maps[i]);
18 }
19}
20
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +020021static struct thread *thread__new(pid_t pid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020022{
Arnaldo Carvalho de Melo36479482009-11-24 12:05:16 -020023 struct thread *self = zalloc(sizeof(*self));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020024
25 if (self != NULL) {
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020026 map_groups__init(&self->mg);
27 self->pid = pid;
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +020028 self->comm = malloc(32);
29 if (self->comm)
30 snprintf(self->comm, 32, ":%d", self->pid);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020031 }
32
33 return self;
34}
35
36int thread__set_comm(struct thread *self, const char *comm)
37{
38 if (self->comm)
39 free(self->comm);
40 self->comm = strdup(comm);
41 return self->comm ? 0 : -ENOMEM;
42}
43
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020044int thread__comm_len(struct thread *self)
45{
46 if (!self->comm_len) {
47 if (!self->comm)
48 return 0;
49 self->comm_len = strlen(self->comm);
50 }
51
52 return self->comm_len;
53}
54
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020055static const char *map_type__name[MAP__NR_TYPES] = {
56 [MAP__FUNCTION] = "Functions",
57};
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020058
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020059static size_t __map_groups__fprintf_maps(struct map_groups *self,
60 enum map_type type, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020061{
62 size_t printed = fprintf(fp, "%s:\n", map_type__name[type]);
63 struct rb_node *nd;
64
65 for (nd = rb_first(&self->maps[type]); nd; nd = rb_next(nd)) {
66 struct map *pos = rb_entry(nd, struct map, rb_node);
67 printed += fprintf(fp, "Map:");
68 printed += map__fprintf(pos, fp);
69 if (verbose > 1) {
70 printed += dso__fprintf(pos->dso, type, fp);
71 printed += fprintf(fp, "--\n");
72 }
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030073 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020074
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020075 return printed;
76}
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030077
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020078size_t map_groups__fprintf_maps(struct map_groups *self, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020079{
80 size_t printed = 0, i;
81 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020082 printed += __map_groups__fprintf_maps(self, i, fp);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020083 return printed;
84}
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030085
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020086static size_t __map_groups__fprintf_removed_maps(struct map_groups *self,
87 enum map_type type, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020088{
89 struct map *pos;
90 size_t printed = 0;
91
92 list_for_each_entry(pos, &self->removed_maps[type], node) {
93 printed += fprintf(fp, "Map:");
94 printed += map__fprintf(pos, fp);
95 if (verbose > 1) {
96 printed += dso__fprintf(pos->dso, type, fp);
97 printed += fprintf(fp, "--\n");
98 }
99 }
100 return printed;
101}
102
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200103static size_t map_groups__fprintf_removed_maps(struct map_groups *self, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200104{
105 size_t printed = 0, i;
106 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200107 printed += __map_groups__fprintf_removed_maps(self, i, fp);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200108 return printed;
109}
110
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200111static size_t map_groups__fprintf(struct map_groups *self, FILE *fp)
112{
113 size_t printed = map_groups__fprintf_maps(self, fp);
114 printed += fprintf(fp, "Removed maps:\n");
115 return printed + map_groups__fprintf_removed_maps(self, fp);
116}
117
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200118static size_t thread__fprintf(struct thread *self, FILE *fp)
119{
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200120 return fprintf(fp, "Thread %d %s\n", self->pid, self->comm) +
121 map_groups__fprintf(&self->mg, fp);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200122}
123
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300124struct thread *threads__findnew(pid_t pid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200125{
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300126 struct rb_node **p = &threads.rb_node;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200127 struct rb_node *parent = NULL;
128 struct thread *th;
129
130 /*
131 * Font-end cache - PID lookups come in blocks,
132 * so most of the time we dont have to look up
133 * the full rbtree:
134 */
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300135 if (last_match && last_match->pid == pid)
136 return last_match;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200137
138 while (*p != NULL) {
139 parent = *p;
140 th = rb_entry(parent, struct thread, rb_node);
141
142 if (th->pid == pid) {
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300143 last_match = th;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200144 return th;
145 }
146
147 if (pid < th->pid)
148 p = &(*p)->rb_left;
149 else
150 p = &(*p)->rb_right;
151 }
152
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +0200153 th = thread__new(pid);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200154 if (th != NULL) {
155 rb_link_node(&th->rb_node, parent, p);
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300156 rb_insert_color(&th->rb_node, &threads);
157 last_match = th;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200158 }
159
160 return th;
161}
162
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300163struct thread *register_idle_thread(void)
Frederic Weisbecker5b447a62009-08-31 06:45:18 +0200164{
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300165 struct thread *thread = threads__findnew(0);
Frederic Weisbecker5b447a62009-08-31 06:45:18 +0200166
Ingo Molnar80ed0982009-09-16 14:12:36 +0200167 if (!thread || thread__set_comm(thread, "swapper")) {
Frederic Weisbecker5b447a62009-08-31 06:45:18 +0200168 fprintf(stderr, "problem inserting idle task.\n");
169 exit(-1);
170 }
171
172 return thread;
173}
174
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200175static void map_groups__remove_overlappings(struct map_groups *self,
176 struct map *map)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200177{
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200178 struct rb_root *root = &self->maps[map->type];
179 struct rb_node *next = rb_first(root);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200180
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300181 while (next) {
182 struct map *pos = rb_entry(next, struct map, rb_node);
183 next = rb_next(&pos->rb_node);
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200184
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300185 if (!map__overlap(pos, map))
186 continue;
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200187
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300188 if (verbose >= 2) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200189 fputs("overlapping maps:\n", stderr);
190 map__fprintf(map, stderr);
191 map__fprintf(pos, stderr);
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300192 }
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200193
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200194 rb_erase(&pos->rb_node, root);
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300195 /*
196 * We may have references to this map, for instance in some
197 * hist_entry instances, so just move them to a separate
198 * list.
199 */
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200200 list_add_tail(&pos->node, &self->removed_maps[map->type]);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200201 }
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300202}
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200203
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300204void maps__insert(struct rb_root *maps, struct map *map)
205{
206 struct rb_node **p = &maps->rb_node;
207 struct rb_node *parent = NULL;
208 const u64 ip = map->start;
209 struct map *m;
210
211 while (*p != NULL) {
212 parent = *p;
213 m = rb_entry(parent, struct map, rb_node);
214 if (ip < m->start)
215 p = &(*p)->rb_left;
216 else
217 p = &(*p)->rb_right;
218 }
219
220 rb_link_node(&map->rb_node, parent, p);
221 rb_insert_color(&map->rb_node, maps);
222}
223
224struct map *maps__find(struct rb_root *maps, u64 ip)
225{
226 struct rb_node **p = &maps->rb_node;
227 struct rb_node *parent = NULL;
228 struct map *m;
229
230 while (*p != NULL) {
231 parent = *p;
232 m = rb_entry(parent, struct map, rb_node);
233 if (ip < m->start)
234 p = &(*p)->rb_left;
235 else if (ip > m->end)
236 p = &(*p)->rb_right;
237 else
238 return m;
239 }
240
241 return NULL;
242}
243
244void thread__insert_map(struct thread *self, struct map *map)
245{
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200246 map_groups__remove_overlappings(&self->mg, map);
247 map_groups__insert(&self->mg, map);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200248}
249
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200250/*
251 * XXX This should not really _copy_ te maps, but refcount them.
252 */
253static int map_groups__clone(struct map_groups *self,
254 struct map_groups *parent, enum map_type type)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200255{
256 struct rb_node *nd;
257 for (nd = rb_first(&parent->maps[type]); nd; nd = rb_next(nd)) {
258 struct map *map = rb_entry(nd, struct map, rb_node);
259 struct map *new = map__clone(map);
260 if (new == NULL)
261 return -ENOMEM;
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200262 map_groups__insert(self, new);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200263 }
264 return 0;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200265}
266
267int thread__fork(struct thread *self, struct thread *parent)
268{
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200269 int i;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200270
271 if (self->comm)
272 free(self->comm);
273 self->comm = strdup(parent->comm);
274 if (!self->comm)
275 return -ENOMEM;
276
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200277 for (i = 0; i < MAP__NR_TYPES; ++i)
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200278 if (map_groups__clone(&self->mg, &parent->mg, i) < 0)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200279 return -ENOMEM;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200280 return 0;
281}
282
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300283size_t threads__fprintf(FILE *fp)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200284{
285 size_t ret = 0;
286 struct rb_node *nd;
287
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300288 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200289 struct thread *pos = rb_entry(nd, struct thread, rb_node);
290
291 ret += thread__fprintf(pos, fp);
292 }
293
294 return ret;
295}
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200296
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200297struct symbol *map_groups__find_symbol(struct map_groups *self,
298 enum map_type type, u64 addr,
299 symbol_filter_t filter)
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200300{
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -0200301 struct map *map = map_groups__find(self, type, addr);
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -0200302
303 if (map != NULL)
304 return map__find_symbol(map, map->map_ip(map, addr), filter);
305
306 return NULL;
307}