remove save_ip stub
[ust.git] / include / ust / marker.h
CommitLineData
a72ca31a
PMF
1/*
2 * Code markup for dynamic and static tracing.
3 *
4 * See Documentation/marker.txt.
5 *
6 * (C) Copyright 2006 Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
59b161cd 7 * (C) Copyright 2009 Pierre-Marc Fournier <pierre-marc dot fournier at polymtl dot ca>
a72ca31a 8 *
8fc2d8db
PMF
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.
13 *
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.
18 *
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
a72ca31a
PMF
22 */
23
2288bf6d
PMF
24#ifndef _UST_MARKER_H
25#define _UST_MARKER_H
e4621c7f 26
a72ca31a 27#include <stdarg.h>
59b161cd 28//ust// #include <linux/types.h>
93d0f2ea 29#include <ust/immediate.h>
59b161cd 30//ust// #include <linux/ltt-channels.h>
fbca6b62 31#include <ust/kernelcompat.h>
769d0157 32#include <kcompat/list.h>
2782fc4b 33#include <ust/processor.h>
59b161cd
PMF
34
35//ust// struct module;
36//ust// struct task_struct;
a72ca31a
PMF
37struct marker;
38
a4db742a
PMF
39/* To stringify the expansion of a define */
40#define XSTR(d) STR(d)
41#define STR(s) #s
42
a72ca31a
PMF
43/**
44 * marker_probe_func - Type of a marker probe function
45 * @mdata: marker data
46 * @probe_private: probe private data
47 * @call_private: call site private data
48 * @fmt: format string
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.
52 *
53 * Type of marker probe functions. They receive the mdata and need to parse the
54 * format string to recover the variable argument list.
55 */
56typedef void marker_probe_func(const struct marker *mdata,
75667d04 57 void *probe_private, struct registers *regs, void *call_private,
a72ca31a
PMF
58 const char *fmt, va_list *args);
59
60struct marker_probe_closure {
61 marker_probe_func *func; /* Callback */
62 void *probe_private; /* Private probe data */
63};
64
65struct marker {
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.
70 */
59b161cd 71 DEFINE_IMV(char, state);/* Immediate value state. */
a72ca31a
PMF
72 char ptype; /* probe type : 0 : single, 1 : multi */
73 /* Probe wrapper */
74 u16 channel_id; /* Numeric channel identifier, dynamic */
75 u16 event_id; /* Numeric event identifier, dynamic */
75667d04 76 void (*call)(const struct marker *mdata, void *call_private, struct registers *regs, ...);
a72ca31a
PMF
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 */
3ea1e2fc 81 void *location; /* Address of marker in code */
a72ca31a
PMF
82} __attribute__((aligned(8)));
83
872037bb
PMF
84#define CONFIG_MARKERS
85#ifdef CONFIG_MARKERS
a72ca31a 86
bb9ade29
PMF
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); \
91 \
a4db742a 92 /* This next asm has to be a basic inline asm (no input/output/clobber), \
443addf6
PMF
93 because it must not require %-sign escaping, as we most certainly \
94 have some %-signs in the format string. */ \
a4db742a
PMF
95 asm volatile ( \
96 ".section __markers_strings,\"aw\",@progbits\n\t" \
a4db742a
PMF
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" \
c6794136 102 ".string " "\"" format "\"" "\n\t" \
a4db742a
PMF
103 ".previous\n\t" \
104 ".section __markers,\"aw\",@progbits\n\t" \
105 ".align 8\n\t" \
bb9ade29
PMF
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" \
6b68d79d
PMF
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 */ \
6793a8bf
PMF
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 */ \
6b68d79d 118 _ASM_PTR "(__mark_empty_function)\n\t" /* marker_probe_closure single.field1 */ \
6793a8bf
PMF
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 */ \
125 ".previous\n\t" \
126 "1:\n\t" \
127 ); \
bb9ade29 128 \
3ea1e2fc
PMF
129 save_registers(&regs)
130
131
bb9ade29
PMF
132#define DEFINE_MARKER(channel, name, format, unique) \
133 _DEFINE_MARKER(channel, name, NULL, NULL, format, unique)
a72ca31a 134
bb9ade29
PMF
135#define DEFINE_MARKER_TP(channel, name, tp_name, tp_cb, format, unique) \
136 _DEFINE_MARKER(channel, name, #tp_name, tp_cb, format, unique)
a72ca31a
PMF
137
138/*
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.
142 *
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.
146 */
bb9ade29
PMF
147
148#define make_mark_struct_name(channel, name, unique) \
149 make_mark_struct_name2(channel, name, unique)
150
151#define make_mark_struct_name2(channel, name, unique) \
152 __mark_struct_##channel##_##name##_##unique
153
a72ca31a 154#define __trace_mark(generic, channel, name, call_private, format, args...) \
bb9ade29
PMF
155 __trace_mark_counter(generic, channel, name, __COUNTER__, call_private, format, ## args)
156
157#define __trace_mark_counter(generic, channel, name, unique, call_private, format, args...) \
a72ca31a 158 do { \
bb9ade29 159 DEFINE_MARKER(channel, name, format, unique); \
a72ca31a
PMF
160 __mark_check_format(format, ## args); \
161 if (!generic) { \
162 if (unlikely(imv_read( \
bb9ade29
PMF
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), \
75667d04 166 call_private, &regs, ## args); \
a72ca31a
PMF
167 } else { \
168 if (unlikely(_imv_read( \
bb9ade29
PMF
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), \
75667d04 172 call_private, &regs, ## args); \
a72ca31a
PMF
173 } \
174 } while (0)
175
bb9ade29
PMF
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)
178
179#define __trace_mark_tp_counter(channel, name, unique, call_private, tp_name, tp_cb, format, args...) \
a72ca31a
PMF
180 do { \
181 void __check_tp_type(void) \
182 { \
183 register_trace_##tp_name(tp_cb); \
184 } \
bb9ade29 185 DEFINE_MARKER_TP(channel, name, tp_name, tp_cb, format, unique);\
a72ca31a
PMF
186 __mark_check_format(format, ## args); \
187 (*__mark_##channel##_##name.call)(&__mark_##channel##_##name, \
75667d04 188 call_private, &regs, ## args); \
a72ca31a
PMF
189 } while (0)
190
191extern void marker_update_probe_range(struct marker *begin,
192 struct marker *end);
193
194#define GET_MARKER(channel, name) (__mark_##channel##_##name)
195
872037bb
PMF
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, \
201 format, args...) \
202 do { \
203 void __check_tp_type(void) \
204 { \
205 register_trace_##tp_name(tp_cb); \
206 } \
207 __mark_check_format(format, ## args); \
208 } while (0)
209static inline void marker_update_probe_range(struct marker *begin,
210 struct marker *end)
211{ }
212#define GET_MARKER(channel, name)
213#endif /* CONFIG_MARKERS */
a72ca31a
PMF
214
215/**
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
221 *
222 * Places a marker using optimized code patching technique (imv_read())
223 * to be enabled when immediate values are present.
224 */
225#define trace_mark(channel, name, format, args...) \
226 __trace_mark(0, channel, name, NULL, format, ## args)
227
228/**
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
234 *
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).
239 */
240#define _trace_mark(channel, name, format, args...) \
241 __trace_mark(1, channel, name, NULL, format, ## args)
242
243/**
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
252 *
253 * Places a marker in a tracepoint callback.
254 */
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)
257
258/**
259 * MARK_NOARGS - Format string for a marker with no argument.
260 */
261#define MARK_NOARGS " "
262
263extern void lock_markers(void);
264extern void unlock_markers(void);
265
266extern void markers_compact_event_ids(void);
267
268/* To be used for string format validity checking with gcc */
269static inline void __printf(1, 2) ___mark_check_format(const char *fmt, ...)
270{
271}
272
273#define __mark_check_format(format, args...) \
274 do { \
275 if (0) \
276 ___mark_check_format(format, ## args); \
277 } while (0)
278
279extern marker_probe_func __mark_empty_function;
280
281extern void marker_probe_cb(const struct marker *mdata,
75667d04 282 void *call_private, struct registers *regs, ...);
a72ca31a
PMF
283
284/*
285 * Connect a probe to a marker.
286 * private data pointer must be a valid allocated memory address, or NULL.
287 */
288extern int marker_probe_register(const char *channel, const char *name,
289 const char *format, marker_probe_func *probe, void *probe_private);
290
291/*
292 * Returns the private data given to marker_probe_register.
293 */
294extern int marker_probe_unregister(const char *channel, const char *name,
295 marker_probe_func *probe, void *probe_private);
296/*
297 * Unregister a marker by providing the registered private data.
298 */
299extern int marker_probe_unregister_private_data(marker_probe_func *probe,
300 void *probe_private);
301
302extern void *marker_get_private_data(const char *channel, const char *name,
303 marker_probe_func *probe, int num);
304
305/*
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.
311 */
312#define marker_synchronize_unregister() synchronize_sched()
313
314struct marker_iter {
98963de4
PMF
315//ust// struct module *module;
316 struct lib *lib;
a72ca31a
PMF
317 struct marker *marker;
318};
319
320extern void marker_iter_start(struct marker_iter *iter);
321extern void marker_iter_next(struct marker_iter *iter);
322extern void marker_iter_stop(struct marker_iter *iter);
323extern void marker_iter_reset(struct marker_iter *iter);
324extern int marker_get_iter_range(struct marker **marker, struct marker *begin,
325 struct marker *end);
326
327extern void marker_update_process(void);
328extern int is_marker_enabled(const char *channel, const char *name);
329
59b161cd
PMF
330//ust// #ifdef CONFIG_MARKERS_USERSPACE
331//ust// extern void exit_user_markers(struct task_struct *p);
332//ust// #else
333//ust// static inline void exit_user_markers(struct task_struct *p)
334//ust// {
335//ust// }
336//ust// #endif
a72ca31a 337
3ea1e2fc
PMF
338struct marker_addr {
339 struct marker *marker;
340 void *addr;
341};
98963de4
PMF
342
343struct lib {
344 struct marker *markers_start;
defa46a7 345#ifdef CONFIG_UST_GDB_INTEGRATION
3ea1e2fc 346 struct marker_addr *markers_addr_start;
defa46a7 347#endif
98963de4
PMF
348 int markers_count;
349 struct list_head list;
350};
351
bf961c7e 352extern int marker_register_lib(struct marker *markers_start, int markers_count);
defa46a7 353
55994a67
JB
354#define MARKER_LIB \
355 extern struct marker __start___markers[] __attribute__((weak, visibility("hidden"))); \
356 extern struct marker __stop___markers[] __attribute__((weak, visibility("hidden"))); \
55994a67
JB
357 \
358 static void __attribute__((constructor)) __markers__init(void) \
359 { \
bf961c7e 360 marker_register_lib(__start___markers, (((long)__stop___markers)-((long)__start___markers))/sizeof(struct marker)); \
55994a67 361 }
98963de4 362
064842c6
PMF
363extern void marker_set_new_marker_cb(void (*cb)(struct marker *));
364extern void init_markers(void);
9160b4e4 365
defa46a7 366#endif /* _UST_MARKER_H */
This page took 0.040271 seconds and 4 git commands to generate.