]> bbs.cooldavid.org Git - net-next-2.6.git/blame - tools/perf/util/thread.c
perf symbols: Simplify symbol machinery setup
[net-next-2.6.git] / tools / perf / util / thread.c
CommitLineData
6baa0a5a
FW
1#include "../perf.h"
2#include <stdlib.h>
3#include <stdio.h>
4#include <string.h>
5#include "thread.h"
6#include "util.h"
6e086437 7#include "debug.h"
6baa0a5a 8
d5b889f2
ACM
9static struct rb_root threads;
10static struct thread *last_match;
11
97ea1a7f 12static struct thread *thread__new(pid_t pid)
6baa0a5a 13{
0ec04e16 14 struct thread *self = calloc(1, sizeof(*self));
6baa0a5a
FW
15
16 if (self != NULL) {
17 self->pid = pid;
97ea1a7f
FW
18 self->comm = malloc(32);
19 if (self->comm)
20 snprintf(self->comm, 32, ":%d", self->pid);
1b46cddf 21 self->maps = RB_ROOT;
439d473b 22 INIT_LIST_HEAD(&self->removed_maps);
6baa0a5a
FW
23 }
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
a4fb581b
FW
36int 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
6baa0a5a
FW
47static size_t thread__fprintf(struct thread *self, FILE *fp)
48{
1b46cddf 49 struct rb_node *nd;
439d473b
ACM
50 struct map *pos;
51 size_t ret = fprintf(fp, "Thread %d %s\nCurrent maps:\n",
52 self->pid, self->comm);
6baa0a5a 53
1b46cddf 54 for (nd = rb_first(&self->maps); nd; nd = rb_next(nd)) {
439d473b 55 pos = rb_entry(nd, struct map, rb_node);
6baa0a5a 56 ret += map__fprintf(pos, fp);
1b46cddf 57 }
6baa0a5a 58
439d473b
ACM
59 ret = fprintf(fp, "Removed maps:\n");
60
61 list_for_each_entry(pos, &self->removed_maps, node)
62 ret += map__fprintf(pos, fp);
63
6baa0a5a
FW
64 return ret;
65}
66
d5b889f2 67struct thread *threads__findnew(pid_t pid)
6baa0a5a 68{
d5b889f2 69 struct rb_node **p = &threads.rb_node;
6baa0a5a
FW
70 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 */
d5b889f2
ACM
78 if (last_match && last_match->pid == pid)
79 return last_match;
6baa0a5a
FW
80
81 while (*p != NULL) {
82 parent = *p;
83 th = rb_entry(parent, struct thread, rb_node);
84
85 if (th->pid == pid) {
d5b889f2 86 last_match = th;
6baa0a5a
FW
87 return th;
88 }
89
90 if (pid < th->pid)
91 p = &(*p)->rb_left;
92 else
93 p = &(*p)->rb_right;
94 }
95
97ea1a7f 96 th = thread__new(pid);
6baa0a5a
FW
97 if (th != NULL) {
98 rb_link_node(&th->rb_node, parent, p);
d5b889f2
ACM
99 rb_insert_color(&th->rb_node, &threads);
100 last_match = th;
6baa0a5a
FW
101 }
102
103 return th;
104}
105
d5b889f2 106struct thread *register_idle_thread(void)
5b447a6a 107{
d5b889f2 108 struct thread *thread = threads__findnew(0);
5b447a6a 109
80ed0987 110 if (!thread || thread__set_comm(thread, "swapper")) {
5b447a6a
FW
111 fprintf(stderr, "problem inserting idle task.\n");
112 exit(-1);
113 }
114
115 return thread;
116}
117
1b46cddf 118static void thread__remove_overlappings(struct thread *self, struct map *map)
6baa0a5a 119{
1b46cddf
ACM
120 struct rb_node *next = rb_first(&self->maps);
121
122 while (next) {
123 struct map *pos = rb_entry(next, struct map, rb_node);
124 next = rb_next(&pos->rb_node);
125
126 if (!map__overlap(pos, map))
127 continue;
128
129 if (verbose >= 2) {
6beba7ad
ACM
130 fputs("overlapping maps:\n", stderr);
131 map__fprintf(map, stderr);
132 map__fprintf(pos, stderr);
1b46cddf
ACM
133 }
134
439d473b
ACM
135 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);
6baa0a5a 142 }
1b46cddf
ACM
143}
144
145void 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}
6baa0a5a 184
1b46cddf
ACM
185void thread__insert_map(struct thread *self, struct map *map)
186{
187 thread__remove_overlappings(self, map);
188 maps__insert(&self->maps, map);
6baa0a5a
FW
189}
190
191int thread__fork(struct thread *self, struct thread *parent)
192{
1b46cddf 193 struct rb_node *nd;
6baa0a5a
FW
194
195 if (self->comm)
196 free(self->comm);
197 self->comm = strdup(parent->comm);
198 if (!self->comm)
199 return -ENOMEM;
200
1b46cddf
ACM
201 for (nd = rb_first(&parent->maps); nd; nd = rb_next(nd)) {
202 struct map *map = rb_entry(nd, struct map, rb_node);
6baa0a5a
FW
203 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
d5b889f2 212size_t threads__fprintf(FILE *fp)
6baa0a5a
FW
213{
214 size_t ret = 0;
215 struct rb_node *nd;
216
d5b889f2 217 for (nd = rb_first(&threads); nd; nd = rb_next(nd)) {
6baa0a5a
FW
218 struct thread *pos = rb_entry(nd, struct thread, rb_node);
219
220 ret += thread__fprintf(pos, fp);
221 }
222
223 return ret;
224}