blob: 160fd066a7d1efe7a45a9bcfb8012bf0bccfc777 [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"
David Ahern1f3878c2013-11-18 13:32:47 -07009#include <strlist.h>
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020010
Adrian Hunter00447cc2014-10-30 16:09:42 +020011struct thread_stack;
12
Arnaldo Carvalho de Melo9958e1f2009-12-11 14:50:36 -020013struct thread {
Arnaldo Carvalho de Melo720a3ae2010-06-17 08:37:44 -030014 union {
15 struct rb_node rb_node;
16 struct list_head node;
17 };
Arnaldo Carvalho de Melo93d57312014-03-21 17:57:01 -030018 struct map_groups *mg;
Adrian Hunter99d725f2013-08-26 16:00:19 +030019 pid_t pid_; /* Not all tools update this */
Adrian Hunter38051232013-07-04 16:20:31 +030020 pid_t tid;
David Ahern70c57ef2013-05-25 22:47:10 -060021 pid_t ppid;
Adrian Hunterbf49c352014-07-22 16:17:24 +030022 int cpu;
Ingo Molnar0ec04e12009-09-16 17:40:48 +020023 char shortname[3];
Arnaldo Carvalho de Melofaa5c5c2010-02-19 23:02:07 -020024 bool comm_set;
David Ahern236a3bb2013-08-14 08:49:27 -060025 bool dead; /* if set thread has exited */
Frederic Weisbecker1902efe2013-09-11 16:56:44 +020026 struct list_head comm_list;
Frederic Weisbeckera4fb5812009-10-22 23:23:23 +020027 int comm_len;
Adrian Hunter0db15b12014-10-23 13:45:13 +030028 u64 db_id;
Xiao Guangrongbcf6edc2012-09-17 16:31:15 +080029
30 void *priv;
Adrian Hunter00447cc2014-10-30 16:09:42 +020031 struct thread_stack *ts;
Frederic Weisbecker6baa0a52009-08-14 12:21:53 +020032};
33
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020034struct machine;
Namhyung Kim4dfced32013-09-13 16:28:57 +090035struct comm;
Arnaldo Carvalho de Melo4b8cf842010-03-25 19:58:58 -030036
Adrian Hunter99d725f2013-08-26 16:00:19 +030037struct thread *thread__new(pid_t pid, pid_t tid);
Jiri Olsacddcef62014-04-09 20:54:29 +020038int thread__init_map_groups(struct thread *thread, struct machine *machine);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030039void thread__delete(struct thread *thread);
David Ahern236a3bb2013-08-14 08:49:27 -060040static inline void thread__exited(struct thread *thread)
41{
42 thread->dead = true;
43}
Arnaldo Carvalho de Melo591765f2010-07-30 18:28:42 -030044
Adrian Hunter65de51f2014-07-31 09:00:44 +030045int __thread__set_comm(struct thread *thread, const char *comm, u64 timestamp,
46 bool exec);
47static inline int thread__set_comm(struct thread *thread, const char *comm,
48 u64 timestamp)
49{
50 return __thread__set_comm(thread, comm, timestamp, false);
51}
52
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030053int thread__comm_len(struct thread *thread);
Namhyung Kim4dfced32013-09-13 16:28:57 +090054struct comm *thread__comm(const struct thread *thread);
Adrian Hunter65de51f2014-07-31 09:00:44 +030055struct comm *thread__exec_comm(const struct thread *thread);
Frederic Weisbeckerb9c51432013-09-11 14:46:56 +020056const char *thread__comm_str(const struct thread *thread);
Arnaldo Carvalho de Melo316c7132013-11-05 15:32:36 -030057void thread__insert_map(struct thread *thread, struct map *map);
Frederic Weisbecker162f0be2013-09-11 16:18:24 +020058int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
Arnaldo Carvalho de Melo3f067dc2012-12-07 17:39:39 -030059size_t thread__fprintf(struct thread *thread, FILE *fp);
John Kacur8b40f522009-09-24 18:02:18 +020060
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -030061void thread__find_addr_map(struct thread *thread,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020062 u8 cpumode, enum map_type type, u64 addr,
Adrian Hunter326f59b2013-08-08 14:32:27 +030063 struct addr_location *al);
Arnaldo Carvalho de Melo59ee68e2010-01-14 23:45:29 -020064
Arnaldo Carvalho de Melobb871a92014-10-23 12:50:25 -030065void thread__find_addr_location(struct thread *thread,
Arnaldo Carvalho de Melo743eb862011-11-28 07:56:39 -020066 u8 cpumode, enum map_type type, u64 addr,
Adrian Hunter61710bd2013-08-08 14:32:26 +030067 struct addr_location *al);
David Ahernba580412013-06-07 16:22:12 -060068
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -030069void thread__find_cpumode_addr_location(struct thread *thread,
Arnaldo Carvalho de Melo52a3cb82014-03-11 16:16:49 -030070 enum map_type type, u64 addr,
71 struct addr_location *al);
72
David Ahernba580412013-06-07 16:22:12 -060073static inline void *thread__priv(struct thread *thread)
74{
75 return thread->priv;
76}
77
78static inline void thread__set_priv(struct thread *thread, void *p)
79{
80 thread->priv = p;
81}
David Ahern1f3878c2013-11-18 13:32:47 -070082
83static inline bool thread__is_filtered(struct thread *thread)
84{
85 if (symbol_conf.comm_list &&
86 !strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {
87 return true;
88 }
89
90 return false;
91}
92
John Kacur8b40f522009-09-24 18:02:18 +020093#endif /* __PERF_THREAD_H */