perf tests: Add thread maps lookup automated tests
[deliverable/linux.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>
b3165f41 5#include "session.h"
6baa0a5a
FW
6#include "thread.h"
7#include "util.h"
6e086437 8#include "debug.h"
1902efe7 9#include "comm.h"
6baa0a5a 10
99d725fc 11struct thread *thread__new(pid_t pid, pid_t tid)
6baa0a5a 12{
1902efe7
FW
13 char *comm_str;
14 struct comm *comm;
c824c433 15 struct thread *thread = zalloc(sizeof(*thread));
6baa0a5a 16
c824c433
ACM
17 if (thread != NULL) {
18 map_groups__init(&thread->mg);
19 thread->pid_ = pid;
20 thread->tid = tid;
21 thread->ppid = -1;
1902efe7
FW
22 INIT_LIST_HEAD(&thread->comm_list);
23
24 comm_str = malloc(32);
25 if (!comm_str)
26 goto err_thread;
27
28 snprintf(comm_str, 32, ":%d", tid);
29 comm = comm__new(comm_str, 0);
30 free(comm_str);
31 if (!comm)
32 goto err_thread;
33
34 list_add(&comm->list, &thread->comm_list);
6baa0a5a
FW
35 }
36
c824c433 37 return thread;
1902efe7
FW
38
39err_thread:
40 free(thread);
41 return NULL;
6baa0a5a
FW
42}
43
c824c433 44void thread__delete(struct thread *thread)
591765fd 45{
1902efe7
FW
46 struct comm *comm, *tmp;
47
c824c433 48 map_groups__exit(&thread->mg);
1902efe7
FW
49 list_for_each_entry_safe(comm, tmp, &thread->comm_list, list) {
50 list_del(&comm->list);
51 comm__free(comm);
52 }
53
c824c433 54 free(thread);
591765fd
ACM
55}
56
4dfced35 57struct comm *thread__comm(const struct thread *thread)
6baa0a5a 58{
1902efe7
FW
59 if (list_empty(&thread->comm_list))
60 return NULL;
4385d580 61
1902efe7
FW
62 return list_first_entry(&thread->comm_list, struct comm, list);
63}
64
65/* CHECKME: time should always be 0 if event aren't ordered */
66int thread__set_comm(struct thread *thread, const char *str, u64 timestamp)
67{
68 struct comm *new, *curr = thread__comm(thread);
3178f58b 69 int err;
1902efe7
FW
70
71 /* Override latest entry if it had no specific time coverage */
72 if (!curr->start) {
3178f58b
FW
73 err = comm__override(curr, str, timestamp);
74 if (err)
75 return err;
a5285ad9
FW
76 } else {
77 new = comm__new(str, timestamp);
78 if (!new)
79 return -ENOMEM;
80 list_add(&new->list, &thread->comm_list);
4385d580 81 }
1902efe7 82
1902efe7
FW
83 thread->comm_set = true;
84
85 return 0;
6baa0a5a
FW
86}
87
b9c5143a
FW
88const char *thread__comm_str(const struct thread *thread)
89{
1902efe7
FW
90 const struct comm *comm = thread__comm(thread);
91
92 if (!comm)
93 return NULL;
94
95 return comm__str(comm);
b9c5143a
FW
96}
97
1902efe7 98/* CHECKME: it should probably better return the max comm len from its comm list */
c824c433 99int thread__comm_len(struct thread *thread)
a4fb581b 100{
c824c433 101 if (!thread->comm_len) {
1902efe7
FW
102 const char *comm = thread__comm_str(thread);
103 if (!comm)
a4fb581b 104 return 0;
1902efe7 105 thread->comm_len = strlen(comm);
a4fb581b
FW
106 }
107
c824c433 108 return thread->comm_len;
a4fb581b
FW
109}
110
3f067dca 111size_t thread__fprintf(struct thread *thread, FILE *fp)
9958e1f0 112{
b9c5143a 113 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
3f067dca 114 map_groups__fprintf(&thread->mg, verbose, fp);
6baa0a5a
FW
115}
116
c824c433 117void thread__insert_map(struct thread *thread, struct map *map)
1b46cddf 118{
c824c433
ACM
119 map_groups__fixup_overlappings(&thread->mg, map, verbose, stderr);
120 map_groups__insert(&thread->mg, map);
6baa0a5a
FW
121}
122
1902efe7 123int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp)
95011c60 124{
1902efe7 125 int i, err;
6baa0a5a 126
faa5c5c3 127 if (parent->comm_set) {
1902efe7
FW
128 const char *comm = thread__comm_str(parent);
129 if (!comm)
faa5c5c3 130 return -ENOMEM;
1902efe7 131 err = thread__set_comm(thread, comm, timestamp);
8d00be81 132 if (err)
1902efe7 133 return err;
c824c433 134 thread->comm_set = true;
faa5c5c3 135 }
6baa0a5a 136
95011c60 137 for (i = 0; i < MAP__NR_TYPES; ++i)
c824c433 138 if (map_groups__clone(&thread->mg, &parent->mg, i) < 0)
6baa0a5a 139 return -ENOMEM;
70c57efb 140
c824c433 141 thread->ppid = parent->tid;
70c57efb 142
6baa0a5a
FW
143 return 0;
144}
52a3cb8c
ACM
145
146void thread__find_cpumode_addr_location(struct thread *thread,
147 struct machine *machine,
148 enum map_type type, u64 addr,
149 struct addr_location *al)
150{
151 size_t i;
152 const u8 const cpumodes[] = {
153 PERF_RECORD_MISC_USER,
154 PERF_RECORD_MISC_KERNEL,
155 PERF_RECORD_MISC_GUEST_USER,
156 PERF_RECORD_MISC_GUEST_KERNEL
157 };
158
159 for (i = 0; i < ARRAY_SIZE(cpumodes); i++) {
160 thread__find_addr_location(thread, machine, cpumodes[i], type,
161 addr, al);
162 if (al->map)
163 break;
164 }
165}
This page took 0.189876 seconds and 5 git commands to generate.