tracing_macros.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TRACING_TRACING_MACROS_H_
  7. #define ZEPHYR_INCLUDE_TRACING_TRACING_MACROS_H_
  8. #ifndef CONFIG_TRACING
  9. #define SYS_PORT_TRACING_FUNC(type, func, ...) do { } while (false)
  10. #define SYS_PORT_TRACING_FUNC_ENTER(type, func, ...) do { } while (false)
  11. #define SYS_PORT_TRACING_FUNC_BLOCKING(type, func, ...) do { } while (false)
  12. #define SYS_PORT_TRACING_FUNC_EXIT(type, func, ...) do { } while (false)
  13. #define SYS_PORT_TRACING_OBJ_INIT(obj_type, obj, ...) do { } while (false)
  14. #define SYS_PORT_TRACING_OBJ_FUNC(obj_type, func, obj, ...) do { } while (false)
  15. #define SYS_PORT_TRACING_OBJ_FUNC_ENTER(obj_type, func, obj, ...) do { } while (false)
  16. #define SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(obj_type, func, obj, ...) do { } while (false)
  17. #define SYS_PORT_TRACING_OBJ_FUNC_EXIT(obj_type, func, obj, ...) do { } while (false)
  18. #else
  19. /* Helper macros used by the extended tracing system
  20. */
  21. #define _SYS_PORT_TRACING_TYPE_MASK(type) \
  22. sys_port_trace_type_mask_ ## type
  23. #define _SYS_PORT_TRACING_FUNC(name, func) \
  24. sys_port_trace_ ## name ## _ ## func
  25. #define _SYS_PORT_TRACING_FUNC_ENTER(name, func) \
  26. sys_port_trace_ ## name ## _ ## func ## _enter
  27. #define _SYS_PORT_TRACING_FUNC_BLOCKING(name, func) \
  28. sys_port_trace_ ## name ## _ ## func ## _blocking
  29. #define _SYS_PORT_TRACING_FUNC_EXIT(name, func) \
  30. sys_port_trace_ ## name ## _ ## func ## _exit
  31. #define _SYS_PORT_TRACING_OBJ_INIT(name) \
  32. sys_port_trace_ ## name ## _init
  33. #define _SYS_PORT_TRACING_OBJ_FUNC(name, func) \
  34. sys_port_trace_ ## name ## _ ## func
  35. #define _SYS_PORT_TRACING_OBJ_FUNC_ENTER(name, func) \
  36. sys_port_trace_ ## name ## _ ## func ## _enter
  37. #define _SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(name, func) \
  38. sys_port_trace_ ## name ## _ ## func ## _blocking
  39. #define _SYS_PORT_TRACING_OBJ_FUNC_EXIT(name, func) \
  40. sys_port_trace_ ## name ## _ ## func ## _exit
  41. /* Object trace macros part of the system for checking if certain
  42. * objects should be traced or not depending on the tracing configuration.
  43. */
  44. #if defined(CONFIG_TRACING_THREAD)
  45. #define sys_port_trace_type_mask_k_thread(trace_call) trace_call
  46. #else
  47. #define sys_port_trace_type_mask_k_thread(trace_call)
  48. #endif
  49. #if defined(CONFIG_TRACING_WORK)
  50. #define sys_port_trace_type_mask_k_work(trace_call) trace_call
  51. #define sys_port_trace_type_mask_k_work_queue(trace_call) trace_call
  52. #define sys_port_trace_type_mask_k_work_delayable(trace_call) trace_call
  53. #define sys_port_trace_type_mask_k_work_poll(trace_call) trace_call
  54. #else
  55. #define sys_port_trace_type_mask_k_work(trace_call)
  56. #define sys_port_trace_type_mask_k_work_queue(trace_call)
  57. #define sys_port_trace_type_mask_k_work_delayable(trace_call)
  58. #define sys_port_trace_type_mask_k_work_poll(trace_call)
  59. #endif
  60. #if defined(CONFIG_TRACING_SEMAPHORE)
  61. #define sys_port_trace_type_mask_k_sem(trace_call) trace_call
  62. #else
  63. #define sys_port_trace_type_mask_k_sem(trace_call)
  64. #endif
  65. #if defined(CONFIG_TRACING_MUTEX)
  66. #define sys_port_trace_type_mask_k_mutex(trace_call) trace_call
  67. #else
  68. #define sys_port_trace_type_mask_k_mutex(trace_call)
  69. #endif
  70. #if defined(CONFIG_TRACING_CONDVAR)
  71. #define sys_port_trace_type_mask_k_condvar(trace_call) trace_call
  72. #else
  73. #define sys_port_trace_type_mask_k_condvar(trace_call)
  74. #endif
  75. #if defined(CONFIG_TRACING_QUEUE)
  76. #define sys_port_trace_type_mask_k_queue(trace_call) trace_call
  77. #else
  78. #define sys_port_trace_type_mask_k_queue(trace_call)
  79. #endif
  80. #if defined(CONFIG_TRACING_FIFO)
  81. #define sys_port_trace_type_mask_k_fifo(trace_call) trace_call
  82. #else
  83. #define sys_port_trace_type_mask_k_fifo(trace_call)
  84. #endif
  85. #if defined(CONFIG_TRACING_LIFO)
  86. #define sys_port_trace_type_mask_k_lifo(trace_call) trace_call
  87. #else
  88. #define sys_port_trace_type_mask_k_lifo(trace_call)
  89. #endif
  90. #if defined(CONFIG_TRACING_STACK)
  91. #define sys_port_trace_type_mask_k_stack(trace_call) trace_call
  92. #else
  93. #define sys_port_trace_type_mask_k_stack(trace_call)
  94. #endif
  95. #if defined(CONFIG_TRACING_MESSAGE_QUEUE)
  96. #define sys_port_trace_type_mask_k_msgq(trace_call) trace_call
  97. #else
  98. #define sys_port_trace_type_mask_k_msgq(trace_call)
  99. #endif
  100. #if defined(CONFIG_TRACING_MAILBOX)
  101. #define sys_port_trace_type_mask_k_mbox(trace_call) trace_call
  102. #else
  103. #define sys_port_trace_type_mask_k_mbox(trace_call)
  104. #endif
  105. #if defined(CONFIG_TRACING_PIPE)
  106. #define sys_port_trace_type_mask_k_pipe(trace_call) trace_call
  107. #else
  108. #define sys_port_trace_type_mask_k_pipe(trace_call)
  109. #endif
  110. #if defined(CONFIG_TRACING_HEAP)
  111. #define sys_port_trace_type_mask_k_heap(trace_call) trace_call
  112. #define sys_port_trace_type_mask_k_heap_sys(trace_call) trace_call
  113. #else
  114. #define sys_port_trace_type_mask_k_heap(trace_call)
  115. #define sys_port_trace_type_mask_k_heap_sys(trace_call)
  116. #endif
  117. #if defined(CONFIG_TRACING_MEMORY_SLAB)
  118. #define sys_port_trace_type_mask_k_mem_slab(trace_call) trace_call
  119. #else
  120. #define sys_port_trace_type_mask_k_mem_slab(trace_call)
  121. #endif
  122. #if defined(CONFIG_TRACING_TIMER)
  123. #define sys_port_trace_type_mask_k_timer(trace_call) trace_call
  124. #else
  125. #define sys_port_trace_type_mask_k_timer(trace_call)
  126. #endif
  127. /**
  128. * @def SYS_PORT_TRACING_OBJ_MASK
  129. *
  130. * @brief Checks if an object type should be traced or not.
  131. *
  132. * @param type Tracing event type/object
  133. * @param trace_call Tracing call
  134. */
  135. #define SYS_PORT_TRACING_TYPE_MASK(type, trace_call) \
  136. _SYS_PORT_TRACING_TYPE_MASK(type)(trace_call)
  137. /**
  138. * @def SYS_PORT_TRACING_FUNC
  139. *
  140. * @brief Tracing macro for function calls which are not directly
  141. * associated with a specific type of object.
  142. *
  143. * @param type Type of tracing event or object type
  144. * @param func Name of the function responsible for the call. This does not need to exactly
  145. * match the name of the function but should rather match what the user called in case of
  146. * system calls etc. That is, we can often omit the z_vrfy/z_impl part of the name.
  147. * @param ... Additional parameters relevant to the tracing call
  148. */
  149. #define SYS_PORT_TRACING_FUNC(type, func, ...) \
  150. do { \
  151. _SYS_PORT_TRACING_FUNC(type, func)(__VA_ARGS__); \
  152. } while (false)
  153. /**
  154. * @def SYS_PORT_TRACING_FUNC_ENTER
  155. *
  156. * @brief Tracing macro for the entry into a function that might or might not return
  157. * a value.
  158. *
  159. * @param type Type of tracing event or object type
  160. * @param func Name of the function responsible for the call. This does not need to exactly
  161. * match the name of the function but should rather match what the user called in case of
  162. * system calls etc. That is, we can often omit the z_vrfy/z_impl part of the name.
  163. * @param ... Additional parameters relevant to the tracing call
  164. */
  165. #define SYS_PORT_TRACING_FUNC_ENTER(type, func, ...) \
  166. do { \
  167. _SYS_PORT_TRACING_FUNC_ENTER(type, func)(__VA_ARGS__); \
  168. } while (false)
  169. /**
  170. * @def SYS_PORT_TRACING_FUNC_BLOCKING
  171. *
  172. * @brief Tracing macro for when a function blocks during its execution.
  173. *
  174. * @param type Type of tracing event or object type
  175. * @param func Name of the function responsible for the call. This does not need to exactly
  176. * match the name of the function but should rather match what the user called in case of
  177. * system calls etc. That is, we can often omit the z_vrfy/z_impl part of the name.
  178. * @param ... Additional parameters relevant to the tracing call
  179. */
  180. #define SYS_PORT_TRACING_FUNC_BLOCKING(type, func, ...) \
  181. do { \
  182. _SYS_PORT_TRACING_FUNC_BLOCKING(type, func)(__VA_ARGS__); \
  183. } while (false)
  184. /**
  185. * @def SYS_PORT_TRACING_FUNC_EXIT
  186. *
  187. * @brief Tracing macro for when a function ends its execution. Potential return values
  188. * can be given as additional arguments.
  189. *
  190. * @param type Type of tracing event or object type
  191. * @param func Name of the function responsible for the call. This does not need to exactly
  192. * match the name of the function but should rather match what the user called in case of
  193. * system calls etc. That is, we can often omit the z_vrfy/z_impl part of the name.
  194. * @param ... Additional parameters relevant to the tracing call
  195. */
  196. #define SYS_PORT_TRACING_FUNC_EXIT(type, func, ...) \
  197. do { \
  198. _SYS_PORT_TRACING_FUNC_EXIT(type, func)(__VA_ARGS__); \
  199. } while (false)
  200. /**
  201. * @def SYS_PORT_TRACING_OBJ_INIT
  202. *
  203. * @brief Tracing macro for the initialization of an object.
  204. *
  205. * @param obj_type The type of object associated with the call (k_thread, k_sem, k_mutex etc.)
  206. * @param obj Object
  207. */
  208. #define SYS_PORT_TRACING_OBJ_INIT(obj_type, obj, ...) \
  209. do { \
  210. SYS_PORT_TRACING_TYPE_MASK(obj_type, \
  211. _SYS_PORT_TRACING_OBJ_INIT(obj_type)(obj, ##__VA_ARGS__)); \
  212. } while (false)
  213. /**
  214. * @def SYS_PORT_TRACING_OBJ_FUNC
  215. *
  216. * @brief Tracing macro for simple object function calls often without returns or branching.
  217. *
  218. * @param obj_type The type of object associated with the call (k_thread, k_sem, k_mutex etc.)
  219. * @param func Name of the function responsible for the call. This does not need to exactly
  220. * match the name of the function but should rather match what the user called in case of
  221. * system calls etc. That is, we can often omit the z_vrfy/z_impl part of the name.
  222. * @param obj Object
  223. * @param ... Additional parameters relevant to the tracing call
  224. */
  225. #define SYS_PORT_TRACING_OBJ_FUNC(obj_type, func, obj, ...) \
  226. do { \
  227. SYS_PORT_TRACING_TYPE_MASK(obj_type, \
  228. _SYS_PORT_TRACING_OBJ_FUNC(obj_type, func)(obj, ##__VA_ARGS__)); \
  229. } while (false)
  230. /**
  231. * @def SYS_PORT_TRACING_OBJ_FUNC_ENTER
  232. *
  233. * @brief Tracing macro for the entry into a function that might or might not return
  234. * a value.
  235. *
  236. * @param obj_type The type of object associated with the call (k_thread, k_sem, k_mutex etc.)
  237. * @param func Name of the function responsible for the call. This does not need to exactly
  238. * match the name of the function but should rather match what the user called in case of
  239. * system calls etc. That is, we can often omit the z_vrfy/z_impl part of the name.
  240. * @param obj Object
  241. * @param ... Additional parameters relevant to the tracing call
  242. */
  243. #define SYS_PORT_TRACING_OBJ_FUNC_ENTER(obj_type, func, obj, ...) \
  244. do { \
  245. SYS_PORT_TRACING_TYPE_MASK(obj_type, \
  246. _SYS_PORT_TRACING_OBJ_FUNC_ENTER(obj_type, func)(obj, ##__VA_ARGS__)); \
  247. } while (false)
  248. /**
  249. * @def SYS_PORT_TRACING_OBJ_FUNC_BLOCKING
  250. *
  251. * @brief Tracing macro for when a function blocks during its execution.
  252. *
  253. * @param obj_type The type of object associated with the call (k_thread, k_sem, k_mutex etc.)
  254. * @param func Name of the function responsible for the call. This does not need to exactly
  255. * match the name of the function but should rather match what the user called in case of
  256. * system calls etc. That is, we can often omit the z_vrfy/z_impl part of the name.
  257. * @param obj Object
  258. * @param ... Additional parameters relevant to the tracing call
  259. */
  260. #define SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(obj_type, func, obj, timeout, ...) \
  261. do { \
  262. SYS_PORT_TRACING_TYPE_MASK(obj_type, \
  263. _SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(obj_type, func) \
  264. (obj, timeout, ##__VA_ARGS__)); \
  265. } while (false)
  266. /**
  267. * @def SYS_PORT_TRACING_OBJ_FUNC_EXIT
  268. *
  269. * @brief Tracing macro for when a function ends its execution. Potential return values
  270. * can be given as additional arguments.
  271. *
  272. * @param obj_type The type of object associated with the call (k_thread, k_sem, k_mutex etc.)
  273. * @param func Name of the function responsible for the call. This does not need to exactly
  274. * match the name of the function but should rather match what the user called in case of
  275. * system calls etc. That is, we can often omit the z_vrfy/z_impl part of the name.
  276. * @param obj Object
  277. * @param ... Additional parameters relevant to the tracing call
  278. */
  279. #define SYS_PORT_TRACING_OBJ_FUNC_EXIT(obj_type, func, obj, ...) \
  280. do { \
  281. SYS_PORT_TRACING_TYPE_MASK(obj_type, \
  282. _SYS_PORT_TRACING_OBJ_FUNC_EXIT(obj_type, func)(obj, ##__VA_ARGS__)); \
  283. } while (false)
  284. #endif /* CONFIG_TRACING */
  285. #endif