thread.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __PERF_THREAD_H
  3. #define __PERF_THREAD_H
  4. #include <linux/refcount.h>
  5. #include <linux/rbtree.h>
  6. #include <linux/list.h>
  7. #include <unistd.h>
  8. #include <sys/types.h>
  9. #include "symbol.h"
  10. #include <strlist.h>
  11. #include <intlist.h>
  12. #include "rwsem.h"
  13. struct thread_stack;
  14. struct unwind_libunwind_ops;
  15. struct thread {
  16. union {
  17. struct rb_node rb_node;
  18. struct list_head node;
  19. };
  20. struct map_groups *mg;
  21. pid_t pid_; /* Not all tools update this */
  22. pid_t tid;
  23. pid_t ppid;
  24. int cpu;
  25. refcount_t refcnt;
  26. bool comm_set;
  27. int comm_len;
  28. bool dead; /* if set thread has exited */
  29. struct list_head namespaces_list;
  30. struct rw_semaphore namespaces_lock;
  31. struct list_head comm_list;
  32. struct rw_semaphore comm_lock;
  33. u64 db_id;
  34. void *priv;
  35. struct thread_stack *ts;
  36. struct nsinfo *nsinfo;
  37. #ifdef HAVE_LIBUNWIND_SUPPORT
  38. void *addr_space;
  39. struct unwind_libunwind_ops *unwind_libunwind_ops;
  40. #endif
  41. };
  42. struct machine;
  43. struct namespaces;
  44. struct comm;
  45. struct thread *thread__new(pid_t pid, pid_t tid);
  46. int thread__init_map_groups(struct thread *thread, struct machine *machine);
  47. void thread__delete(struct thread *thread);
  48. struct thread *thread__get(struct thread *thread);
  49. void thread__put(struct thread *thread);
  50. static inline void __thread__zput(struct thread **thread)
  51. {
  52. thread__put(*thread);
  53. *thread = NULL;
  54. }
  55. #define thread__zput(thread) __thread__zput(&thread)
  56. static inline void thread__exited(struct thread *thread)
  57. {
  58. thread->dead = true;
  59. }
  60. struct namespaces *thread__namespaces(const struct thread *thread);
  61. int thread__set_namespaces(struct thread *thread, u64 timestamp,
  62. struct namespaces_event *event);
  63. int __thread__set_comm(struct thread *thread, const char *comm, u64 timestamp,
  64. bool exec);
  65. static inline int thread__set_comm(struct thread *thread, const char *comm,
  66. u64 timestamp)
  67. {
  68. return __thread__set_comm(thread, comm, timestamp, false);
  69. }
  70. int thread__set_comm_from_proc(struct thread *thread);
  71. int thread__comm_len(struct thread *thread);
  72. struct comm *thread__comm(const struct thread *thread);
  73. struct comm *thread__exec_comm(const struct thread *thread);
  74. const char *thread__comm_str(const struct thread *thread);
  75. int thread__insert_map(struct thread *thread, struct map *map);
  76. int thread__fork(struct thread *thread, struct thread *parent, u64 timestamp);
  77. size_t thread__fprintf(struct thread *thread, FILE *fp);
  78. struct thread *thread__main_thread(struct machine *machine, struct thread *thread);
  79. void __thread__find_map(struct thread *thread, u8 cpumode, enum map_type type,
  80. u64 addr, struct addr_location *al);
  81. static inline void thread__find_map(struct thread *thread, u8 cpumode,
  82. u64 addr, struct addr_location *al)
  83. {
  84. __thread__find_map(thread, cpumode, MAP__FUNCTION, addr, al);
  85. }
  86. void __thread__find_symbol(struct thread *thread, u8 cpumode, enum map_type type,
  87. u64 addr, struct addr_location *al);
  88. static inline void thread__find_symbol(struct thread *thread, u8 cpumode,
  89. u64 addr, struct addr_location *al)
  90. {
  91. return __thread__find_symbol(thread, cpumode, MAP__FUNCTION, addr, al);
  92. }
  93. void thread__find_cpumode_addr_location(struct thread *thread,
  94. enum map_type type, u64 addr,
  95. struct addr_location *al);
  96. static inline void *thread__priv(struct thread *thread)
  97. {
  98. return thread->priv;
  99. }
  100. static inline void thread__set_priv(struct thread *thread, void *p)
  101. {
  102. thread->priv = p;
  103. }
  104. static inline bool thread__is_filtered(struct thread *thread)
  105. {
  106. if (symbol_conf.comm_list &&
  107. !strlist__has_entry(symbol_conf.comm_list, thread__comm_str(thread))) {
  108. return true;
  109. }
  110. if (symbol_conf.pid_list &&
  111. !intlist__has_entry(symbol_conf.pid_list, thread->pid_)) {
  112. return true;
  113. }
  114. if (symbol_conf.tid_list &&
  115. !intlist__has_entry(symbol_conf.tid_list, thread->tid)) {
  116. return true;
  117. }
  118. return false;
  119. }
  120. #endif /* __PERF_THREAD_H */