blob: 9d0945cc66d1919831764cb7c2fa01633bb877e4 [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
9static struct thread *thread__new(pid_t pid)
10{
Ingo Molnar0ec04e12009-09-16 17:40:48 +020011 struct thread *self = calloc(1, sizeof(*self));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020012
13 if (self != NULL) {
14 self->pid = pid;
15 self->comm = malloc(32);
16 if (self->comm)
17 snprintf(self->comm, 32, ":%d", self->pid);
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030018 self->maps = RB_ROOT;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020019 }
20
21 return self;
22}
23
24int thread__set_comm(struct thread *self, const char *comm)
25{
26 if (self->comm)
27 free(self->comm);
28 self->comm = strdup(comm);
29 return self->comm ? 0 : -ENOMEM;
30}
31
32static size_t thread__fprintf(struct thread *self, FILE *fp)
33{
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030034 struct rb_node *nd;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020035 size_t ret = fprintf(fp, "Thread %d %s\n", self->pid, self->comm);
36
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030037 for (nd = rb_first(&self->maps); nd; nd = rb_next(nd)) {
38 struct map *pos = rb_entry(nd, struct map, rb_node);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020039 ret += map__fprintf(pos, fp);
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030040 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020041
42 return ret;
43}
44
45struct thread *
46threads__findnew(pid_t pid, struct rb_root *threads, struct thread **last_match)
47{
48 struct rb_node **p = &threads->rb_node;
49 struct rb_node *parent = NULL;
50 struct thread *th;
51
52 /*
53 * Font-end cache - PID lookups come in blocks,
54 * so most of the time we dont have to look up
55 * the full rbtree:
56 */
57 if (*last_match && (*last_match)->pid == pid)
58 return *last_match;
59
60 while (*p != NULL) {
61 parent = *p;
62 th = rb_entry(parent, struct thread, rb_node);
63
64 if (th->pid == pid) {
65 *last_match = th;
66 return th;
67 }
68
69 if (pid < th->pid)
70 p = &(*p)->rb_left;
71 else
72 p = &(*p)->rb_right;
73 }
74
75 th = thread__new(pid);
76 if (th != NULL) {
77 rb_link_node(&th->rb_node, parent, p);
78 rb_insert_color(&th->rb_node, threads);
79 *last_match = th;
80 }
81
82 return th;
83}
84
Frederic Weisbecker5b447a62009-08-31 06:45:18 +020085struct thread *
86register_idle_thread(struct rb_root *threads, struct thread **last_match)
87{
88 struct thread *thread = threads__findnew(0, threads, last_match);
89
Ingo Molnar80ed0982009-09-16 14:12:36 +020090 if (!thread || thread__set_comm(thread, "swapper")) {
Frederic Weisbecker5b447a62009-08-31 06:45:18 +020091 fprintf(stderr, "problem inserting idle task.\n");
92 exit(-1);
93 }
94
95 return thread;
96}
97
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030098static void thread__remove_overlappings(struct thread *self, struct map *map)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020099{
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300100 struct rb_node *next = rb_first(&self->maps);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200101
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300102 while (next) {
103 struct map *pos = rb_entry(next, struct map, rb_node);
104 next = rb_next(&pos->rb_node);
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200105
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300106 if (!map__overlap(pos, map))
107 continue;
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200108
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300109 if (verbose >= 2) {
110 printf("overlapping maps:\n");
111 map__fprintf(map, stdout);
112 map__fprintf(pos, stdout);
113 }
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200114
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300115 if (map->start <= pos->start && map->end > pos->start)
116 pos->start = map->end;
Frederic Weisbecker6e086432009-08-18 17:04:03 +0200117
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300118 if (map->end >= pos->end && map->start < pos->end)
119 pos->end = map->start;
120
121 if (verbose >= 2) {
122 printf("after collision:\n");
123 map__fprintf(pos, stdout);
124 }
125
126 if (pos->start >= pos->end) {
127 rb_erase(&pos->rb_node, &self->maps);
128 free(pos);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200129 }
130 }
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300131}
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200132
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300133void maps__insert(struct rb_root *maps, struct map *map)
134{
135 struct rb_node **p = &maps->rb_node;
136 struct rb_node *parent = NULL;
137 const u64 ip = map->start;
138 struct map *m;
139
140 while (*p != NULL) {
141 parent = *p;
142 m = rb_entry(parent, struct map, rb_node);
143 if (ip < m->start)
144 p = &(*p)->rb_left;
145 else
146 p = &(*p)->rb_right;
147 }
148
149 rb_link_node(&map->rb_node, parent, p);
150 rb_insert_color(&map->rb_node, maps);
151}
152
153struct map *maps__find(struct rb_root *maps, u64 ip)
154{
155 struct rb_node **p = &maps->rb_node;
156 struct rb_node *parent = NULL;
157 struct map *m;
158
159 while (*p != NULL) {
160 parent = *p;
161 m = rb_entry(parent, struct map, rb_node);
162 if (ip < m->start)
163 p = &(*p)->rb_left;
164 else if (ip > m->end)
165 p = &(*p)->rb_right;
166 else
167 return m;
168 }
169
170 return NULL;
171}
172
173void thread__insert_map(struct thread *self, struct map *map)
174{
175 thread__remove_overlappings(self, map);
176 maps__insert(&self->maps, map);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200177}
178
179int thread__fork(struct thread *self, struct thread *parent)
180{
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300181 struct rb_node *nd;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200182
183 if (self->comm)
184 free(self->comm);
185 self->comm = strdup(parent->comm);
186 if (!self->comm)
187 return -ENOMEM;
188
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300189 for (nd = rb_first(&parent->maps); nd; nd = rb_next(nd)) {
190 struct map *map = rb_entry(nd, struct map, rb_node);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200191 struct map *new = map__clone(map);
192 if (!new)
193 return -ENOMEM;
194 thread__insert_map(self, new);
195 }
196
197 return 0;
198}
199
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200200size_t threads__fprintf(FILE *fp, struct rb_root *threads)
201{
202 size_t ret = 0;
203 struct rb_node *nd;
204
205 for (nd = rb_first(threads); nd; nd = rb_next(nd)) {
206 struct thread *pos = rb_entry(nd, struct thread, rb_node);
207
208 ret += thread__fprintf(pos, fp);
209 }
210
211 return ret;
212}