2 * Code markup for dynamic and static tracing.
4 * See Documentation/marker.txt.
6 * (C) Copyright 2006 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
7 * (C) Copyright 2009 Pierre-Marc Fournier <pierre-marc dot fournier at polymtl dot ca>
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28 //ust// #include <linux/types.h>
29 #include <ust/immediate.h>
30 //ust// #include <linux/ltt-channels.h>
31 #include <ust/kernelcompat.h>
32 #include <kcompat/list.h>
33 #include <ust/processor.h>
35 //ust// struct module;
36 //ust// struct task_struct;
39 /* To stringify the expansion of a define */
40 #define XSTR(d) STR(d)
44 * marker_probe_func - Type of a marker probe function
46 * @probe_private: probe private data
47 * @call_private: call site private data
49 * @args: variable argument list pointer. Use a pointer to overcome C's
50 * inability to pass this around as a pointer in a portable manner in
51 * the callee otherwise.
53 * Type of marker probe functions. They receive the mdata and need to parse the
54 * format string to recover the variable argument list.
56 typedef void marker_probe_func(const struct marker
*mdata
,
57 void *probe_private
, struct registers
*regs
, void *call_private
,
58 const char *fmt
, va_list *args
);
60 struct marker_probe_closure
{
61 marker_probe_func
*func
; /* Callback */
62 void *probe_private
; /* Private probe data */
66 const char *channel
; /* Name of channel where to send data */
67 const char *name
; /* Marker name */
68 const char *format
; /* Marker format string, describing the
69 * variable argument list.
71 DEFINE_IMV(char, state
);/* Immediate value state. */
72 char ptype
; /* probe type : 0 : single, 1 : multi */
74 u16 channel_id
; /* Numeric channel identifier, dynamic */
75 u16 event_id
; /* Numeric event identifier, dynamic */
76 void (*call
)(const struct marker
*mdata
, void *call_private
, struct registers
*regs
, ...);
77 struct marker_probe_closure single
;
78 struct marker_probe_closure
*multi
;
79 const char *tp_name
; /* Optional tracepoint name */
80 void *tp_cb
; /* Optional tracepoint callback */
81 void *location
; /* Address of marker in code */
82 } __attribute__((aligned(8)));
84 #define CONFIG_MARKERS
87 #define _DEFINE_MARKER(channel, name, tp_name_str, tp_cb, format, unique) \
88 struct registers regs; \
89 /* make asm label visible to C */ \
90 extern struct marker make_mark_struct_name(channel, name, unique); \
92 /* This next asm has to be a basic inline asm (no input/output/clobber), \
93 because it must not require %-sign escaping, as we most certainly \
94 have some %-signs in the format string. */ \
96 ".section __markers_strings,\"aw\",@progbits\n\t" \
97 "__mstrtab_" XSTR(channel) "_" XSTR(name) "_channel_" XSTR(unique) ":\n\t" \
98 ".string \"" XSTR(channel) "\"\n\t" \
99 "__mstrtab_" XSTR(channel) "_" XSTR(name) "_name_" XSTR(unique) ":\n\t" \
100 ".string \"" XSTR(name) "\"\n\t" \
101 "__mstrtab_" XSTR(channel) "_" XSTR(name) "_format_" XSTR(unique) ":\n\t" \
102 ".string " "\"" format "\"" "\n\t" \
104 ".section __markers,\"aw\",@progbits\n\t" \
106 XSTR(make_mark_struct_name(channel, name, unique)) ":\n\t" \
107 ".global " XSTR(make_mark_struct_name(channel, name, unique)) "\n\t" \
108 ".hidden " XSTR(make_mark_struct_name(channel, name, unique)) "\n\t" \
109 _ASM_PTR "(__mstrtab_" XSTR(channel) "_" XSTR(name) "_channel_" XSTR(unique) ")\n\t" /* channel string */ \
110 _ASM_PTR "(__mstrtab_" XSTR(channel) "_" XSTR(name) "_name_" XSTR(unique) ")\n\t" /* name string */ \
111 _ASM_PTR "(__mstrtab_" XSTR(channel) "_" XSTR(name) "_format_" XSTR(unique) ")\n\t" /* format string */ \
112 ".byte 0\n\t" /* state imv */ \
113 ".byte 0\n\t" /* ptype */ \
114 ".word 0\n\t" /* channel_id */ \
115 ".word 0\n\t" /* event_id */ \
116 ".align " XSTR(__SIZEOF_POINTER__) "\n\t" /* alignment */ \
117 _ASM_PTR "(marker_probe_cb)\n\t" /* call */ \
118 _ASM_PTR "(__mark_empty_function)\n\t" /* marker_probe_closure single.field1 */ \
119 _ASM_PTR "0\n\t" /* marker_probe_closure single.field2 */ \
120 _ASM_PTR "0\n\t" /* marker_probe_closure *multi */ \
121 _ASM_PTR "0\n\t" /* tp_name */ \
122 _ASM_PTR "0\n\t" /* tp_cb */ \
123 "__mark_location_" XSTR(unique) ":\n\t" \
124 _ASM_PTR "(1f)\n\t" /* location */ \
129 save_registers(®s)
132 #define DEFINE_MARKER(channel, name, format, unique) \
133 _DEFINE_MARKER(channel, name, NULL, NULL, format, unique)
135 #define DEFINE_MARKER_TP(channel, name, tp_name, tp_cb, format, unique) \
136 _DEFINE_MARKER(channel, name, #tp_name, tp_cb, format, unique)
139 * Make sure the alignment of the structure in the __markers section will
140 * not add unwanted padding between the beginning of the section and the
141 * structure. Force alignment to the same alignment as the section start.
143 * The "generic" argument controls which marker enabling mechanism must be used.
144 * If generic is true, a variable read is used.
145 * If generic is false, immediate values are used.
148 #define make_mark_struct_name(channel, name, unique) \
149 make_mark_struct_name2(channel, name, unique)
151 #define make_mark_struct_name2(channel, name, unique) \
152 __mark_struct_##channel##_##name##_##unique
154 #define __trace_mark(generic, channel, name, call_private, format, args...) \
155 __trace_mark_counter(generic, channel, name, __COUNTER__, call_private, format, ## args)
157 #define __trace_mark_counter(generic, channel, name, unique, call_private, format, args...) \
159 DEFINE_MARKER(channel, name, format, unique); \
160 __mark_check_format(format, ## args); \
162 if (unlikely(imv_read( \
163 make_mark_struct_name(channel, name, unique).state))) \
164 (make_mark_struct_name(channel, name, unique).call) \
165 (&make_mark_struct_name(channel, name, unique), \
166 call_private, ®s, ## args); \
168 if (unlikely(_imv_read( \
169 make_mark_struct_name(channel, name, unique).state))) \
170 (make_mark_struct_name(channel, name, unique).call) \
171 (&make_mark_struct_name(channel, name, unique), \
172 call_private, ®s, ## args); \
176 #define __trace_mark_tp(channel, name, call_private, tp_name, tp_cb, format, args...) \
177 __trace_mark_tp_counter(channel, name, __COUNTER__, call_private, tp_name, tp_cb, format, ## args)
179 #define __trace_mark_tp_counter(channel, name, unique, call_private, tp_name, tp_cb, format, args...) \
181 void __check_tp_type(void) \
183 register_trace_##tp_name(tp_cb); \
185 DEFINE_MARKER_TP(channel, name, tp_name, tp_cb, format, unique);\
186 __mark_check_format(format, ## args); \
187 (*__mark_##channel##_##name.call)(&__mark_##channel##_##name, \
188 call_private, ®s, ## args); \
191 extern void marker_update_probe_range(struct marker
*begin
,
194 #define GET_MARKER(channel, name) (__mark_##channel##_##name)
196 #else /* !CONFIG_MARKERS */
197 #define DEFINE_MARKER(channel, name, tp_name, tp_cb, format)
198 #define __trace_mark(generic, channel, name, call_private, format, args...) \
199 __mark_check_format(format, ## args)
200 #define __trace_mark_tp(channel, name, call_private, tp_name, tp_cb, \
203 void __check_tp_type(void) \
205 register_trace_##tp_name(tp_cb); \
207 __mark_check_format(format, ## args); \
209 static inline void marker_update_probe_range(struct marker
*begin
,
212 #define GET_MARKER(channel, name)
213 #endif /* CONFIG_MARKERS */
216 * trace_mark - Marker using code patching
217 * @channel: marker channel (where to send the data), not quoted.
218 * @name: marker name, not quoted.
219 * @format: format string
220 * @args...: variable argument list
222 * Places a marker using optimized code patching technique (imv_read())
223 * to be enabled when immediate values are present.
225 #define trace_mark(channel, name, format, args...) \
226 __trace_mark(0, channel, name, NULL, format, ## args)
229 * _trace_mark - Marker using variable read
230 * @channel: marker channel (where to send the data), not quoted.
231 * @name: marker name, not quoted.
232 * @format: format string
233 * @args...: variable argument list
235 * Places a marker using a standard memory read (_imv_read()) to be
236 * enabled. Should be used for markers in code paths where instruction
237 * modification based enabling is not welcome. (__init and __exit functions,
238 * lockdep, some traps, printk).
240 #define _trace_mark(channel, name, format, args...) \
241 __trace_mark(1, channel, name, NULL, format, ## args)
244 * trace_mark_tp - Marker in a tracepoint callback
245 * @channel: marker channel (where to send the data), not quoted.
246 * @name: marker name, not quoted.
247 * @tp_name: tracepoint name, not quoted.
248 * @tp_cb: tracepoint callback. Should have an associated global symbol so it
249 * is not optimized away by the compiler (should not be static).
250 * @format: format string
251 * @args...: variable argument list
253 * Places a marker in a tracepoint callback.
255 #define trace_mark_tp(channel, name, tp_name, tp_cb, format, args...) \
256 __trace_mark_tp(channel, name, NULL, tp_name, tp_cb, format, ## args)
259 * MARK_NOARGS - Format string for a marker with no argument.
261 #define MARK_NOARGS " "
263 extern void lock_markers(void);
264 extern void unlock_markers(void);
266 extern void markers_compact_event_ids(void);
268 /* To be used for string format validity checking with gcc */
269 static inline void __printf(1, 2) ___mark_check_format(const char *fmt
, ...)
273 #define __mark_check_format(format, args...) \
276 ___mark_check_format(format, ## args); \
279 extern marker_probe_func __mark_empty_function
;
281 extern void marker_probe_cb(const struct marker
*mdata
,
282 void *call_private
, struct registers
*regs
, ...);
285 * Connect a probe to a marker.
286 * private data pointer must be a valid allocated memory address, or NULL.
288 extern int marker_probe_register(const char *channel
, const char *name
,
289 const char *format
, marker_probe_func
*probe
, void *probe_private
);
292 * Returns the private data given to marker_probe_register.
294 extern int marker_probe_unregister(const char *channel
, const char *name
,
295 marker_probe_func
*probe
, void *probe_private
);
297 * Unregister a marker by providing the registered private data.
299 extern int marker_probe_unregister_private_data(marker_probe_func
*probe
,
300 void *probe_private
);
302 extern void *marker_get_private_data(const char *channel
, const char *name
,
303 marker_probe_func
*probe
, int num
);
306 * marker_synchronize_unregister must be called between the last marker probe
307 * unregistration and the first one of
308 * - the end of module exit function
309 * - the free of any resource used by the probes
310 * to ensure the code and data are valid for any possibly running probes.
312 #define marker_synchronize_unregister() synchronize_sched()
315 //ust// struct module *module;
317 struct marker
*marker
;
320 extern void marker_iter_start(struct marker_iter
*iter
);
321 extern void marker_iter_next(struct marker_iter
*iter
);
322 extern void marker_iter_stop(struct marker_iter
*iter
);
323 extern void marker_iter_reset(struct marker_iter
*iter
);
324 extern int marker_get_iter_range(struct marker
**marker
, struct marker
*begin
,
327 extern void marker_update_process(void);
328 extern int is_marker_enabled(const char *channel
, const char *name
);
330 //ust// #ifdef CONFIG_MARKERS_USERSPACE
331 //ust// extern void exit_user_markers(struct task_struct *p);
333 //ust// static inline void exit_user_markers(struct task_struct *p)
339 struct marker
*marker
;
344 struct marker
*markers_start
;
345 #ifdef CONFIG_UST_GDB_INTEGRATION
346 struct marker_addr
*markers_addr_start
;
349 struct list_head list
;
352 extern int marker_register_lib(struct marker
*markers_start
, int markers_count
);
355 extern struct marker __start___markers[] __attribute__((weak, visibility("hidden"))); \
356 extern struct marker __stop___markers[] __attribute__((weak, visibility("hidden"))); \
358 static void __attribute__((constructor)) __markers__init(void) \
360 marker_register_lib(__start___markers, (((long)__stop___markers)-((long)__start___markers))/sizeof(struct marker)); \
363 extern void marker_set_new_marker_cb(void (*cb
)(struct marker
*));
364 extern void init_markers(void);
366 #endif /* _UST_MARKER_H */