From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53523) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEm8b-0005Uw-9N for qemu-devel@nongnu.org; Mon, 02 Apr 2012 14:37:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SEm8Z-0007PO-Bu for qemu-devel@nongnu.org; Mon, 02 Apr 2012 14:37:56 -0400 Received: from roura.ac.upc.es ([147.83.33.10]:59219) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SEm8Z-0007P0-1O for qemu-devel@nongnu.org; Mon, 02 Apr 2012 14:37:55 -0400 From: =?utf-8?b?TGx1w61z?= Vilanova Date: Mon, 2 Apr 2012 20:38:00 +0200 Message-Id: <20120402183800.27095.16129.stgit@ginnungagap.bsc.es> In-Reply-To: <20120402183742.27095.83752.stgit@ginnungagap.bsc.es> References: <20120402183742.27095.83752.stgit@ginnungagap.bsc.es> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v6 3/8] tracetool: Add module for the 'h' format 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/format/h.py | 45 +++++++++++++++++++++++++++++++++++= ++++++ 1 files changed, 45 insertions(+), 0 deletions(-) create mode 100644 scripts/tracetool/format/h.py diff --git a/scripts/tracetool/format/h.py b/scripts/tracetool/format/h.p= y new file mode 100644 index 0000000..e68ba30 --- /dev/null +++ b/scripts/tracetool/format/h.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +Generate .h file. +""" + +__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 begin(events): + out('/* This file is autogenerated by tracetool, do not edit. */', + '', + '#ifndef TRACE_H', + '#define TRACE_H', + '', + '#include "qemu-common.h"') + +def end(events): + for e in events: + if "disable" in e.properties: + enabled =3D 0 + else: + enabled =3D 1 + out('#define TRACE_%s_ENABLED %d' % (e.name.upper(), enabled)) + out('', + '#endif /* TRACE_H */') + +def nop(events): + for e in events: + out('', + 'static inline void trace_%(name)s(%(args)s)' % { + '{', + '}', + name =3D e.name, + args =3D e.args, + )