blob: 0f6d78c9863ae1fc0a54701c444f303fe65072ad [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
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +020012static struct thread *thread__new(pid_t pid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020013{
Ingo Molnar0ec04e12009-09-16 17:40:48 +020014 struct thread *self = calloc(1, sizeof(*self));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020015
16 if (self != NULL) {
17 self->pid = pid;
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +020018 self->comm = malloc(32);
19 if (self->comm)
20 snprintf(self->comm, 32, ":%d", self->pid);
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030021 self->maps = RB_ROOT;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030022 INIT_LIST_HEAD(&self->removed_maps);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020023 }
24
25 return self;
26}
27
28int thread__set_comm(struct thread *self, const char *comm)
29{
30 if (self->comm)
31 free(self->comm);
32 self->comm = strdup(comm);
33 return self->comm ? 0 : -ENOMEM;
34}
35
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020036int thread__comm_len(struct thread *self)
37{
38 if (!self->comm_len) {
39 if (!self->comm)
40 return 0;
41 self->comm_len = strlen(self->comm);
42 }
43
44 return self->comm_len;
45}
46
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020047static size_t thread__fprintf(struct thread *self, FILE *fp)
48{
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030049 struct rb_node *nd;
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030050 struct map *pos;
51 size_t ret = fprintf(fp, "Thread %d %s\nCurrent maps:\n",
52 self->pid, self->comm);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020053
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030054 for (nd = rb_first(&self->maps); nd; nd = rb_next(nd)) {
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030055 pos = rb_entry(nd, struct map, rb_node);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020056 ret += map__fprintf(pos, fp);
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030057 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020058
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -030059 ret = fprintf(fp, "Removed maps:\n");
60
61 list_for_each_entry(pos, &self->removed_maps, node)
62 ret += map__fprintf(pos, fp);
63
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020064 return ret;
65}
66
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -030067struct thread *threads__findnew(pid_t pid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020068{
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -030069 struct rb_node **p = &threads.rb_node;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020070 struct rb_node *parent = NULL;
71 struct thread *th;
72
73 /*
74 * Font-end cache - PID lookups come in blocks,
75 * so most of the time we dont have to look up
76 * the full rbtree:
77 */
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -030078 if (last_match && last_match->pid == pid)
79 return last_match;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020080
81 while (*p != NULL) {
82 parent = *p;
83 th = rb_entry(parent, struct thread, rb_node);
84
85 if (th->pid == pid) {
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -030086 last_match = th;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020087 return th;
88 }
89
90 if (pid < th->pid)
91 p = &(*p)->rb_left;
92 else
93 p = &(*p)->rb_right;
94 }
95
Frederic Weisbecker97ea1a72009-10-08 21:04:17 +020096 th = thread__new(pid);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020097 if (th != NULL) {
98 rb_link_node(&th->rb_node, parent, p);
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -030099 rb_insert_color(&th->rb_node, &threads);
100 last_match = th;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200101 }
102
103 return th;
104}
105
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300106struct thread *register_idle_thread(void)
Frederic Weisbecker5b447a62009-08-31 06:45:18 +0200107{
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300108 struct thread *thread = threads__findnew(0);
Frederic Weisbecker5b447a62009-08-31 06:45:18 +0200109
Ingo Molnar80ed0982009-09-16 14:12:36 +0200110 if (!thread || thread__set_comm(thread, "swapper")) {
Frederic Weisbecker5b447a62009-08-31 06:45:18 +0200111 fprintf(stderr, "problem inserting idle task.\n");
112 exit(-1);
113 }
114
115 return thread;
116}
117
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300118static void thread__remove_overlappings(struct thread *self, struct map *map)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200119{
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300120 struct rb_node *next = rb_first(&self->maps);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200121
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300122 while (next) {
123 struct map *pos = rb_entry(next, struct map, rb_node);
124 next = rb_next(&pos->rb_node);
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200125
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300126 if (!map__overlap(pos, map))
127 continue;
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200128
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300129 if (verbose >= 2) {
Arnaldo Carvalho de Melo6beba7a2009-10-21 17:34:06 -0200130 fputs("overlapping maps:\n", stderr);
131 map__fprintf(map, stderr);
132 map__fprintf(pos, stderr);
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300133 }
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200134
Arnaldo Carvalho de Melo439d4732009-10-02 03:29:58 -0300135 rb_erase(&pos->rb_node, &self->maps);
136 /*
137 * We may have references to this map, for instance in some
138 * hist_entry instances, so just move them to a separate
139 * list.
140 */
141 list_add_tail(&pos->node, &self->removed_maps);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200142 }
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300143}
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200144
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300145void maps__insert(struct rb_root *maps, struct map *map)
146{
147 struct rb_node **p = &maps->rb_node;
148 struct rb_node *parent = NULL;
149 const u64 ip = map->start;
150 struct map *m;
151
152 while (*p != NULL) {
153 parent = *p;
154 m = rb_entry(parent, struct map, rb_node);
155 if (ip < m->start)
156 p = &(*p)->rb_left;
157 else
158 p = &(*p)->rb_right;
159 }
160
161 rb_link_node(&map->rb_node, parent, p);
162 rb_insert_color(&map->rb_node, maps);
163}
164
165struct map *maps__find(struct rb_root *maps, u64 ip)
166{
167 struct rb_node **p = &maps->rb_node;
168 struct rb_node *parent = NULL;
169 struct map *m;
170
171 while (*p != NULL) {
172 parent = *p;
173 m = rb_entry(parent, struct map, rb_node);
174 if (ip < m->start)
175 p = &(*p)->rb_left;
176 else if (ip > m->end)
177 p = &(*p)->rb_right;
178 else
179 return m;
180 }
181
182 return NULL;
183}
184
185void thread__insert_map(struct thread *self, struct map *map)
186{
187 thread__remove_overlappings(self, map);
188 maps__insert(&self->maps, map);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200189}
190
191int thread__fork(struct thread *self, struct thread *parent)
192{
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300193 struct rb_node *nd;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200194
195 if (self->comm)
196 free(self->comm);
197 self->comm = strdup(parent->comm);
198 if (!self->comm)
199 return -ENOMEM;
200
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300201 for (nd = rb_first(&parent->maps); nd; nd = rb_next(nd)) {
202 struct map *map = rb_entry(nd, struct map, rb_node);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200203 struct map *new = map__clone(map);
204 if (!new)
205 return -ENOMEM;
206 thread__insert_map(self, new);
207 }
208
209 return 0;
210}
211
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300212size_t threads__fprintf(FILE *fp)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200213{
214 size_t ret = 0;
215 struct rb_node *nd;
216
Arnaldo Carvalho de Melod5b889f2009-10-13 11:16:29 -0300217 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200218 struct thread *pos = rb_entry(nd, struct thread, rb_node);
219
220 ret += thread__fprintf(pos, fp);
221 }
222
223 return ret;
224}