]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - tools/perf/util/thread.c
perf tools: Compare hists comm by addresses
[mirror_ubuntu-focal-kernel.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
1902efe7 57static struct 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);
69
70 /* Override latest entry if it had no specific time coverage */
71 if (!curr->start) {
72 list_del(&curr->list);
73 comm__free(curr);
4385d580 74 }
1902efe7
FW
75
76 new = comm__new(str, timestamp);
77 if (!new)
78 return -ENOMEM;
79
80 list_add(&new->list, &thread->comm_list);
81 thread->comm_set = true;
82
83 return 0;
6baa0a5a
FW
84}
85
b9c5143a
FW
86const char *thread__comm_str(const struct thread *thread)
87{
1902efe7
FW
88 const struct comm *comm = thread__comm(thread);
89
90 if (!comm)
91 return NULL;
92
93 return comm__str(comm);
b9c5143a
FW
94}
95
1902efe7 96/* CHECKME: it should probably better return the max comm len from its comm list */
c824c433 97int thread__comm_len(struct thread *thread)
a4fb581b 98{
c824c433 99 if (!thread->comm_len) {
1902efe7
FW
100 const char *comm = thread__comm_str(thread);
101 if (!comm)
a4fb581b 102 return 0;
1902efe7 103 thread->comm_len = strlen(comm);
a4fb581b
FW
104 }
105
c824c433 106 return thread->comm_len;
a4fb581b
FW
107}
108
3f067dca 109size_t thread__fprintf(struct thread *thread, FILE *fp)
9958e1f0 110{
b9c5143a 111 return fprintf(fp, "Thread %d %s\n", thread->tid, thread__comm_str(thread)) +
3f067dca 112 map_groups__fprintf(&thread->mg, verbose, fp);
6baa0a5a
FW
113}
114
c824c433 115void thread__insert_map(struct thread *thread, struct map *map)
1b46cddf 116{
c824c433
ACM
117 map_groups__fixup_overlappings(&thread->mg, map, verbose, stderr);
118 map_groups__insert(&thread->mg, map);
6baa0a5a
FW
119}
120
1902efe7 121int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp)
95011c60 122{
1902efe7 123 int i, err;
6baa0a5a 124
faa5c5c3 125 if (parent->comm_set) {
1902efe7
FW
126 const char *comm = thread__comm_str(parent);
127 if (!comm)
faa5c5c3 128 return -ENOMEM;
1902efe7
FW
129 err = thread__set_comm(thread, comm, timestamp);
130 if (!err)
131 return err;
c824c433 132 thread->comm_set = true;
faa5c5c3 133 }
6baa0a5a 134
95011c60 135 for (i = 0; i < MAP__NR_TYPES; ++i)
c824c433 136 if (map_groups__clone(&thread->mg, &parent->mg, i) < 0)
6baa0a5a 137 return -ENOMEM;
70c57efb 138
c824c433 139 thread->ppid = parent->tid;
70c57efb 140
6baa0a5a
FW
141 return 0;
142}