tracing: Remove per event trace registering
[GitHub/exynos8895/android_kernel_samsung_universal8895.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) \
86c38a31
JM
71 static struct ftrace_event_call \
72 __attribute__((__aligned__(4))) event_##name
f42c85e7 73
e5bc9721
SR
74#undef DEFINE_EVENT_PRINT
75#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
76 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
77
0dd7b747
FW
78#undef __cpparg
79#define __cpparg(arg...) arg
80
97419875
JS
81/* Callbacks are meaningless to ftrace. */
82#undef TRACE_EVENT_FN
0dd7b747
FW
83#define TRACE_EVENT_FN(name, proto, args, tstruct, \
84 assign, print, reg, unreg) \
85 TRACE_EVENT(name, __cpparg(proto), __cpparg(args), \
86 __cpparg(tstruct), __cpparg(assign), __cpparg(print)) \
97419875 87
f42c85e7
SR
88#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
89
9cbf1176 90
f42c85e7
SR
91/*
92 * Stage 2 of the trace events.
93 *
9cbf1176
FW
94 * Include the following:
95 *
7fcb7c47 96 * struct ftrace_data_offsets_<call> {
7d536cb3
LZ
97 * u32 <item1>;
98 * u32 <item2>;
9cbf1176
FW
99 * [...]
100 * };
101 *
7d536cb3 102 * The __dynamic_array() macro will create each u32 <item>, this is
7fcb7c47 103 * to keep the offset of each array from the beginning of the event.
7d536cb3 104 * The size of an array is also encoded, in the higher 16 bits of <item>.
9cbf1176
FW
105 */
106
7fcb7c47 107#undef __field
43b51ead
LZ
108#define __field(type, item)
109
110#undef __field_ext
111#define __field_ext(type, item, filter_type)
7fcb7c47 112
9cbf1176
FW
113#undef __array
114#define __array(type, item, len)
115
7fcb7c47 116#undef __dynamic_array
7d536cb3 117#define __dynamic_array(type, item, len) u32 item;
9cbf1176
FW
118
119#undef __string
7fcb7c47 120#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176 121
091ad365
IM
122#undef DECLARE_EVENT_CLASS
123#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
7fcb7c47 124 struct ftrace_data_offsets_##call { \
9cbf1176
FW
125 tstruct; \
126 };
127
ff038f5c
SR
128#undef DEFINE_EVENT
129#define DEFINE_EVENT(template, name, proto, args)
130
e5bc9721
SR
131#undef DEFINE_EVENT_PRINT
132#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
133 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
134
9cbf1176
FW
135#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
136
137/*
138 * Stage 3 of the trace events.
139 *
f42c85e7
SR
140 * Override the macros in <trace/trace_events.h> to include the following:
141 *
142 * enum print_line_t
143 * ftrace_raw_output_<call>(struct trace_iterator *iter, int flags)
144 * {
145 * struct trace_seq *s = &iter->seq;
146 * struct ftrace_raw_<call> *field; <-- defined in stage 1
147 * struct trace_entry *entry;
be74b73a 148 * struct trace_seq *p;
f42c85e7
SR
149 * int ret;
150 *
151 * entry = iter->ent;
152 *
153 * if (entry->type != event_<call>.id) {
154 * WARN_ON_ONCE(1);
155 * return TRACE_TYPE_UNHANDLED;
156 * }
157 *
158 * field = (typeof(field))entry;
159 *
50354a8a 160 * p = &get_cpu_var(ftrace_event_seq);
56d8bd3f 161 * trace_seq_init(p);
50354a8a
LZ
162 * ret = trace_seq_printf(s, "%s: ", <call>);
163 * if (ret)
164 * ret = trace_seq_printf(s, <TP_printk> "\n");
be74b73a 165 * put_cpu();
f42c85e7
SR
166 * if (!ret)
167 * return TRACE_TYPE_PARTIAL_LINE;
168 *
169 * return TRACE_TYPE_HANDLED;
170 * }
171 *
172 * This is the method used to print the raw event to the trace
173 * output format. Note, this is not needed if the data is read
174 * in binary.
175 */
176
177#undef __entry
178#define __entry field
179
180#undef TP_printk
181#define TP_printk(fmt, args...) fmt "\n", args
182
7fcb7c47
LZ
183#undef __get_dynamic_array
184#define __get_dynamic_array(field) \
7d536cb3 185 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
7fcb7c47 186
9cbf1176 187#undef __get_str
7fcb7c47 188#define __get_str(field) (char *)__get_dynamic_array(field)
9cbf1176 189
be74b73a
SR
190#undef __print_flags
191#define __print_flags(flag, delim, flag_array...) \
192 ({ \
a48f494e 193 static const struct trace_print_flags __flags[] = \
be74b73a 194 { flag_array, { -1, NULL }}; \
a48f494e 195 ftrace_print_flags_seq(p, delim, flag, __flags); \
be74b73a
SR
196 })
197
0f4fc29d
SR
198#undef __print_symbolic
199#define __print_symbolic(value, symbol_array...) \
200 ({ \
201 static const struct trace_print_flags symbols[] = \
202 { symbol_array, { -1, NULL }}; \
203 ftrace_print_symbols_seq(p, value, symbols); \
204 })
205
091ad365
IM
206#undef DECLARE_EVENT_CLASS
207#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 208static notrace enum print_line_t \
ff038f5c
SR
209ftrace_raw_output_id_##call(int event_id, const char *name, \
210 struct trace_iterator *iter, int flags) \
f42c85e7
SR
211{ \
212 struct trace_seq *s = &iter->seq; \
213 struct ftrace_raw_##call *field; \
214 struct trace_entry *entry; \
be74b73a 215 struct trace_seq *p; \
f42c85e7
SR
216 int ret; \
217 \
218 entry = iter->ent; \
219 \
ff038f5c 220 if (entry->type != event_id) { \
f42c85e7
SR
221 WARN_ON_ONCE(1); \
222 return TRACE_TYPE_UNHANDLED; \
223 } \
224 \
225 field = (typeof(field))entry; \
226 \
be74b73a 227 p = &get_cpu_var(ftrace_event_seq); \
56d8bd3f 228 trace_seq_init(p); \
ff038f5c
SR
229 ret = trace_seq_printf(s, "%s: ", name); \
230 if (ret) \
231 ret = trace_seq_printf(s, print); \
be74b73a 232 put_cpu(); \
f42c85e7
SR
233 if (!ret) \
234 return TRACE_TYPE_PARTIAL_LINE; \
235 \
236 return TRACE_TYPE_HANDLED; \
237}
ff038f5c
SR
238
239#undef DEFINE_EVENT
240#define DEFINE_EVENT(template, name, proto, args) \
83f0d539 241static notrace enum print_line_t \
ff038f5c
SR
242ftrace_raw_output_##name(struct trace_iterator *iter, int flags) \
243{ \
244 return ftrace_raw_output_id_##template(event_##name.id, \
245 #name, iter, flags); \
246}
247
e5bc9721
SR
248#undef DEFINE_EVENT_PRINT
249#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
83f0d539 250static notrace enum print_line_t \
e5bc9721
SR
251ftrace_raw_output_##call(struct trace_iterator *iter, int flags) \
252{ \
253 struct trace_seq *s = &iter->seq; \
254 struct ftrace_raw_##template *field; \
255 struct trace_entry *entry; \
256 struct trace_seq *p; \
f42c85e7
SR
257 int ret; \
258 \
259 entry = iter->ent; \
260 \
261 if (entry->type != event_##call.id) { \
262 WARN_ON_ONCE(1); \
263 return TRACE_TYPE_UNHANDLED; \
264 } \
265 \
266 field = (typeof(field))entry; \
267 \
be74b73a 268 p = &get_cpu_var(ftrace_event_seq); \
56d8bd3f 269 trace_seq_init(p); \
e5bc9721
SR
270 ret = trace_seq_printf(s, "%s: ", #call); \
271 if (ret) \
272 ret = trace_seq_printf(s, print); \
be74b73a 273 put_cpu(); \
f42c85e7
SR
274 if (!ret) \
275 return TRACE_TYPE_PARTIAL_LINE; \
276 \
277 return TRACE_TYPE_HANDLED; \
278}
e5bc9721 279
f42c85e7
SR
280#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
281
43b51ead
LZ
282#undef __field_ext
283#define __field_ext(type, item, filter_type) \
f42c85e7
SR
284 ret = trace_define_field(event_call, #type, #item, \
285 offsetof(typeof(field), item), \
43b51ead
LZ
286 sizeof(field.item), \
287 is_signed_type(type), filter_type); \
f42c85e7
SR
288 if (ret) \
289 return ret;
290
43b51ead
LZ
291#undef __field
292#define __field(type, item) __field_ext(type, item, FILTER_OTHER)
293
f42c85e7
SR
294#undef __array
295#define __array(type, item, len) \
296 BUILD_BUG_ON(len > MAX_FILTER_STR_VAL); \
297 ret = trace_define_field(event_call, #type "[" #len "]", #item, \
298 offsetof(typeof(field), item), \
fb7ae981
LJ
299 sizeof(field.item), \
300 is_signed_type(type), FILTER_OTHER); \
f42c85e7
SR
301 if (ret) \
302 return ret;
303
7fcb7c47
LZ
304#undef __dynamic_array
305#define __dynamic_array(type, item, len) \
68fd60a8 306 ret = trace_define_field(event_call, "__data_loc " #type "[]", #item, \
43b51ead 307 offsetof(typeof(field), __data_loc_##item), \
fb7ae981
LJ
308 sizeof(field.__data_loc_##item), \
309 is_signed_type(type), FILTER_OTHER);
7fcb7c47 310
9cbf1176 311#undef __string
7fcb7c47 312#define __string(item, src) __dynamic_array(char, item, -1)
9cbf1176 313
091ad365
IM
314#undef DECLARE_EVENT_CLASS
315#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, func, print) \
83f0d539 316static int notrace \
14be96c9 317ftrace_define_fields_##call(struct ftrace_event_call *event_call) \
f42c85e7
SR
318{ \
319 struct ftrace_raw_##call field; \
f42c85e7
SR
320 int ret; \
321 \
f42c85e7
SR
322 tstruct; \
323 \
324 return ret; \
325}
326
ff038f5c
SR
327#undef DEFINE_EVENT
328#define DEFINE_EVENT(template, name, proto, args)
329
e5bc9721
SR
330#undef DEFINE_EVENT_PRINT
331#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
332 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
333
f42c85e7
SR
334#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
335
7fcb7c47
LZ
336/*
337 * remember the offset of each array from the beginning of the event.
338 */
339
340#undef __entry
341#define __entry entry
342
343#undef __field
344#define __field(type, item)
345
43b51ead
LZ
346#undef __field_ext
347#define __field_ext(type, item, filter_type)
348
7fcb7c47
LZ
349#undef __array
350#define __array(type, item, len)
351
352#undef __dynamic_array
353#define __dynamic_array(type, item, len) \
354 __data_offsets->item = __data_size + \
355 offsetof(typeof(*entry), __data); \
7d536cb3 356 __data_offsets->item |= (len * sizeof(type)) << 16; \
7fcb7c47
LZ
357 __data_size += (len) * sizeof(type);
358
359#undef __string
ff038f5c 360#define __string(item, src) __dynamic_array(char, item, strlen(src) + 1)
7fcb7c47 361
091ad365
IM
362#undef DECLARE_EVENT_CLASS
363#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 364static inline notrace int ftrace_get_offsets_##call( \
7fcb7c47
LZ
365 struct ftrace_data_offsets_##call *__data_offsets, proto) \
366{ \
367 int __data_size = 0; \
368 struct ftrace_raw_##call __maybe_unused *entry; \
369 \
370 tstruct; \
371 \
372 return __data_size; \
373}
374
ff038f5c
SR
375#undef DEFINE_EVENT
376#define DEFINE_EVENT(template, name, proto, args)
377
e5bc9721
SR
378#undef DEFINE_EVENT_PRINT
379#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
380 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
381
7fcb7c47
LZ
382#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
383
c32e827b 384/*
9cbf1176 385 * Stage 4 of the trace events.
c32e827b 386 *
ea20d929 387 * Override the macros in <trace/trace_events.h> to include the following:
c32e827b 388 *
157587d7 389 * For those macros defined with TRACE_EVENT:
c32e827b
SR
390 *
391 * static struct ftrace_event_call event_<call>;
392 *
2239291a 393 * static void ftrace_raw_event_<call>(void *__data, proto)
c32e827b 394 * {
2239291a 395 * struct ftrace_event_call *event_call = __data;
50354a8a 396 * struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
ef18012b
SR
397 * struct ring_buffer_event *event;
398 * struct ftrace_raw_<call> *entry; <-- defined in stage 1
e77405ad 399 * struct ring_buffer *buffer;
ef18012b 400 * unsigned long irq_flags;
50354a8a 401 * int __data_size;
ef18012b
SR
402 * int pc;
403 *
404 * local_save_flags(irq_flags);
405 * pc = preempt_count();
406 *
50354a8a
LZ
407 * __data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
408 *
e77405ad
SR
409 * event = trace_current_buffer_lock_reserve(&buffer,
410 * event_<call>.id,
50354a8a 411 * sizeof(*entry) + __data_size,
ef18012b
SR
412 * irq_flags, pc);
413 * if (!event)
414 * return;
415 * entry = ring_buffer_event_data(event);
416 *
50354a8a
LZ
417 * { <assign>; } <-- Here we assign the entries by the __field and
418 * __array macros.
c32e827b 419 *
50354a8a
LZ
420 * if (!filter_current_check_discard(buffer, event_call, entry, event))
421 * trace_current_buffer_unlock_commit(buffer,
422 * event, irq_flags, pc);
c32e827b
SR
423 * }
424 *
c32e827b 425 * static struct trace_event ftrace_event_type_<call> = {
ef18012b 426 * .trace = ftrace_raw_output_<call>, <-- stage 2
c32e827b
SR
427 * };
428 *
50354a8a
LZ
429 * static const char print_fmt_<call>[] = <TP_printk>;
430 *
8f082018
SR
431 * static struct ftrace_event_class __used event_class_<template> = {
432 * .system = "<system>",
433 * };
434 *
c32e827b
SR
435 * static struct ftrace_event_call __used
436 * __attribute__((__aligned__(4)))
437 * __attribute__((section("_ftrace_events"))) event_<call> = {
ef18012b 438 * .name = "<call>",
8f082018 439 * .class = event_class_<template>,
87d9b4e1 440 * .raw_init = trace_event_raw_init,
8f082018
SR
441 * .regfunc = ftrace_raw_reg_event_<call>,
442 * .unregfunc = ftrace_raw_unreg_event_<call>,
50354a8a
LZ
443 * .print_fmt = print_fmt_<call>,
444 * .define_fields = ftrace_define_fields_<call>,
8f082018 445 * };
c32e827b
SR
446 *
447 */
448
07b139c8 449#ifdef CONFIG_PERF_EVENTS
ac199db0 450
2239291a
SR
451#define _TRACE_PERF_PROTO(call, proto) \
452 static notrace void \
453 perf_trace_##call(void *__data, proto);
454
97d5a220 455#define _TRACE_PERF_INIT(call) \
2239291a 456 .perf_probe = perf_trace_##call,
ac199db0
PZ
457
458#else
2239291a 459#define _TRACE_PERF_PROTO(call, proto)
97d5a220 460#define _TRACE_PERF_INIT(call)
07b139c8 461#endif /* CONFIG_PERF_EVENTS */
ac199db0 462
da4d0302
SR
463#undef __entry
464#define __entry entry
d20e3b03 465
9cbf1176
FW
466#undef __field
467#define __field(type, item)
468
469#undef __array
470#define __array(type, item, len)
471
7fcb7c47
LZ
472#undef __dynamic_array
473#define __dynamic_array(type, item, len) \
474 __entry->__data_loc_##item = __data_offsets.item;
475
9cbf1176 476#undef __string
7fcb7c47 477#define __string(item, src) __dynamic_array(char, item, -1) \
9cbf1176
FW
478
479#undef __assign_str
480#define __assign_str(dst, src) \
9cbf1176
FW
481 strcpy(__get_str(dst), src);
482
0fa0edaf
LJ
483#undef TP_fast_assign
484#define TP_fast_assign(args...) args
485
486#undef TP_perf_assign
487#define TP_perf_assign(args...)
488
091ad365
IM
489#undef DECLARE_EVENT_CLASS
490#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
c32e827b 491 \
83f0d539 492static notrace void \
2239291a 493ftrace_raw_event_##call(void *__data, proto) \
c32e827b 494{ \
2239291a 495 struct ftrace_event_call *event_call = __data; \
7fcb7c47 496 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
c32e827b
SR
497 struct ring_buffer_event *event; \
498 struct ftrace_raw_##call *entry; \
e77405ad 499 struct ring_buffer *buffer; \
c32e827b 500 unsigned long irq_flags; \
7fcb7c47 501 int __data_size; \
c32e827b
SR
502 int pc; \
503 \
504 local_save_flags(irq_flags); \
505 pc = preempt_count(); \
506 \
7fcb7c47 507 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
9cbf1176 508 \
e77405ad 509 event = trace_current_buffer_lock_reserve(&buffer, \
ff038f5c 510 event_call->id, \
7fcb7c47 511 sizeof(*entry) + __data_size, \
9cbf1176 512 irq_flags, pc); \
c32e827b
SR
513 if (!event) \
514 return; \
515 entry = ring_buffer_event_data(event); \
516 \
7fcb7c47
LZ
517 tstruct \
518 \
a9c1c3ab 519 { assign; } \
c32e827b 520 \
e77405ad
SR
521 if (!filter_current_check_discard(buffer, event_call, entry, event)) \
522 trace_nowake_buffer_unlock_commit(buffer, \
523 event, irq_flags, pc); \
ff038f5c 524}
2239291a
SR
525/*
526 * The ftrace_test_probe is compiled out, it is only here as a build time check
527 * to make sure that if the tracepoint handling changes, the ftrace probe will
528 * fail to compile unless it too is updated.
529 */
ff038f5c
SR
530
531#undef DEFINE_EVENT
532#define DEFINE_EVENT(template, call, proto, args) \
533 \
c32e827b
SR
534static struct trace_event ftrace_event_type_##call = { \
535 .trace = ftrace_raw_output_##call, \
2239291a
SR
536}; \
537 \
538static inline void ftrace_test_probe_##call(void) \
539{ \
540 check_trace_callback_type_##call(ftrace_raw_event_##template); \
541}
e5bc9721
SR
542
543#undef DEFINE_EVENT_PRINT
544#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
545 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
546
547#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
548
509e760c
LJ
549#undef __entry
550#define __entry REC
551
552#undef __print_flags
553#undef __print_symbolic
554#undef __get_dynamic_array
555#undef __get_str
556
557#undef TP_printk
558#define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args)
559
091ad365 560#undef DECLARE_EVENT_CLASS
509e760c 561#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
2239291a 562_TRACE_PERF_PROTO(call, PARAMS(proto)); \
8f082018
SR
563static const char print_fmt_##call[] = print; \
564static struct ftrace_event_class __used event_class_##call = { \
2239291a
SR
565 .system = __stringify(TRACE_SYSTEM), \
566 .probe = ftrace_raw_event_##call, \
567 _TRACE_PERF_INIT(call) \
8f082018 568};
e5bc9721
SR
569
570#undef DEFINE_EVENT
571#define DEFINE_EVENT(template, call, proto, args) \
c32e827b
SR
572 \
573static struct ftrace_event_call __used \
574__attribute__((__aligned__(4))) \
575__attribute__((section("_ftrace_events"))) event_##call = { \
ef18012b 576 .name = #call, \
8f082018 577 .class = &event_class_##template, \
6d723736 578 .event = &ftrace_event_type_##call, \
87d9b4e1 579 .raw_init = trace_event_raw_init, \
509e760c 580 .print_fmt = print_fmt_##template, \
ff038f5c 581 .define_fields = ftrace_define_fields_##template, \
8f082018 582};
ac199db0 583
e5bc9721
SR
584#undef DEFINE_EVENT_PRINT
585#define DEFINE_EVENT_PRINT(template, call, proto, args, print) \
c32e827b 586 \
509e760c
LJ
587static const char print_fmt_##call[] = print; \
588 \
c32e827b
SR
589static struct ftrace_event_call __used \
590__attribute__((__aligned__(4))) \
591__attribute__((section("_ftrace_events"))) event_##call = { \
ef18012b 592 .name = #call, \
8f082018 593 .class = &event_class_##template, \
6d723736 594 .event = &ftrace_event_type_##call, \
87d9b4e1 595 .raw_init = trace_event_raw_init, \
509e760c 596 .print_fmt = print_fmt_##call, \
e5bc9721 597 .define_fields = ftrace_define_fields_##template, \
c32e827b 598}
ac199db0 599
f42c85e7 600#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
ac199db0 601
f413cdb8 602/*
97d5a220 603 * Define the insertion callback to perf events
f413cdb8
FW
604 *
605 * The job is very similar to ftrace_raw_event_<call> except that we don't
606 * insert in the ring buffer but in a perf counter.
607 *
97d5a220 608 * static void ftrace_perf_<call>(proto)
f413cdb8
FW
609 * {
610 * struct ftrace_data_offsets_<call> __maybe_unused __data_offsets;
611 * struct ftrace_event_call *event_call = &event_<call>;
cdd6c482 612 * extern void perf_tp_event(int, u64, u64, void *, int);
f413cdb8 613 * struct ftrace_raw_##call *entry;
444a2a3b 614 * struct perf_trace_buf *trace_buf;
f413cdb8
FW
615 * u64 __addr = 0, __count = 1;
616 * unsigned long irq_flags;
20ab4425 617 * struct trace_entry *ent;
f413cdb8
FW
618 * int __entry_size;
619 * int __data_size;
20ab4425 620 * int __cpu
f413cdb8
FW
621 * int pc;
622 *
f413cdb8
FW
623 * pc = preempt_count();
624 *
625 * __data_size = ftrace_get_offsets_<call>(&__data_offsets, args);
304703ab
FW
626 *
627 * // Below we want to get the aligned size by taking into account
628 * // the u32 field that will later store the buffer size
629 * __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),
630 * sizeof(u64));
631 * __entry_size -= sizeof(u32);
f413cdb8 632 *
20ab4425
FW
633 * // Protect the non nmi buffer
634 * // This also protects the rcu read side
635 * local_irq_save(irq_flags);
636 * __cpu = smp_processor_id();
637 *
638 * if (in_nmi())
8d53dd54 639 * trace_buf = rcu_dereference_sched(perf_trace_buf_nmi);
20ab4425 640 * else
8d53dd54 641 * trace_buf = rcu_dereference_sched(perf_trace_buf);
20ab4425 642 *
444a2a3b 643 * if (!trace_buf)
20ab4425 644 * goto end;
f413cdb8 645 *
444a2a3b
FW
646 * trace_buf = per_cpu_ptr(trace_buf, __cpu);
647 *
648 * // Avoid recursion from perf that could mess up the buffer
649 * if (trace_buf->recursion++)
650 * goto end_recursion;
651 *
652 * raw_data = trace_buf->buf;
653 *
654 * // Make recursion update visible before entering perf_tp_event
655 * // so that we protect from perf recursions.
656 *
657 * barrier();
1853db0e 658 *
20ab4425
FW
659 * //zero dead bytes from alignment to avoid stack leak to userspace:
660 * *(u64 *)(&raw_data[__entry_size - sizeof(u64)]) = 0ULL;
661 * entry = (struct ftrace_raw_<call> *)raw_data;
662 * ent = &entry->ent;
663 * tracing_generic_entry_update(ent, irq_flags, pc);
664 * ent->type = event_call->id;
f413cdb8 665 *
20ab4425 666 * <tstruct> <- do some jobs with dynamic arrays
f413cdb8 667 *
20ab4425 668 * <assign> <- affect our values
f413cdb8 669 *
43c1266c 670 * perf_tp_event(event_call->id, __addr, __count, entry,
20ab4425 671 * __entry_size); <- submit them to perf counter
f413cdb8
FW
672 *
673 * }
674 */
675
07b139c8 676#ifdef CONFIG_PERF_EVENTS
f413cdb8 677
509e760c
LJ
678#undef __entry
679#define __entry entry
680
681#undef __get_dynamic_array
682#define __get_dynamic_array(field) \
683 ((void *)__entry + (__entry->__data_loc_##field & 0xffff))
684
685#undef __get_str
686#define __get_str(field) (char *)__get_dynamic_array(field)
687
f413cdb8
FW
688#undef __perf_addr
689#define __perf_addr(a) __addr = (a)
690
691#undef __perf_count
692#define __perf_count(c) __count = (c)
693
091ad365
IM
694#undef DECLARE_EVENT_CLASS
695#define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
83f0d539 696static notrace void \
2239291a 697perf_trace_##call(void *__data, proto) \
f413cdb8 698{ \
2239291a 699 struct ftrace_event_call *event_call = __data; \
f413cdb8 700 struct ftrace_data_offsets_##call __maybe_unused __data_offsets;\
f413cdb8
FW
701 struct ftrace_raw_##call *entry; \
702 u64 __addr = 0, __count = 1; \
703 unsigned long irq_flags; \
c530665c 704 struct pt_regs *__regs; \
f413cdb8
FW
705 int __entry_size; \
706 int __data_size; \
4ed7c92d 707 int rctx; \
f413cdb8
FW
708 \
709 __data_size = ftrace_get_offsets_##call(&__data_offsets, args); \
a044560c
PZ
710 __entry_size = ALIGN(__data_size + sizeof(*entry) + sizeof(u32),\
711 sizeof(u64)); \
304703ab 712 __entry_size -= sizeof(u32); \
f413cdb8 713 \
97d5a220 714 if (WARN_ONCE(__entry_size > PERF_MAX_TRACE_SIZE, \
20ab4425
FW
715 "profile buffer not large enough")) \
716 return; \
97d5a220 717 entry = (struct ftrace_raw_##call *)perf_trace_buf_prepare( \
430ad5a6
XG
718 __entry_size, event_call->id, &rctx, &irq_flags); \
719 if (!entry) \
720 return; \
20ab4425
FW
721 tstruct \
722 \
723 { assign; } \
724 \
c530665c
FW
725 __regs = &__get_cpu_var(perf_trace_regs); \
726 perf_fetch_caller_regs(__regs, 2); \
727 \
97d5a220 728 perf_trace_buf_submit(entry, __entry_size, rctx, __addr, \
c530665c 729 __count, irq_flags, __regs); \
f413cdb8
FW
730}
731
2239291a
SR
732/*
733 * This part is compiled out, it is only here as a build time check
734 * to make sure that if the tracepoint handling changes, the
735 * perf probe will fail to compile unless it too is updated.
736 */
ff038f5c 737#undef DEFINE_EVENT
2239291a
SR
738#define DEFINE_EVENT(template, call, proto, args) \
739static inline void perf_test_probe_##call(void) \
740{ \
741 check_trace_callback_type_##call(perf_trace_##template); \
742 \
ff038f5c
SR
743}
744
2239291a 745
e5bc9721
SR
746#undef DEFINE_EVENT_PRINT
747#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
748 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
749
f413cdb8 750#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
07b139c8 751#endif /* CONFIG_PERF_EVENTS */
f413cdb8 752
ac199db0
PZ
753#undef _TRACE_PROFILE_INIT
754