perf tools: Add pid/tid filtering to report and script commands
[deliverable/linux.git] / tools / perf / util / thread.h
CommitLineData
8b40f521
JK
1#ifndef __PERF_THREAD_H
2#define __PERF_THREAD_H
3
6baa0a5a 4#include <linux/rbtree.h>
1902efe7 5#include <linux/list.h>
6baa0a5a 6#include <unistd.h>
9d2f8e22 7#include <sys/types.h>
6baa0a5a 8#include "symbol.h"
1f3878c1 9#include <strlist.h>
e03eaa40 10#include <intlist.h>
6baa0a5a 11
00447ccd
AH
12struct thread_stack;
13
9958e1f0 14struct thread {
720a3aeb
ACM
15 union {
16 struct rb_node rb_node;
17 struct list_head node;
18 };
93d5731d 19 struct map_groups *mg;
99d725fc 20 pid_t pid_; /* Not all tools update this */
38051234 21 pid_t tid;
70c57efb 22 pid_t ppid;
bf49c35f 23 int cpu;
f3b623b8 24 int refcnt;
0ec04e16 25 char shortname[3];
faa5c5c3 26 bool comm_set;
236a3bbd 27 bool dead; /* if set thread has exited */
1902efe7 28 struct list_head comm_list;
a4fb581b 29 int comm_len;
0db15b1e 30 u64 db_id;
bcf6edcd
XG
31
32 void *priv;
00447ccd 33 struct thread_stack *ts;
6baa0a5a
FW
34};
35
743eb868 36struct machine;
4dfced35 37struct comm;
4b8cf846 38
99d725fc 39struct thread *thread__new(pid_t pid, pid_t tid);
cddcef60 40int thread__init_map_groups(struct thread *thread, struct machine *machine);
316c7136 41void thread__delete(struct thread *thread);
f3b623b8
ACM
42
43struct thread *thread__get(struct thread *thread);
44void thread__put(struct thread *thread);
45
46static inline void __thread__zput(struct thread **thread)
47{
48 thread__put(*thread);
49 *thread = NULL;
50}
51
52#define thread__zput(thread) __thread__zput(&thread)
53
236a3bbd
DA
54static inline void thread__exited(struct thread *thread)
55{
56 thread->dead = true;
57}
591765fd 58
65de51f9
AH
59int __thread__set_comm(struct thread *thread, const char *comm, u64 timestamp,
60 bool exec);
61static inline int thread__set_comm(struct thread *thread, const char *comm,
62 u64 timestamp)
63{
64 return __thread__set_comm(thread, comm, timestamp, false);
65}
66
316c7136 67int thread__comm_len(struct thread *thread);
4dfced35 68struct comm *thread__comm(const struct thread *thread);
65de51f9 69struct comm *thread__exec_comm(const struct thread *thread);
b9c5143a 70const char *thread__comm_str(const struct thread *thread);
316c7136 71void thread__insert_map(struct thread *thread, struct map *map);
162f0bef 72int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
3f067dca 73size_t thread__fprintf(struct thread *thread, FILE *fp);
8b40f521 74
bb871a9c 75void thread__find_addr_map(struct thread *thread,
743eb868 76 u8 cpumode, enum map_type type, u64 addr,
326f59bf 77 struct addr_location *al);
59ee68ec 78
bb871a9c 79void thread__find_addr_location(struct thread *thread,
743eb868 80 u8 cpumode, enum map_type type, u64 addr,
61710bde 81 struct addr_location *al);
ba58041a 82
52a3cb8c 83void thread__find_cpumode_addr_location(struct thread *thread,
52a3cb8c
ACM
84 enum map_type type, u64 addr,
85 struct addr_location *al);
86
ba58041a
DA
87static inline void *thread__priv(struct thread *thread)
88{
89 return thread->priv;
90}
91
92static inline void thread__set_priv(struct thread *thread, void *p)
93{
94 thread->priv = p;
95}
1f3878c1
DA
96
97static inline bool thread__is_filtered(struct thread *thread)
98{
99 if (symbol_conf.comm_list &&
100 !strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {
101 return true;
102 }
103
e03eaa40
DA
104 if (symbol_conf.pid_list &&
105 !intlist__has_entry(symbol_conf.pid_list, thread->pid_)) {
106 return true;
107 }
108
109 if (symbol_conf.tid_list &&
110 !intlist__has_entry(symbol_conf.tid_list, thread->tid)) {
111 return true;
112 }
113
1f3878c1
DA
114 return false;
115}
116
8b40f521 117#endif /* __PERF_THREAD_H */
This page took 0.254843 seconds and 5 git commands to generate.