linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC] Stupid tracepoint ideas
@ 2009-04-20 19:04 Steven Rostedt
  2009-04-20 19:17 ` Ingo Molnar
  2009-04-20 20:54 ` Mathieu Desnoyers
  0 siblings, 2 replies; 8+ messages in thread
From: Steven Rostedt @ 2009-04-20 19:04 UTC (permalink / raw)
  To: LKML
  Cc: Mathieu Desnoyers, mingo, Frederic Weisbecker, H. Peter Anvin,
	Jeremy Fitzhardinge, Masami Hiramatsu


Mathieu,

You may have tried this in your creation of tracepoints, but I figured I 
would ask before wasting too much time on it.

I'm looking at ways to make tracepoints even lighter weight when disabled. 
And I thought of doing section code. I'm playing with the following idea 
(see below patch) but I'm afraid gcc is allowed to think that the code it 
produces will not move to different sections.

Any thoughts on how we could do something similar to this.

Note, this patch is purely proof-of-concept. I'm fully aware that it is an 
x86 solution only.

-- Steve

[ no Signed-off-by: because this patch is crap ]

diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h
index 4353f3f..6953f78 100644
--- a/include/linux/tracepoint.h
+++ b/include/linux/tracepoint.h
@@ -65,9 +65,18 @@ struct tracepoint {
 	extern struct tracepoint __tracepoint_##name;			\
 	static inline void trace_##name(proto)				\
 	{								\
-		if (unlikely(__tracepoint_##name.state))		\
+		if (unlikely(__tracepoint_##name.state)) {		\
+			asm volatile ("jmp 43f\n"			\
+				      "42:\n"				\
+				      ".section .unlikely,\"ax\"\n"	\
+				      "43:\n"				\
+				      ::: "memory");			\
 			__DO_TRACE(&__tracepoint_##name,		\
-				TP_PROTO(proto), TP_ARGS(args));	\
+				   TP_PROTO(proto), TP_ARGS(args));	\
+			asm volatile ("jmp 42b\n"			\
+			     ".previous\n"				\
+			     ::: "memory");				\
+		}							\
 	}								\
 	static inline int register_trace_##name(void (*probe)(proto))	\
 	{								\

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2009-04-21 15:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-20 19:04 [RFC] Stupid tracepoint ideas Steven Rostedt
2009-04-20 19:17 ` Ingo Molnar
2009-04-20 19:23   ` Steven Rostedt
2009-04-20 20:54 ` Mathieu Desnoyers
2009-04-20 21:06   ` Steven Rostedt
2009-04-20 21:12     ` Mathieu Desnoyers
2009-04-21  7:21       ` Ingo Molnar
2009-04-21 15:46         ` Mathieu Desnoyers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).