blob: a2157f0ef1dfa9a317a673713d7d8b66d8ad278c [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"
Adrian Hunter00447cc2014-10-30 16:09:42 +02007#include "thread-stack.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02008#include "util.h"
Frederic Weisbecker6e086432009-08-18 17:04:03 +02009#include "debug.h"
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020010#include "comm.h"
Namhyung Kim66f066d82014-10-06 09:46:00 +090011#include "unwind.h"
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020012
Jiri Olsacddcef62014-04-09 20:54:29 +020013int thread__init_map_groups(struct thread *thread, struct machine *machine)
14{
15 struct thread *leader;
16 pid_t pid = thread->pid_;
17
Adrian Hunter1fcb8762014-07-14 13:02:25 +030018 if (pid == thread->tid || pid == -1) {
Arnaldo Carvalho de Melo11246c72014-10-21 17:29:02 -030019 thread->mg = map_groups__new(machine);
Jiri Olsacddcef62014-04-09 20:54:29 +020020 } else {
21 leader = machine__findnew_thread(machine, pid, pid);
22 if (leader)
23 thread->mg = map_groups__get(leader->mg);
24 }
25
26 return thread->mg ? 0 : -1;
27}
28
Adrian Hunter99d725f2013-08-26 16:00:19 +030029struct thread *thread__new(pid_t pid, pid_t tid)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020030{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020031 char *comm_str;
32 struct comm *comm;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030033 struct thread *thread = zalloc(sizeof(*thread));
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020034
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030035 if (thread != NULL) {
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030036 thread->pid_ = pid;
37 thread->tid = tid;
38 thread->ppid = -1;
Adrian Hunterbf49c352014-07-22 16:17:24 +030039 thread->cpu = -1;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020040 INIT_LIST_HEAD(&thread->comm_list);
41
Namhyung Kim66f066d82014-10-06 09:46:00 +090042 if (unwind__prepare_access(thread) < 0)
43 goto err_thread;
44
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020045 comm_str = malloc(32);
46 if (!comm_str)
47 goto err_thread;
48
49 snprintf(comm_str, 32, ":%d", tid);
Adrian Hunter65de51f2014-07-31 09:00:44 +030050 comm = comm__new(comm_str, 0, false);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020051 free(comm_str);
52 if (!comm)
53 goto err_thread;
54
55 list_add(&comm->list, &thread->comm_list);
Namhyung Kim66f066d82014-10-06 09:46:00 +090056
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020057 }
58
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030059 return thread;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020060
61err_thread:
62 free(thread);
63 return NULL;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020064}
65
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030066void thread__delete(struct thread *thread)
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030067{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020068 struct comm *comm, *tmp;
69
Adrian Hunter00447cc2014-10-30 16:09:42 +020070 thread_stack__free(thread);
71
Adrian Hunter9608b842014-07-16 10:19:43 +030072 if (thread->mg) {
73 map_groups__put(thread->mg);
74 thread->mg = NULL;
75 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020076 list_for_each_entry_safe(comm, tmp, &thread->comm_list, list) {
77 list_del(&comm->list);
78 comm__free(comm);
79 }
Namhyung Kim66f066d82014-10-06 09:46:00 +090080 unwind__finish_access(thread);
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020081
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -030082 free(thread);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030083}
84
Namhyung Kim4dfced32013-09-13 16:28:57 +090085struct comm *thread__comm(const struct thread *thread)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020086{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020087 if (list_empty(&thread->comm_list))
88 return NULL;
David S. Miller4385d582010-02-26 12:08:34 -030089
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020090 return list_first_entry(&thread->comm_list, struct comm, list);
91}
92
Adrian Hunter65de51f2014-07-31 09:00:44 +030093struct comm *thread__exec_comm(const struct thread *thread)
94{
95 struct comm *comm, *last = NULL;
96
97 list_for_each_entry(comm, &thread->comm_list, list) {
98 if (comm->exec)
99 return comm;
100 last = comm;
101 }
102
103 return last;
104}
105
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200106/* CHECKME: time should always be 0 if event aren't ordered */
Adrian Hunter65de51f2014-07-31 09:00:44 +0300107int __thread__set_comm(struct thread *thread, const char *str, u64 timestamp,
108 bool exec)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200109{
110 struct comm *new, *curr = thread__comm(thread);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100111 int err;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200112
113 /* Override latest entry if it had no specific time coverage */
Adrian Hunter65de51f2014-07-31 09:00:44 +0300114 if (!curr->start && !curr->exec) {
115 err = comm__override(curr, str, timestamp, exec);
Frederic Weisbecker3178f582014-01-14 16:37:14 +0100116 if (err)
117 return err;
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100118 } else {
Adrian Hunter65de51f2014-07-31 09:00:44 +0300119 new = comm__new(str, timestamp, exec);
Frederic Weisbeckera5285ad2013-11-16 02:02:09 +0100120 if (!new)
121 return -ENOMEM;
122 list_add(&new->list, &thread->comm_list);
Namhyung Kim380b5142014-10-06 09:46:01 +0900123
124 if (exec)
125 unwind__flush_access(thread);
David S. Miller4385d582010-02-26 12:08:34 -0300126 }
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200127
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200128 thread->comm_set = true;
129
130 return 0;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200131}
132
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200133const char *thread__comm_str(const struct thread *thread)
134{
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200135 const struct comm *comm = thread__comm(thread);
136
137 if (!comm)
138 return NULL;
139
140 return comm__str(comm);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200141}
142
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200143/* CHECKME: it should probably better return the max comm len from its comm list */
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300144int thread__comm_len(struct thread *thread)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200145{
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300146 if (!thread->comm_len) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200147 const char *comm = thread__comm_str(thread);
148 if (!comm)
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200149 return 0;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200150 thread->comm_len = strlen(comm);
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200151 }
152
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300153 return thread->comm_len;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +0200154}
155
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -0300156size_t thread__fprintf(struct thread *thread, FILE *fp)
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200157{
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +0200158 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
Jiri Olsaacebd402014-07-14 23:46:47 +0200159 map_groups__fprintf(thread->mg, fp);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200160}
161
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300162void thread__insert_map(struct thread *thread, struct map *map)
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -0300163{
Jiri Olsaacebd402014-07-14 23:46:47 +0200164 map_groups__fixup_overlappings(thread->mg, map, stderr);
Arnaldo Carvalho de Melo93d57312014-03-21 17:57:01 -0300165 map_groups__insert(thread->mg, map);
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -0200166}
167
Jiri Olsacddcef62014-04-09 20:54:29 +0200168static int thread__clone_map_groups(struct thread *thread,
169 struct thread *parent)
170{
171 int i;
172
173 /* This is new thread, we share map groups for process. */
174 if (thread->pid_ == parent->pid_)
175 return 0;
176
177 /* But this one is new process, copy maps. */
178 for (i = 0; i < MAP__NR_TYPES; ++i)
179 if (map_groups__clone(thread->mg, parent->mg, i) < 0)
180 return -ENOMEM;
181
182 return 0;
183}
184
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200185int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp)
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200186{
Jiri Olsacddcef62014-04-09 20:54:29 +0200187 int err;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200188
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200189 if (parent->comm_set) {
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200190 const char *comm = thread__comm_str(parent);
191 if (!comm)
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200192 return -ENOMEM;
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200193 err = thread__set_comm(thread, comm, timestamp);
David Ahern8d00be82013-12-10 21:35:38 -0700194 if (err)
Frederic Weisbecker1902efe2013-09-11 16:56:44 +0200195 return err;
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300196 thread->comm_set = true;
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -0200197 }
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200198
Arnaldo Carvalho de Meloc824c432013-10-22 19:01:31 -0300199 thread->ppid = parent->tid;
Jiri Olsacddcef62014-04-09 20:54:29 +0200200 return thread__clone_map_groups(thread, parent);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +0200201}
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300202
203void thread__find_cpumode_addr_location(struct thread *thread,
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300204 enum map_type type, u64 addr,
205 struct addr_location *al)
206{
207 size_t i;
208 const u8 const cpumodes[] = {
209 PERF_RECORD_MISC_USER,
210 PERF_RECORD_MISC_KERNEL,
211 PERF_RECORD_MISC_GUEST_USER,
212 PERF_RECORD_MISC_GUEST_KERNEL
213 };
214
215 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) {
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -0300216 thread__find_addr_location(thread, cpumodes[i], type, addr, al);
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -0300217 if (al->map)
218 break;
219 }
220}