blob: 0fe1f9c05865623e054430b50c7b79b7ec986429 [file] [log] [blame]
John Kacur8b40f522009-09-24 18:02:18 +02001#ifndef __PERF_THREAD_H
2#define __PERF_THREAD_H
3
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02004#include <linux/rbtree.h>
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02005#include <unistd.h>
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -03006#include <sys/types.h>
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02007#include "symbol.h"
8
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -02009struct thread {
Arnaldo Carvalho de Melo720a3ae2010-06-17 08:37:44 -030010 union {
11 struct rb_node rb_node;
12 struct list_head node;
13 };
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020014 struct map_groups mg;
Adrian Hunter38051232013-07-04 16:20:31 +030015 pid_t tid;
David Ahern70c57ef2013-05-25 22:47:10 -060016 pid_t ppid;
Ingo Molnar0ec04e12009-09-16 17:40:48 +020017 char shortname[3];
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -020018 bool comm_set;
Ingo Molnarb5fae122009-09-11 12:12:54 +020019 char *comm;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020020 int comm_len;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080021
22 void *priv;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020023};
24
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020025struct machine;
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -030026
Adrian Hunter38051232013-07-04 16:20:31 +030027struct thread *thread__new(pid_t tid);
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030028void thread__delete(struct thread *self);
29
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020030int thread__set_comm(struct thread *self, const char *comm);
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020031int thread__comm_len(struct thread *self);
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020032void thread__insert_map(struct thread *self, struct map *map);
33int thread__fork(struct thread *self, struct thread *parent);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030034size_t thread__fprintf(struct thread *thread, FILE *fp);
John Kacur8b40f522009-09-24 18:02:18 +020035
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020036static inline struct map *thread__find_map(struct thread *self,
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020037 enum map_type type, u64 addr)
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030038{
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020039 return self ? map_groups__find(&self->mg, type, addr) : NULL;
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020040}
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020041
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020042void thread__find_addr_map(struct thread *thread, struct machine *machine,
43 u8 cpumode, enum map_type type, u64 addr,
Arnaldo Carvalho de Melo59ee68e2010-01-14 23:45:29 -020044 struct addr_location *al);
45
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020046void thread__find_addr_location(struct thread *thread, struct machine *machine,
47 u8 cpumode, enum map_type type, u64 addr,
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020048 struct addr_location *al,
49 symbol_filter_t filter);
David Ahernba580412013-06-07 16:22:12 -060050
51static inline void *thread__priv(struct thread *thread)
52{
53 return thread->priv;
54}
55
56static inline void thread__set_priv(struct thread *thread, void *p)
57{
58 thread->priv = p;
59}
John Kacur8b40f522009-09-24 18:02:18 +020060#endif /* __PERF_THREAD_H */