thread.h 2.8 KB

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