Merge tag 'spi-v3.14-2' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
[deliverable/linux.git] / include / trace / ftrace.h
CommitLineData
f42c85e7
SR
1/*
2 * Stage 1 of the trace events.
3 *
4 * Override the macros in <trace/trace_events.h> to include the following:
5 *
6 * struct ftrace_raw_<call> {
7 * struct trace_entry ent;
8 * <type> <item>;
9 * <type2> <item2>[<len>];
10 * [...]
11 * };
12 *
13 * The <type> <item> is created by the __field(type, item) macro or
14 * the __array(type2, item2, len) macro.
15 * We simply do "type item;", and that will create the fields
16 * in the structure.
17 */
18
19#include <linux/ftrace_event.h>
20
ff038f5c 21/*
091ad365 22 * DECLARE_EVENT_CLASS can be used to add a generic function
ff038f5c
SR
23 * handlers for events. That is, if all events have the same
24 * parameters and just have distinct trace points.
25 * Each tracepoint can be defined with DEFINE_EVENT and that
091ad365 26 * will map the DECLARE_EVENT_CLASS to the tracepoint.
ff038f5c
SR
27 *
28 * TRACE_EVENT is a one to one mapping between tracepoint and template.
29 */
30#undef TRACE_EVENT
31#define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
091ad365 32 DECLARE_EVENT_CLASS(name, \
ff038f5c
SR
33 PARAMS(proto), \
34 PARAMS(args), \
35 PARAMS(tstruct), \
36 PARAMS(assign), \
37 PARAMS(print)); \
38 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args));
39
40
7fcb7c47
LZ
41#undef __field
42#define __field(type, item) type item;
43
43b51ead
LZ
44#undef __field_ext
45#define __field_ext(type, item, filter_type) type item;
46
f42c85e7
SR
47#undef __array
48#define __array(type, item, len) type item[len];
49
7fcb7c47 50#undef __dynamic_array
7d536cb3 51#define __dynamic_array(type, item, len) u32 __data_loc_##item;
f42c85e7 52
9cbf1176 53#undef __string
7fcb7c47 54#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176 55
f42c85e7
SR
56#undef TP_STRUCT__entry
57#define TP_STRUCT__entry(args...) args
58
091ad365
IM
59#undef DECLARE_EVENT_CLASS
60#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
ff038f5c
SR
61 struct ftrace_raw_##name { \
62 struct trace_entry ent; \
63 tstruct \
64 char __data[0]; \
8f082018
SR
65 }; \
66 \
67 static struct ftrace_event_class event_class_##name;
68
ff038f5c
SR
69#undef DEFINE_EVENT
70#define DEFINE_EVENT(template, name, proto, args) \
49c17746 71 static struct ftrace_event_call __used \
86c38a31 72 __attribute__((__aligned__(4))) event_##name
f42c85e7 73
f5abaa1b
SR
74#undef DEFINE_EVENT_FN
75#define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \
76 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
77
e5bc9721
SR
78#undef DEFINE_EVENT_PRINT
79#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
80 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
81
97419875
JS
82/* Callbacks are meaningless to ftrace. */
83#undef TRACE_EVENT_FN
0dd7b747
FW
84#define TRACE_EVENT_FN(name, proto, args, tstruct, \
85 assign, print, reg, unreg) \
819ce45a
FW
86 TRACE_EVENT(name, PARAMS(proto), PARAMS(args), \
87 PARAMS(tstruct), PARAMS(assign), PARAMS(print)) \
97419875 88
1ed0c597
FW
89#undef TRACE_EVENT_FLAGS
90#define TRACE_EVENT_FLAGS(name, value) \
53cf810b 91 __TRACE_EVENT_FLAGS(name, value)
1ed0c597 92
d5b5f391
PZ
93#undef TRACE_EVENT_PERF_PERM
94#define TRACE_EVENT_PERF_PERM(name, expr...) \
95 __TRACE_EVENT_PERF_PERM(name, expr)
96
f42c85e7
SR
97#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
98
9cbf1176 99
f42c85e7
SR
100/*
101 * Stage 2 of the trace events.
102 *
9cbf1176
FW
103 * Include the following:
104 *
7fcb7c47 105 * struct ftrace_data_offsets_<call> {
7d536cb3
LZ
106 * u32 <item1>;
107 * u32 <item2>;
9cbf1176
FW
108 * [...]
109 * };
110 *
7d536cb3 111 * The __dynamic_array() macro will create each u32 <item>, this is
7fcb7c47 112 * to keep the offset of each array from the beginning of the event.
7d536cb3 113 * The size of an array is also encoded, in the higher 16 bits of <item>.
9cbf1176
FW
114 */
115
7fcb7c47 116#undef __field
43b51ead
LZ
117#define __field(type, item)
118
119#undef __field_ext
120#define __field_ext(type, item, filter_type)
7fcb7c47 121
9cbf1176
FW
122#undef __array
123#define __array(type, item, len)
124
7fcb7c47 125#undef __dynamic_array
7d536cb3 126#define __dynamic_array(type, item, len) u32 item;
9cbf1176
FW
127
128#undef __string
7fcb7c47 129#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176 130
091ad365
IM
131#undef DECLARE_EVENT_CLASS
132#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
7fcb7c47 133 struct ftrace_data_offsets_##call { \
9cbf1176
FW
134 tstruct; \
135 };
136
ff038f5c
SR
137#undef DEFINE_EVENT
138#define DEFINE_EVENT(template, name, proto, args)
139
e5bc9721
SR
140#undef DEFINE_EVENT_PRINT
141#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
142 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
143
1ed0c597
FW
144#undef TRACE_EVENT_FLAGS
145#define TRACE_EVENT_FLAGS(event, flag)
146
d5b5f391
PZ
147#undef TRACE_EVENT_PERF_PERM
148#define TRACE_EVENT_PERF_PERM(event, expr...)
149
9cbf1176
FW
150#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
151
152/*
153 * Stage 3 of the trace events.
154 *
f42c85e7
SR
155 * Override the macros in <trace/trace_events.h> to include the following:
156 *
157 * enum print_line_t
158 * ftrace_raw_output_<call>(struct trace_iterator *iter, int flags)
159 * {
160 * struct trace_seq *s = &iter->seq;
161 * struct ftrace_raw_<call> *field; <-- defined in stage 1
162 * struct trace_entry *entry;
bc289ae9 163 * struct trace_seq *p = &iter->tmp_seq;
f42c85e7
SR
164 * int ret;
165 *
166 * entry = iter->ent;
167 *
32c0edae 168 * if (entry->type != event_<call>->event.type) {
f42c85e7
SR
169 * WARN_ON_ONCE(1);
170 * return TRACE_TYPE_UNHANDLED;
171 * }
172 *
173 * field = (typeof(field))entry;
174 *
56d8bd3f 175 * trace_seq_init(p);
50354a8a
LZ
176 * ret = trace_seq_printf(s, "%s: ", <call>);
177 * if (ret)
178 * ret = trace_seq_printf(s, <TP_printk> "\n");
f42c85e7
SR
179 * if (!ret)
180 * return TRACE_TYPE_PARTIAL_LINE;
181 *
182 * return TRACE_TYPE_HANDLED;
183 * }
184 *
185 * This is the method used to print the raw event to the trace
186 * output format. Note, this is not needed if the data is read
187 * in binary.
188 */
189
190#undef __entry
191#define __entry field
192
193#undef TP_printk
194#define TP_printk(fmt, args...) fmt "\n", args
195
7fcb7c47
LZ
196#undef __get_dynamic_array
197#define __get_dynamic_array(field) \
7d536cb3 198 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
7fcb7c47 199
9cbf1176 200#undef __get_str
7fcb7c47 201#define __get_str(field) (char *)__get_dynamic_array(field)
9cbf1176 202
be74b73a
SR
203#undef __print_flags
204#define __print_flags(flag, delim, flag_array...) \
205 ({ \
a48f494e 206 static const struct trace_print_flags __flags[] = \
be74b73a 207 { flag_array, { -1, NULL }}; \
a48f494e 208 ftrace_print_flags_seq(p, delim, flag, __flags); \
be74b73a
SR
209 })
210
0f4fc29d
SR
211#undef __print_symbolic
212#define __print_symbolic(value, symbol_array...) \
213 ({ \
214 static const struct trace_print_flags symbols[] = \
215 { symbol_array, { -1, NULL }}; \
216 ftrace_print_symbols_seq(p, value, symbols); \
217 })
218
2fc1b6f0 219#undef __print_symbolic_u64
220#if BITS_PER_LONG == 32
221#define __print_symbolic_u64(value, symbol_array...) \
222 ({ \
223 static const struct trace_print_flags_u64 symbols[] = \
224 { symbol_array, { -1, NULL } }; \
225 ftrace_print_symbols_seq_u64(p, value, symbols); \
226 })
227#else
228#define __print_symbolic_u64(value, symbol_array...) \
229 __print_symbolic(value, symbol_array)
230#endif
231
5a2e3995
KT
232#undef __print_hex
233#define __print_hex(buf, buf_len) ftrace_print_hex_seq(p, buf, buf_len)
234
091ad365
IM
235#undef DECLARE_EVENT_CLASS
236#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 237static notrace enum print_line_t \
80decc70
SR
238ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
239 struct trace_event *trace_event) \
f42c85e7
SR
240{ \
241 struct trace_seq *s = &iter->seq; \
f71130de 242 struct trace_seq __maybe_unused *p = &iter->tmp_seq; \
f42c85e7 243 struct ftrace_raw_##call *field; \
f42c85e7
SR
244 int ret; \
245 \
f71130de 246 field = (typeof(field))iter->ent; \
80decc70 247 \
f71130de 248 ret = ftrace_raw_output_prep(iter, trace_event); \
ff038f5c 249 if (ret) \
f71130de
LZ
250 return ret; \
251 \
252 ret = trace_seq_printf(s, print); \
f42c85e7
SR
253 if (!ret) \
254 return TRACE_TYPE_PARTIAL_LINE; \
255 \
256 return TRACE_TYPE_HANDLED; \
80decc70
SR
257} \
258static struct trace_event_functions ftrace_event_type_funcs_##call = { \
259 .trace = ftrace_raw_output_##call, \
260};
ff038f5c 261
e5bc9721
SR
262#undef DEFINE_EVENT_PRINT
263#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
83f0d539 264static notrace enum print_line_t \
a9a57763
SR
265ftrace_raw_output_##call(struct trace_iterator *iter, int flags, \
266 struct trace_event *event) \
e5bc9721
SR
267{ \
268 struct trace_seq *s = &iter->seq; \
269 struct ftrace_raw_##template *field; \
270 struct trace_entry *entry; \
bc289ae9 271 struct trace_seq *p = &iter->tmp_seq; \
f42c85e7
SR
272 int ret; \
273 \
274 entry = iter->ent; \
275 \
32c0edae 276 if (entry->type != event_##call.event.type) { \
f42c85e7
SR
277 WARN_ON_ONCE(1); \
278 return TRACE_TYPE_UNHANDLED; \
279 } \
280 \
281 field = (typeof(field))entry; \
282 \
56d8bd3f 283 trace_seq_init(p); \
e5bc9721
SR
284 ret = trace_seq_printf(s, "%s: ", #call); \
285 if (ret) \
286 ret = trace_seq_printf(s, print); \
f42c85e7
SR
287 if (!ret) \
288 return TRACE_TYPE_PARTIAL_LINE; \
289 \
290 return TRACE_TYPE_HANDLED; \
80decc70
SR
291} \
292static struct trace_event_functions ftrace_event_type_funcs_##call = { \
293 .trace = ftrace_raw_output_##call, \
294};
e5bc9721 295
f42c85e7
SR
296#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
297
43b51ead
LZ
298#undef __field_ext
299#define __field_ext(type, item, filter_type) \
f42c85e7
SR
300 ret = trace_define_field(event_call, #type, #item, \
301 offsetof(typeof(field), item), \
43b51ead
LZ
302 sizeof(field.item), \
303 is_signed_type(type), filter_type); \
f42c85e7
SR
304 if (ret) \
305 return ret;
306
43b51ead
LZ
307#undef __field
308#define __field(type, item) __field_ext(type, item, FILTER_OTHER)
309
f42c85e7
SR
310#undef __array
311#define __array(type, item, len) \
04295780
SR
312 do { \
313 mutex_lock(&event_storage_mutex); \
314 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
315 snprintf(event_storage, sizeof(event_storage), \
316 "%s[%d]", #type, len); \
317 ret = trace_define_field(event_call, event_storage, #item, \
f42c85e7 318 offsetof(typeof(field), item), \
fb7ae981
LJ
319 sizeof(field.item), \
320 is_signed_type(type), FILTER_OTHER); \
04295780
SR
321 mutex_unlock(&event_storage_mutex); \
322 if (ret) \
323 return ret; \
324 } while (0);
f42c85e7 325
7fcb7c47
LZ
326#undef __dynamic_array
327#define __dynamic_array(type, item, len) \
68fd60a8 328 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
43b51ead 329 offsetof(typeof(field), __data_loc_##item), \
fb7ae981
LJ
330 sizeof(field.__data_loc_##item), \
331 is_signed_type(type), FILTER_OTHER);
7fcb7c47 332
9cbf1176 333#undef __string
7fcb7c47 334#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176 335
091ad365
IM
336#undef DECLARE_EVENT_CLASS
337#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
7e4f44b1 338static int notrace __init \
14be96c9 339ftrace_define_fields_##call(struct ftrace_event_call *event_call) \
f42c85e7
SR
340{ \
341 struct ftrace_raw_##call field; \
f42c85e7
SR
342 int ret; \
343 \
f42c85e7
SR
344 tstruct; \
345 \
346 return ret; \
347}
348
ff038f5c
SR
349#undef DEFINE_EVENT
350#define DEFINE_EVENT(template, name, proto, args)
351
e5bc9721
SR
352#undef DEFINE_EVENT_PRINT
353#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
354 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
355
f42c85e7
SR
356#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
357
7fcb7c47
LZ
358/*
359 * remember the offset of each array from the beginning of the event.
360 */
361
362#undef __entry
363#define __entry entry
364
365#undef __field
366#define __field(type, item)
367
43b51ead
LZ
368#undef __field_ext
369#define __field_ext(type, item, filter_type)
370
7fcb7c47
LZ
371#undef __array
372#define __array(type, item, len)
373
374#undef __dynamic_array
375#define __dynamic_array(type, item, len) \
376 __data_offsets->item = __data_size + \
377 offsetof(typeof(*entry), __data); \
7d536cb3 378 __data_offsets->item |= (len * sizeof(type)) << 16; \
7fcb7c47
LZ
379 __data_size += (len) * sizeof(type);
380
381#undef __string
4e58e547
SRRH
382#define __string(item, src) __dynamic_array(char, item, \
383 strlen((src) ? (const char *)(src) : "(null)") + 1)
7fcb7c47 384
091ad365
IM
385#undef DECLARE_EVENT_CLASS
386#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 387static inline notrace int ftrace_get_offsets_##call( \
7fcb7c47
LZ
388 struct ftrace_data_offsets_##call *__data_offsets, proto) \
389{ \
390 int __data_size = 0; \
391 struct ftrace_raw_##call __maybe_unused *entry; \
392 \
393 tstruct; \
394 \
395 return __data_size; \
396}
397
ff038f5c
SR
398#undef DEFINE_EVENT
399#define DEFINE_EVENT(template, name, proto, args)
400
e5bc9721
SR
401#undef DEFINE_EVENT_PRINT
402#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
403 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
404
7fcb7c47
LZ
405#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
406
c32e827b 407/*
9cbf1176 408 * Stage 4 of the trace events.
c32e827b 409 *
ea20d929 410 * Override the macros in <trace/trace_events.h> to include the following:
c32e827b 411 *
157587d7 412 * For those macros defined with TRACE_EVENT:
c32e827b
SR
413 *
414 * static struct ftrace_event_call event_<call>;
415 *
2239291a 416 * static void ftrace_raw_event_<call>(void *__data, proto)
c32e827b 417 * {
ccb469a1
SR
418 * struct ftrace_event_file *ftrace_file = __data;
419 * struct ftrace_event_call *event_call = ftrace_file->event_call;
50354a8a 420 * struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
bac5fb97
TZ
421 * unsigned long eflags = ftrace_file->flags;
422 * enum event_trigger_type __tt = ETT_NONE;
ef18012b
SR
423 * struct ring_buffer_event *event;
424 * struct ftrace_raw_<call> *entry; <-- defined in stage 1
e77405ad 425 * struct ring_buffer *buffer;
ef18012b 426 * unsigned long irq_flags;
50354a8a 427 * int __data_size;
ef18012b
SR
428 * int pc;
429 *
bac5fb97
TZ
430 * if (!(eflags & FTRACE_EVENT_FL_TRIGGER_COND)) {
431 * if (eflags & FTRACE_EVENT_FL_TRIGGER_MODE)
432 * event_triggers_call(ftrace_file, NULL);
433 * if (eflags & FTRACE_EVENT_FL_SOFT_DISABLED)
434 * return;
435 * }
417944c4 436 *
ef18012b
SR
437 * local_save_flags(irq_flags);
438 * pc = preempt_count();
439 *
50354a8a
LZ
440 * __data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
441 *
ccb469a1 442 * event = trace_event_buffer_lock_reserve(&buffer, ftrace_file,
32c0edae 443 * event_<call>->event.type,
50354a8a 444 * sizeof(*entry) + __data_size,
ef18012b
SR
445 * irq_flags, pc);
446 * if (!event)
447 * return;
448 * entry = ring_buffer_event_data(event);
449 *
50354a8a
LZ
450 * { <assign>; } <-- Here we assign the entries by the __field and
451 * __array macros.
c32e827b 452 *
bac5fb97
TZ
453 * if (eflags & FTRACE_EVENT_FL_TRIGGER_COND)
454 * __tt = event_triggers_call(ftrace_file, entry);
455 *
456 * if (test_bit(FTRACE_EVENT_FL_SOFT_DISABLED_BIT,
457 * &ftrace_file->flags))
458 * ring_buffer_discard_commit(buffer, event);
459 * else if (!filter_check_discard(ftrace_file, entry, buffer, event))
f306cc82 460 * trace_buffer_unlock_commit(buffer, event, irq_flags, pc);
bac5fb97
TZ
461 *
462 * if (__tt)
463 * event_triggers_post_call(ftrace_file, __tt);
c32e827b
SR
464 * }
465 *
c32e827b 466 * static struct trace_event ftrace_event_type_<call> = {
ef18012b 467 * .trace = ftrace_raw_output_<call>, <-- stage 2
c32e827b
SR
468 * };
469 *
50354a8a
LZ
470 * static const char print_fmt_<call>[] = <TP_printk>;
471 *
8f082018
SR
472 * static struct ftrace_event_class __used event_class_<template> = {
473 * .system = "<system>",
2e33af02 474 * .define_fields = ftrace_define_fields_<call>,
0405ab80
SR
475 * .fields = LIST_HEAD_INIT(event_class_##call.fields),
476 * .raw_init = trace_event_raw_init,
477 * .probe = ftrace_raw_event_##call,
a1d0ce82 478 * .reg = ftrace_event_reg,
8f082018
SR
479 * };
480 *
e4a9ea5e 481 * static struct ftrace_event_call event_<call> = {
ef18012b 482 * .name = "<call>",
8f082018 483 * .class = event_class_<template>,
2e33af02 484 * .event = &ftrace_event_type_<call>,
50354a8a 485 * .print_fmt = print_fmt_<call>,
8f082018 486 * };
e4a9ea5e
SR
487 * // its only safe to use pointers when doing linker tricks to
488 * // create an array.
489 * static struct ftrace_event_call __used
490 * __attribute__((section("_ftrace_events"))) *__event_<call> = &event_<call>;
c32e827b
SR
491 *
492 */
493
07b139c8 494#ifdef CONFIG_PERF_EVENTS
ac199db0 495
2239291a
SR
496#define _TRACE_PERF_PROTO(call, proto) \
497 static notrace void \
498 perf_trace_##call(void *__data, proto);
499
97d5a220 500#define _TRACE_PERF_INIT(call) \
2239291a 501 .perf_probe = perf_trace_##call,
ac199db0
PZ
502
503#else
2239291a 504#define _TRACE_PERF_PROTO(call, proto)
97d5a220 505#define _TRACE_PERF_INIT(call)
07b139c8 506#endif /* CONFIG_PERF_EVENTS */
ac199db0 507
da4d0302
SR
508#undef __entry
509#define __entry entry
d20e3b03 510
9cbf1176
FW
511#undef __field
512#define __field(type, item)
513
514#undef __array
515#define __array(type, item, len)
516
7fcb7c47
LZ
517#undef __dynamic_array
518#define __dynamic_array(type, item, len) \
519 __entry->__data_loc_##item = __data_offsets.item;
520
9cbf1176 521#undef __string
7fcb7c47 522#define __string(item, src) __dynamic_array(char, item, -1) \
9cbf1176
FW
523
524#undef __assign_str
525#define __assign_str(dst, src) \
4e58e547 526 strcpy(__get_str(dst), (src) ? (const char *)(src) : "(null)");
9cbf1176 527
0fa0edaf
LJ
528#undef TP_fast_assign
529#define TP_fast_assign(args...) args
530
12473965
ON
531#undef __perf_addr
532#define __perf_addr(a) (a)
533
534#undef __perf_count
535#define __perf_count(c) (c)
536
537#undef __perf_task
538#define __perf_task(t) (t)
0fa0edaf 539
091ad365
IM
540#undef DECLARE_EVENT_CLASS
541#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
c32e827b 542 \
83f0d539 543static notrace void \
2239291a 544ftrace_raw_event_##call(void *__data, proto) \
c32e827b 545{ \
ae63b31e
SR
546 struct ftrace_event_file *ftrace_file = __data; \
547 struct ftrace_event_call *event_call = ftrace_file->event_call; \
7fcb7c47 548 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
c32e827b
SR
549 struct ring_buffer_event *event; \
550 struct ftrace_raw_##call *entry; \
e77405ad 551 struct ring_buffer *buffer; \
c32e827b 552 unsigned long irq_flags; \
7fcb7c47 553 int __data_size; \
c32e827b
SR
554 int pc; \
555 \
13a1e4ae
SRRH
556 if (ftrace_trigger_soft_disabled(ftrace_file)) \
557 return; \
417944c4 558 \
c32e827b
SR
559 local_save_flags(irq_flags); \
560 pc = preempt_count(); \
561 \
7fcb7c47 562 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
9cbf1176 563 \
ccb469a1 564 event = trace_event_buffer_lock_reserve(&buffer, ftrace_file, \
32c0edae 565 event_call->event.type, \
7fcb7c47 566 sizeof(*entry) + __data_size, \
9cbf1176 567 irq_flags, pc); \
c32e827b
SR
568 if (!event) \
569 return; \
570 entry = ring_buffer_event_data(event); \
571 \
7fcb7c47
LZ
572 tstruct \
573 \
a9c1c3ab 574 { assign; } \
c32e827b 575 \
13a1e4ae
SRRH
576 event_trigger_unlock_commit(ftrace_file, buffer, event, entry, \
577 irq_flags, pc); \
ff038f5c 578}
2239291a
SR
579/*
580 * The ftrace_test_probe is compiled out, it is only here as a build time check
581 * to make sure that if the tracepoint handling changes, the ftrace probe will
582 * fail to compile unless it too is updated.
583 */
ff038f5c
SR
584
585#undef DEFINE_EVENT
586#define DEFINE_EVENT(template, call, proto, args) \
2239291a 587static inline void ftrace_test_probe_##call(void) \
c32e827b 588{ \
2239291a
SR
589 check_trace_callback_type_##call(ftrace_raw_event_##template); \
590}
e5bc9721
SR
591
592#undef DEFINE_EVENT_PRINT
80decc70 593#define DEFINE_EVENT_PRINT(template, name, proto, args, print)
e5bc9721
SR
594
595#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
596
509e760c
LJ
597#undef __entry
598#define __entry REC
599
600#undef __print_flags
601#undef __print_symbolic
b102f1d0 602#undef __print_hex
509e760c
LJ
603#undef __get_dynamic_array
604#undef __get_str
605
606#undef TP_printk
607#define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
608
091ad365 609#undef DECLARE_EVENT_CLASS
509e760c 610#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
2239291a 611_TRACE_PERF_PROTO(call, PARAMS(proto)); \
8f082018 612static const char print_fmt_##call[] = print; \
523c8113 613static struct ftrace_event_class __used __refdata event_class_##call = { \
2239291a 614 .system = __stringify(TRACE_SYSTEM), \
2e33af02
SR
615 .define_fields = ftrace_define_fields_##call, \
616 .fields = LIST_HEAD_INIT(event_class_##call.fields),\
0405ab80 617 .raw_init = trace_event_raw_init, \
2239291a 618 .probe = ftrace_raw_event_##call, \
a1d0ce82 619 .reg = ftrace_event_reg, \
2239291a 620 _TRACE_PERF_INIT(call) \
8f082018 621};
e5bc9721
SR
622
623#undef DEFINE_EVENT
624#define DEFINE_EVENT(template, call, proto, args) \
c32e827b 625 \
e4a9ea5e 626static struct ftrace_event_call __used event_##call = { \
ef18012b 627 .name = #call, \
8f082018 628 .class = &event_class_##template, \
80decc70 629 .event.funcs = &ftrace_event_type_funcs_##template, \
509e760c 630 .print_fmt = print_fmt_##template, \
e4a9ea5e
SR
631}; \
632static struct ftrace_event_call __used \
633__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
ac199db0 634
e5bc9721
SR
635#undef DEFINE_EVENT_PRINT
636#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
c32e827b 637 \
509e760c
LJ
638static const char print_fmt_##call[] = print; \
639 \
e4a9ea5e 640static struct ftrace_event_call __used event_##call = { \
ef18012b 641 .name = #call, \
8f082018 642 .class = &event_class_##template, \
80decc70 643 .event.funcs = &ftrace_event_type_funcs_##call, \
509e760c 644 .print_fmt = print_fmt_##call, \
e4a9ea5e
SR
645}; \
646static struct ftrace_event_call __used \
647__attribute__((section("_ftrace_events"))) *__event_##call = &event_##call
ac199db0 648
f42c85e7 649#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
ac199db0 650
f413cdb8 651
07b139c8 652#ifdef CONFIG_PERF_EVENTS
f413cdb8 653
509e760c
LJ
654#undef __entry
655#define __entry entry
656
657#undef __get_dynamic_array
658#define __get_dynamic_array(field) \
659 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
660
661#undef __get_str
662#define __get_str(field) (char *)__get_dynamic_array(field)
663
f413cdb8 664#undef __perf_addr
12473965 665#define __perf_addr(a) (__addr = (a))
f413cdb8
FW
666
667#undef __perf_count
12473965 668#define __perf_count(c) (__count = (c))
f413cdb8 669
e6dab5ff 670#undef __perf_task
12473965 671#define __perf_task(t) (__task = (t))
92e51938 672
091ad365
IM
673#undef DECLARE_EVENT_CLASS
674#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 675static notrace void \
2239291a 676perf_trace_##call(void *__data, proto) \
f413cdb8 677{ \
2239291a 678 struct ftrace_event_call *event_call = __data; \
f413cdb8 679 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
f413cdb8 680 struct ftrace_raw_##call *entry; \
ff5f149b 681 struct pt_regs __regs; \
f413cdb8 682 u64 __addr = 0, __count = 1; \
e6dab5ff 683 struct task_struct *__task = NULL; \
1c024eca 684 struct hlist_head *head; \
f413cdb8
FW
685 int __entry_size; \
686 int __data_size; \
4ed7c92d 687 int rctx; \
f413cdb8
FW
688 \
689 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
d027e6a9
ON
690 \
691 head = this_cpu_ptr(event_call->perf_events); \
692 if (__builtin_constant_p(!__task) && !__task && \
693 hlist_empty(head)) \
694 return; \
695 \
a044560c
PZ
696 __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\
697 sizeof(u64)); \
304703ab 698 __entry_size -= sizeof(u32); \
f413cdb8 699 \
36009d07
ON
700 perf_fetch_caller_regs(&__regs); \
701 entry = perf_trace_buf_prepare(__entry_size, \
702 event_call->event.type, &__regs, &rctx); \
430ad5a6
XG
703 if (!entry) \
704 return; \
b7e2ecef 705 \
20ab4425
FW
706 tstruct \
707 \
708 { assign; } \
709 \
97d5a220 710 perf_trace_buf_submit(entry, __entry_size, rctx, __addr, \
e6dab5ff 711 __count, &__regs, head, __task); \
f413cdb8
FW
712}
713
2239291a
SR
714/*
715 * This part is compiled out, it is only here as a build time check
716 * to make sure that if the tracepoint handling changes, the
717 * perf probe will fail to compile unless it too is updated.
718 */
ff038f5c 719#undef DEFINE_EVENT
6cc8a7c1 720#define DEFINE_EVENT(template, call, proto, args) \
2239291a 721static inline void perf_test_probe_##call(void) \
6cc8a7c1 722{ \
2239291a 723 check_trace_callback_type_##call(perf_trace_##template); \
ff038f5c
SR
724}
725
2239291a 726
e5bc9721
SR
727#undef DEFINE_EVENT_PRINT
728#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
729 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
730
f413cdb8 731#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
07b139c8 732#endif /* CONFIG_PERF_EVENTS */
f413cdb8 733
This page took 0.239687 seconds and 5 git commands to generate.