From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35294) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF8m2-0003Ng-6H for qemu-devel@nongnu.org; Tue, 03 Apr 2012 14:48:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SF8lw-00057L-C5 for qemu-devel@nongnu.org; Tue, 03 Apr 2012 14:48:07 -0400 Received: from roura.ac.upc.es ([147.83.33.10]:60037) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SF8lw-00056G-1O for qemu-devel@nongnu.org; Tue, 03 Apr 2012 14:48:04 -0400 From: =?utf-8?b?TGx1w61z?= Vilanova Date: Tue, 3 Apr 2012 20:48:06 +0200 Message-Id: <20120403184806.2908.53152.stgit@ginnungagap.bsc.es> In-Reply-To: <20120403184731.2908.42534.stgit@ginnungagap.bsc.es> References: <20120403184731.2908.42534.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v8 6/8] tracetool: Add support for the 'ust' backend List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: stefanha@gmail.com Signed-off-by: Llu=C3=ADs Vilanova --- scripts/tracetool/backend/ust.py | 90 ++++++++++++++++++++++++++++++++= ++++++ 1 files changed, 90 insertions(+), 0 deletions(-) create mode 100644 scripts/tracetool/backend/ust.py diff --git a/scripts/tracetool/backend/ust.py b/scripts/tracetool/backend= /ust.py new file mode 100644 index 0000000..31a2ff0 --- /dev/null +++ b/scripts/tracetool/backend/ust.py @@ -0,0 +1,90 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +LTTng User Space Tracing backend. +""" + +__author__ =3D "Llu=C3=ADs Vilanova " +__copyright__ =3D "Copyright 2012, Llu=C3=ADs Vilanova " +__license__ =3D "GPL version 2 or (at your option) any later version" + +__maintainer__ =3D "Stefan Hajnoczi" +__email__ =3D "stefanha@linux.vnet.ibm.com" + + +from tracetool import out + + +def c(events): + out('#include ', + '#undef mutex_lock', + '#undef mutex_unlock', + '#undef inline', + '#undef wmb', + '#include "trace.h"') + + for e in events: + argnames =3D ", ".join(e.args.names()) + if len(e.args) > 0: + argnames =3D ', ' + argnames + + out('DEFINE_TRACE(ust_%(name)s);', + '', + 'static void ust_%(name)s_probe(%(args)s)', + '{', + ' trace_mark(ust, %(name)s, %(fmt)s%(argnames)s);', + '}', + name =3D e.name, + args =3D e.args, + fmt =3D e.fmt, + argnames =3D argnames, + ) + + else: + out('DEFINE_TRACE(ust_%(name)s);', + '', + 'static void ust_%(name)s_probe(%(args)s)', + '{', + ' trace_mark(ust, %(name)s, UST_MARKER_NOARGS);', + '}', + name =3D e.name, + args =3D e.args, + ) + + # register probes + out('', + 'static void __attribute__((constructor)) trace_init(void)', + '{') + + for e in events: + out(' register_trace_ust_%(name)s(ust_%(name)s_probe);', + name =3D e.name, + ) + + out('}') + + +def h(events): + out('#include ', + '#undef mutex_lock', + '#undef mutex_unlock', + '#undef inline', + '#undef wmb') + + for e in events: + if len(e.args) > 0: + out('DECLARE_TRACE(ust_%(name)s, TP_PROTO(%(args)s), TP_ARGS= (%(argnames)s));', + '#define trace_%(name)s trace_ust_%(name)s', + name =3D e.name, + args =3D e.args, + argnames =3D ", ".join(e.args.names()), + ) + + else: + out('_DECLARE_TRACEPOINT_NOARGS(ust_%(name)s);', + '#define trace_%(name)s trace_ust_%(name)s', + name =3D e.name, + ) + + out()