metadata 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /* CTF 1.8 */
  2. typealias integer { size = 8; align = 8; signed = true; } := int8_t;
  3. typealias integer { size = 8; align = 8; signed = false; } := uint8_t;
  4. typealias integer { size = 16; align = 8; signed = false; } := uint16_t;
  5. typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
  6. typealias integer { size = 32; align = 8; signed = true; } := int32_t;
  7. typealias integer { size = 64; align = 8; signed = false; } := uint64_t;
  8. typealias integer { size = 8; align = 8; signed = false; encoding = ASCII; } := ctf_bounded_string_t;
  9. typealias enum : uint32_t {
  10. MUTEX_INIT = 33,
  11. MUTEX_UNLOCK = 34,
  12. MUTEX_LOCK = 35,
  13. SEMA_INIT = 36,
  14. SEMA_GIVE = 37,
  15. SEMA_TAKE = 38,
  16. SLEEP = 39
  17. } := call_id;
  18. struct event_header {
  19. uint32_t timestamp;
  20. uint8_t id;
  21. };
  22. trace {
  23. major = 1;
  24. minor = 8;
  25. byte_order = le;
  26. };
  27. stream {
  28. event.header := struct event_header;
  29. };
  30. event {
  31. name = thread_switched_out;
  32. id = 0x10;
  33. fields := struct {
  34. uint32_t thread_id;
  35. ctf_bounded_string_t name[20];
  36. };
  37. };
  38. event {
  39. name = thread_switched_in;
  40. id = 0x11;
  41. fields := struct {
  42. uint32_t thread_id;
  43. ctf_bounded_string_t name[20];
  44. };
  45. };
  46. event {
  47. name = thread_priority_set;
  48. id = 0x12;
  49. fields := struct {
  50. uint32_t thread_id;
  51. ctf_bounded_string_t name[20];
  52. int8_t prio;
  53. };
  54. };
  55. event {
  56. name = thread_create;
  57. id = 0x13;
  58. fields := struct {
  59. uint32_t thread_id;
  60. ctf_bounded_string_t name[20];
  61. };
  62. };
  63. event {
  64. name = thread_abort;
  65. id = 0x14;
  66. fields := struct {
  67. uint32_t thread_id;
  68. ctf_bounded_string_t name[20];
  69. };
  70. };
  71. event {
  72. name = thread_suspend;
  73. id = 0x15;
  74. fields := struct {
  75. uint32_t thread_id;
  76. ctf_bounded_string_t name[20];
  77. };
  78. };
  79. event {
  80. name = thread_resume;
  81. id = 0x16;
  82. fields := struct {
  83. uint32_t thread_id;
  84. ctf_bounded_string_t name[20];
  85. };
  86. };
  87. event {
  88. name = thread_ready;
  89. id = 0x17;
  90. fields := struct {
  91. uint32_t thread_id;
  92. ctf_bounded_string_t name[20];
  93. };
  94. };
  95. event {
  96. name = thread_pending;
  97. id = 0x18;
  98. fields := struct {
  99. uint32_t thread_id;
  100. ctf_bounded_string_t name[20];
  101. };
  102. };
  103. event {
  104. name = thread_info;
  105. id = 0x19;
  106. fields := struct {
  107. uint32_t thread_id;
  108. ctf_bounded_string_t name[20];
  109. uint32_t stack_base;
  110. uint32_t stack_size;
  111. };
  112. };
  113. event {
  114. name = thread_name_set;
  115. id = 0x1a;
  116. fields := struct {
  117. uint32_t thread_id;
  118. ctf_bounded_string_t name[20];
  119. };
  120. };
  121. event {
  122. name = isr_enter;
  123. id = 0x1B;
  124. };
  125. event {
  126. name = isr_exit;
  127. id = 0x1C;
  128. };
  129. event {
  130. name = isr_exit_to_scheduler;
  131. id = 0x1D;
  132. };
  133. event {
  134. name = idle;
  135. id = 0x1E;
  136. };
  137. event {
  138. name = start_call;
  139. id = 0x1F;
  140. fields := struct {
  141. call_id id;
  142. };
  143. };
  144. event {
  145. name = end_call;
  146. id = 0x20;
  147. fields := struct {
  148. call_id id;
  149. };
  150. };
  151. event {
  152. name = semaphore_init;
  153. id = 0x21;
  154. fields := struct {
  155. uint32_t id;
  156. int32_t ret;
  157. };
  158. };
  159. event {
  160. name = semaphore_give_enter;
  161. id = 0x22;
  162. fields := struct {
  163. uint32_t id;
  164. };
  165. };
  166. event {
  167. name = semaphore_give_exit;
  168. id = 0x23;
  169. fields := struct {
  170. uint32_t id;
  171. };
  172. };
  173. event {
  174. name = semaphore_take_enter;
  175. id = 0x24;
  176. fields := struct {
  177. uint32_t id;
  178. uint32_t timeout;
  179. };
  180. };
  181. event {
  182. name = semaphore_take_exit;
  183. id = 0x26;
  184. fields := struct {
  185. uint32_t id;
  186. uint32_t timeout;
  187. int32_t ret;
  188. };
  189. };
  190. event {
  191. name = semaphore_take_blocking;
  192. id = 0x25;
  193. fields := struct {
  194. uint32_t id;
  195. uint32_t timeout;
  196. };
  197. };
  198. event {
  199. name = semaphore_reset;
  200. id = 0x27;
  201. fields := struct {
  202. uint32_t id;
  203. };
  204. };
  205. event {
  206. name = mutex_init;
  207. id = 0x28;
  208. fields := struct {
  209. uint32_t id;
  210. int32_t ret;
  211. };
  212. };
  213. event {
  214. name = mutex_lock_enter;
  215. id = 0x29;
  216. fields := struct {
  217. uint32_t id;
  218. uint32_t timeout;
  219. };
  220. };
  221. event {
  222. name = mutex_lock_blocking;
  223. id = 0x2A;
  224. fields := struct {
  225. uint32_t id;
  226. uint32_t timeout;
  227. };
  228. };
  229. event {
  230. name = mutex_lock_exit;
  231. id = 0x2B;
  232. fields := struct {
  233. uint32_t id;
  234. uint32_t timeout;
  235. int32_t ret;
  236. };
  237. };
  238. event {
  239. name = mutex_unlock_enter;
  240. id = 0x2C;
  241. fields := struct {
  242. uint32_t id;
  243. };
  244. };
  245. event {
  246. name = mutex_unlock_exit;
  247. id = 0x2D;
  248. fields := struct {
  249. uint32_t id;
  250. };
  251. };