blob: 8db9626f68358db95917e90f3865d80613cccb35 [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 Weisbecker1902efe2013-09-11 16:56:44 +02009#include "comm.h"
Namhyung Kim66f066d82014-10-06 09:46:00 +090010#include "unwind.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020011
Jiri Olsacddcef62014-04-09 20:54:29 +020012int thread__init_map_groups(struct thread *thread, struct machine *machine)
13{
14 struct thread *leader;
15 pid_t pid = thread->pid_;
16
Adrian Hunter1fcb8762014-07-14 13:02:25 +030017 if (pid == thread->tid || pid == -1) {
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030018 thread->mg = map_groups__new(machine);
Jiri Olsacddcef62014-04-09 20:54:29 +020019 } else {
20 leader = machine__findnew_thread(machine, pid, pid);
21 if (leader)
22 thread->mg = map_groups__get(leader->mg);
23 }
24
25 return thread->mg ? 0 : -1;
26}
27
Adrian Hunter99d725f2013-08-26 16:00:19 +030028struct thread *thread__new(pid_t pid, pid_t tid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020029{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020030 char *comm_str;
31 struct comm *comm;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030032 struct thread *thread = zalloc(sizeof(*thread));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020033
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030034 if (thread != NULL) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030035 thread->pid_ = pid;
36 thread->tid = tid;
37 thread->ppid = -1;
Adrian Hunterbf49c352014-07-22 16:17:24 +030038 thread->cpu = -1;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020039 INIT_LIST_HEAD(&thread->comm_list);
40
Namhyung Kim66f066d82014-10-06 09:46:00 +090041 if (unwind__prepare_access(thread) < 0)
42 goto err_thread;
43
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020044 comm_str = malloc(32);
45 if (!comm_str)
46 goto err_thread;
47
48 snprintf(comm_str, 32, ":%d", tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +030049 comm = comm__new(comm_str, 0, false);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020050 free(comm_str);
51 if (!comm)
52 goto err_thread;
53
54 list_add(&comm->list, &thread->comm_list);
Namhyung Kim66f066d82014-10-06 09:46:00 +090055
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020056 }
57
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030058 return thread;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020059
60err_thread:
61 free(thread);
62 return NULL;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020063}
64
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030065void thread__delete(struct thread *thread)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030066{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020067 struct comm *comm, *tmp;
68
Adrian Hunter9608b842014-07-16 10:19:43 +030069 if (thread->mg) {
70 map_groups__put(thread->mg);
71 thread->mg = NULL;
72 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020073 list_for_each_entry_safe(comm, tmp, &thread->comm_list, list) {
74 list_del(&comm->list);
75 comm__free(comm);
76 }
Namhyung Kim66f066d82014-10-06 09:46:00 +090077 unwind__finish_access(thread);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020078
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030079 free(thread);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030080}
81
Namhyung Kim4dfced32013-09-13 16:28:57 +090082struct comm *thread__comm(const struct thread *thread)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020083{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020084 if (list_empty(&thread->comm_list))
85 return NULL;
David S. Miller4385d582010-02-26 12:08:34 -030086
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020087 return list_first_entry(&thread->comm_list, struct comm, list);
88}
89
Adrian Hunter65de51f2014-07-31 09:00:44 +030090struct comm *thread__exec_comm(const struct thread *thread)
91{
92 struct comm *comm, *last = NULL;
93
94 list_for_each_entry(comm, &thread->comm_list, list) {
95 if (comm->exec)
96 return comm;
97 last = comm;
98 }
99
100 return last;
101}
102
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200103/* CHECKME: time should always be 0 if event aren't ordered */
Adrian Hunter65de51f2014-07-31 09:00:44 +0300104int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp,
105 bool exec)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200106{
107 struct comm *new, *curr = thread__comm(thread);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100108 int err;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200109
110 /* Override latest entry if it had no specific time coverage */
Adrian Hunter65de51f2014-07-31 09:00:44 +0300111 if (!curr->start && !curr->exec) {
112 err = comm__override(curr, str, timestamp, exec);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100113 if (err)
114 return err;
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100115 } else {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300116 new = comm__new(str, timestamp, exec);
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100117 if (!new)
118 return -ENOMEM;
119 list_add(&new->list, &thread->comm_list);
Namhyung Kim380b5142014-10-06 09:46:01 +0900120
121 if (exec)
122 unwind__flush_access(thread);
David S. Miller4385d582010-02-26 12:08:34 -0300123 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200124
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200125 thread->comm_set = true;
126
127 return 0;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200128}
129
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200130const char *thread__comm_str(const struct thread *thread)
131{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200132 const struct comm *comm = thread__comm(thread);
133
134 if (!comm)
135 return NULL;
136
137 return comm__str(comm);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200138}
139
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200140/* CHECKME: it should probably better return the max comm len from its comm list */
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300141int thread__comm_len(struct thread *thread)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200142{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300143 if (!thread->comm_len) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200144 const char *comm = thread__comm_str(thread);
145 if (!comm)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200146 return 0;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200147 thread->comm_len = strlen(comm);
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200148 }
149
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300150 return thread->comm_len;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200151}
152
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300153size_t thread__fprintf(struct thread *thread, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200154{
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200155 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
Jiri Olsaacebd402014-07-14 23:46:47 +0200156 map_groups__fprintf(thread->mg, fp);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200157}
158
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300159void thread__insert_map(struct thread *thread, struct map *map)
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300160{
Jiri Olsaacebd402014-07-14 23:46:47 +0200161 map_groups__fixup_overlappings(thread->mg, map, stderr);
Arnaldo Carvalho de Melo93d57312014-03-21 17:57:01 -0300162 map_groups__insert(thread->mg, map);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200163}
164
Jiri Olsacddcef62014-04-09 20:54:29 +0200165static int thread__clone_map_groups(struct thread *thread,
166 struct thread *parent)
167{
168 int i;
169
170 /* This is new thread, we share map groups for process. */
171 if (thread->pid_ == parent->pid_)
172 return 0;
173
174 /* But this one is new process, copy maps. */
175 for (i = 0; i < MAP__NR_TYPES; ++i)
176 if (map_groups__clone(thread->mg, parent->mg, i) < 0)
177 return -ENOMEM;
178
179 return 0;
180}
181
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200182int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200183{
Jiri Olsacddcef62014-04-09 20:54:29 +0200184 int err;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200185
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200186 if (parent->comm_set) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200187 const char *comm = thread__comm_str(parent);
188 if (!comm)
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200189 return -ENOMEM;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200190 err = thread__set_comm(thread, comm, timestamp);
David Ahern8d00be82013-12-10 21:35:38 -0700191 if (err)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200192 return err;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300193 thread->comm_set = true;
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200194 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200195
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300196 thread->ppid = parent->tid;
Jiri Olsacddcef62014-04-09 20:54:29 +0200197 return thread__clone_map_groups(thread, parent);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200198}
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300199
200void thread__find_cpumode_addr_location(struct thread *thread,
201 struct machine *machine,
202 enum map_type type, u64 addr,
203 struct addr_location *al)
204{
205 size_t i;
206 const u8 const cpumodes[] = {
207 PERF_RECORD_MISC_USER,
208 PERF_RECORD_MISC_KERNEL,
209 PERF_RECORD_MISC_GUEST_USER,
210 PERF_RECORD_MISC_GUEST_KERNEL
211 };
212
213 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) {
214 thread__find_addr_location(thread, machine, cpumodes[i], type,
215 addr, al);
216 if (al->map)
217 break;
218 }
219}