thread.h 3.1 KB

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