blob: 897c1b2a750a278c8cecf000c892d5f6bba8f0af [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 Weisbecker1902efe2013-09-11 16:56:44 +02005#include <linux/list.h>
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02006#include <unistd.h>
Arnaldo Carvalho de Melo9d2f8e22012-10-06 15:43:20 -03007#include <sys/types.h>
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +02008#include "symbol.h"
9
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020010struct thread {
Arnaldo Carvalho de Melo720a3ae2010-06-17 08:37:44 -030011 union {
12 struct rb_node rb_node;
13 struct list_head node;
14 };
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020015 struct map_groups mg;
Adrian Hunter99d725f2013-08-26 16:00:19 +030016 pid_t pid_; /* Not all tools update this */
Adrian Hunter38051232013-07-04 16:20:31 +030017 pid_t tid;
David Ahern70c57ef2013-05-25 22:47:10 -060018 pid_t ppid;
Ingo Molnar0ec04e12009-09-16 17:40:48 +020019 char shortname[3];
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -020020 bool comm_set;
David Ahern236a3bb2013-08-14 08:49:27 -060021 bool dead; /* if set thread has exited */
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020022 struct list_head comm_list;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020023 int comm_len;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080024
25 void *priv;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020026};
27
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020028struct machine;
Namhyung Kim4dfced32013-09-13 16:28:57 +090029struct comm;
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -030030
Adrian Hunter99d725f2013-08-26 16:00:19 +030031struct thread *thread__new(pid_t pid, pid_t tid);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030032void thread__delete(struct thread *thread);
David Ahern236a3bb2013-08-14 08:49:27 -060033static inline void thread__exited(struct thread *thread)
34{
35 thread->dead = true;
36}
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030037
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020038int thread__set_comm(struct thread *thread, const char *comm, u64 timestamp);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030039int thread__comm_len(struct thread *thread);
Namhyung Kim4dfced32013-09-13 16:28:57 +090040struct comm *thread__comm(const struct thread *thread);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +020041const char *thread__comm_str(const struct thread *thread);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030042void thread__insert_map(struct thread *thread, struct map *map);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020043int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030044size_t thread__fprintf(struct thread *thread, FILE *fp);
John Kacur8b40f522009-09-24 18:02:18 +020045
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030046static inline struct map *thread__find_map(struct thread *thread,
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020047 enum map_type type, u64 addr)
Arnaldo Carvalho de Melo1b46cdd2009-09-28 14:48:46 -030048{
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030049 return thread ? map_groups__find(&thread->mg, type, addr) : NULL;
Arnaldo Carvalho de Melo95011c62009-11-27 16:29:20 -020050}
Arnaldo Carvalho de Melo1ed091c2009-11-27 16:29:23 -020051
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020052void thread__find_addr_map(struct thread *thread, struct machine *machine,
53 u8 cpumode, enum map_type type, u64 addr,
Adrian Hunter326f59b2013-08-08 14:32:27 +030054 struct addr_location *al);
Arnaldo Carvalho de Melo59ee68e2010-01-14 23:45:29 -020055
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020056void thread__find_addr_location(struct thread *thread, struct machine *machine,
57 u8 cpumode, enum map_type type, u64 addr,
Adrian Hunter61710bd2013-08-08 14:32:26 +030058 struct addr_location *al);
David Ahernba580412013-06-07 16:22:12 -060059
60static inline void *thread__priv(struct thread *thread)
61{
62 return thread->priv;
63}
64
65static inline void thread__set_priv(struct thread *thread, void *p)
66{
67 thread->priv = p;
68}
John Kacur8b40f522009-09-24 18:02:18 +020069#endif /* __PERF_THREAD_H */